﻿/* 全局样式重置 */

/* 第一部分：Hero 区域 */
#brex-producttop {
    padding-top: 15vh;
    padding-bottom: 10vh;
}
.hero-section {
    background-color: #1B3164; /* 绿色背景 */
    color: #ffffff;
    text-align: center;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
}

.hero-subtitle {
    font-size: 15px;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    padding:5vh 0px;
}

.cta-button {
    background-color: #ffffff;
    color: #1B3164;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.breadcrumbs {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

    .breadcrumbs a {
        color: rgba(255,255,255,0.9);
        text-decoration: none;
    }

        .breadcrumbs a:hover {
            text-decoration: underline;
        }

/* 第二部分：What Is Product Sourcing 区域 */
.sourcing-intro {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    color: #333333;
}

.intro-title {
    font-family: 'Georgia', serif;
    color: #006655;
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.intro-list {
    margin-left: 30px;
    margin-bottom: 20px;
}

    .intro-list li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 8px;
        color: #555555;
    }

.highlight-text {
    font-weight: 600;
    color: #333333;
}

/* 第三部分：One-stop Sourcing 区域 */
.one-stop-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.section-title {
    color: #006655;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 12px;
}

.section-image {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .one-stop-section {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 28px;
    }
}
#bref-howwork {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
/* 第一部分：HOW IT WORK */
.how-it-work-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.section-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 15px;
    color: #555555;
    max-width: 400px;
}

.btn-gradient {
    background: linear-gradient(90deg, #222222, #4096ff);
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    border: 1px solid #eeeeee;
    padding: 24px;
    border-radius: 4px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.step-icon {
    width: 41px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #222222;
}

.step-number {
    font-size: 16px;
    font-weight: 500;
    color: #555555;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

/* 第二部分：Who Needs A Sourcing Agent */
.who-needs-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.section-image {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.section-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.needs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding:0px;
}

.needs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #222222;
}

.check-icon {
    width: 80px;
    height: 40px;
    background-color: #4096ff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .how-it-work-section,
    .who-needs-section {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .needs-list {
        grid-template-columns: 1fr;
    }
}