﻿:root {
            --primary: rgb(8,145,178);
            --primary-hover: #067793;
            --primary-light: rgba(8,145,178,0.1);
            --text-main: #1f2937;
            --text-muted: #6b7280;
            --bg-body: #f9fafb;
            --bg-white: #ffffff;
            --border: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .header { background: var(--bg-white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 40px; 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(--text-main); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 24px; 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); }
        .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--text-main); }
        
        .mobile-drawer { position: fixed; inset: 0; z-index: 999; pointer-events: none; }
        .drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s; }
        .drawer-content { position: absolute; top: 0; bottom: 0; left: -300px; width: 280px; background: var(--bg-white); transition: transform 0.3s ease; display: flex; flex-direction: column; }
        .mobile-drawer.active { pointer-events: auto; }
        .mobile-drawer.active .drawer-overlay { opacity: 1; }
        .mobile-drawer.active .drawer-content { transform: translateX(300px); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; cursor: pointer; color: var(--text-muted); }
        .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
        .drawer-nav a { display: block; font-size: 16px; padding: 10px 15px; border-radius: 8px; font-weight: 500; }
        .drawer-nav a:hover { background: var(--primary-light); color: var(--primary); }

        .page-banner { background: linear-gradient(to right, #0891b2, #164e63); padding: 80px 0; color: #fff; text-align: center; }
        .page-banner h1 { font-size: 36px; font-weight: bold; margin-bottom: 15px; }
        .page-banner p { font-size: 16px; opacity: 0.9; max-width: 600px; margin: 0 auto; }

        .about-section { padding: 80px 0; }
        .about-row { display: flex; gap: 60px; align-items: center; margin-bottom: 80px; }
        .about-row.reverse { flex-direction: row-reverse; }
        .about-text { flex: 1; }
        .about-text h2 { font-size: 30px; margin-bottom: 20px; color: var(--text-main); position: relative; padding-bottom: 10px; }
        .about-text h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--primary); }
        .about-text p { margin-bottom: 15px; color: var(--text-muted); font-size: 16px; }
        .about-img { flex: 1; position: relative; }
        .about-img img { border-radius: 12px; box-shadow: var(--shadow); }
        
        .core-values { background: var(--bg-white); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .section-title { text-align: center; margin-bottom: 50px; font-size: 32px; font-weight: bold; }
        .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .value-card { text-align: center; padding: 30px 20px; background: var(--bg-body); border-radius: 12px; border: 1px solid var(--border); transition: var(--transition); }
        .value-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow); }
        .value-num { font-size: 48px; font-weight: 900; color: var(--primary-light); margin-bottom: -20px; }
        .value-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--text-main); position: relative; z-index: 1; }
        .value-card p { font-size: 14px; color: var(--text-muted); }

        .footer { background: #111827; color: #9ca3af; padding: 60px 0 0; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-logo span { color: #fff; }
        .footer-desc { margin-top: 15px; font-size: 14px; line-height: 1.8; }
        .footer-title { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 20px; }
        .footer-links ul li { margin-bottom: 12px; }
        .footer-links ul li a:hover { color: var(--primary); }
        .footer-contact p { margin-bottom: 10px; font-size: 14px; }
        .footer-bottom { border-top: 1px solid #374151; padding: 20px 0; text-align: center; font-size: 14px; }

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