/* 团队页面简单样式 */
body{
   max-width: 100vw !important;
   overflow-x: hidden;
}
.main-content {
    background-color: #f8f9fa;
}

.breadcrumb-nav {
    cursor: pointer;
    padding: 10px 0;
    color: #666;
    font-size: 14px;
}

.breadcrumb-item {
    color: #666;
    font-size: 14px;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #666;
}

.breadcrumb-item:last-child {
    color: #38a660;
    cursor: pointer;
}

.content {
    background: white;
    padding: 30px 100px;

}



.level-row {
    margin-bottom: 25px;
}

.content p {
    line-height: 1.8;
    margin-bottom: 0;
}

.level-name {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
}

.member-list {
    color: #666;
    font-size: 15px;
    font-family: SourceHanSansSC-regular;   
}

.member-item {
    margin-right: 20px;
    display: inline-block;
}

/* 团队结构样式 */
.team-structure {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* 级别组样式 */
.level-group {
    margin-bottom: 40px;
    padding: 25px;
    border-left: 4px solid #28a745;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.level-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.1);
}

.level-title {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.level-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: #28a745;
}

/* 人员列表样式 */
.personnel-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.person-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.person-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.1), transparent);
    transition: left 0.5s ease;
}

.person-item:hover {
    border-color: #28a745;
    color: #28a745;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.2);
}

.person-item:hover::before {
    left: 100%;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .team-structure {
        padding: 20px;
        margin: 20px 0;
    }
    .content{
        padding: 10px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .level-group {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .level-title {
        font-size: 20px;
    }
    
    .personnel-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .person-item {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .team-structure {
        padding: 15px;
    }
    
    .personnel-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .level-title {
        font-size: 18px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.level-group {
    animation: fadeInUp 0.6s ease forwards;
}

.level-group:nth-child(2) { animation-delay: 0.1s; }
.level-group:nth-child(3) { animation-delay: 0.2s; }
.level-group:nth-child(4) { animation-delay: 0.3s; }
.level-group:nth-child(5) { animation-delay: 0.4s; }
.level-group:nth-child(6) { animation-delay: 0.5s; }
.level-group:nth-child(7) { animation-delay: 0.6s; }
