/* 团队页面样式 */

/* 团队成员卡片样式 */
.team-member {
    position: relative;
    cursor: pointer;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(159, 87, 72, 0.1);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(159, 87, 72, 0.15);
    border-color: rgba(159, 87, 72, 0.2);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9F5748 0%, #d4926b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-photo {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 280px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95) contrast(1.05);
    background: #f8f9fa;
}

.team-member:hover .member-photo img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

/* 成员覆盖层样式 */
.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(159, 87, 72, 0.9) 0%, 
        rgba(212, 146, 107, 0.8) 50%,
        rgba(159, 87, 72, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px 20px 0 0;
    backdrop-filter: blur(2px);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-action {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-member:hover .member-action {
    transform: translateY(0);
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.95);
    color: #9F5748;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.learn-more-btn:hover::before {
    left: 100%;
}

.learn-more-btn:hover {
    background: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(159, 87, 72, 0.25);
    border-color: rgba(159, 87, 72, 0.2);
}

.learn-more-btn::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.learn-more-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* 成员信息样式 */
.member-info {
    padding: 25px 25px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(159, 87, 72, 0.2), transparent);
}

.member-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.member-info h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9F5748, #d4926b);
    transition: width 0.3s ease;
}

.team-member:hover .member-info h3::after {
    width: 100%;
}

.member-info .position {
    font-size: 16px;
    color: #9F5748;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(159, 87, 72, 0.1), rgba(212, 146, 107, 0.1));
    border-radius: 20px;
    border-left: 3px solid #9F5748;
    display: inline-block;
}

.member-info .description {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #9F5748;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(159, 87, 72, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9F5748, #d4926b);
    transition: left 0.3s ease;
    z-index: -1;
}

.skill-tag:hover::before {
    left: 0;
}

.skill-tag:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(159, 87, 72, 0.3);
    border-color: transparent;
}

/* 团队网格布局 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
    padding: 0 10px;
}



/* 团队区域整体样式优化 */
.core-team {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

.core-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4926b" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%239F5748" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23d4926b" opacity="0.03"/><circle cx="10" cy="50" r="0.5" fill="%239F5748" opacity="0.03"/><circle cx="90" cy="30" r="0.5" fill="%23d4926b" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.core-team .container {
    position: relative;
    z-index: 1;
}

.core-team h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.core-team h2::before {
    content: '👥';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    opacity: 0.7;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9F5748 0%, #d4926b 50%, #9F5748 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 8px;
    background: #9F5748;
    border-radius: 4px;
}

/* 模态框成员详情样式 */
.member-detail-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.member-detail-photo {
    flex-shrink: 0;
    width: 200px;
}

.member-detail-photo img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.member-detail-info {
    flex: 1;
}

.member-detail-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.member-detail-info .position {
    font-size: 18px;
    color: #9F5748;
    font-weight: 500;
    margin-bottom: 20px;
}

.member-detail-info .description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.skills-container {
    margin-bottom: 25px;
}

.skills-container .skill-tag {
    padding: 6px 15px;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.member-contact {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #9F5748;
}

.member-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.member-contact .contact-item:last-child {
    margin-bottom: 0;
}

.member-contact .contact-item i {
    width: 20px;
    color: #9F5748;
    font-size: 16px;
}

/* 添加成员卡片编号装饰 */
.team-member::after {
    content: attr(data-member-index);
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(159, 87, 72, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.team-member:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* 添加卡片状态指示器 */
.team-member .status-indicator {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* 改善页面头部样式 */
.page-header {
    background: linear-gradient(135deg, #9F5748 0%, #d4926b 50%, #9F5748 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad1)"/><circle cx="800" cy="300" r="150" fill="url(%23grad1)"/><circle cx="300" cy="700" r="120" fill="url(%23grad1)"/><circle cx="700" cy="800" r="80" fill="url(%23grad1)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-header h1::after {
    content: '✨';
    position: absolute;
    right: -60px;
    top: -10px;
    font-size: 24px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .core-team h2::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .core-team {
        padding: 80px 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        padding: 0 5px;
    }
    
    .member-photo {
        height: 240px;
    }
    
    .member-info {
        padding: 20px 20px 25px;
    }
    
    .member-info h3 {
        font-size: 22px;
    }
    
    .member-info .position {
        font-size: 15px;
    }
    
    .learn-more-btn {
        font-size: 15px;
        padding: 12px 24px;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header h1::after {
        right: -40px;
        font-size: 20px;
    }
    
    .core-team h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .member-photo {
        height: 220px;
    }
    
    .member-info {
        padding: 18px 18px 22px;
    }
    
    .member-info h3 {
        font-size: 20px;
    }
    
    .member-info .position {
        font-size: 14px;
        padding: 5px 10px;
    }
    
    .member-info .description {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .skill-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .learn-more-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .core-team h2 {
        font-size: 28px;
    }
    
    /* 技术团队响应式 */
    .tech-departments {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .department {
        padding: 20px;
    }
    
    .dept-header {
        gap: 15px;
    }
    
    .dept-icon {
        width: 50px;
        height: 50px;
    }
    
    .dept-icon i {
        font-size: 20px;
    }
    
    .dept-info h3 {
        font-size: 18px;
    }
    
    /* 人才培养响应式 */
    .training-programs {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .program-card {
        padding: 30px 20px;
    }
    
    .program-icon {
        width: 60px;
        height: 60px;
    }
    
    .program-icon i {
        font-size: 24px;
    }
    
    .program-card h3 {
        font-size: 20px;
    }
    
    /* 加入我们响应式 */
    .join-content {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .join-text h2 {
        font-size: 28px;
    }
    
    .join-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* 添加加载动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-member {
    animation: fadeInUp 0.6s ease-out;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }

/* 添加平滑滚动效果 */
html {
    scroll-behavior: smooth;
}

/* 提升可访问性 */
.team-member:focus {
    outline: 3px solid rgba(159, 87, 72, 0.5);
    outline-offset: 2px;
}

.learn-more-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* ============================================
   技术团队样式
   ============================================ */
.technical-team {
    padding: 80px 0;
    background: white;
}

.technical-team h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tech-departments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.department {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(159, 87, 72, 0.1);
    position: relative;
    overflow: hidden;
}

.department::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9F5748 0%, #d4926b 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.department:hover::before {
    transform: scaleX(1);
}

.department:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(159, 87, 72, 0.15);
    border-color: rgba(159, 87, 72, 0.2);
}

.dept-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.dept-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9F5748 0%, #d4926b 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dept-icon i {
    font-size: 24px;
    color: white;
}

.dept-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.dept-info p {
    font-size: 14px;
    color: #9F5748;
    font-weight: 500;
    margin: 0;
}

.dept-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dept-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dept-skills span {
    padding: 6px 12px;
    background: #f8f9fa;
    color: #9F5748;
    font-size: 12px;
    font-weight: 500;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.dept-skills span:hover {
    background: #9F5748;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   人才培养样式
   ============================================ */
.talent-development {
    padding: 80px 0;
    background: #f8f9fa;
}

.talent-development h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.training-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(159, 87, 72, 0.1);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #9F5748, #d4926b, #9F5748);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(159, 87, 72, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9F5748 0%, #d4926b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.program-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(159, 87, 72, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.1); opacity: 0; }
}

.program-icon i {
    font-size: 32px;
    color: white;
}

.program-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.program-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
}

.feature i {
    color: #4CAF50;
    font-size: 14px;
}

.feature span {
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   加入我们样式
   ============================================ */
.join-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

.join-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4926b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.join-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.join-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.join-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.join-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(159, 87, 72, 0.1);
}

.benefit i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9F5748 0%, #d4926b 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit span {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #9F5748 0%, #d4926b 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(159, 87, 72, 0.3);
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(159, 87, 72, 0.4);
    text-decoration: none;
    color: white;
}

.join-image {
    text-align: center;
}

.join-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.join-image img:hover {
    transform: scale(1.05);
}

/* 团队统计样式 */
.team-stats {
    padding: 60px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 48px;
    color: #9F5748;
}

.stat-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* 核心团队区域样式 */
.core-team {
    padding: 80px 0;
    background: white;
}

.core-team h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #9F5748 0%, #d4926b 100%);
    margin: 0 auto 40px;
    border-radius: 2px;
}
