:root {
            --primary-color: #0056b3;
            --secondary-color: #333333;
            --accent-color: #f8b500;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            color: var(--secondary-color);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--dark-color);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
            color: var(--secondary-color) !important;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
            background-color: rgba(0, 86, 179, 0.05);
            border-radius: 4px;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 700px;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.8rem 2.5rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #004494;
            border-color: #004494;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 2.5rem 2rem;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            border-top: 4px solid var(--primary-color);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        .product-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        .product-card:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        .product-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .product-card .card-body {
            padding: 1.8rem;
        }
        .news-card {
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            background: var(--light-color);
            transition: all 0.3s ease;
        }
        .news-card:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .news-date {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        .client-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .friendlink {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            margin: 0.5rem;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ddd;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        .contact-info i {
            width: 40px;
            color: var(--accent-color);
            font-size: 1.2rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 1000;
            text-decoration: none;
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .back-to-top.show {
            opacity: 1;
        }
        .back-to-top:hover {
            background-color: #004494;
            color: white;
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
