/* ========================================
   Team Page Styles - 团队页面样式
   ======================================== */

/* ========================================
   团队介绍区域
   ======================================== */
.team-intro-area {
    padding: 80px 0;
    background: #fff;
}

.team-intro-area .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.team-intro-area .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 15px;
}

.team-intro-area .section-title h2 span {
    color: #0078d4;
}

.team-intro-area .section-title p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 团队内容展示 */
.team-content-box {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.team-content-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid #0078d4;
    display: inline-block;
}

.team-content-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.team-content-box img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

/* ========================================
   团队特色区域
   ======================================== */
.team-features-area {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-features-area .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.team-features-area .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #232323;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #0078d4;
}

.feature-card .icon-box {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #e8f4fc;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #0078d4;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background: #0078d4;
    color: #fff;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   团队优势区域
   ======================================== */
.team-advantage-area {
    padding: 80px 0;
    background: #fff;
}

.advantage-content {
    padding-right: 40px;
}

.advantage-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 25px;
}

.advantage-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.advantage-list li:hover {
    background: #e8f4fc;
}

.advantage-list li .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #0078d4;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.advantage-list li .content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 5px;
}

.advantage-list li .content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.advantage-image {
    position: relative;
}

.advantage-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.advantage-image .floating-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #0078d4;
    color: #fff;
    padding: 30px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,120,212,0.3);
}

.advantage-image .floating-box h3 {
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.advantage-image .floating-box span {
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

/* ========================================
   团队理念区域
   ======================================== */
.team-philosophy-area {
    padding: 80px 0;
    background: #f8f9fa;
}

.philosophy-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    border-top: 4px solid #0078d4;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.philosophy-card .number {
    font-size: 48px;
    font-weight: 700;
    color: #e8f4fc;
    line-height: 1;
    margin-bottom: 15px;
}

.philosophy-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   团队CTA区域
   ======================================== */
.team-cta-area {
    padding: 80px 0;
    background: #0078d4;
    text-align: center;
}

.team-cta-area h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.team-cta-area p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-cta-area .btn-cta {
    display: inline-block;
    background: #fff;
    color: #0078d4;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.team-cta-area .btn-cta:hover {
    background: transparent;
    color: #fff;
}

/* ========================================
   响应式适配
   ======================================== */
@media (max-width: 991px) {
    .team-content-box {
        padding: 30px;
    }
    
    .advantage-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .advantage-image .floating-box {
        right: 20px;
        bottom: -20px;
        padding: 20px 25px;
    }
    
    .advantage-image .floating-box h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .team-intro-area,
    .team-features-area,
    .team-advantage-area,
    .team-philosophy-area,
    .team-cta-area {
        padding: 60px 0;
    }
    
    .team-intro-area .section-title h2,
    .advantage-content h2 {
        font-size: 26px;
    }
    
    .team-features-area .section-title h2,
    .team-cta-area h2 {
        font-size: 24px;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .philosophy-card {
        margin-bottom: 20px;
    }
    
    .advantage-list li {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .team-content-box {
        padding: 20px;
    }
    
    .team-content-box h2 {
        font-size: 22px;
    }
    
    .feature-card .icon-box {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 28px;
    }
    
    .advantage-image .floating-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }
}
