/* itSupport index.css */

.itSupport-main {
    min-width: 1200px;
}

.swiper {
    width: 100%;
    height: 400px;
}

/* IT支持内容区域样式 */
.itSupport-cont {
    width: 1200px;
    margin: 50px auto;
    min-height: 400px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 25%, #f5f7ff 50%, #faf8ff 75%, #ffffff 100%);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 8px 40px rgba(234, 63, 40, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(234, 63, 40, 0.1);
    position: relative;
    overflow: hidden;
}

.itSupport-cont::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ea3f28, #ff6b4a, #ff8f70, #ea3f28);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.itSupport-cont::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234, 63, 40, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.itSupport-title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 30px;
}

.itSupport-title::before,
.itSupport-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ea3f28);
}

.itSupport-title::before {
    right: 100%;
}

.itSupport-title::after {
    left: 100%;
    background: linear-gradient(90deg, #ea3f28, transparent);
}

.itSupport-content {
    font-size: 16px;
    line-height: 2.2;
    color: #444;
    position: relative;
    z-index: 1;
}

.itSupport-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}

/* 装饰元素 */
.itSupport-cont .decoration-1 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(234, 63, 40, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.itSupport-cont .decoration-2 {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 40px;
    height: 40px;
    background: rgba(234, 63, 40, 0.05);
    border-radius: 50%;
    pointer-events: none;
}
