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

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #fff;
    }

    .l8uo-header {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .l8uo-nav {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        height: 70px;
    }

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

    .l8uo-menu-toggle {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .l8uo-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

    .l8uo-nav-menu {
        display: flex;
        list-style: none;
        gap: 40px;
    }

    .l8uo-nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
    }

    .l8uo-nav-menu a:hover {
        color: #4285f4;
    }

    .l8uo-nav-menu a.active {
        color: #4285f4;
    }

    .l8uo-nav-menu a.active::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        right: 0;
        height: 2px;
        background: #4285f4;
    }

    .l8uo-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

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

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

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

    .l8uo-page-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

    .l8uo-template-filters {
        background: #f8f9fa;
        padding: 40px 0;
        border-bottom: 1px solid #e9ecef;
    }

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

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

    .l8uo-filter-tab {
        background: none;
        border: none;
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 500;
        color: #666;
        cursor: pointer;
        border-radius: 25px;
        transition: all 0.3s;
        position: relative;
    }

    .l8uo-filter-tab.active {
        background: #4285f4;
        color: white;
    }

    .l8uo-filter-tab:hover {
        background: #e3f2fd;
        color: #4285f4;
    }

    .l8uo-filter-tab.active:hover {
        background: #4285f4;
        color: white;
    }

    .l8uo-search-box {
        display: flex;
        justify-content: center;
        gap: 10px;
        max-width: 500px;
        margin: 0 auto;
    }

    .l8uo-search-input {
        flex: 1;
        padding: 12px 20px;
        border: 2px solid #e9ecef;
        border-radius: 25px;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.3s;
    }

    .l8uo-search-input:focus {
        border-color: #4285f4;
    }

    .l8uo-search-btn {
        background: #4285f4;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s;
    }

    .l8uo-search-btn:hover {
        background: #3367d6;
    }

    .l8uo-templates-section {
        padding: 60px 0;
    }

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

    .l8uo-template-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }

    .l8uo-template-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .l8uo-template-image {
        width: 100%;
        height: 200px;
        background: linear-gradient(45deg, #f0f2f5, #e3f2fd);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: #666;
        position: relative;
        overflow: hidden;
    }

    .l8uo-template-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .l8uo-template-info {
        padding: 20px;
    }

    .l8uo-template-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
    }

    .l8uo-template-desc {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .l8uo-template-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .l8uo-template-category {
        background: #e3f2fd;
        color: #4285f4;
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    .l8uo-template-download {
        background: #4285f4;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        cursor: pointer;
        transition: background 0.3s;
    }

    .l8uo-template-download:hover {
        background: #3367d6;
    }

    .l8uo-featured-section {
        background: #f8f9fa;
        padding: 80px 0;
    }

    .l8uo-section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
    }

    .l8uo-section-subtitle {
        text-align: center;
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .l8uo-featured-card {
        background: white;
        border-radius: 16px;
        padding: 40px;
        text-align: center;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

    .l8uo-featured-card:hover {
        transform: translateY(-10px);
    }

    .l8uo-featured-icon {
        font-size: 4rem;
        margin-bottom: 20px;
        display: block;
    }

    .l8uo-featured-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }

    .l8uo-featured-desc {
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .l8uo-featured-btn {
        background: #4285f4;
        color: white;
        text-decoration: none;
        padding: 12px 30px;
        border-radius: 25px;
        font-weight: 500;
        transition: background 0.3s;
        display: inline-block;
    }

    .l8uo-featured-btn:hover {
        background: #3367d6;
    }

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

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

    .l8uo-stat-item {
        text-align: center;
    }

    .l8uo-stat-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
        display: block;
    }

    .l8uo-stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .l8uo-footer {
        background: #2c3e50;
        color: white;
        padding: 60px 0 30px;
    }

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

    .l8uo-footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: #ecf0f1;
    }

    .l8uo-footer-section ul {
        list-style: none;
    }

    .l8uo-footer-section ul li {
        margin-bottom: 10px;
    }

    .l8uo-footer-section ul li a {
        color: #bdc3c7;
        text-decoration: none;
        transition: color 0.3s;
    }

    .l8uo-footer-section ul li a:hover {
        color: #4285f4;
    }

    .l8uo-footer-bottom {
        border-top: 1px solid #34495e;
        padding-top: 30px;
        text-align: center;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .l8uo-menu-toggle {
            display: flex;
        }

        .l8uo-nav-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            gap: 20px;
        }

        .l8uo-nav-menu.active {
            display: flex;
        }

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

        .l8uo-filter-tabs {
            gap: 15px;
        }

        .l8uo-filter-tab {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        .l8uo-search-box {
            flex-direction: column;
            gap: 15px;
        }

        .l8uo-templates-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .l8uo-featured-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .l8uo-featured-card {
            padding: 30px 20px;
        }

        .l8uo-stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .l8uo-stat-number {
            font-size: 2.5rem;
        }

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

    @media (max-width: 480px) {
        .l8uo-templates-grid {
            grid-template-columns: 1fr;
        }

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

        .l8uo-page-title {
            font-size: 1.8rem;
        }

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