﻿:root { --primary: rgb(14,116,144); --primary-light: rgba(14,116,144,0.05); --text-main: #1e293b; --text-muted: #64748b; --bg-body: #f8fafc; --border-color: #e2e8f0; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; 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; }
        .logo img { height: 45px; max-width: 180px; object-fit: contain; flex-shrink: 0; }
        .logo span { font-size: 22px; font-weight: 800; color: var(--primary); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-weight: 500; padding: 8px 12px; border-radius: 6px; }
        .desktop-nav a:hover { color: var(--primary); background: var(--primary-light); }
        .menu-toggle { display: none; font-size: 24px; color: var(--primary); cursor: pointer; }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: 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: 0.3s; display: flex; flex-direction: column; }
        .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); }
        .drawer-nav { padding: 20px 0; }
        .drawer-nav a { display: block; padding: 15px 25px; border-bottom: 1px solid var(--border-color); font-weight: 500; }

        
        .page-banner { background: url('{模板路径}/images/about-bg.jpg') center/cover, var(--primary); color: #fff; padding: 80px 0; text-align: center; position: relative; }
        .page-banner::before { content: ''; position: absolute; inset: 0; background: rgba(14,116,144,0.85); }
        .page-banner .container { position: relative; z-index: 1; }
        .page-banner h1 { font-size: 40px; margin-bottom: 15px; }
        
        .about-section { padding: 80px 0; background: #fff; }
        .about-grid { display: flex; gap: 50px; align-items: center; }
        .about-text { flex: 1; }
        .about-text h2 { color: var(--primary); font-size: 30px; margin-bottom: 20px; }
        .about-text p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
        .about-img { flex: 1; }
        .about-img img { border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

        .stats-section { background: var(--bg-body); padding: 60px 0; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
        .stat-item h3 { font-size: 40px; color: var(--primary); margin-bottom: 10px; font-weight: 800; }
        .stat-item p { color: var(--text-muted); font-weight: 500; }

        .values-section { padding: 80px 0; background: #fff; text-align: center; }
        .values-section h2 { font-size: 32px; color: var(--primary); margin-bottom: 50px; }
        .v-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .v-card { padding: 40px 30px; border: 1px solid var(--border-color); border-radius: 12px; transition: 0.3s; }
        .v-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px var(--primary-light); transform: translateY(-5px); }
        .v-num { font-size: 48px; font-weight: 900; color: var(--primary-light); margin-bottom: 20px; line-height: 1; }
        .v-card h4 { font-size: 20px; margin-bottom: 15px; color: var(--text-main); }
        .v-card p { color: var(--text-muted); font-size: 14px; }

        .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, .foot-title { color: #fff; }
        .foot-links li { margin-bottom: 12px; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }

        @media(max-width: 992px) { .about-grid { flex-direction: column; } .stats-grid { grid-template-columns: repeat(2, 1fr); } .v-grid { grid-template-columns: 1fr; } }
        @media(max-width: 768px) { .desktop-nav { display: none; } .menu-toggle { display: block; } .footer-grid { grid-template-columns: 1fr; } }