/* 功能展示区域样式 */

/* 为每个功能区域添加不同的浅色背景 */
.jslist .warp1200 {
    width: min(96vw, 1400px);
    margin: 0 auto;
    padding: 0 10px;
}
.jslist > div:nth-child(1) {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    padding: 80px 0;
}

.jslist > div:nth-child(2) {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(219, 39, 119, 0.08) 100%);
    padding: 80px 0;
}

.jslist > div:nth-child(3) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(37, 99, 235, 0.08) 100%);
    padding: 80px 0;
}

.jslist > div:nth-child(4) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.08) 100%);
    padding: 80px 0;
}

.jslist > div:nth-child(5) {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(217, 119, 6, 0.08) 100%);
    padding: 80px 0;
}

/* 图片样式 - 移除跳动动画 */
.jslist .center img {
    display: block;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* 保障网格内图片始终可见、自适应 */
.jslist .am-g img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
}

/* 增强文字区域样式 */
.jslist h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.jslist h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0be6e6, #25bcf1);
    border-radius: 2px;
}

.jslist p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 16px;
}

/* 响应式设计 */
@media only screen and (max-width: 1024px) {
    .jslist > div {
        padding: 60px 0 !important;
    }
}

@media only screen and (max-width: 640px) {
    .jslist > div {
        padding: 40px 0 !important;
    }
    
    .jslist .center img {
        margin: 30px 0;
    }
    
    @keyframes featureBounce {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }
}
