/*! style.css va6764f21 */
/* Generated: 2026-01-14 17:24:27 */
/* Domain: chn-my-wukongsports.com */
/* Modern CSS techniques */
/* Optimized for speed */
/* Enhanced functionality */

.css_644563 {
    /* Random class Cd5566982 fingerprint optimization */
    display: none;
}

/* Template17 - 卡片式风格（自定义CSS） */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #64748b;
    --accent: #0ea5e9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: var(--card-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    border-bottom: 1px solid var(--border);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.header-nav {
    display: flex;
    gap: 8px;
}

.nav-item {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-item:hover {
    background: var(--bg);
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 20px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-item {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.mobile-nav-item:hover {
    background: var(--bg);
    color: var(--primary);
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
}

/* Hero */
.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.hero-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cards */
.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-image {
    padding: 0;
    overflow: hidden;
}

.card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-title a:hover {
    color: var(--primary);
}

.card-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.card-link:hover {
    text-decoration: underline;
}

.card-meta {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.card-date,
.card-category {
    display: inline-block;
}

.card-category {
    color: var(--primary);
    font-weight: 500;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Buttons */
.btn-card {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
}

/* Services */
.services-section {
    background: var(--bg);
}

/* Works */
.works-section {
    background: var(--card-bg);
}

/* About */
.about-section {
    background: var(--bg);
}

.about-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--card-bg);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.about-image-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* News */
.news-section {
    background: var(--bg);
}

/* FAQ */
.faq-section {
    background: var(--card-bg);
}

.faq-cards {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    padding: 28px;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg);
}

.testimonial-card {
    position: relative;
    padding: 32px;
}

.testimonial-quote {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    color: var(--text);
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

/* Partners */
.partners-section {
    background: var(--card-bg);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 24px;
}

.partner-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.partner-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.partner-card img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-card {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.footer-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 14px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 30px;
}

/* Page Styles */
.page-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-content {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .section-title {
        font-size: 32px;
    }
    .about-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-card {
        width: 100%;
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
}

