/* 关于我们 / Our Brands 页面样式 */

.our-brands-page {
    background: #f7f7f7;
    padding-bottom: 60px;
    font-family: Inter, "Noto Sans SC", sans-serif;
    color: #232323;
}

/* 统一各区块容器宽度，保证左右对齐 */
.our-brands-page .am-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    box-sizing: border-box;
}

/* 顶部横幅 */
.our-brands-page .brand-hero {
    position: relative;
    margin-top: 15px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
}

.our-brands-page .brand-hero .hero-content {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    text-align: left;
    background: rgba(255, 255, 255, .75);
    padding: 20px 25px;
    border-radius: 4px;
}

.our-brands-page .brand-hero h1 {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 600;
    color: #232323;
}

.our-brands-page .brand-hero p {
    margin: 0;
    font-size: 16px;
    color: #232323;
}

/* 简介 */
.our-brands-page .brand-intro {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.our-brands-page .brand-intro .intro-img {
    flex: 0 0 45%;
    max-width: 45%;
    margin-right: 40px;
}

.our-brands-page .brand-intro .intro-img img,
.our-brands-page .brand-intro .intro-img video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.our-brands-page .brand-intro .intro-text {
    flex: 1;
}

.our-brands-page .brand-intro .intro-text p {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    margin: 16px 0;
}

/* 数据栏 */
.our-brands-page .brand-stats {
    margin-top: 40px;
    background: #fdf6e4;
    border-radius: 4px;
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

.our-brands-page .brand-stats .stat-item {
    flex: 1 1 18%;
    min-width: 120px;
    margin-bottom: 15px;
}

.our-brands-page .brand-stats .stat-item i {
    font-size: 28px;
    color: #f0a500;
}

.our-brands-page .brand-stats .num {
    margin: 8px 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.our-brands-page .brand-stats .label {
    margin: 0;
    font-size: 13px;
    color: #888;
}

/* 我们的优势 */
.our-brands-page .brand-advantages {
    margin-top: 50px;
}

.our-brands-page .section-title {
    font-size: 30px;
    font-weight: 600;
    color: #232323;
    margin: 0 0 30px;
}

.our-brands-page .section-title span {
    border-left: 4px solid #f0a500;
    padding-left: 12px;
}

.our-brands-page .adv-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.our-brands-page .adv-row.reverse {
    flex-direction: row-reverse;
}

.our-brands-page .adv-row .adv-img {
    flex: 0 0 45%;
    max-width: 45%;
}

.our-brands-page .adv-row .adv-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.our-brands-page .adv-row .adv-img.cert-images {
    display: flex;
    align-items: center;
    gap: 15px;
}

.our-brands-page .adv-row .adv-img.cert-images img {
    width: 32%;
    height: 220px;
    object-fit: contain;
    border: 1px solid #ddd;
    background: #fff;
    padding: 8px;
    box-sizing: border-box;
}

.our-brands-page .adv-row .adv-text {
    flex: 1;
}

.our-brands-page .adv-row .adv-text h3 {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 600;
    color: #232323;
}

.our-brands-page .adv-row .adv-text p {
    font-size: 16px;
    color: #232323;
    line-height: 1.8;
    margin: 16px 0;
}

/* 响应式 */
@media (max-width: 768px) {
    .our-brands-page .brand-intro,
    .our-brands-page .adv-row,
    .our-brands-page .adv-row.reverse {
        flex-direction: column;
    }

    .our-brands-page .brand-intro .intro-img,
    .our-brands-page .adv-row .adv-img {
        max-width: 100%;
    }
}
