.multifilter {
    background-color: #fff;
    border-radius: 11px;
    padding: 22px;
}

.multifilter .item {
    display: flex;
    font-size: 14px;
    gap: 22px;
    line-height: 32px;
}

.multifilter .item strong {
    white-space: nowrap;
    width: 150px;
}

.multifilter .item a {
    /* margin-left: 22px; */
    padding: 3px 11px;
    border-radius: 5px;
}

.multifilter .item a.active {
    background-color: var(--primary-100);
    color: #fff;
}

.brandresult {
    /* margin-top: 22px; */
    border-radius: 11px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.brandresult .resultcard {
    display: flex;
    margin-top: 11px;
    background-color: #fff;
    flex-grow: 1;
    gap: 5px;
    padding: 22px;
    flex: 0 0 49%;
}

.brandresult .resultcard .txt {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brandresult .resultcard>a {
    width: 170px;
    height: 170px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.brandresult .resultcard>a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brandresult .resultcard .title {
    font-size: 18px;
    font-weight: bold;
}

.brandresult .resultcard .content {
    display: flex;
    justify-content: space-between;
}

.brandresult .resultcard .content .tags {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.brandresult .resultcard .content .tags a {
    background-color: var(--primary-300);
    color: #fff;
    padding: 0 22px;
    font-size: 20px;
    height: 32px;
    line-height: 32px;
    flex-shrink: 0;
}

.brandresult .resultcard .content .tags span {
    background-color: rgb(244, 244, 244);
    padding: 0 8px;
    height: 26px;
    line-height: 26px;
}

.brandresult .productpic {
    display: flex;
    gap: 5px;
}

.brandresult .productpic a {
    width: 110px;
    height: 110px;
}

.brandresult .productpic a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 分页 */
.page {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 22px 0;
}

.page span {
    font-size: 16px;
    padding: 0 11px;
}

.page span.page-status {
    color: #999;
    font-size: 14px;
}

.page span.page-numbar {
    background-color: #fff;
    border: 1px solid #ffffff;
}

/* .page .pagetotal {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    margin-right: 28px;
}

.page .pagelist {
    display: flex;
    align-items: center;
}

.page .pagelist .number {
    padding: 0 20px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #ffffff;
    font-size: 16px;
    font-weight: 400;
    color: #222222;
    margin-right: 12px;
    cursor: pointer;
}

.page .pagelist .arrow {
    margin-right: 16px;
}

.page .pageskip {
    display: flex;
    align-items: center;
}

.page .pageskip span {
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

.page .pageskip input {
    border: 1px solid #ffffff;
    background-color: #ffffff;
    width: 66px;
    height: 48px;
    border-radius: 8px;
    text-align: center;
    margin: 0 20px;
    font-size: 16px;
    color: #222222;
    font-family: PingFang SC;
}

.page .pageskip div {
    width: 80px;
    height: 48px;
    line-height: 48px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    text-align: center;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #222222;
    cursor: pointer;
    font-family: PingFang SC;
    margin-left: 23px;
} */

/* 导航 */
.navBrand {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    position: relative;
}

.navBrand a {
    font-size: 20px;
    color: #fff;
    margin-right: 50px;
    padding: 5px 20px;
}

.navBrand a:hover {
    background-color: var(--bg-100);
    color: var(--text-100);
    border-radius: 20px;
}

.navBrand a.active {
    background-color: var(--bg-100);
    color: var(--text-100);
    border-radius: 20px;
}

/* 品牌专题页轮播图 */
.carousel {
    width: 100%;
    height: 680px;
    margin-bottom: -60px;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brandindex {
    display: flex;
}


/* 品牌详情页 */
.brandinfo {
    flex-grow: 1;
    margin-right: 22px;
    background-color: #fff;
    padding: 11px;
    border-radius: 10px;
}

/* 公司名称基本信息 */
.brandinfo .topinfo {
    background-color: #fef6f8;
    border-radius: 11px;
}

.brandinfo .topinfo .brandtitle {
    display: flex;
    background: linear-gradient(90deg, var(--primary-200), var(--primary-300));
    margin-right: 22px;
    padding: 22px;
    border-radius: 11px;
    position: relative;
    height: 158px;
}

.brandinfo .topinfo .brandtitle::after {
    content: "";
    position: absolute;
    right: -9px;
    top: 1px;
    width: 30px;
    height: 156px;
    background: var(--primary-300);
    border-radius: 0 16px 12px 0;
    transform: rotate(8deg);
}

.brandinfo .topinfo .brandtitle .logo {
    width: 220px;
    height: 110px;
}

.brandinfo .topinfo .brandtitle .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brandinfo .topinfo .txt {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-left: 11px;
}

.brandinfo .topinfo h2 {
    font-size: 32px;
    font-weight: bold;
    line-height: 32px;
    margin-right: 15px;
    color: #fff;
}

.brandinfo .topinfo .txt>p {
    font-size: 17px;
    color: #fff;
}

.brandinfo .topinfo .message {
    display: flex;
}

.brandinfo .topinfo .message p {
    font-size: 16px;
    margin-right: 15px;
    color: #fff;
}

.brandinfo .topinfo .contact {
    padding: 11px 22px;
    display: flex;
    flex-wrap: wrap;
}

.brandinfo .topinfo .contact p {
    background: #ffffff;
    line-height: 32px;
    height: 32px;
    border-radius: 22px;
    font-size: 12px;
    padding: 0 11px;
    margin: 6px;
}

/* 企业介绍 */
/* .companyintro .introtext .img {
    width: 450px;
    height: 300px;
    margin-right: 22px;
    float: left;
}

.companyintro .introtext .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.companyintro .introtext p {
    font-size: 18px;
    text-indent: 2em;
    line-height: 40px;
}

.companyintro .introtext p img {
    width: 450px;
    height: 450px;
    margin-right: 22px;
    float: left;
}

/* 热卖产品 */
.brandproduct ul {
    display: flex;
    flex-wrap: wrap;
    counter-reset: li;
}

.brandproduct ul li {
    padding: 11px;
    flex: 0 0 33.3%;
}

.brandproduct ul li .innerbox {
    border: 1px solid #eee;
    padding: 0 22px;
}

.brandproduct ul li .innerbox>a {
    display: block;
    width: 250px;
    height: 250px;
    margin: auto;
}

.brandproduct ul li .innerbox>a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brandproduct ul li .innerbox .title {
    font-size: 16px;
    position: relative;
    height: 50px;
    line-height: 25px;
}

.brandproduct ul li .innerbox .title em {
    width: 22px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    background-color: #de1e1e;
    position: absolute;
    left: -33px;
    top: 5px;
    display: block;
    color: #fff;
    text-align: center;
}

.brandproduct ul li .innerbox .title em::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 0 11px;
    border-color: #ab0f0f;
    border-left-color: transparent !important;
    position: absolute;
    left: 0;
    top: 100%;
}

.brandproduct ul li .innerbox .title em::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 6px 10px 0px;
    border-right-color: transparent;
    position: absolute;
    left: 100%;
    top: 0;
    color: #de1e1e;
}

.brandproduct ul li .innerbox .title em i::after {
    counter-increment: li;
    content: counter(li);
}

.brandproduct ul li .innerbox .other {
    display: flex;
    justify-content: space-between;
    height: 32px;
    line-height: 32px;
}

.brandproduct ul li .innerbox .other .price {
    font-size: 16px;
    color: #f12828;
    font-weight: bold;
}

.brandproduct ul li .innerbox .other .comment {
    color: #999;
}

.brandproduct ul li .innerbox .shop {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    border-top: 1px solid #eee;
    color: #be0f1b;
}

.brandproduct ul li .innerbox .shop .iconfont {
    font-size: 26px;
    vertical-align: -4px;
}

/* 工商信息 */
.businessinfo {
    margin-top: 22px;
}

.businessinfo .tablelist {
    display: grid;
    grid-template-columns: repeat(2, 200px 1fr);
}

.businessinfo .tablelist div {
    padding: 11px 0;
    text-align: center;
    font-size: 14px;
}

.businessinfo .tablelist .gaoguan {
    grid-area: 5/2/6/5;
    text-align: left;
    padding-left: 11px;
}

.businessinfo .tablelist .fanwei {
    grid-area: 6/2/7/5;
    padding-left: 11px;
}

.businessinfo .tablelist .tdleft {
    background: #f4f0f0;
}

.businessinfo .tablelist .tdright {
    background: #f8f9fb;
}


/* 相关品牌 */
.subsbrands li {
    display: flex;
    gap: 22px;
    box-shadow: 0 1px 0 #eae5cb;
    padding: 22px;
}

.subsbrands li>a {
    width: 270px;
    height: 120px;
    box-shadow: 2px 2px 5px #666666;
    text-align: center;
    border-radius: 11px;
    padding: 10px;
}

.subsbrands li>a img {
    height: 100px;
}

.subsbrands li .title a {
    font-size: 16px;
    font-weight: bold;
    background: #ffe2a6;
    padding: 3px 11px;
}

.subsbrands li .title span {
    font-size: 14px;
}

.subsbrands li .substags {
    margin-top: 11px;
}

.subsbrands li .substags span {
    float: left;
    border: 1px solid #e5e0c5;
    line-height: 1.8em;
    border-radius: 4px;
    padding: 0 7px;
    margin: 4px 8px 4px 0;
    color: #afa77b;
}

/* 注册商标 */
.trademark .content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #f3eae8;
}

.trademark .content span {
    /* border-bottom: 1px solid #999; */
    text-align: center;
    padding: 11px 0;
    font-size: 14px;
}

.trademark .content .thead {
    font-weight: bold;
}

/* 专利 */
.patent .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* brand榜单 */
.allList .tab {
    display: flex;
    justify-content: space-around;
    background-color: #fff;
}

.allList .tabItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    padding: 22px;
}

.allList .tabItem.active {
    background-color: var(--accent-100);
    color: #fff;
}

.allList .tabItem img {
    width: 34px;
    height: 34px;
}

.allList ul {
    margin-bottom: 22px;
    display: none;
}

.allList ul li {
    font-size: 14px;
    border-bottom: 1px solid var(--bg-300);
    padding: 11px 0;
}

.allList ul li strong {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
}

.allList ul li a {
    margin-right: 22px;
}