/* 运营商授权资质展示样式 */
.operator-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.operator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://pic-bucket.jinaoyun.cn/haokajia/images/pattern.svg);
    opacity: 0.05;
    z-index: 0;
}

.operator-section .container {
    position: relative;
    z-index: 1;
}

.operator-title {
    text-align: center;
    margin-bottom: 50px;
}

.operator-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.operator-title p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.operator-carousel {
    position: relative;
    padding: 20px 0;
}

.operator-track {
    display: flex;
    transition: transform 0.5s ease;
}

.operator-item {
    min-width: 280px;
    margin: 0 15px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.operator-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.operator-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(76, 201, 240, 0.1));
}

.operator-logo img {
    max-width: 80px;
    max-height: 80px;
}

.operator-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.operator-desc {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.certification-badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #4361ee, #4cc9f0);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.operator-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.operator-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.operator-control:hover {
    background: var(--primary-color);
    color: white;
}

.operator-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.operator-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.operator-indicator.active {
    background: var(--primary-color);
    width: 20px;
    border-radius: 5px;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .operator-item {
        min-width: 240px;
    }
}

@media (max-width: 767px) {
    .operator-section {
        padding: 60px 0;
    }
    
    .operator-title h2 {
        font-size: 2rem;
    }
    
    .operator-item {
        min-width: 220px;
    }
}

/* 滚动动画 */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-295px * 4));
    }
}

.auto-scroll .operator-track {
    animation: scroll 20s linear infinite;
    width: calc(295px * 8);
}

.auto-scroll:hover .operator-track {
    animation-play-state: paused;
}
