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

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

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

        .p2twi-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

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

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

        .p2twi-nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 25px;
        }

        .p2twi-nav-link:hover {
            color: #667eea;
            background: rgba(102, 126, 234, 0.1);
        }

        .p2twi-main {
            padding: 60px 0;
        }

        .p2twi-hero {
            text-align: center;
            margin-bottom: 60px;
        }

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

        .p2twi-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .p2twi-download-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 50px;
        }

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

        .p2twi-download-card {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .p2twi-download-card:hover {
            transform: translateY(-5px);
            border-color: #667eea;
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
        }

        .p2twi-platform-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #667eea;
        }

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

        .p2twi-version-info {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .p2twi-download-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            width: 100%;
        }

        .p2twi-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .p2twi-features {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 50px;
        }

        .p2twi-features-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }

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

        .p2twi-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .p2twi-feature-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .p2twi-feature-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #333;
        }

        .p2twi-feature-content p {
            color: #666;
            line-height: 1.6;
        }

        .p2twi-cta-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 50px;
            text-align: center;
            margin-bottom: 50px;
        }

        .p2twi-cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #333;
        }

        .p2twi-cta-text {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .p2twi-cta-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 20px 50px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .p2twi-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .p2twi-footer {
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

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

        .p2twi-footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #667eea;
        }

        .p2twi-footer-section p,
        .p2twi-footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.8;
        }

        .p2twi-footer-section a:hover {
            color: #667eea;
        }

        .p2twi-copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            color: rgba(255, 255, 255, 0.6);
        }

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

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

            .p2twi-download-section,
            .p2twi-features,
            .p2twi-cta-section {
                padding: 30px 20px;
            }

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