/* 首页样式 */

body {
    background: white;
}

/* 轮播图区域 */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-60px) translateY(-60px);
    }
}

.hero-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-slide {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 400px;
}

.hero-slide.active {
    display: flex;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    flex: 1;
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 24px;
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero-detail {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 32px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #667eea;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.hero-icon svg {
    width: 150px;
    height: 150px;
    color: white;
}

.gaming-icon svg,
.global-icon svg {
    width: 140px;
    height: 140px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    transform: scale(1.3);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* 补货通知 */
.notice-section {
    background: #fef3c7;
    padding: 20px 40px;
}

.notice-container {
    max-width: 1200px;
    margin: 0 auto;
}

.notice-title {
    font-size: 18px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 12px;
}

.notice-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.notice-item {
    font-size: 14px;
    color: #92400e;
    padding: 8px 16px;
    background: white;
    border-radius: 6px;
}

/* 为什么选择我们 */
.features-section {
    padding: 80px 40px;
    background: #f8fafc;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.feature-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* 企业资质 */
.qualification-section {
    padding: 80px 40px;
    background: white;
    text-align: center;
}

.qualification-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #f8fafc;
    border-radius: 12px;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.qualification-note {
    margin-top: 32px;
    font-size: 14px;
    color: #64748b;
}

/* 服务客户 */
.clients-section {
    padding: 80px 40px;
    background: #f8fafc;
}

.clients-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.client-logo {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 用户评价 */
.testimonials-section {
    padding: 80px 40px;
    background: white;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: #f1f5f9;
    transform: translateY(-4px);
}

.testimonial-content {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 48px;
    color: #667eea;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

/* CTA 区域 */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: #667eea;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* 页脚 */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 40px 32px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-link.disabled {
    color: #64748b;
    cursor: not-allowed;
}

.footer-link.disabled:hover {
    color: #64748b;
}

.footer-text {
    color: #94a3b8;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 24px;
    text-align: center;
}

.copyright {
    color: #64748b;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-slide {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 20px;
    }

    .hero-icon {
        width: 200px;
        height: 200px;
    }

    .hero-icon svg {
        width: 100px;
        height: 100px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-detail {
        font-size: 14px;
    }

    .hero-icon {
        width: 150px;
        height: 150px;
    }

    .hero-icon svg {
        width: 80px;
        height: 80px;
    }

    .features-section,
    .qualification-section,
    .clients-section,
    .testimonials-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qualification-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .cta-title {
        font-size: 32px;
    }
}