﻿:root {
            --primary: rgb(14,116,144);
            --primary-hover: rgb(12,100,125);
            --primary-light: rgba(14,116,144,0.05);
            --text-main: #1e293b;
            --text-muted: #64748b;
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --border-color: #e2e8f0;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul, li { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 45px; width: auto; max-width: 180px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 22px; font-weight: 800; line-height: 1; color: var(--primary); white-space: nowrap; letter-spacing: 1px; }
        
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-size: 16px; font-weight: 500; color: var(--text-main); padding: 8px 12px; border-radius: 6px; }
        .desktop-nav a:hover { color: var(--primary); background: var(--primary-light); }
        .menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--primary); }

        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #fff; z-index: 1000; transition: all 0.3s; display: flex; flex-direction: column; box-shadow: 2px 0 15px rgba(0,0,0,0.1); }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 28px; cursor: pointer; color: var(--text-muted); line-height: 1; }
        .drawer-nav { padding: 20px 0; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 15px 25px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border-color); }
        .drawer-nav a:hover { color: var(--primary); padding-left: 30px; background: var(--primary-light); }

        
        .hero { background: linear-gradient(135deg, rgba(14,116,144,0.9), rgba(10,80,100,0.9)), url('{模板路径}/images/hero-bg.jpg') center/cover; color: #fff; padding: 80px 0; overflow: hidden; }
        .hero-inner { display: flex; align-items: center; gap: 50px; }
        .hero-content { flex: 1; }
        .hero-content h1 { font-size: 42px; font-weight: 800; margin-bottom: 20px; line-height: 1.3; }
        .hero-content p { font-size: 18px; margin-bottom: 35px; opacity: 0.9; max-width: 500px; }
        .hero-btns { display: flex; gap: 15px; }
        .btn-primary { background: #fff; color: var(--primary); padding: 14px 30px; border-radius: 8px; font-weight: 600; font-size: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
        .btn-outline { border: 2px solid #fff; color: #fff; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 16px; }
        .btn-outline:hover { background: rgba(255,255,255,0.1); }
        .hero-visual { flex: 1; position: relative; }
        .hero-visual img { border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

        
        .features { padding: 80px 0; background: #fff; }
        .sec-title { text-align: center; margin-bottom: 50px; }
        .sec-title h2 { font-size: 32px; color: var(--primary); margin-bottom: 15px; font-weight: 700; }
        .sec-title p { color: var(--text-muted); font-size: 16px; }
        .feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .feat-card { text-align: center; padding: 40px 20px; background: var(--bg-body); border-radius: 12px; transition: transform 0.3s; border: 1px solid transparent; }
        .feat-card:hover { transform: translateY(-5px); border-color: var(--primary); background: #fff; box-shadow: 0 10px 30px var(--primary-light); }
        .feat-icon { width: 70px; height: 70px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 20px; font-weight: bold; }
        .feat-card h3 { font-size: 20px; margin-bottom: 10px; }
        .feat-card p { color: var(--text-muted); font-size: 14px; }

        
        .content-section { padding: 80px 0; }
        .content-layout { display: flex; gap: 40px; }
        .main-articles { flex: 2; }
        .side-articles { flex: 1; background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid var(--border-color); height: fit-content; }
        
        .art-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
        .art-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.04); border: 1px solid var(--border-color); transition: all 0.3s; display: flex; flex-direction: column; }
        .art-card:hover { box-shadow: 0 10px 25px rgba(14,116,144,0.1); transform: translateY(-3px); }
        .art-img { height: 180px; overflow: hidden; }
        .art-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .art-card:hover .art-img img { transform: scale(1.05); }
        .art-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .art-info h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .art-info h3 a:hover { color: var(--primary); }
        .art-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
        .art-meta { display: flex; justify-content: space-between; font-size: 12px; color: #94a3b8; margin-bottom: 10px; border-top: 1px solid var(--border-color); padding-top: 10px; }
        .art-tags { font-size: 12px; color: var(--primary); background: var(--primary-light); padding: 4px 8px; border-radius: 4px; display: inline-block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

        .side-title { font-size: 20px; font-weight: 700; border-left: 4px solid var(--primary); padding-left: 12px; margin-bottom: 25px; }
        .side-list { display: flex; flex-direction: column; gap: 20px; }
        .side-item { display: flex; gap: 15px; align-items: center; border-bottom: 1px dashed var(--border-color); padding-bottom: 15px; }
        .side-item:last-child { border-bottom: none; padding-bottom: 0; }
        .side-item-img { width: 80px; height: 60px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
        .side-item-img img { width: 100%; height: 100%; object-fit: cover; }
        .side-item-info h4 { font-size: 15px; line-height: 1.4; margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .side-item-info h4 a:hover { color: var(--primary); }
        .side-item-meta { font-size: 12px; color: var(--text-muted); }

        
        .cta-section { background: var(--primary); color: #fff; padding: 70px 0; text-align: center; }
        .cta-section h2 { font-size: 32px; margin-bottom: 20px; }
        .cta-section p { font-size: 18px; margin-bottom: 30px; opacity: 0.9; }
        .cta-btn { display: inline-block; background: #fff; color: var(--primary); padding: 15px 40px; border-radius: 30px; font-weight: bold; font-size: 18px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
        .cta-btn:hover { background: var(--bg-body); transform: scale(1.05); }

        
        .footer { background: #1e293b; color: #94a3b8; padding: 60px 0 20px; margin-top: auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .foot-about .logo span { color: #fff; }
        .foot-about p { margin-top: 20px; font-size: 14px; line-height: 1.8; }
        .foot-title { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 20px; }
        .foot-links li { margin-bottom: 12px; }
        .foot-links a:hover { color: #fff; padding-left: 5px; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; }
        .footer-bottom a { margin: 0 10px; color: #cbd5e1; }
        .footer-bottom a:hover { color: #fff; }

        @media (max-width: 992px) {
            .hero-inner { flex-direction: column; text-align: center; }
            .hero-btns { justify-content: center; }
            .content-layout { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .menu-toggle { display: block; }
            .hero-content h1 { font-size: 32px; }
        }