* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #4a6fa5;
            --primary-dark: #3a5a8c;
            --primary-light: #eef3fc;
            --accent: #c9a03d;
            --accent-light: #fef6e6;
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --bg-soft: #f9fbfd;
            --text-dark: #1f2a44;
            --text-mid: #4a5b7a;
            --text-light: #8a9bb5;
            --border: #e9edf4;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.04);
            --radius-lg: 28px;
            --radius-md: 20px;
            --radius-sm: 14px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-body);
            color: var(--text-dark);
            line-height: 1.5;
        }

        .top-bar {
            background: var(--primary-dark);
            color: white;
            padding: 8px 20px;
            text-align: center;
            font-size: 13px;
        }
        .top-bar span {
            margin: 0 16px;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 12px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .logo-icon {
            font-size: 30px;
        }
        .logo-text {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-mid);
            font-weight: 500;
            transition: 0.2s;
            font-size: 15px;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a.active {
            color: var(--primary);
            font-weight: 700;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 4px;
        }
        .order-query {
            background: var(--primary-light);
            padding: 6px 18px;
            border-radius: 40px;
            color: var(--primary-dark) !important;
        }
        .cart-icon {
            background: white;
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 40px;
            box-shadow: var(--shadow-sm);
            font-size: 18px;
        }
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                padding: 12px 20px;
            }
            .nav-links {
                justify-content: center;
                gap: 18px;
            }
        }

        /* 关于我们主容器 */
        .about-container {
            max-width: 1200px;
            margin: 48px auto;
            padding: 0 28px;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            margin-bottom: 48px;
            text-align: center;
            border: 1px solid var(--border);
        }
        .hero-section h1 {
            font-size: 44px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 18px;
            color: var(--text-mid);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary-dark);
        }
        .stat-label {
            font-size: 14px;
            color: var(--text-light);
        }
        @media (max-width: 680px) {
            .hero-section h1 { font-size: 32px; }
            .hero-stats { gap: 28px; }
            .stat-number { font-size: 28px; }
        }

        .about-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 40px 48px;
            margin-bottom: 48px;
            box-shadow: var(--shadow-sm);
        }
        @media (max-width: 768px) {
            .about-card {
                padding: 28px 24px;
            }
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary-light);
            position: relative;
        }
        .section-title i {
            margin-right: 12px;
            color: var(--primary);
        }
        .section-subtitle {
            font-size: 20px;
            font-weight: 600;
            margin: 24px 0 16px 0;
            color: var(--text-dark);
        }
        .about-text {
            color: var(--text-mid);
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 16px;
        }
        .grid-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 32px 0;
        }
        @media (max-width: 800px) {
            .grid-2col {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .feature-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .feature-icon {
            background: var(--primary-light);
            width: 52px;
            height: 52px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            flex-shrink: 0;
        }
        .feature-content h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .feature-content p {
            color: var(--text-mid);
            font-size: 14px;
            line-height: 1.5;
        }

        .team-section {
            background: var(--bg-soft);
            border-radius: var(--radius-md);
            padding: 32px;
            margin-top: 24px;
        }
        .values-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: space-between;
            margin-top: 20px;
        }
        .value-card {
            flex: 1;
            min-width: 180px;
            background: white;
            padding: 24px 16px;
            text-align: center;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            transition: 0.2s;
        }
        .value-card i {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .value-card h4 {
            font-weight: 700;
            margin-bottom: 8px;
        }
        .value-card p {
            font-size: 13px;
            color: var(--text-mid);
        }

        .contact-links {
            display: flex;
            gap: 24px;
            justify-content: center;
            margin: 32px 0 16px;
            flex-wrap: wrap;
        }
        .contact-btn {
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.2s;
        }
        .contact-btn.outline {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary-dark);
        }
        .contact-btn:hover {
            transform: translateY(-2px);
            background: var(--primary-dark);
        }
        .contact-btn.outline:hover {
            background: var(--primary-light);
        }

        .floating-cart {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: var(--primary);
            width: 56px;
            height: 56px;
            border-radius: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 8px 20px rgba(74, 111, 165, 0.4);
            cursor: pointer;
            z-index: 99;
            transition: 0.2s;
        }
        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--accent);
            width: 22px;
            height: 22px;
            border-radius: 22px;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer {
            background: #1e2a3e;
            color: #a0b3d9;
            padding: 48px 28px 28px;
            margin-top: 60px;
        }
        .footer-inner {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
        }
        .footer-col h4 {
            color: #f0f3f8;
            margin-bottom: 16px;
            font-size: 16px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 8px;
        }
        .footer-col a {
            color: #a0b3d9;
            text-decoration: none;
            font-size: 13px;
        }
        .footer-col a:hover {
            color: white;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #2d3b4f;
            font-size: 12px;
        }
        hr {
            margin: 20px 0;
            border: none;
            height: 1px;
            background: var(--border);
        }