/* 人才价值提升页面专用样式 */

/* 主横幅区域 */
.talent-enhancement-hero {
    background: url('../image/talent-evaluate/talimpback.png') center/cover no-repeat;
 
    background-size: 100% 100%;
    padding: 0 8vw;
    height: 43.2vh;
    position: relative;
}

/* 移除原有的网格背景，使用图片背景 */
.hero-title-box{
    display: flex;
    align-items: flex-end;
}
.bannerTextImg{
    width: 7vw;

}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
    min-height: 50vh;
  
    max-width: 100%;
    margin: 0 auto;
    gap: 4vw;
}

.hero-left {
    flex: 1;
    color: white;
    position: relative;
    margin-bottom: 15vh;
}

.hero-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 1vh;
}

.star {
    font-size: 1.5vw;
    color: #ffd700;
    animation: twinkle 2s infinite;
}

.star:nth-child(2) {
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 2vw;
    font-weight: 700;
    margin: 0 0 0 11vh;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1vh;
}

.hero-arrows {
    display: flex;
    gap: 12px;
    margin: 1vh 0;
}

.arrow {
    font-size: 1.5vw;
    color: #ffd700;
    animation: slideRight 1.5s infinite;
}

.arrow:nth-child(2) {
    animation-delay: 0.3s;
}

.arrow:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideRight {
    0% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.7; }
    100% { transform: translateX(0); opacity: 1; }
}

.hero-subtitle {
    font-size: 1.5vw;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 300;
    margin-left: 11vh;
    margin-top: 1vh;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
    align-self: flex-end;
}

.hero-graphics {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 数据图表 */
.chart-container {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 200px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.chart-screen {
    padding: 15px;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: space-around;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, #4CAF50, #8BC34A);
    border-radius: 2px 2px 0 0;
    animation: growUp 2s ease-out;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height, 60%); }
}

/* 云图标 */
.cloud-icon {
    position: absolute;
    top: 20%;
    right: 20%;
    font-size: 3vw;
    color: rgba(255, 255, 255, 0.8);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* 笔记本电脑 */
.laptop-icon {
    position: absolute;
    bottom: 20%;
    right: 30%;
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.laptop-screen {
    width: 100%;
    height: 70%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin: 8px;
    position: relative;
    overflow: hidden;
}

.laptop-chart {
    width: 100%;
    height: 100%;
    position: relative;
}

.line-chart {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #2196F3, #FF9800);
    border-radius: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* 机器人图标 */
.robot-icon {
    position: absolute;
    bottom: 10%;
    left: 20%;
    font-size: 2.5vw;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 连接线 */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    height: 1px;
    animation: flow 3s linear infinite;
}

.line-1 {
    top: 30%;
    left: 0;
    right: 0;
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    left: 0;
    right: 0;
    animation-delay: 1s;
}

.line-3 {
    top: 80%;
    left: 0;
    right: 0;
    animation-delay: 2s;
}

@keyframes flow {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* 人才价值提升通道区域 */
.talent-enhancement-channels {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 8vh 10vw;
    position: relative;
    min-height: 50vh;
    /* background-image: url('../image/talent-improve/talimpback2.png'); */
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.talent-enhancement-channels::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="city" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 0 20 L 5 15 L 10 18 L 15 12 L 20 20" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23city)"/></svg>'); */
    opacity: 0.3;
    z-index: 1;
}

.talent-enhancement-channels::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30vh;
    background-image: url('../image/talent-evaluate/talimpback2.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    /* z-index: 2; */
    opacity: 0.8;
}

.channels-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6vh;
    position: relative;
    z-index: 2;
}

.channels-icon {
    font-size: 2vw;
    margin-right: 1vw;
    color: #1976d2;
}

.channels-title {
    margin-left: 128px;
    margin-top: 52px;
    font-size: 1.3vw;
    font-weight: 700;
    color: #333;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3vw;
    position: relative;
    z-index: 2;
}

.channel-card {
    background: url('../image/talent-improve/tstdlogoback.png') center/cover no-repeat;
    border-radius: 1vw;
    padding: 3vh 2vw;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.channel-card .card-title {
    color: black;
    text-shadow: none;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.channel-card:hover .card-icon {
    transform: scale(1.1);
}

.channel-card:hover .card-button {
    opacity: 1;
    visibility: visible;
}

.card-icon {
    margin-bottom: 2vh;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.card-logo {
    width: 6vw;
    height: 6vw;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.card-title {
    font-size: 1.4vw;
    font-weight: 600;
    color: #333;
    margin: 0;
    margin-top: 20px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.card-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 3;
}


.card-button:hover {
    transform: translateX(-50%) translateY(-2px) scale(1.1);
}

.button-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* 职业技能培训图标 */
.icon-folder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.folder-chart {
    position: relative;
    width: 40px;
    height: 40px;
}

.pie-chart {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: conic-gradient(#fff 0deg 120deg, rgba(255,255,255,0.3) 120deg 360deg);
    position: absolute;
    top: 0;
    left: 0;
}

.bar-chart-mini {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15px;
    height: 20px;
    background: linear-gradient(to top, #fff, rgba(255,255,255,0.7));
    border-radius: 2px;
}

/* 学历提升培训图标 */
.icon-money {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800, #FFC107);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.money-bag {
    font-size: 2.5vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.money-chart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 15px;
    background: linear-gradient(to top, #fff, rgba(255,255,255,0.7));
    border-radius: 2px;
}

/* 员工培训图标 */
.icon-gear {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9C27B0, #E91E63);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.gear-icon {
    font-size: 2.5vw;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.trend-line {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 25px;
    height: 2px;
    background: linear-gradient(45deg, #fff, rgba(255,255,255,0.7));
    border-radius: 1px;
}

.trend-line::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #fff;
}

/* 管理咨询图标 */
.icon-documents {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #607D8B, #90A4AE);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(96, 125, 139, 0.3);
}

.document-1 {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 25px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.document-2 {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 25px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.person-icon, .diamond-icon {
    font-size: 1.2vw;
}

/* 内容 */
.main-content {
   left: 260px;
    top: 662px;
    width: 1200px;
    height: auto;
    padding-bottom: 15vh;
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    box-shadow: -3px 7px 19px  rgba(0, 0, 0, 0.14);
}
.main-content-top {
    margin-left: 128px;
    margin-right: 128px;
    font-size: 1vw;
    color: rgba(42, 130, 228, 1);
    line-height: 1.6;
    margin-top: 20px;
}
.main-content-p {
    margin-left: 128px;
    margin-right: 128px;
    font-size: 1vw;
    color: rgba(128, 128, 128, 1);
    line-height: 1.6;
    margin-top: 20px;
}
.main-content-img {
    display: block;
    margin: 20px 128px 0 128px;
    width: 100%;
    max-width: 82%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.talent-back-img{
    display: block;
    position: absolute;
    left: 75%;
    top: 0;
    z-index: -2;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .talent-enhancement-hero {
        min-height: 50vh;
        padding: 0 4vw;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 4vh;
    }
    
    .hero-title {
        font-size: 8vw;
    }
    
    .hero-subtitle {
        font-size: 4vw;
    }
    
    .star {
        font-size: 4vw;
    }
    
    .arrow {
        font-size: 4vw;
    }
    
    .hero-right {
        height: 30vh;
    }
    
    .chart-container {
        width: 150px;
        height: 90px;
    }
    
    .cloud-icon {
        font-size: 6vw;
    }
    
    .laptop-icon {
        width: 80px;
        height: 60px;
    }
    
    .robot-icon {
        font-size: 5vw;
    }
    
    .talent-enhancement-channels {
        padding: 6vh 4vw;
    }
    
    .channels-title {
        margin-left: 20px;
        font-size: 4.5vw;
    }
    .main-content-top{
        font-size: 3vw;
        margin-left: 20px;
        margin-right: 20px;
    }
    .main-content-img{
        margin:30px ;
    }
    .main-content-p{
        font-size: 3vw;
        margin-left: 20px;
        margin-right: 20px;
    }
    .channels-icon {
        font-size: 4vw;
    }
    .hero-left {
        margin-bottom: 0;
    }
    
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
    }
    
    .channel-card {
        min-height: 150px;
        height: 150px;
        padding: 4vh 3vw;
    }
    
    .card-title {
        font-size: 3vw;
        margin-top: 15px;
    }
    
    .card-logo {
        width: 10vw;
        height: 10vw;
    }
    
    .card-button {
        padding: 6px;
        bottom: 15px;
        opacity: 0;
        visibility: hidden;
    }
    
    .button-icon {
        width: 70px;
        height: 70px;
    }
    
    .icon-folder,
    .icon-money,
    .icon-gear,
    .icon-documents {
        width: 60px;
        height: 60px;
    }
    
    .person-icon, .diamond-icon {
        font-size: 3vw;
    }
    
    .channel-card:hover .card-button {
        opacity: 1;
        visibility: visible;
    }
    .talent-back-img{
        display: none;
    }
}

@media (max-width: 480px) {
    .channels-grid {
        grid-template-columns: 1fr;
        gap: 3vh;
    }
    
    .channel-card {
        min-height: 120px;
        height: 120px;
        padding: 3vh 4vw;
    }
    
    .card-title {
        font-size: 4vw;
        margin-top: 10px;
    }
    
    .card-logo {
        width: 15vw;
        height: 15vw;
    }
    
    .card-button {
        padding: 5px;
        bottom: 10px;
        opacity: 0;
        visibility: hidden;
    }
    
    .button-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-folder,
    .icon-money,
    .icon-gear,
    .icon-documents {
        width: 50px;
        height: 50px;
    }
    
    .person-icon, .diamond-icon {
        font-size: 4vw;
    }
    
    .channel-card:hover .card-button {
        opacity: 1;
        visibility: visible;
    }
    .talent-back-img{
        display: none;
    }
}
