﻿:root {
            --primary: rgb(22,163,74);
            --primary-hover: rgb(21,128,61);
            --primary-light: rgba(22,163,74,0.1);
            --dark: #1e293b;
            --text-main: #334155;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
            --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
            --max-width: 1200px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); background: var(--bg-light); line-height: 1.6; -webkit-tap-highlight-color: transparent; }
        a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
        li { list-style: none; }
        img { max-width: 100%; height: auto; }

        
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; height: 72px; display: flex; align-items: center; }
        .header-container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 42px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--dark); white-space: nowrap; letter-spacing: -0.5px; }
        .logo span strong { color: var(--primary); }
        .nav-desktop { display: flex; align-items: center; gap: 28px; }
        .nav-desktop a { font-size: 15px; font-weight: 500; color: var(--dark); padding: 6px 0; border-bottom: 2px solid transparent; }
        .nav-desktop a:hover, .nav-desktop a.active { color: var(--primary); border-bottom-color: var(--primary); }
        .header-btn { background: var(--primary); color: var(--white); padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 14px; box-shadow: 0 4px 12px rgba(22,163,74,0.2); }
        .header-btn:hover { background: var(--primary-hover); transform: translateY(-1px); color: var(--white); }
        
        
        .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; z-index: 110; }
        .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: all 0.3s ease; }
        
        
        .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100vh; background: var(--white); z-index: 150; box-shadow: var(--shadow-lg); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); padding: 24px; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(15,23,42,0.6); z-index: 140; display: none; opacity: 0; transition: opacity 0.3s ease; }
        .drawer-overlay.active { display: block; opacity: 1; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
        .drawer-close { background: none; border: none; font-size: 24px; color: var(--text-muted); cursor: pointer; }
        .drawer-nav { display: flex; flex-direction: column; gap: 18px; overflow-y: auto; flex: 1; }
        .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--dark); padding: 8px 12px; border-radius: 6px; }
        .drawer-nav a:hover { background: var(--primary-light); color: var(--primary); }

        
        .hero { position: relative; background: radial-gradient(circle at top right, rgba(22,163,74,0.08), transparent 50%), var(--white); padding: 80px 20px; overflow: hidden; border-bottom: 1px solid var(--border); }
        .hero-container { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
        .hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-light); color: var(--primary); padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
        .hero-title { font-size: 46px; font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
        .hero-title span { color: var(--primary); }
        .hero-desc { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }
        .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn-primary { background: var(--primary); color: var(--white); padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 16px; box-shadow: 0 4px 14px rgba(22,163,74,0.3); display: inline-flex; align-items: center; gap: 8px; }
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
        .btn-secondary { background: var(--white); color: var(--dark); border: 1px solid var(--border); padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; }
        .btn-secondary:hover { background: var(--bg-light); border-color: var(--text-muted); }
        .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
        .hero-image-wrapper { position: relative; width: 100%; max-width: 460px; background: linear-gradient(135deg, rgba(22,163,74,0.2), rgba(22,163,74,0.05)); border-radius: 24px; padding: 20px; box-shadow: var(--shadow-lg); }
        .hero-img { border-radius: 16px; width: 100%; display: block; object-fit: cover; box-shadow: var(--shadow-md); }

        
        .features { padding: 80px 20px; background: var(--bg-light); }
        .section-header { text-align: center; max-width: 650px; margin: 0 auto 56px; }
        .section-title { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
        .section-title span { color: var(--primary); }
        .section-desc { font-size: 16px; color: var(--text-muted); }
        .features-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .feature-card { background: var(--white); border-radius: 16px; padding: 36px 30px; border: 1px solid var(--border); transition: all 0.3s ease; position: relative; overflow: hidden; }
        .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
        .feature-icon-box { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: var(--primary-light); color: var(--primary); border-radius: 12px; margin-bottom: 24px; font-size: 24px; font-weight: bold; }
        .feature-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
        .feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

        
        .data-showcase { padding: 80px 20px; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .data-container { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
        .data-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        .stat-box { background: var(--bg-light); border: 1px solid var(--border); padding: 30px; border-radius: 16px; text-align: center; }
        .stat-num { font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
        .stat-label { font-size: 14px; font-weight: 600; color: var(--text-muted); }

        
        .news-section { padding: 80px 20px; background: var(--bg-light); }
        .news-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
        .news-list { display: flex; flex-direction: column; gap: 24px; }
        .news-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); display: flex; transition: all 0.3s ease; }
        .news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
        .news-img-box { width: 220px; min-height: 100%; flex-shrink: 0; position: relative; background: #e2e8f0; }
        .news-img-box img { width: 100%; height: 100%; object-fit: cover; position: absolute; left: 0; top: 0; }
        .news-content { padding: 24px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
        .news-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
        .news-tag { background: var(--primary-light); color: var(--primary); padding: 2px 8px; border-radius: 4px; font-weight: 600; }
        .news-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
        .news-title a:hover { color: var(--primary); }
        .news-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .news-foot { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 12px; }
        .news-link { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

        .sidebar-box { background: var(--white); border-radius: 14px; border: 1px solid var(--border); padding: 24px; margin-bottom: 30px; }
        .sidebar-title { font-size: 18px; font-weight: 700; color: var(--dark); padding-bottom: 12px; border-bottom: 2px solid var(--primary); margin-bottom: 20px; }
        .hot-list { display: flex; flex-direction: column; gap: 16px; }
        .hot-item { display: flex; gap: 12px; align-items: center; }
        .hot-num { width: 24px; height: 24px; border-radius: 6px; background: var(--border); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: bold; flex-shrink: 0; }
        .hot-item:nth-child(-n+3) .hot-num { background: var(--primary); color: var(--white); }
        .hot-text { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
        .hot-text:hover { color: var(--primary); }

        
        .cta { padding: 80px 20px; background: linear-gradient(135deg, #16a34a, #15803d); color: var(--white); text-align: center; position: relative; overflow: hidden; }
        .cta-container { max-width: 700px; margin: 0 auto; position: relative; z-index: 10; }
        .cta-title { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
        .cta-desc { font-size: 18px; opacity: 0.9; margin-bottom: 36px; }
        .cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .btn-light { background: var(--white); color: var(--primary); padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .btn-light:hover { background: var(--bg-light); transform: translateY(-2px); }

        
        .footer { background: #0f172a; color: #94a3b8; padding: 70px 20px 30px; border-top: 1px solid #1e293b; }
        .footer-container { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
        .footer-brand { display: flex; flex-direction: column; gap: 16px; }
        .footer-brand .logo span { color: var(--white); }
        .footer-brand p { font-size: 14px; line-height: 1.7; }
        .footer-title { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 8px; }
        .footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { font-size: 14px; color: #94a3b8; }
        .footer-links a:hover { color: var(--primary); padding-left: 4px; }
        .footer-bottom { max-width: var(--max-width); margin: 0 auto; padding-top: 30px; border-top: 1px solid #1e293b; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; }
        .footer-nav { display: flex; gap: 20px; }
        .footer-nav a { color: #94a3b8; }
        .footer-nav a:hover { color: var(--white); }

        
        @media (max-width: 1024px) {
            .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .hero-badge, .hero-actions { justify-content: center; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .data-container { grid-template-columns: 1fr; gap: 40px; }
            .news-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .nav-desktop, .header-btn { display: none; }
            .nav-toggle { display: block; }
            .hero-title { font-size: 34px; }
            .features-grid { grid-template-columns: 1fr; }
            .news-card { flex-direction: column; }
            .news-img-box { width: 100%; height: 180px; }
            .footer-container { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }