
        * {
            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;
        }

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

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

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

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

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

        .p2twi-nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

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

        .p2twi-nav-menu a:hover {
            color: #007bff;
        }

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

        .p2twi-nav-menu a:hover::after {
            width: 100%;
        }

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

        .p2twi-hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .p2twi-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(40, 167, 69, 0.8));
            z-index: 2;
        }

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

        .p2twi-hero-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
            padding: 0 20px;
        }

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

        .p2twi-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.8;
        }

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

        .p2twi-btn {
            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-block;
        }

        .p2twi-btn-primary {
            background: #007bff;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }

        .p2twi-btn-primary:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
        }

        .p2twi-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .p2twi-btn-secondary:hover {
            background: white;
            color: #007bff;
            transform: translateY(-2px);
        }

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

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

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

        .p2twi-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;
        }

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

        .p2twi-stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #007bff;
            margin-bottom: 10px;
        }

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

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

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

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

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

        .p2twi-feature-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .p2twi-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }

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

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

        .p2twi-feature-desc {
            color: #666;
            line-height: 1.8;
        }

        .p2twi-products {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .p2twi-products .p2twi-section-title,
        .p2twi-products .p2twi-section-subtitle {
            color: white;
        }

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

        .p2twi-product-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .p2twi-product-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .p2twi-product-highlight {
            display: inline-block;
            background: #28a745;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .p2twi-product-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .p2twi-product-desc {
            line-height: 1.8;
            opacity: 0.9;
        }

        .p2twi-scenarios {
            padding: 100px 0;
            background: #f8f9fa;
        }

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

        .p2twi-scenario-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .p2twi-scenario-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

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

        .p2twi-scenario-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .p2twi-scenario-desc {
            color: #666;
            line-height: 1.7;
        }

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

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

        .p2twi-testimonial-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            border-left: 4px solid #007bff;
            transition: all 0.3s ease;
        }

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

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

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

        .p2twi-testimonial-avatar {
            font-size: 2rem;
        }

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

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

        .p2twi-testimonial-rating {
            margin-left: auto;
            color: #ffc107;
            font-size: 1.2rem;
        }

        .p2twi-download {
            padding: 100px 0;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            text-align: center;
        }

        .p2twi-download .p2twi-section-title,
        .p2twi-download .p2twi-section-subtitle {
            color: white;
        }

        .p2twi-download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .p2twi-download-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .p2twi-download-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

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

        .p2twi-download-platform {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .p2twi-download-version {
            opacity: 0.8;
            margin-bottom: 5px;
        }

        .p2twi-download-size {
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .p2twi-download-btn {
            background: white;
            color: #28a745;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .p2twi-download-btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

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

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

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

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

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

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

        .p2twi-footer-section ul li a:hover {
            color: #3498db;
        }

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

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

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

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

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

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

            .p2twi-hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .p2twi-features-grid,
            .p2twi-products-grid {
                grid-template-columns: 1fr;
            }

            .p2twi-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .p2twi-scenarios-grid {
                grid-template-columns: 1fr;
            }

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

            .p2twi-download-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .p2twi-download-grid {
                grid-template-columns: 1fr;
            }

            .p2twi-hero-title {
                font-size: 2rem;
            }

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