/* 学习激励模块样式 */
.block12 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* 标题区域 */
.incentive-header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.title-container {
    position: relative;
    width: 436px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-icon {
    position: absolute;
    top: 43px;
}

.title-icon.left {
    left: 24px;
}

.title-icon.right {
    right: 24px;
}

.title-text {
    position: relative;
    text-align: center;
}

.subtitle {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.4;
    background: linear-gradient(180deg, rgba(174, 219, 255, 1) 0%, rgba(110, 191, 255, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 46px;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 900;
    white-space: nowrap;
}

.main-title {
    position: absolute;
    left: 97px;
    top: 31px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(72, 173, 251, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 56px;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 900;
    letter-spacing: 5.6px;
}

/* 主内容区域 */
.incentive-content {
    position: relative;
    width: 1200px;
    height: 566px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.content-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-decoration {
    width: 100%;
    height: 100%;
}

/* 中央角色图片 */
.character-section {
    position: absolute;
    left: 335px;
    top: 96px;
    z-index: 2;
}

.character-img {
    width: 520px;
    height: auto;
    object-fit: contain;
}

/* 左侧：就业激励 */
.incentive-left {
    position: relative;
    width: 341px;
    left: 48px;
    top: 58px;
    z-index: 3;
}

/* 右侧：作品激励 */
.incentive-right {
    position: relative;
    width: 341px;
    right: 48px;
    top: 58px;
    z-index: 3;
}

/* 区域标题 */
.section-title {
    background: var(--Linear, linear-gradient(100deg, #F0D197 11.78%, #FEF9ED 39.53%, #F0D197 69.36%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 32px;
    font-family: 'PingFang SC', sans-serif;
    font-weight: 600;
    letter-spacing: 3.2px;
    margin-bottom: 20px;
}

/* 区域描述 */
.section-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-family: 'PingFang SC', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* 信息项 */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.item-icon {
    width: 16px;
    height: 16px;
    margin-right: 17px;
    margin-top: 8px;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
}

.item-title {
   background: var(--Linear, linear-gradient(100deg, #F0D197 11.78%, #FEF9ED 39.53%, #F0D197 69.36%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 20px;
    font-family: 'PingFang SC', sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
}

.item-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-family: 'PingFang SC', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* 高亮文字 */
.highlight {
    color: #FFD000;
    font-weight: 400;
}

/* 底部注释 */
.notice-text {
    position: absolute;
    bottom: 25px;
    right: 48px;
    width: 510px;
    height: 28px;
    z-index: 3;
    display: flex;
    align-items: flex-start;
}

.notice-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-family: 'PingFang SC', sans-serif;
    font-weight: 400;
    margin-right: 8px;
    flex-shrink: 0;
}

.notice-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-family: 'PingFang SC', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 应用动画 */
.incentive-header {
    animation: fadeInUp 0.8s ease forwards;
}

.incentive-left {
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.incentive-right {
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.character-section {
    animation: scaleIn 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.info-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.info-item:nth-child(3) {
    animation-delay: 0.8s;
}

.info-item:nth-child(4) {
    animation-delay: 1.0s;
}

.info-item:nth-child(5) {
    animation-delay: 1.2s;
}

.notice-text {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1.4s;
    opacity: 0;
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .incentive-content {
        width: 100%;
        padding: 0 40px;
    }
    
    .incentive-left {
        left: 20px;
    }
    
    .incentive-right {
        right: 20px;
    }
    

}

@media (max-width: 1200px) {
    .incentive-content {
        flex-direction: column;
        height: auto;
        align-items: center;
    }
    
    .incentive-left,
    .incentive-right {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        max-width: 500px;
        margin-bottom: 40px;
    }
    
    .character-section {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        order: -1;
        margin-bottom: 40px;
    }
    
    .character-img {
        width: 350px;
        height: 365px;
    }
    
    .notice-text {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {

    
    .title-container {
        width: 350px;
        height: 80px;
    }
    
    .subtitle {
        font-size: 32px;
        left: -20px;
    }
    
    .main-title {
        font-size: 40px;
        left: 60px;
        top: 25px;
        letter-spacing: 3px;
    }
    
    .incentive-content {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .section-desc {
        font-size: 14px;
    }
    
    .item-title {
        font-size: 16px;
    }
    
    .item-text {
        font-size: 14px;
    }
    
    .character-img {
        width: 280px;
        height: 292px;
    }
    
    .notice-content {
        font-size: 9px;
    }
}

/* 交互效果 */
.info-item {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 5px;
    margin-left: -5px;
    border-radius: 8px;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.character-img {
    transition: transform 0.3s ease;
}

.character-img:hover {
    transform: scale(1.02);
}

/* 滚动触发动画 */
@media (prefers-reduced-motion: no-preference) {
    .block12 {
        scroll-margin-top: 100px;
    }
    
    .block12.in-view .incentive-left,
    .block12.in-view .incentive-right,
    .block12.in-view .character-section,
    .block12.in-view .info-item,
    .block12.in-view .notice-text {
        opacity: 1;
    }
}

/* 无障碍支持 */
@media (prefers-reduced-motion: reduce) {
    .incentive-left,
    .incentive-right,
    .character-section,
    .info-item,
    .notice-text {
        animation: none;
        opacity: 1;
    }
    
    .info-item:hover {
        transform: none;
    }
    
    .character-img:hover {
        transform: none;
    }
}