
    * {
        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;
        overflow-x: hidden;
    }

    .jav6db-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

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

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

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

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

    .jav6db-nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
        align-items: center;
    }

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

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

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

    .jav6db-nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #4285f4;
        transition: width 0.3s ease;
    }

    .jav6db-nav-menu a:hover::after,
    .jav6db-nav-menu a.active::after {
        width: 100%;
    }

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

    .jav6db-hero-section {
        min-height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .jav6db-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 1;
    }

    .jav6db-hero-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .jav6db-hero-text {
        color: white;
    }

    .jav6db-hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        background: linear-gradient(45deg, #fff, #e3f2fd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .jav6db-hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 40px;
        opacity: 0.9;
        line-height: 1.6;
    }

    .jav6db-hero-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .jav6db-btn-primary {
        background: linear-gradient(45deg, #4285f4, #34a853);
        color: white;
        padding: 15px 30px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    }

    .jav6db-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
    }

    .jav6db-btn-secondary {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 15px 30px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        backdrop-filter: blur(10px);
    }

    .jav6db-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    .jav6db-hero-visual {
        position: relative;
    }

    .jav6db-hero-image {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
        transition: transform 0.3s ease;
    }

    .jav6db-hero-image:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .jav6db-stats-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

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

    .jav6db-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        text-align: center;
    }

    .jav6db-stat-item {
        background: white;
        padding: 40px 20px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .jav6db-stat-item:hover {
        transform: translateY(-5px);
    }

    .jav6db-stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: #4285f4;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .jav6db-stat-label {
        font-size: 1.1rem;
        color: #666;
        font-weight: 500;
    }

    .jav6db-features-section {
        padding: 100px 0;
        background: white;
    }

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

    .jav6db-section-header {
        text-align: center;
        margin-bottom: 80px;
    }

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

    .jav6db-section-subtitle {
        font-size: 1.2rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

    .jav6db-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }

    .jav6db-feature-card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
    }

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

    .jav6db-feature-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        display: block;
    }

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

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

    .jav6db-products-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

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

    .jav6db-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }

    .jav6db-product-card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .jav6db-product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(45deg, #4285f4, #34a853);
    }

    .jav6db-product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    .jav6db-product-highlight {
        background: linear-gradient(45deg, #4285f4, #34a853);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 20px;
    }

    .jav6db-product-name {
        font-size: 1.8rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

    .jav6db-product-desc {
        color: #666;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .jav6db-product-btn {
        background: linear-gradient(45deg, #4285f4, #34a853);
        color: white;
        padding: 12px 25px;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .jav6db-product-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    }

    .jav6db-testimonials-section {
        padding: 100px 0;
        background: white;
    }

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

    .jav6db-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .jav6db-testimonial-card {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
        position: relative;
        transition: all 0.3s ease;
    }

    .jav6db-testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .jav6db-testimonial-content {
        font-style: italic;
        color: #555;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .jav6db-testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .jav6db-testimonial-avatar {
        font-size: 2.5rem;
    }

    .jav6db-testimonial-info h4 {
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }

    .jav6db-testimonial-info p {
        color: #666;
        font-size: 0.9rem;
    }

    .jav6db-testimonial-rating {
        margin-top: 10px;
        color: #ffc107;
    }

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

    .jav6db-cta-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

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

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

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

    .jav6db-footer {
        background: #1a1a1a;
        color: white;
        padding: 60px 0 30px;
    }

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

    .jav6db-footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .jav6db-footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #4285f4;
    }

    .jav6db-footer-brand p {
        color: #ccc;
        line-height: 1.6;
    }

    .jav6db-footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
        color: white;
    }

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

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

    .jav6db-footer-section ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

    .jav6db-footer-bottom {
        border-top: 1px solid #333;
        padding-top: 30px;
        text-align: center;
        color: #999;
    }

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

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

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

        .jav6db-hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

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

        .jav6db-hero-subtitle {
            font-size: 1.1rem;
        }

        .jav6db-hero-buttons {
            justify-content: center;
        }

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

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

        .jav6db-products-grid {
            grid-template-columns: 1fr;
        }

        .jav6db-testimonials-grid {
            grid-template-columns: 1fr;
        }

        .jav6db-footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .jav6db-cta-title {
            font-size: 2rem;
        }

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

    @media (max-width: 480px) {
        .jav6db-hero-title {
            font-size: 2rem;
        }

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

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

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

        .jav6db-feature-card,
        .jav6db-product-card {
            padding: 30px 20px;
        }
    }
    