
@charset "UTF-8";
/**
 * 关于我们页面样式
 * About Page Styles
 */

/* ==========================================
   三家专业机构
   ========================================== */
.partners-section {
    padding: var(--spacing-3xl) var(--spacing-md) 80px;
}

.partners-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* 标题区 */
.partners-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.partners-title {
    color: var(--text-primary);
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: 0.37px;
    margin: 0;
}

.partners-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.44px;
    margin: 0;
}

/* 三栏网格 */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* 卡片 */
.partner-card {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    padding: 30px 25px;
    overflow: hidden;
    min-height: 196px;
    display: flex;
    align-items: stretch;
}

/* 卡片内容 */
.partner-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: center;
}

.partner-card__name {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.45px;
}

/* 徽章 */
.partner-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

.partner-badge--gold {
    background: rgba(250, 173, 20, 0.1);
    color: #FAAD14;
}

.partner-badge--blue {
    background: rgba(60, 111, 221, 0.1);
    color: #3C6FDD;
}

.partner-badge--purple {
    background: rgba(125, 79, 192, 0.1);
    color: var(--accent-color);
}

/* 描述文字 */
.partner-card__desc {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin: 0;
}

.partner-card__desc strong {
    font-weight: 600;
}

/* 响应式 */
@media (max-width: 960px) {
    .partners-title {
        font-size: 32px;
        line-height: 42px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .partner-card {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .partners-section {
        padding: 60px var(--spacing-md);
    }

    .partners-title {
        font-size: 26px;
        line-height: 36px;
    }
}


/* ==========================================
   核心团队
   ========================================== */
.team-section {
    padding: var(--spacing-2xl) var(--spacing-md);
}

.team-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.team-title {
    color: var(--text-primary);
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
    text-align: center;
    margin-bottom:var(--spacing-xl);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
}

/* 单个成员卡片 */
.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* 头像容器 */
.team-card__photo {
    width: 200px;
    height: 266px;
    border-radius: 8px;
    overflow: hidden;
    background: #C8D2E6;
    flex-shrink: 0;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* 文字信息 */
.team-card__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    width: 100%;
}

.team-card__name {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.45px;
    margin: 0;
}

.team-card__role {
    display: inline-block;
    background: rgba(125, 79, 192, 0.2);
    color: var(--accent-color);
    border-radius: 12px;
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    margin-top: 2px;
}

.team-card__bio {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 20px;
    margin: 8px 0 0 0;
}

/* 团队响应式 */
@media (max-width: 960px) {
    .team-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 32px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .team-section {
        padding: 60px var(--spacing-md);
    }

    .team-title {
        font-size: 26px;
        line-height: 36px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .team-card__photo {
        width: 100%;
        height: 200px;
    }
}


/* ==========================================
   里程碑时间轴
   ========================================== */
.milestone-section {
    padding: var(--spacing-2xl) var(--spacing-md);

}

.milestone-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    background-image: url('../images/bg/milestone-bg.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    overflow: hidden;
}

.milestone-title {
    color: var(--text-primary);
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.milestone-sub {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    margin: 0 0 0 0;
}

/* 轨道 */
.milestone-track {
    position: relative;
    display: flex;
    align-items: center;
    height: 340px;
    overflow-x: auto;
    padding: 0 10px;
    -webkit-overflow-scrolling: touch;
}

.milestone-track::-webkit-scrollbar {
    height: 0;
}

/* 中间连接线 */
.milestone-track::before {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg,
        #1B5CFE 0%,
        #2557FA 14%,
        #3352F6 28%,
        #404CF1 42%,
        #5046EC 56%,
        #5E41E6 70%,
        #6C3BE3 84%,
        #7D4FC0 100%);
    transform: translateY(-50%);
    border-radius: 1px;
    z-index: 0;
}

/* 每个里程碑节点 */
.ms-item {
    flex: 1;
    min-width: 140px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

/* 节点圆点（固定在中线上） */
.ms-item__dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2.5px solid var(--clr, #5046EC);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(80, 70, 236, 0.1);
    z-index: 3;
}

/* 连接茎 */
.ms-item__stem {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    background: var(--clr, #5046EC);
    opacity: 0.35;
    z-index: 1;
}

/* 上方节点：茎从内容向下连到圆点 */
.ms-item--above .ms-item__stem {
    top: calc(50% - 30px);
    height: 30px;
}

/* 下方节点：茎从圆点向下连到内容 */
.ms-item--below .ms-item__stem {
    top: 50%;
    height: 30px;
}

/* 内容块 */
.ms-item__inner {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    text-align: center;
}

.ms-item--above .ms-item__inner {
    bottom: calc(50% + 38px);
}

.ms-item--below .ms-item__inner {
    top: calc(50% + 38px);
}

.ms-item__date {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr, #5046EC);
    line-height: 20px;
    margin-bottom: 6px;
    white-space: nowrap;
}

.ms-item__text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 18px;
    margin: 0;
}

/* 里程碑响应式 */
@media (max-width: 960px) {
    .milestone-title {
        font-size: 32px;
        line-height: 42px;
    }

    .milestone-track {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .ms-item {
        min-width: 130px;
    }
}

@media (max-width: 600px) {
    .milestone-section {
        padding: 60px var(--spacing-md);
    }

    .milestone-title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 32px;
    }

    /* 竖向时间线 */
    .milestone-track {
        flex-direction: column;
        height: auto;
        overflow-x: visible;
        padding: 0 0 0 23px;
        gap: 0;
    }

    /* 隐藏横向中线，改为竖向 */
    .milestone-track::before {
        left: 6px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 2px;
        height: 100%;
        transform: none;
        background: linear-gradient(180deg,
            #1B5CFE 0%,
            #5046EC 50%,
            #7D4FC0 100%);
    }

    .ms-item {
        min-width: unset;
        width: 100%;
        height: auto;
        flex-direction: row;
        align-items: flex-start;
        padding: 0 0 28px 0;
    }

    /* 圆点：固定在左侧竖线上 */
    .ms-item__dot {
        position: absolute;
        top: 4px;
        left: -22px;
        transform: none;
        width: 12px;
        height: 12px;
    }

    /* 隐藏水平茎 */
    .ms-item__stem {
        display: none;
    }

    /* 内容块：统一放在右侧 */
    .ms-item__inner,
    .ms-item--above .ms-item__inner,
    .ms-item--below .ms-item__inner {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        text-align: left;
    }

    .ms-item__date {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .ms-item__text {
        font-size: 14px;
        line-height: 18px;
    }

    .ms-item__text br {
        display: none;
    }
}


/* ==========================================
   所获荣誉
   ========================================== */
.awards-section {
    padding: var(--spacing-2xl) var(--spacing-md);
}

.awards-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.awards-title {
    color: var(--text-primary);
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
    text-align: center;
    margin-bottom: 80px;
}

/* 每行布局 */
.award-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: var(--spacing-2xl);
    align-items: center;
}

.award-row:last-child {
    margin-bottom: 0;
}

/* 左单元：小图在左，文字在右 */
.award-cell {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    height: 200px;
}

/* 右单元（反向行）：文字在左，小图在右 */
.award-cell--reverse {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    height: 200px;
}

/* 图片 */
.award-photo--lg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

.award-photo--sm {
    width: 290px;
    min-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    display: block;
    flex-shrink: 0;
}

/* 文字信息 */
.award-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.award-name {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin: 0;
}

.award-sub {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    margin: 0;
}

.award-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 19px;
    margin: 0;
}

/* 荣誉响应式 */
@media (max-width: 960px) {
    .awards-title {
        font-size: 32px;
        line-height: 42px;
    }

    .award-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .award-row--reverse {
        direction: ltr;
    }

    .award-photo--lg {
        height: 260px;
    }

    .award-cell,
    .award-cell--reverse {
        height: auto;
        align-items: center;
    }

    .award-photo--sm {
        width: 160px;
        min-width: 160px;
        height: 120px;
    }
}

/* ==========================================
   我们的价值观
   ========================================== */
.values-section {
    position: relative;
    padding: var(--spacing-2xl) var(--spacing-md);
    background: #050E21;
    overflow: hidden;
    background-image: url(../images/bg/cta-decoration.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.values-bg-deco img {
    display: block;
    width: 600px;
    height: auto;
}

.values-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 标题 + 使命愿景 */
.values-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.values-title {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
    text-align: center;
    margin: 0;
}

.values-motto {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.values-motto__line {
    text-align: center;
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

.values-motto__label {
    color: #B079FF;
}

.values-motto__text {
    color: #FFFFFF;
}

/* 三张价值卡 */
.values-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.values-card {
    position: relative;
    width: 320px;
    min-height: 167px;
    background: #05173E;
    border: 1px solid #364153;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 38px;
    box-sizing: border-box;
}

.values-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 260px;
    height: 100px;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

/* 对自己 — 橙色/琥珀 */
.values-card--amber::before {
    background: radial-gradient(ellipse at center,#FFFFFF 20%, #FF5E00 60%, #9F690C 40%, transparent 100%);
    opacity: 0.4;
}

/* 对客户 — 青/蓝 */
.values-card--teal::before {
    background: radial-gradient(ellipse at center,#FFFFFF 20%, #127187 60%, #0E3990 40%, transparent 100%);
    opacity: 0.7;
}

/* 对社会 — 紫/蓝 */
.values-card--purple::before {
    background: radial-gradient(ellipse at center,#FFFFFF 20%, #7910B6 60%, #2661D6 40%, transparent 100%);
    opacity: 0.6;
}

.values-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.values-card__name {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
    margin: 0;
}

.values-card__desc {
    color: #A19FB1;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
}

/* 价值观响应式 */
@media (max-width: 960px) {
    .values-title {
        font-size: 32px;
        line-height: 42px;
    }

    .values-motto__line {
        font-size: 18px;
    }

    .values-cards {
        flex-wrap: wrap;
        gap: 20px;
    }

    .values-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .values-section {
        padding: 60px var(--spacing-md);
        background-image: url(../images/bg/cta-decoration-m.svg);
    }

    .values-title {
        font-size: 26px;
    }

    .values-motto__line {
        font-size: 15px;
        line-height: 24px;
    }

    .values-cards {
        flex-direction: column;
        align-items: center;
    }

    .values-card {
        width: 100%;
        max-width: 320px;
    }
}


@media (max-width: 600px) {
    .awards-section {
        padding: 60px var(--spacing-md);
    }

    .awards-title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 32px;
    }

    .award-row {
        margin-bottom: 24px;
    }

    .award-photo--lg {
        height: 200px;
    }

    .award-photo--sm {
        width: 120px;
        min-width: 120px;
        height: 90px;
    }
}

