/* Banner样式 */
.talent-banner {
    height: 400px;
    background: url('/image/Talent/banner.png') no-repeat center;
    background-size: cover;
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
   
}

.talent-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 600;
  
}

.banner-content p {
    font-size: 40px;
    opacity: 0.9;
}

/* 内容部分 */
.talent-content {
    padding: 80px 200px;
    background: #fff;
}

.content-container {
    max-width: 1440px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.content-text {
    flex: 1;
}
span {
    color: #DA251C;
}

.content-text p {
    font-size: 18px;
    text-align:center;
    color: #666666;
   
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-icon {
    width: 21.99px;
    height: 23.98px;
    flex-shrink: 0;
}

.content-icon img {
    width: 100%;
    height: auto;
}

/* 响应式适配 */
@media (max-width: 1440px) {
    .talent-content {
        padding: 80px 100px;
    }
}

@media (max-width: 1200px) {
    .content-container {
        gap: 40px;
    }
    
    .content-icon {
        width: 21.99px;
    }
}

@media (max-width: 992px) {
    .talent-content {
        padding: 60px 40px;
    }
    
    .content-container {
       
        gap: 34px;
    }
    
    .content-icon {
        width: 21.99px;
    }
}

@media (max-width: 768px) {
    .talent-banner {
        height: 300px;
        margin-top: 60px;
    }

    .banner-content h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 18px;
    }

    .talent-content {
        padding: 40px 20px;
    }

    .content-text p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .content-icon {
        width: 21.99px;
    }
}

@media (max-width: 576px) {
    .talent-banner {
        height: 200px;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

/* 培训中心样式 */
.training-center {
    padding: 80px 200px;
    background: #F8F8F8;
}

.training-container {
    max-width: 1440px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.header-content p {
    color: #999999 !important;
}

.training-item {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.item-image {
    width: 100%;
    height: 270px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-content {
    padding: 32px;
    text-align: center;
}

.item-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.item-content .en-title {
    font-size: 16px;
    color: #999;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.item-content .desc {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
    margin-top: 32px;
}

.training-item:hover img {
    transform: scale(1.05);
}

/* 响应式调整 */
@media (max-width: 1440px) {
    .training-center {
        padding: 80px 100px;
    }
}

@media (max-width: 1200px) {
    .training-container {
        gap: 24px;
    }
    
    .item-image {
        height: 200px;
    }
    
    .item-content {
        padding: 24px;
    }
}

@media (max-width: 992px) {
    .training-center {
        padding: 60px 40px;
    }
    
    .training-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .training-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .item-content h3 {
        font-size: 20px;
    }
    
    .item-content .en-title {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .item-content .desc {
        font-size: 14px;
    }
} 