/* 雷火电竞 - 主样式文件 */
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d6a4f;
    --secondary-color: #1b4332;
    --accent-color: #40916c;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --light-bg: #f5f5f5;
    --gradient-primary: linear-gradient(135deg, #2d6a4f 0%, #52b788 100%);
    --gradient-dark: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.9;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.con-q536 {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.hea-j284 {
    background: var(--gradient-dark);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hea-h101 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.log-s835 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.log-f897 {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255,107,53,0.5);
}

.log-i582 {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.nav-o628 {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Banner */
.her-r753 {
    background: var(--gradient-dark);
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.her-r753::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

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

.her-n315 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.her-v447 {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text h1 span {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255,107,53,0.5);
}

.hero-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.her-a399 {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.her-a399:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.5);
}

.her-r543 {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Section Common */
.sec-l625 {
    padding: 80px 0;
}

.sec-l967 {
    background: var(--light-bg);
}

.sec-n346 {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--light-text);
    font-size: 16px;
    max-width: 600px;
    margin: 20px auto 0;
}

/* About Section */
.abo-p743 {
    display: flex;
    gap: 60px;
    align-items: center;
}

.abo-b529 {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-text);
    text-align: justify;
}

.abo-t181 {
    flex: 1;
    position: relative;
}

.abo-t181::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Services Grid */
.ser-u802 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ser-i587 {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 13px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ser-i587:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.ser-l266 {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
}

.service-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.8;
}

/* Events Section */
.eve-f472 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.eve-t615 {
    background: var(--white);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}

.eve-t615:hover {
    transform: translateY(-5px);
}

.eve-b503 {
    height: 200px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-color);
}

.eve-z901 {
    padding: 25px;
}

.event-content h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.event-content p {
    color: var(--light-text);
    font-size: 14px;
}

/* Advantages Section */
.adv-y642 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.adv-q804 {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--white);
    border-radius: 13px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.adv-k944 {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--gradient-primary);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.advantage-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.advantage-content p {
    color: var(--light-text);
    font-size: 14px;
}

/* News Section */
.new-h621 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.new-r648 {
    background: var(--white);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-r648:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.new-t885 {
    height: 180px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--primary-color);
}

.new-u797 {
    padding: 25px;
}

.new-y760 {
    color: var(--primary-color);
    font-size: 13px;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-content p {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.7;
}

.new-w186 {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.new-w186:hover {
    text-decoration: underline;
}

/* Partners Section */
.par-f921 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.par-e702 {
    width: 150px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--light-text);
    font-weight: bold;
    transition: all 0.3s ease;
}

.par-e702:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* FAQ Section */
.faq-v610 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-s908 {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-n676 {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
    transition: background 0.3s ease;
}

.faq-n676:hover {
    background: var(--light-bg);
}

.faq-n676::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-n676::after {
    transform: rotate(45deg);
}

.faq-n658 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-n658 {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--light-text);
}

/* Contact Section */
.con-i449 {
    display: flex;
    gap: 60px;
}

.con-m716 {
    flex: 1;
}

.con-c232 {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.con-l688 {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-text h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--light-text);
    font-size: 14px;
}

.con-c636 {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.for-h560 {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.sub-n112 {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-n112:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}

/* Footer */
.foo-d646 {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.foo-f318 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .log-f897 {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.foo-h888 {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Back to Top */
.bac-y738 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.bac-y738:hover {
    transform: translateY(-5px);
}

/* Page Header */
.pag-c316 {
    background: var(--gradient-dark);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header .bre-g852 {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.page-header .breadcrumb a {
    color: var(--primary-color);
}

/* Article Content */
.art-u717 {
    padding: 60px 0;
}

.art-b199 {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.art-l428 {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-meta span {
    color: var(--light-text);
    font-size: 14px;
    margin-right: 20px;
}

.article-body h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.article-body h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 25px 0 12px;
}

.article-body p {
    margin-bottom: 18px;
    color: var(--text-color);
    text-align: justify;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 10px;
    list-style: disc;
    color: var(--text-color);
}

.art-x325 {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.article-nav a {
    color: var(--primary-color);
    font-size: 14px;
}

.article-nav a:hover {
    text-decoration: underline;
}

/* About Page */
.abo-n714 {
    padding: 60px 0;
}

.abo-g374 {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.about-section p {
    color: var(--light-text);
    margin-bottom: 15px;
    text-align: justify;
}

.tea-o156 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.tea-s234 {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 13px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.tea-u799 {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.team-card h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-card p {
    color: var(--light-text);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ser-u802 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .foo-f318 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tea-o156 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hea-h101 {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-o628 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .her-r753 {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .her-n315 {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .abo-p743 {
        flex-direction: column;
    }
    
    .ser-u802,
    .eve-f472,
    .new-h621 {
        grid-template-columns: 1fr;
    }
    
    .adv-y642 {
        grid-template-columns: 1fr;
    }
    
    .con-i449 {
        flex-direction: column;
    }
    
    .foo-f318 {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tea-o156 {
        grid-template-columns: 1fr;
    }
    
    .art-b199 {
        padding: 30px 20px;
    }
}
