/* 品牌详情页 */
#manu_info {
    padding-bottom: 100px;
}

.BrandNameimg {
    height: 80px;
    width: 190px;
}

.BrandName {
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 400;
}

/* 品牌info l */
#manu_info .info .l {
    width: 190px;
}

#manu_info .info .l img {
    width: 190px;
    height: 80px;
}

#manu_info .info p {
    word-break: break-all;
}


/* 品牌cont */
#manu_info .cot {
    padding: 20px;
}

#manu_info .cont {
    padding-bottom: 4px;
}

#manu_info .cot ul li div a {
    width: 33.3%;
    padding-right: 16px;
}

#manu_info .cot ul li div a:after {
    content: attr(attrData);
    color: var(--main-color);
    margin-left: 3px;
}


/* 品牌相似型号 */

/* 标题 */
#manu_info .cot .title {
    margin-bottom: 30px;
}

/* 每项相似型号 */
#manu_info .cot .relatedParts li {
    width: 20%;
}

/* 每项相似型号链接 */
#manu_info .cot .relatedParts li a {
    border: 1px solid #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
}

#manu_info .cot .relatedParts li a:hover {
    box-shadow: 2px 0 9px rgb(0 0 0 / 9%);
}


/* faqBox */

/* 列表 */
#manu_info .faqBox .faqul {
    overflow: hidden;
    max-height: 190px;
}

/* 列表每项 */
#manu_info .faqBox .faqul li {
    margin-bottom: 26px;
}

/* 每项faq问题 */
#manu_info .faqBox ul li .question_cont {
    margin-bottom: 12px;
}

#manu_info .faqBox ul li .question_cont i {
    font-size: 24px;
}

/* 每项faq解答 */
#manu_info .faqBox ul li .answer_cont i {
    font-size: 20px;
}

#manu_info .faqBox ul li .answer_cont pre {
    font-family: unset;
    white-space: pre-wrap;
    word-wrap: break-word;
}


/* 小屏时 */
@media screen and (max-width: 1024px) {
    #manu_info .cot .relatedParts li {
        width: 50%;
    }

    #manu_info .cot ul li div a {
        width: 100%;
        font-size: 14px;
    }

    #manu_info .info {
        flex-direction: column;
        align-items: center;
    }

    #manu_info .info>div {
        margin-left: 0;
    }

}