
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .l8uo-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .l8uo-header {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .l8uo-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .l8uo-logo img {
            height: 40px;
            width: auto;
        }

        .l8uo-nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .l8uo-nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 6px;
        }

        .l8uo-nav-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .l8uo-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .l8uo-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .l8uo-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .l8uo-hero-cta {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .l8uo-hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(238, 90, 36, 0.4);
        }

        .l8uo-main {
            padding: 80px 0;
        }

        .l8uo-section {
            margin-bottom: 80px;
        }

        .l8uo-section-title {
            font-size: 2.5rem;
            color: #2c5aa0;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .l8uo-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .l8uo-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .l8uo-feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid #667eea;
        }

        .l8uo-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .l8uo-feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: white;
        }

        .l8uo-feature-title {
            font-size: 1.4rem;
            color: #2c5aa0;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .l8uo-feature-desc {
            color: #666;
            line-height: 1.7;
        }

        .l8uo-content-section {
            background: white;
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .l8uo-content-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
        }

        .l8uo-highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }

        .l8uo-advantages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .l8uo-advantage-item {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid #667eea;
            transition: all 0.3s ease;
        }

        .l8uo-advantage-item:hover {
            background: white;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .l8uo-advantage-title {
            font-weight: 600;
            color: #2c5aa0;
            margin-bottom: 10px;
        }

        .l8uo-cta-section {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-top: 80px;
        }

        .l8uo-cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .l8uo-cta-desc {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .l8uo-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .l8uo-btn-primary {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .l8uo-btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 35px;
            border: 2px solid white;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .l8uo-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(238, 90, 36, 0.4);
        }

        .l8uo-btn-secondary:hover {
            background: white;
            color: #2c5aa0;
            transform: translateY(-3px);
        }

        .l8uo-footer {
            background: #1a1a1a;
            color: white;
            padding: 50px 0 30px;
            text-align: center;
        }

        .l8uo-footer-content {
            margin-bottom: 30px;
        }

        .l8uo-footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .l8uo-footer-link {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .l8uo-footer-link:hover {
            color: white;
        }

        .l8uo-footer-copyright {
            color: #888;
            font-size: 0.9rem;
            border-top: 1px solid #333;
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .l8uo-nav-menu {
                flex-direction: column;
                gap: 15px;
            }

            .l8uo-hero-title {
                font-size: 2.5rem;
            }

            .l8uo-section-title {
                font-size: 2rem;
            }

            .l8uo-features-grid {
                grid-template-columns: 1fr;
            }

            .l8uo-content-section {
                padding: 40px 25px;
            }

            .l8uo-cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .l8uo-footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
    