
        #page_begin_html {
            display: block !important;
        }
        
        .custom-page-container {
            padding: 20px;
            line-height: unset;
        }

        /* 顶部Hero区域 */
        .hero-section {
            background: linear-gradient(135deg, rgb(26, 95, 139) 0%, rgb(35, 115, 165) 50%, rgb(26, 95, 139) 100%);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            color: white;
            margin-bottom: 30px;
            box-shadow: 0 20px 60px rgba(30, 58, 95, 0.3);
            position: relative;
            z-index: 100;
            overflow: hidden;
        }

        .badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .badge {
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .badge.green {
            background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
        }

        .badge.yellow {
            background: linear-gradient(135deg, #ffc107 0%, #f59e0b 100%);
            color: #333;
        }

        .hero-section h1 {
            font-size: 36px;
            margin-bottom: 10px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .partner-tag {
            display: inline-block;
            padding: 6px 24px;
            background: rgba(255,255,255,0.15);
            border-radius: 20px;
            font-size: 12px;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .highlight-box {
            background: linear-gradient(145deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
            border-radius: 16px;
            padding: 25px 40px;
            margin: 20px 0;
            display: inline-block;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .highlight-code {
            font-size: 52px;
            font-weight: 800;
            line-height: initial;
            background: linear-gradient(135deg, #ffd700 0%, #ffb700 50%, #ffa500 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 8px;
        }

        .sub-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }

        .sub-badge {
            padding: 6px 16px;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            font-size: 13px;
        }

        /* 注册入口区域 */
        .register-section {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
        }

        .register-btn {
            display: inline-block;
            padding: 16px 50px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white !important;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            margin-bottom: 25px;
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .register-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
        }

        .links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .link-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: #f8f9fa;
            border-radius: 20px;
        }

        .link-item a {
            color: #495057;
            text-decoration: none;
        }

        .link-item svg {
            width: 18px;
            height: 18px;
            color: #495057;
        }

        .link-item span {
            font-size: 14px;
            color: #495057;
        }

        .link-item code {
            background: #e9ecef;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 13px;
            color: #2c3e50;
        }

        /* 联系区域 */
        .contact-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            overflow: hidden;
        }

        .contact-tag {
            display: inline-block;
            padding: 8px 24px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .contact-qrcode {
            width: 160px;
            height: 160px;
            background: #f8f9fa;
            border-radius: 16px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: #666;
        }

        .contact-title {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .contact-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 25px;
        }

        .contact-info {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 12px;
            display: inline-block;
        }

        .contact-info p {
            font-size: 15px;
            color: #444;
            margin-bottom: 8px;
        }

        .contact-info p:last-child {
            margin-bottom: 0;
        }

        .contact-info span {
            color: #e74c3c;
            font-weight: 600;
        }

        .contact-info .contact-info-copy-btn {
            display: inline-block;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 14px;
            color: #fff;
            background-color: rgb(26, 95, 139);
            margin-left: 4px;
            cursor: pointer;
        }

        .hidden-input-wrap {
            width: 0;
            height: 0;
            position: absolute;
            top: 0px;
            opacity: 0;
            z-index: -100;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .hero-section {
                padding: 25px 15px;
            }

            .hero-section h1 {
                font-size: 26px;
            }

            .highlight-code {
                font-size: 36px;
                letter-spacing: 4px;
            }

            .links {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .pricing-section,
            .features-section {
                grid-template-columns: 1fr;
            }

            .steps li {
                flex-direction: column;
                gap: 10px;
            }
        }