.footer-top-div-qq-line {
    width: 100%;
    height: 5px;
    overflow: hidden;
    z-index: 1;
    background: -webkit-linear-gradient(left, rgba(15, 166, 234, 1) 0, rgba(89, 204, 24, 1) 10%, rgba(15, 166, 234, 1) 60%, rgba(15, 166, 234, 1) 100%);
    background: -moz-linear-gradient(left,rgba(15,166,234,1) 0,rgba(89,204,24,1) 10%,rgba(15,166,234,1) 60%,rgba(15,166,234,1) 100%);
    background: -ms-linear-gradient(left,rgba(15,166,234,1) 0,rgba(89,204,24,1) 10%,rgba(15,166,234,1) 60%,rgba(15,166,234,1) 100%);
    background: linear-gradient(left,rgba(15,166,234,1) 0,rgba(89,204,24,1) 10%,rgba(15,166,234,1) 60%,rgba(15,166,234,1) 100%);
}


.page-hero-a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(168deg, rgb(135 138 255), rgb(139 95 255), rgb(50 110 255), rgb(156 167 255));
    padding: 20px;
}

.page-hero-b {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(56, 189, 248), rgb(59, 130, 246), rgb(79, 70, 229));
    padding: 20px;
}

.page-hero-c {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(16, 185, 129), rgb(20, 184, 166), rgb(6, 182, 212));
    padding: 20px;
}

.page-hero-d {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(249, 115, 22), rgb(234, 88, 12), rgb(225, 29, 72));
    padding: 20px;
}

.page-hero-e {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(168, 85, 247), rgb(139, 92, 246), rgb(217, 70, 239));
    padding: 20px;
}

.header-top-bg-01 {
    width: 100%;
    padding: 12px 4px;
    background: linear-gradient(90deg, #6139f6 0.126%, #524af1 44.067%, #2a7af2 97.163%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* Pixso 风格轮播资源区 */
.resource-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: #07032b;
    z-index: 1;
}

.resource-section::after {
    content: '';
    display: block;
    position: absolute;
    background: url(/img/ui_demo/resource-bg.png) center center/cover no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.8;
}

.resource-tab {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 0;
    max-width: 800px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.resource-tab input[type="radio"] {
    display: none;
}

.resource-tab .tab-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 15px;
}

.resource-tab .tab-title:hover {
    color: rgba(255,255,255,0.8);
}

.resource-tab input[type="radio"]:checked + .tab-title {
    color: #fff;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.resource-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.resource-tab-content.active {
    display: block;
    opacity: 1;
}

.resource-box {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
}

.resource-row {
    display: flex;
    will-change: transform;
    margin-bottom: 24px;
}

.resource-box:hover .resource-row {
    animation-play-state: paused;
}

.resource-item {
    border-radius: 20px;
    width: 420px;
    height: 252px;
    overflow: hidden;
    margin: 0 12px;
    text-align: center;
    background-color: #e7e8ea;
    will-change: transform;
    transition: transform .4s ease-out;
    flex-shrink: 0;
    display: block;
}

.resource-item--img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.resource-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.to-left {
    width: calc(420px * 12 + 12 * 24px);
    animation: left-effect 30s linear infinite;
}

.to-right {
    width: calc(420px * 14 + 14 * 24px);
    animation: right-effect 35s linear infinite;
}

@keyframes left-effect {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

@keyframes right-effect {
    0% { transform: translateX(calc(-50% - 12px)); }
    100% { transform: translateX(0); }
}

@media(max-width: 768px) {
    .resource-item {
        width: 260px;
        height: 156px;
        margin: 0 8px;
        border-radius: 12px;
    }
    .to-left {
        width: calc(260px * 12 + 12 * 16px);
    }
    .to-right {
        width: calc(260px * 14 + 14 * 16px);
    }
    @keyframes left-effect {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 8px)); }
    }
    @keyframes right-effect {
        0% { transform: translateX(calc(-50% - 8px)); }
        100% { transform: translateX(0); }
    }
}