
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <title>域名转让 - The domain is on sale!</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        html {
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }
        
        body {
            background-color: #002FA7;
            background: linear-gradient(135deg, #002FA7, #1a237e, #0d1b2a);
            background: -webkit-linear-gradient(135deg, #002FA7, #1a237e, #0d1b2a);
            background: -moz-linear-gradient(135deg, #002FA7, #1a237e, #0d1b2a);
            background: -o-linear-gradient(135deg, #002FA7, #1a237e, #0d1b2a);
            
            min-height: 100vh;
            min-height: 100svh;
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0.5rem;
            position: relative;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* 触摸设备优化 */
        @media (hover: none) and (pointer: coarse) {
            .highlight, .buy-button {
                min-height: 44px;
                min-width: 44px;
            }
            
            .feature {
                touch-action: manipulation;
            }
        }
        
        /* 横屏设备优化 */
        @media (orientation: landscape) and (max-height: 500px) {
            body {
                padding: 0.25rem;
                align-items: flex-start;
            }
            
            .container {
                margin: 0.5rem auto;
                max-height: 90vh;
                overflow-y: auto;
            }
        }
        
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #002FA7;
            z-index: -2;
        }
        
        body::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255, 235, 59, 0.4), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255, 235, 59, 0.3), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(100, 181, 246, 0.5), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255, 235, 59, 0.3), transparent),
                radial-gradient(2px 2px at 160px 30px, rgba(100, 181, 246, 0.4), transparent);
            background-repeat: repeat;
            background-size: 200px 100px;
            z-index: -1;
            opacity: 0.2;
        }
        
        /* 主容器 - 更加紧凑 */
        .container {
            max-width: 800px;
            width: 100%;
            background: rgba(0, 47, 167, 0.15);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 0.5rem auto;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 235, 59, 0.3);
        }
        
        .container::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -15%;
            width: 200px;
            height: 200px;
            background: rgba(255, 235, 59, 0.1);
            border-radius: 50%;
            z-index: 0;
        }
        
        .content {
            position: relative;
            z-index: 1;
        }
        
        /* 紧凑的标题和域名 */
        h1 {
            font-size: clamp(1.1rem, 4vw, 1.6rem);
            font-weight: 600;
            margin-bottom: 1rem;
            color: #FFFFFF;
            text-align: center;
            line-height: 1.3;
        }
        
        .domain-name {
            font-size: clamp(1.8rem, 8vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
            text-align: center;
            color: #FFEB3B;
            line-height: 1.2;
            word-break: break-all;
            overflow-wrap: break-word;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        }
        
        /* 紧凑的联系信息区域 */
        .contact-info {
            margin-bottom: 1.5rem;
            padding: 1.25rem;
            background: rgba(0, 47, 167, 0.2);
            border-radius: 10px;
            border: 1px solid rgba(255, 235, 59, 0.3);
        }
        
        .contact-info p {
            margin-bottom: 0.75rem;
            font-size: clamp(0.95rem, 3vw, 1.1rem);
            color: #FFFFFF;
            font-weight: 500;
            line-height: 1.4;
        }
        
        .contact-info p:last-child {
            margin-bottom: 0;
        }
        
        /* 紧凑的高亮链接 */
        .highlight {
            color: #FFEB3B;
            text-decoration: none;
            font-weight: 600;
            padding: 0.1rem 0.3rem;
            border-radius: 0.2rem;
            background: rgba(255, 235, 59, 0.2);
            transition: all 0.3s ease;
            display: inline-block;
            word-break: break-all;
        }
        
        .highlight:hover,
        .highlight:focus {
            background: rgba(255, 235, 59, 0.4);
            color: #FFFFFF;
            outline: 1px solid #FFEB3B;
            outline-offset: 1px;
        }
        
        /* 紧凑的突出显示区域 */
        .standout {
            background: rgba(255, 235, 59, 0.15);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            margin: 0.75rem 0;
            font-weight: 600;
            color: #FFEB3B;
            border-left: 3px solid #FFEB3B;
            font-size: clamp(0.95rem, 3vw, 1.05rem);
            line-height: 1.4;
        }
        
        .standout-alt {
            padding: 0.5rem 0;
            margin: 0.5rem 0;
            font-weight: 500;
            color: #E3F2FD;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            line-height: 1.4;
        }
        
        /* 紧凑的交易信息区域 */
        .tropical-background {
            background: rgba(0, 47, 167, 0.2);
            padding: 1.25rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border: 1px solid rgba(255, 235, 59, 0.3);
        }
        
        .tropical-background p {
            margin-bottom: 0.75rem;
            color: #FFFFFF;
            font-weight: 500;
            line-height: 1.4;
        }
        
        .tropical-background p:last-child {
            margin-bottom: 0;
        }
        
        /* 紧凑的特性列表 */
        .features {
            margin-bottom: 1.5rem;
        }
        
        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            font-size: clamp(1rem, 3vw, 1.15rem);
            color: #FFFFFF;
            font-weight: 500;
            line-height: 1.3;
        }
        
        .feature:last-child {
            margin-bottom: 0;
        }
        
        .feature::before {
            content: '✓';
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 1.5rem;
            height: 1.5rem;
            background: rgba(255, 235, 59, 0.2);
            border-radius: 50%;
            margin-right: 0.75rem;
            font-size: 0.9rem;
            color: #FFEB3B;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        /* 紧凑的按钮 */
        .buy-now {
            text-align: center;
            margin-top: 1.5rem;
        }
        
        .buy-button {
            display: inline-block;
            background: #FFEB3B;
            color: #002FA7;
            font-weight: 700;
            font-size: clamp(1rem, 3vw, 1.1rem);
            padding: 0.75rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(255, 235, 59, 0.4);
            cursor: pointer;
            min-height: 44px;
            min-width: 120px;
        }
        
        .buy-button:hover,
        .buy-button:focus {
            background: #FFD600;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 235, 59, 0.6);
            outline: none;
        }
        
        /* 响应式调整 */
        @media (min-width: 768px) {
            .container {
                padding: 2rem;
                border-radius: 12px;
            }
            
            .contact-info,
            .tropical-background {
                padding: 1.5rem;
            }
            
            .feature {
                margin-bottom: 0.875rem;
            }
        }
        
        @media (max-width: 767px) {
            body {
                padding: 0.75rem;
            }
            
            .container {
                padding: 1.25rem;
                border-radius: 10px;
            }
            
            .contact-info,
            .tropical-background {
                padding: 1rem;
            }
            
            .standout {
                padding: 0.625rem 0.875rem;
                margin: 0.625rem 0;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 0.5rem;
            }
            
            .container {
                padding: 1rem;
                border-radius: 8px;
            }
            
            .contact-info,
            .tropical-background {
                padding: 0.875rem;
            }
            
            .domain-name {
                font-size: 2rem;
                margin-bottom: 1.25rem;
            }
            
            h1 {
                font-size: 1.2rem;
                margin-bottom: 0.875rem;
            }
            
            .standout {
                padding: 0.5rem 0.75rem;
                margin: 0.5rem 0;
            }
            
            .buy-button {
                padding: 0.625rem 1.5rem;
            }
        }
        
        @media (max-width: 320px) {
            .container {
                padding: 0.75rem;
            }
            
            .contact-info,
            .tropical-background {
                padding: 0.75rem;
            }
            
            .domain-name {
                font-size: 1.8rem;
            }
            
            h1 {
                font-size: 1.1rem;
            }
        }
        
        @media (orientation: landscape) and (max-height: 500px) {
            .domain-name {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .contact-info,
            .tropical-background {
                margin-bottom: 1rem;
                padding: 0.875rem;
            }
            
            .feature {
                margin-bottom: 0.5rem;
                font-size: 0.95rem;
            }
        }
        
        /* 针对不支持backdrop-filter的浏览器 */
        @supports not (backdrop-filter: blur(15px)) {
            .container {
                background: rgba(0, 47, 167, 0.25);
            }
        }
        
        /* 动画效果 */
        .container {
            animation: fadeIn 0.8s ease-out;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 打印样式 */
        @media print {
            body {
                background: white !important;
                color: black !important;
                padding: 0;
            }
            
            .container {
                background: white !important;
                color: black !important;
                border: 1px solid #ccc;
                box-shadow: none;
                max-width: 100%;
                padding: 1rem;
            }
            
            .highlight, .buy-button {
                color: #002FA7 !important;
                text-decoration: underline;
            }
            
            .buy-button {
                display: none;
            }
        }
    </style>
    <script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script>
    <script>LA.init({id:"D4W4RGFGwuMGnTGo",ck:"D4W4RGFGwuMGnTGo"})</script>
</head>
<body>
    <div class="container">
        <div class="content">
            <h1>该域名可转让 The domain is on sale</h1>
            <div class="domain-name" id="domainName">加载中...</div>
            
            <div class="contact-info">
                <p><strong>联系邮箱：</strong> <a href="mailto:811574@qq.com" class="highlight">811574@qq.com</a> 或 
                 <a href="mailto:domain66@gmail.com" class="highlight">domain66@gmail.com</a></p>
                
                <div class="wechat-contact">
                    <div class="wechat-text">
                        <strong>QQ或微信：</strong> <span class="highlight">811574</span>
                    </div>
                </div>
                <p class="standout"><strong>国内交易推荐使用阿里云站内带价push或一口价交易</strong></p>
                <p class="standout-alt"><strong>如对域名交易不熟悉，联系我们可获得全套交易详细流程</strong></p>
                <p class="standout-alt"><strong>发送邮件或添加我们的微信或QQ，账号都是811574，确定域名价格和交易细节，获得最大的安全保障。</strong></p>
            </div>
            
            <div class="tropical-background">
                <p>mail to : <a href="mailto:811574@qq.com" class="highlight">811574@qq.com</a> or 
                 <a href="mailto:domain66@gmail.com" class="highlight">domain66@gmail.com</a></p>
                <p class="standout"><strong>Determine the domain price and transaction details to obtain the utmost security guarantee.</strong></p>
                <p class="standout-alt">We accept escrow from <a href="http://www.Escrow.com" target="_blank" rel="noopener" class="highlight">www.Escrow.com</a> or <a href="http://www.afternic.com" target="_blank" rel="noopener" class="highlight">www.afternic.com</a></p>
                <div class="features">
                    <div class="feature">Free transaction support</div>
                    <div class="feature">Secure payments</div>
                    <div class="feature">Buyer protection program</div>
                    <div class="feature">Fast and easy transfer</div>
    </div>
    
    <script>
        document.addEventListener('DOMContentLoaded', function() {
            const domain = window.location.hostname;
            document.getElementById('domainName').textContent = domain;
            
            if ('ontouchstart' in window || navigator.maxTouchPoints) {
                document.body.classList.add('touch-device');
            }
            
            window.addEventListener('orientationchange', function() {
                setTimeout(function() {
                    document.body.style.opacity = '0.99';
                    setTimeout(function() {
                        document.body.style.opacity = '1';
                    }, 100);
                }, 300);
            });
        });
    </script>
</body>
</html>