/* 团队页专用样式 */

.team-page main {
    background: #F8FAFC;
}

.team-section {
    padding: 100px 0 0;
}

.team-content {
    width: min(1280px, 92vw);
}

.team-content h1 {
    margin: 0;
    color: #192F58;
    font-size: 36px;
    font-weight: 500;
}

.team-intro {
    margin: 32px 0 113px;
    color: #303030;
    line-height: 1.9;
    font-size: 18px;
}

.team-member {
    margin-bottom: 56px;
}

.team-member h2 {
    margin: 0;
    color: #1A1A1A;
    font-size: 30px;
}

.team-role {
    margin: 20px 0 30px;
    color: #1A1A1A;
    font-size: 18px;
}

.team-member-description {
    color: #303030;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin: 0;
}

.team-member .team-email {
    margin-top: 28px;
    color: #1468FF;
    font-size: 18px;
    text-decoration: underline;
}

.team-member-overview {
    display: flex;
    gap: 47px;
    align-items: center;
}

.team-photo {
    width: 150px;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
}

.team-member h3 {
    margin: 70px 0 30px;
    color: #1A1A1A;
    font-size: 24px;
    font-weight: 500;
}

.team-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 26px;
    margin-top: 30px;
}

.team-list li {
    position: relative;
    color: #303030;
    font-size: 18px;
    padding-left: 25px;
}

.team-list li span {
    font-weight: 500;
}

.team-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1E55B5;
}

.team-contact-grid {
    width: min(1100px, 100%);
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 40px;
}

.team-contact-card {
    box-sizing: border-box;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #edf1f7;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 26px 16px;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 39, 79, 0.13);
}

.team-contact-card img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.team-contact-label {
    margin: 16px 0 0;
    font-size: 18px;
    color: #1A1A1A;
}

.team-contact-value {
    margin: 16px 0 0;
    color: #FF4C4C !important;
    font-size: 18px;
    font-weight: 400;
    font-family: PingFang SC, PingFang SC;
    word-break: break-word;
}

.team-contact-tip {
    margin: 24px 0 0;
    color: #445369 !important;
    font-size: 14px;
}

.team-bottom-banner {
    height: 120px;
    background: linear-gradient(-90deg, rgba(144, 250, 192, 0.5) 0%, rgba(183, 229, 250, 0.5) 100%);
    display: flex;
    align-items: center;
}

.team-bottom-banner-content {
    width: min(1280px, 92vw);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #192F58;
    font-size: 24px;
    font-weight: 400;
}

.team-bottom-banner-content p {
    margin: 0;
}

.team-bottom-banner-content a {
    text-decoration: none;
    padding-left: 30px;
    background: url("../assets/team/icon_tell(1).png") left center / 22px 22px no-repeat;
    text-decoration: underline;
}

.team-bottom-banner-content a:hover {
    color: #0b4d89;
}


/* 响应式 */

@media (max-width: 980px) {
    .team-content,
    .team-bottom-banner-content {
        width: min(1120px, 92vw);
    }
    .team-contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .team-member-overview {
        flex-direction: column;
        align-items: flex-start;
    }
    .team-bottom-banner-content {
        font-size: 1.1rem;
        flex-wrap: wrap;
        row-gap: 4px;
    }
}

@media (max-width: 620px) {
    .team-section {
        padding-top: 42px;
    }
    .team-member h2 {
        font-size: 1.7rem;
    }
    .team-member h3 {
        font-size: 1.2rem;
    }
    .team-bottom-banner {
        height: auto;
        min-height: 120px;
        padding: 18px 0;
    }
    .team-bottom-banner-content {
        width: 92vw;
        font-size: 1rem;
        line-height: 1.5;
    }
}