/* 团队介绍页面样式 */

/* 横幅 */
.banner {
    background: linear-gradient(135deg, rgba(0, 120, 255, 0.9) 0%, rgba(0, 86, 179, 0.9) 100%),
                url('../images/team-banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 160px 0 100px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* 背景装饰元素 */
.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
    z-index: 1;
}

/* 移除过厚的背景覆盖 */
.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,120,255,0.4) 0%, rgba(0,86,179,0.4) 100%);
    z-index: 2;
}

.banner .container {
    position: relative;
    z-index: 3;
}

/* 背景动画 */
@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.banner h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* 团队内容 */
.team-content {
    padding: 100px 0;
    background-color: #fff;
}

.team-intro {
    margin-bottom: 100px;
    text-align: center;
}

.team-intro h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.team-intro p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-members {
    margin-bottom: 100px;
}

.team-members h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.member-item {
    background-color: #f0f2f5;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.member-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.member-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.member-item p:first-of-type {
    font-size: 14px;
    color: #0078FF;
    margin-bottom: 15px;
}

.member-item p:last-of-type {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.company-culture {
    background-color: #f0f2f5;
    padding: 60px;
    border-radius: 8px;
}

.company-culture h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.culture-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.culture-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.culture-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .banner h2 {
        font-size: 36px;
    }
    
    .banner p {
        font-size: 16px;
    }
    
    .team-intro h3,
    .team-members h3,
    .company-culture h3 {
        font-size: 24px;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .company-culture {
        padding: 40px;
    }
}