市场夺宝奇兵
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

269 lines
12 KiB

21 hours ago
21 hours ago
21 hours ago
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7. <meta http-equiv="pragma" content="no-cache">
  8. <meta http-equiv="cache-control" content="no-cache">
  9. <meta http-equiv="expires" content="0">
  10. <link rel="shortcut icon" href="dbqb_favicon.ico" />
  11. <link rel="Bookmark" href="dbqb_favicon.ico" />
  12. <meta http-equiv="keywords" content="夺宝奇兵,homilychart,homilylink">
  13. <meta http-equiv="description" content="HomilyLink">
  14. <title>夺宝奇兵 - AI炒股时代,机构界的黑科技!</title>
  15. <script src="https://cdn.tailwindcss.com?v=3.3.5"></script>
  16. <link href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet">
  17. <!-- 基础样式配置 -->
  18. <script>
  19. tailwind.config = {
  20. theme: {
  21. extend: {
  22. colors: {
  23. primary: '#3B82F6',
  24. secondary: '#8B5CF6',
  25. success: '#10B981' // 成功状态颜色
  26. }
  27. }
  28. }
  29. }
  30. </script>
  31. <style type="text/tailwindcss">
  32. @layer utilities {
  33. .card-hover {
  34. @apply transition-all duration-300 hover:shadow-xl;
  35. }
  36. .btn-effect {
  37. @apply relative overflow-hidden transition-all duration-300;
  38. }
  39. .btn-effect::after {
  40. content: '';
  41. @apply absolute top-0 left-[-100%] w-full h-full bg-white/20 transform skew-x-12 transition-all duration-500;
  42. }
  43. .btn-effect:hover::after {
  44. @apply left-[100%];
  45. }
  46. .pulse-animation {
  47. animation: pulse 2s infinite;
  48. }
  49. @keyframes pulse {
  50. 0% { transform: scale(1); }
  51. 50% { transform: scale(1.05); }
  52. 100% { transform: scale(1); }
  53. }
  54. }
  55. </style>
  56. <style>
  57. /* 基础动画 */
  58. @keyframes fadeIn {
  59. from {
  60. opacity: 0;
  61. transform: translateY(20px);
  62. }
  63. to {
  64. opacity: 1;
  65. transform: translateY(0);
  66. }
  67. }
  68. .fade-in {
  69. animation: fadeIn 0.6s ease-out forwards;
  70. }
  71. .delay-100 {
  72. animation-delay: 0.1s;
  73. }
  74. .delay-200 {
  75. animation-delay: 0.2s;
  76. }
  77. .delay-300 {
  78. animation-delay: 0.3s;
  79. }
  80. .delay-400 {
  81. animation-delay: 0.4s;
  82. }
  83. .delay-500 {
  84. animation-delay: 0.5s;
  85. }
  86. </style>
  87. </head>
  88. <body class="bg-gray-50 text-gray-800 font-sans min-h-screen">
  89. <!-- 导航栏 -->
  90. <header class="fixed top-0 left-0 right-0 bg-white/95 shadow-sm z-50">
  91. <div class="container mx-auto px-4 py-4 flex justify-between items-center">
  92. <div class="flex items-center space-x-2">
  93. <div
  94. class="w-10 h-10 rounded-lg bg-gradient-to-r from-primary to-secondary flex items-center justify-center">
  95. <img alt="夺宝奇兵" src="https://hc.homilychart.com/hc/250121/img/20230711171637.png" style="width: 40px;height: 40px;">
  96. </div>
  97. <span
  98. class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-primary to-secondary">夺宝奇兵-免费体验</span>
  99. </div>
  100. <!-- 桌面导航 -->
  101. <nav class="hidden md:flex items-center space-x-8">
  102. <a href="./hkhcdbqb.html" class="hover:text-primary transition-colors">首页</a>
  103. <a href="./hkhcdbqbDownload.html" class="hover:text-primary transition-colors">下载中心</a>
  104. <a href="./hkhcdbqbGuide.html" class="text-primary font-medium">操作指南</a>
  105. <a href="https://wa.me/+6588792879?text=我要体验夺宝奇兵" target="_blank"
  106. class="px-5 py-2 rounded-full bg-gradient-to-r from-primary to-secondary text-white hover:shadow-lg transition-all">联系我们</a>
  107. </nav>
  108. <!-- 移动端菜单 -->
  109. <button id="mobileMenuBtn" class="md:hidden text-xl">
  110. <i class="fa fa-bars"></i>
  111. </button>
  112. </div>
  113. <!-- 移动端菜单内容 -->
  114. <div id="mobileMenu" class="md:hidden hidden bg-white border-t">
  115. <div class="container mx-auto px-4 py-3 flex flex-col space-y-3">
  116. <a href="./hkhcdbqb.html" class="py-2 hover:text-primary transition-colors">首页</a>
  117. <a href="./hkhcdbqbDownload.html" class="py-2 hover:text-primary transition-colors">下载中心</a>
  118. <a href="./hkhcdbqbGuide.html" class="py-2 text-primary">操作指南</a>
  119. <a href="https://wa.me/+6588792879?text=我要体验夺宝奇兵" target="_blank"
  120. class="py-2 mt-2 rounded-full bg-gradient-to-r from-primary to-secondary text-white text-center">联系我们</a>
  121. </div>
  122. </div>
  123. </header>
  124. <!-- 主要内容 -->
  125. <main class="pt-28 pb-16 px-4 flex-grow">
  126. <div class="container mx-auto max-w-4xl">
  127. <!-- 成功提示卡片 -->
  128. <div class="bg-white rounded-2xl shadow-lg p-8 md:p-10 max-w-3xl mx-auto fade-in">
  129. <!-- 成功图标 -->
  130. <div
  131. class="w-20 h-20 mx-auto mb-6 rounded-full bg-success/10 flex items-center justify-center text-success pulse-animation delay-100">
  132. <i class="fa fa-check text-4xl"></i>
  133. </div>
  134. <!-- 标题 -->
  135. <div class="text-center mb-6 delay-200 fade-in">
  136. <h1 class="text-[clamp(1.5rem,3vw,2.2rem)] font-bold text-gray-800 mb-2">注册成功!</h1>
  137. <p class="text-gray-600 text-lg">感谢您参加DeepChart VS 夺宝奇兵体验</p>
  138. </div>
  139. <!-- 成功图片 -->
  140. <div class="mb-8 rounded-xl overflow-hidden shadow-md delay-300 fade-in">
  141. <a href="./hkhcdbqbDownload.html"><img src="https://hc.homilychart.com/hc/250121/img/homilylink-down.jpeg"
  142. alt="点我跳转多平台设备软件安装" class="w-full h-auto rounded-xl shadow-lg"></a>
  143. </div>
  144. <!-- 成功信息 -->
  145. <div class="space-y-4 mb-8 text-gray-600 delay-400 fade-in">
  146. <div class="flex items-start">
  147. <div
  148. class="w-6 h-6 rounded-full bg-primary/10 flex items-center justify-center text-primary flex-shrink-0 mt-0.5 mr-3">
  149. <i class="fa fa-envelope-o text-sm"></i>
  150. </div>
  151. <p>我们很快将通过Whatsapp或者微信与您取得联系!</p>
  152. </div>
  153. <div class="flex items-start">
  154. <div
  155. class="w-6 h-6 rounded-full bg-primary/10 flex items-center justify-center text-primary flex-shrink-0 mt-0.5 mr-3">
  156. <i class="fa fa-mobile text-sm"></i>
  157. </div>
  158. <p>同时,点击面图片跳转到HomilyLink安装界面!</p>
  159. </div>
  160. <div class="flex items-start">
  161. <div
  162. class="w-6 h-6 rounded-full bg-primary/10 flex items-center justify-center text-primary flex-shrink-0 mt-0.5 mr-3">
  163. <i class="fa fa-mobile text-sm"></i>
  164. </div>
  165. <p>手机商店搜索"DeepChart"并下载安装!</p>
  166. </div>
  167. <div class="flex items-start">
  168. <div
  169. class="w-6 h-6 rounded-full bg-primary/10 flex items-center justify-center text-primary flex-shrink-0 mt-0.5 mr-3">
  170. <i class="fa fa-mobile text-sm"></i>
  171. </div>
  172. <p>DeepChart的体验账号和夺宝奇兵账号一致!</p>
  173. </div>
  174. <div class="flex items-start">
  175. <div
  176. class="w-6 h-6 rounded-full bg-primary/10 flex items-center justify-center text-primary flex-shrink-0 mt-0.5 mr-3">
  177. <i class="fa fa-clock-o text-sm"></i>
  178. </div>
  179. <p>您不需要自己注册,我们的老师会为您发送体验的iD和密码!</p>
  180. </div>
  181. </div>
  182. <!-- 操作按钮 -->
  183. <div class="flex flex-col sm:flex-row gap-4 delay-500 fade-in">
  184. <a href="./hkhcdbqbGuide.html"
  185. class="btn-effect flex-1 py-3 rounded-lg bg-gradient-to-r from-primary to-secondary text-white font-medium text-center">
  186. <i class="fa fa-home mr-2"></i>查看操作指南
  187. </a>
  188. <a href="https://wa.me/+6588792879?text=我要体验夺宝奇兵"
  189. class="btn-effect flex-1 py-3 rounded-lg border border-primary text-primary font-medium text-center hover:bg-primary/5 transition-colors">
  190. <i class="fa fa-user mr-2"></i>需要联系帮助
  191. </a>
  192. </div>
  193. </div>
  194. <!-- 帮助信息 -->
  195. <div class="text-center mt-8 text-gray-500 text-sm max-w-xl mx-auto delay-500 fade-in">
  196. <p>如果您没有收到我们老师的消息,请及时<a href="https://wa.me/+6588792879?text=我要体验夺宝奇兵" target="_blank"
  197. class="text-primary hover:underline">联系我们</a></p>
  198. </div>
  199. </div>
  200. </main>
  201. <!-- 页脚 -->
  202. <footer class="bg-gray-900 text-white py-10 px-4 mt-16">
  203. <div class="container mx-auto max-w-6xl text-center">
  204. <div class="mb-6">
  205. <div class="inline-flex items-center space-x-2">
  206. <div class="w-10 h-10 rounded-lg gradient-bg flex items-center justify-center">
  207. <img alt="夺宝奇兵" src="https://hc.homilychart.com/hc/250121/img/20230711171637.png" style="width: 40px;height: 40px;">
  208. </div>
  209. <span class="font-bold">夺宝奇兵</span>
  210. </div>
  211. </div>
  212. <p class="text-gray-400 text-sm mb-4">Copyright 2026.Capitalmaster Pte Ltd All Rights Reserved.</p>
  213. </div>
  214. </footer>
  215. <!-- 交互脚本 -->
  216. <script>
  217. // 移动端菜单切换
  218. document.getElementById('mobileMenuBtn').addEventListener('click', function () {
  219. const menu = document.getElementById('mobileMenu');
  220. menu.classList.toggle('hidden');
  221. const icon = this.querySelector('i');
  222. if (icon.classList.contains('fa-bars')) {
  223. icon.classList.replace('fa-bars', 'fa-times');
  224. } else {
  225. icon.classList.replace('fa-times', 'fa-bars');
  226. }
  227. });
  228. // 页面加载动画
  229. document.addEventListener('DOMContentLoaded', function () {
  230. document.querySelectorAll('.fade-in').forEach(el => {
  231. el.style.opacity = '1';
  232. });
  233. });
  234. // 可选:5秒后自动跳转到首页
  235. // setTimeout(() => {
  236. // window.location.href = '#'; // 替换为实际首页URL
  237. // }, 5000);
  238. </script>
  239. </body>
  240. </html>