市场夺宝奇兵
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.

916 lines
38 KiB

3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months 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>赢在美股——加入我们,开启赢家人生!</title>
  15. <script src="https://cdn.tailwindcss.com"></script>
  16. <script type="text/javascript" src="https://hc.homilychart.com/hc/210802/js/jquery-1.9.1.min.js"></script>
  17. <link href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet">
  18. <script>
  19. tailwind.config = {
  20. theme: {
  21. extend: {
  22. colors: {
  23. primary: '#3B82F6',
  24. secondary: '#10B981',
  25. accent: '#8B5CF6',
  26. dark: '#1E293B',
  27. light: '#F8FAFC'
  28. },
  29. fontFamily: {
  30. sans: ['Inter', 'system-ui', 'sans-serif'],
  31. },
  32. },
  33. }
  34. }
  35. </script>
  36. <style>
  37. /* 在head中添加初始滚动样式 */
  38. html,
  39. body {
  40. scroll-behavior: auto;
  41. }
  42. /* 隐藏页面内容,直到滚动完成 */
  43. body {
  44. opacity: 0;
  45. transition: opacity 0.3s ease;
  46. }
  47. body.content-visible {
  48. opacity: 1;
  49. }
  50. </style>
  51. <script type="module" crossorigin src="./main.js"></script>
  52. <link rel="modulepreload" crossorigin href="./member.js">
  53. </head>
  54. <body class="font-sans bg-light text-dark body-text">
  55. <!-- 页面加载状态 -->
  56. <div id="loadingOverlay" class="loading-overlay">
  57. <div class="loading-spinner"></div>
  58. </div>
  59. <!-- 头部导航区域 -->
  60. <header class="fixed w-full bg-white/90 backdrop-blur-sm shadow-sm z-50 transition-all duration-300">
  61. <div class="container mx-auto px-4 py-3 flex justify-between items-center">
  62. <a href="#" class="flex items-center space-x-2">
  63. <div class="w-10 h-10 rounded-lg gradient-background flex items-center justify-center">
  64. <img alt="赢在美股" src="https://d31zlh4on95l9h.cloudfront.net/images/497d8b38ab9f738e9720d5d7bddf3beb.png"
  65. style="width: 40px;height: 40px;">
  66. </div>
  67. <span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-primary to-accent">
  68. 赢在美股
  69. </span>
  70. </a>
  71. <!-- 桌面导航菜单 -->
  72. <nav class="hidden md:flex items-center space-x-8">
  73. <a href="#features" class="font-medium hover:text-primary transition-colors">特色功能</a>
  74. <a href="#kc" class="font-medium hover:text-primary transition-colors">最新课程</a>
  75. <!-- <a href="hcdbqb-guide.html" class="font-medium hover:text-primary transition-colors">操作指南</a> -->
  76. <a href="https://api.whatsapp.com/send?phone=85255110485&text=我需要帮助" target="_blank"
  77. class="px-5 py-2 rounded-full gradient-background text-white font-medium hover:shadow-lg transition-all">
  78. 加入我们
  79. </a>
  80. </nav>
  81. <!-- 移动端菜单按钮 -->
  82. <button id="menuBtn" class="md:hidden text-xl">
  83. <i class="fa fa-bars"></i>
  84. </button>
  85. </div>
  86. <!-- 移动端导航菜单 -->
  87. <div id="mobileMenu" class="md:hidden hidden bg-white border-t animate-fade-in">
  88. <div class="container mx-auto px-4 py-3 flex flex-col space-y-4">
  89. <a href="#features" class="font-medium py-2 hover:text-primary transition-colors">特色功能</a>
  90. <a href="#kc" class="font-medium py-2 hover:text-primary transition-colors">最新课程</a>
  91. <!-- <a href="hcdbqb-guide.html" class="font-medium py-2 hover:text-primary transition-colors">操作指南</a> -->
  92. <!-- <a href="#" class="font-medium py-2 hover:text-primary transition-colors">操作指南</a> -->
  93. <a href="https://api.whatsapp.com/send?phone=85255110485&text=我需要帮助" target="_blank"
  94. class="py-2 rounded-full gradient-background text-white font-medium text-center hover:shadow-lg transition-all">
  95. 加入我们
  96. </a>
  97. </div>
  98. </div>
  99. </header>
  100. <!-- 英雄区域 -->
  101. <section class="pt-32 pb-20 md:pt-40 md:pb-32 px-4 bg-gradient-to-b from-blue-50 to-white">
  102. <div class="container mx-auto max-w-6xl">
  103. <div class="flex flex-col md:flex-row items-center">
  104. <div class="md:w-1/2 mb-10 md:mb-0 animate-fade-in">
  105. <h1 class="text-[clamp(2rem,5vw,3.5rem)] font-bold leading-tight text-shadow-custom mb-6 heading-primary">
  106. 夺宝奇兵,<br>
  107. <span class="bg-clip-text text-transparent bg-gradient-to-r from-primary to-accent">现在免费体验!</span>
  108. </h1>
  109. <p class="text-lg text-gray-600 mb-8 max-w-lg paragraph-text">
  110. AI时代股票投资必备机构界的黑科技!<br />
  111. 加入「赢在美股」,即可参与夺宝奇兵免费体验 7 天的活动,立刻注册报名吧!
  112. </p>
  113. <div class="flex flex-col sm:flex-row gap-4">
  114. <a href="#register"
  115. class="px-8 py-3 rounded-full gradient-background text-white font-medium text-center hover:shadow-lg hover:shadow-primary/20 transition-all transform hover:-translate-y-0.5">
  116. 立即注册
  117. </a>
  118. <a href="#promotions"
  119. class="px-8 py-3 rounded-full border-2 border-primary text-primary font-medium text-center hover:bg-primary/5 transition-all">
  120. 了解更多
  121. </a>
  122. <a href="hcdbqb-download.html"
  123. class="px-8 py-3 rounded-full border-2 border-primary text-primary font-medium text-center hover:bg-primary/5 transition-all">
  124. 立刻下载
  125. </a>
  126. </div>
  127. </div>
  128. <div class="md:w-1/2 animate-fade-in delay-200">
  129. <div class="relative">
  130. <div class="absolute -inset-4 bg-gradient-to-r from-primary/20 to-accent/20 rounded-3xl blur-xl opacity-70">
  131. </div>
  132. <img src="https://hc.homilychart.com/hc/250121/img/dbqbindex.jpg" alt="夺宝奇兵"
  133. class="relative z-10 rounded-2xl shadow-xl w-full object-cover">
  134. </div>
  135. </div>
  136. </div>
  137. </div>
  138. </section>
  139. <!-- 特色功能区域 -->
  140. <section id="features" class="py-16 px-4 bg-white">
  141. <div class="container mx-auto max-w-6xl">
  142. <div class="text-center mb-16 animate-fade-in">
  143. <h2 class="text-[clamp(1.5rem,3vw,2.5rem)] font-bold mb-4 heading-secondary">加入赢在美股,您可以免费体验什么?</h2>
  144. <p class="text-gray-600 max-w-2xl mx-auto paragraph-text">您可以免费体验超级云脑 AI预测大模型 夺宝利剑三个模块 7 天,助力您赢在美股!</p>
  145. </div>
  146. <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
  147. <div class="bg-white p-8 rounded-2xl shadow-lg card-hover-effect animate-fade-in delay-100">
  148. <div class="w-14 h-14 rounded-xl bg-blue-100 flex items-center justify-center mb-6">
  149. <img alt="夺宝奇兵" src="https://hc.homilychart.com/hc/250121/img/chaojiyunnao.png">
  150. </div>
  151. <h3 class="text-xl font-semibold mb-3 heading-tertiary">超级云脑</h3>
  152. <p class="text-gray-600 paragraph-text">您的股票该体检了!<br />从十大维度,为您的股票进行全面体检!</p>
  153. </div>
  154. <div class="bg-white p-8 rounded-2xl shadow-lg card-hover-effect animate-fade-in delay-200">
  155. <div class="w-14 h-14 rounded-xl bg-purple-100 flex items-center justify-center mb-6">
  156. <img alt="夺宝奇兵" src="https://hc.homilychart.com/hc/250121/img/AIyuce.png">
  157. </div>
  158. <h3 class="text-xl font-semibold mb-3 heading-tertiary">AI预测大模型</h3>
  159. <p class="text-gray-600 paragraph-text">采用最先进的安全技术,保护您的数据和隐私,让您高枕无忧地开展业务。</p>
  160. </div>
  161. <div class="bg-white p-8 rounded-2xl shadow-lg card-hover-effect animate-fade-in delay-300">
  162. <div class="w-14 h-14 rounded-xl bg-green-100 flex items-center justify-center mb-6">
  163. <img alt="夺宝奇兵" src="https://hc.homilychart.com/hc/250121/img/duobaolijian.png">
  164. </div>
  165. <h3 class="text-xl font-semibold mb-3 heading-tertiary">夺宝利剑</h3>
  166. <p class="text-gray-600 paragraph-text">根据您的具体需求提供个性化解决方案,灵活适应不同业务场景和规模。</p>
  167. </div>
  168. </div>
  169. </div>
  170. </section>
  171. <!-- 产品宣传区域 -->
  172. <section id="promotions" class="py-20 px-4 bg-gray-50">
  173. <div class="container mx-auto max-w-6xl">
  174. <div class="text-center mb-16 animate-fade-in">
  175. <h2 class="text-[clamp(1.5rem,3vw,2.5rem)] font-bold mb-4 heading-secondary">我们的创新解决方案</h2>
  176. <p class="text-gray-600 max-w-2xl mx-auto paragraph-text">探索我们的核心产品和服务,了解如何为您的业务创造价值</p>
  177. </div>
  178. <!-- 宣传项 1 - 超级云脑 -->
  179. <div class="bg-white rounded-3xl shadow-xl overflow-hidden mb-16 flex flex-col md:flex-row animate-fade-in">
  180. <div class="md:w-1/2 promotion-image">
  181. <img src="https://hc.homilychart.com/hc/250121/img/chaojiyunnaoimg.jpg" alt="智能数据分析平台" class="w-full h-full">
  182. </div>
  183. <div class="md:w-1/2 p-8 md:p-12 flex flex-col justify-center">
  184. <span
  185. class="inline-block px-4 py-1 rounded-full bg-blue-100 text-primary text-base font-medium mb-4 breadcrumb-text">
  186. HomilyLink > 夺宝奇兵 > 超级云脑
  187. </span>
  188. <h3 class="text-2xl md:text-3xl font-bold mb-4 heading-tertiary">超级云脑:股票体检专家</h3>
  189. <p class="text-gray-600 mb-6 paragraph-text">
  190. 利用人工智能和机器学习技术,快速处理和分析海量数据,通过十大维度为您的股票进行专科体检,追踪机构行为。
  191. </p>
  192. <ul class="space-y-3 mb-8">
  193. <li class="flex items-start list-item">
  194. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  195. <span>云脑探秘:深度解析股市底层数据</span>
  196. </li>
  197. <li class="flex items-start list-item">
  198. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  199. <span>机构动向:实时追踪机构资金动向</span>
  200. </li>
  201. <li class="flex items-start list-item">
  202. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  203. <span>体检专家:股票标的全方位健康检测</span>
  204. </li>
  205. </ul>
  206. <a href="#register" class="inline-flex items-center text-primary font-medium hover:underline">
  207. 加入赢在美股,解锁更多资讯 <i class="fa fa-arrow-right ml-2"></i>
  208. </a>
  209. </div>
  210. </div>
  211. <!-- 宣传项 2 - AI预测大模型 -->
  212. <div
  213. class="bg-white rounded-3xl shadow-xl overflow-hidden mb-16 flex flex-col md:flex-row-reverse animate-fade-in delay-100">
  214. <div class="md:w-1/2 promotion-image">
  215. <img src="https://hc.homilychart.com/hc/250121/img/aiyucedamoxing.jpg" alt="AI预测大模型" class="w-full h-full">
  216. </div>
  217. <div class="md:w-1/2 p-8 md:p-12 flex flex-col justify-center">
  218. <span
  219. class="inline-block px-4 py-1 rounded-full bg-purple-100 text-accent text-base font-medium mb-4 breadcrumb-text">
  220. HomilyLink > 夺宝奇兵 > AI预测大模型
  221. </span>
  222. <h3 class="text-2xl md:text-3xl font-bold mb-4 heading-tertiary">AI预测大模型</h3>
  223. <p class="text-gray-600 mb-6 paragraph-text">
  224. AI 预测大模型颠覆传统,以深度学习与算法挖股市数据抓趋势、预测高低点;AI时空共振结合前沿 AI与时空共振精准识别变盘点。
  225. </p>
  226. <ul class="space-y-3 mb-8">
  227. <li class="flex items-start list-item">
  228. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  229. <span>AI股价预测术</span>
  230. </li>
  231. <li class="flex items-start list-item">
  232. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  233. <span>AI时空共振</span>
  234. </li>
  235. <li class="flex items-start list-item">
  236. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  237. <span>未来预测</span>
  238. </li>
  239. </ul>
  240. <a href="#register" class="inline-flex items-center text-primary font-medium hover:underline">
  241. 加入赢在美股,解锁更多资讯 <i class="fa fa-arrow-right ml-2"></i>
  242. </a>
  243. </div>
  244. </div>
  245. <!-- 宣传项 3 - 夺宝利剑 -->
  246. <div
  247. class="bg-white rounded-3xl shadow-xl overflow-hidden mb-16 flex flex-col md:flex-row animate-fade-in delay-100">
  248. <div class="md:w-1/2 promotion-image">
  249. <img src="https://hc.homilychart.com/hc/250121/img/duobaolijianindex.jpg" alt="夺宝利剑" class="w-full h-full">
  250. </div>
  251. <div class="md:w-1/2 p-8 md:p-12 flex flex-col justify-center">
  252. <span
  253. class="inline-block px-4 py-1 rounded-full bg-purple-100 text-accent text-base font-medium mb-4 breadcrumb-text">
  254. HomilyLink > 夺宝奇兵 > Ai金牛 > 夺宝利剑
  255. </span>
  256. <h3 class="text-2xl md:text-3xl font-bold mb-4 heading-tertiary">夺宝利剑</h3>
  257. <p class="text-gray-600 mb-6 paragraph-text">
  258. 最聪明的AI智能均线结合三维波动量,让您在AI时代深度追踪机构的操盘行为!
  259. </p>
  260. <ul class="space-y-3 mb-8">
  261. <li class="flex items-start list-item">
  262. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  263. <span>最聪明的AI智能均线</span>
  264. </li>
  265. <li class="flex items-start list-item">
  266. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  267. <span>三维波动量</span>
  268. </li>
  269. <li class="flex items-start list-item">
  270. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  271. <span>AI大数据模型</span>
  272. </li>
  273. </ul>
  274. <a href="#register" class="inline-flex items-center text-primary font-medium hover:underline">
  275. 加入赢在美股,解锁更多资讯 <i class="fa fa-arrow-right ml-2"></i>
  276. </a>
  277. </div>
  278. </div>
  279. <!-- 宣传项 4 - 专题讲座 -->
  280. <div id="kc"
  281. class="bg-white rounded-3xl shadow-xl overflow-hidden flex flex-col md:flex-row animate-fade-in delay-200">
  282. <div class="md:w-1/2 promotion-image">
  283. <img id="lectureImage" src="" alt="John Lu谈股专题讲座" class="w-full h-full">
  284. </div>
  285. <div class="md:w-1/2 p-8 md:p-12 flex flex-col justify-center">
  286. <span
  287. class="inline-block px-4 py-1 rounded-full bg-green-100 text-secondary text-base font-medium mb-4 breadcrumb-text">
  288. HomilyLink > 消息 > 赢在美股班级群
  289. </span>
  290. <h3 class="text-2xl md:text-3xl font-bold mb-4 heading-tertiary">HomilyLink专题讲座</h3>
  291. <p class="text-gray-600 mb-6 paragraph-text">
  292. 我们推出 HomilyLink专题讲座;结合市场事实热点与机构领域黑科技 "夺宝奇兵",助力投资者提升股市获利能力。
  293. </p>
  294. <ul class="space-y-3 mb-8">
  295. <li class="flex items-start list-item">
  296. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  297. <span>课程为香港时间</span>
  298. </li>
  299. <li class="flex items-start list-item">
  300. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  301. <span>体系化课程助力跟庄稳赢</span>
  302. </li>
  303. <li class="flex items-start list-item">
  304. <i class="fa fa-check-circle text-secondary mt-1 mr-3"></i>
  305. <span>HomilyLink赢在美股班级群专属课程(实时答疑+干货分享)</span>
  306. </li>
  307. </ul>
  308. <a href="#register" class="inline-flex items-center text-primary font-medium hover:underline">
  309. 加入赢在美股,解锁更多资讯 <i class="fa fa-arrow-right ml-2"></i>
  310. </a>
  311. </div>
  312. </div>
  313. </div>
  314. </section>
  315. <!-- 注册表单区域 -->
  316. <section id="register" class="py-20 px-4 bg-white">
  317. <div class="container mx-auto max-w-6xl">
  318. <div class="bg-gradient-to-br rounded-3xl shadow-2xl overflow-hidden">
  319. <div class="grid grid-cols-1 md:grid-cols-2">
  320. <!-- 左侧区域 - 已替换背景 -->
  321. <div class="p-8 md:p-12 text-white flex flex-col justify-center bg-image-overlay">
  322. <h2 class="text-2xl md:text-3xl font-bold mb-6 heading-secondary">加入赢在美股,开启赢家人生!</h2>
  323. <p class="text-gray-300 mb-10 leading-relaxed paragraph-text">
  324. 填写报名表,即可快速解锁专业投资AI工具,助力您把握投资机会!
  325. </p>
  326. <div class="space-y-6">
  327. <div class="flex items-start">
  328. <div class="w-10 h-10 rounded-full bg-primary/20 flex items-center justify-center mr-4 mt-1">
  329. <img alt="超级云脑" src="https://hc.homilychart.com/hc/250121/img/chaojiyunnao.png">
  330. </div>
  331. <div>
  332. <h3 class="font-semibold mb-1 heading-tertiary">超级云脑</h3>
  333. <p class="text-gray-400 text-sm paragraph-text">您的股票体检专家!</p>
  334. </div>
  335. </div>
  336. <div class="flex items-start">
  337. <div class="w-10 h-10 rounded-full bg-primary/20 flex items-center justify-center mr-4 mt-1">
  338. <img alt="AI预测大模型" src="https://hc.homilychart.com/hc/250121/img/AIyuce.png">
  339. </div>
  340. <div>
  341. <h3 class="font-semibold mb-1 heading-tertiary">AI预测大模型</h3>
  342. <p class="text-gray-400 text-sm paragraph-text">时间空间价格AI精准预测!</p>
  343. </div>
  344. </div>
  345. <div class="flex items-start">
  346. <div class="w-10 h-10 rounded-full bg-primary/20 flex items-center justify-center mr-4 mt-1">
  347. <img alt="夺宝利剑" src="https://hc.homilychart.com/hc/250121/img/duobaolijian.png">
  348. </div>
  349. <div>
  350. <h3 class="font-semibold mb-1 heading-tertiary">夺宝利剑</h3>
  351. <p class="text-gray-400 text-sm paragraph-text">最聪明的AI智能均线+三维波动量</p>
  352. </div>
  353. </div>
  354. </div>
  355. </div>
  356. <!-- 右侧表单区域 - 保持不变 -->
  357. <div class="bg-white p-8 md:p-12">
  358. <form id="registrationForm" class="space-y-6">
  359. <input type="hidden" name="zbtype" id="zbType" value="6">
  360. <div>
  361. <label for="userNameInfo" class="block text-sm font-medium text-gray-700 mb-1 form-label">姓名</label>
  362. <input type="text" id="userNameInfo" name="userNameInfo"
  363. class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary focus:border-primary transition-all form-input"
  364. placeholder="请输入您的姓名" required>
  365. </div>
  366. <div>
  367. <label for="countryInfo" class="block text-sm font-medium text-gray-700 mb-1 form-label">国家/地区代码</label>
  368. <select id="countryInfo" name="countryInfo"
  369. class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary focus:border-primary transition-all form-input"
  370. required>
  371. <option value="+65">+65 新加坡</option>
  372. <option value="+60">+60 马来西亚</option>
  373. <option value="+852">+852 香港</option>
  374. <option value="+1" selected>+1 美国</option>
  375. <option value="+62">+62 印尼</option>
  376. <option value="+1">+1 加拿大</option>
  377. <option value="+61">+61 澳大利亚</option>
  378. <option value="+673">+673 文莱</option>
  379. <option value="+886">+886 台湾</option>
  380. <option value="+86">+86 中国</option>
  381. <option value="+0">+0 其他</option>
  382. <option value="+64">+64 新西兰</option>
  383. <option value="+44">+44 英国</option>
  384. <option value="+81">+81 日本</option>
  385. <option value="+49">+49 德国</option>
  386. <option value="+82">+82 韩国</option>
  387. <option value="+84">+84 越南</option>
  388. <option value="+971">+971 阿联酋</option>
  389. <option value="+45">+45 丹麦</option>
  390. <option value="+853">+853 澳门</option>
  391. <option value="+66">+66 泰国</option>
  392. <option value="+91">+91 印度</option>
  393. <option value="+41">+41 瑞士</option>
  394. <option value="+358">+358 芬兰</option>
  395. <option value="+33">+33 法国</option>
  396. <option value="+63">+63 菲律宾</option>
  397. <option value="+31">+31 荷兰</option>
  398. <option value="+46">+46 瑞典</option>
  399. <option value="+34">+34 西班牙</option>
  400. <option value="+54">+54 阿根廷</option>
  401. <option value="+39">+39 意大利</option>
  402. <option value="+7">+7 俄罗斯</option>
  403. <option value="+420">+420 捷克</option>
  404. </select>
  405. </div>
  406. <div>
  407. <label for="userMobile" class="block text-sm font-medium text-gray-700 mb-1 form-label">电话号码</label>
  408. <input type="tel" name="userMobile" id="userMobile" placeholder="纯手机号 ( 不含国家编号 )"
  409. onkeyup="value=value.replace(/[^\d]/g,'').replace(/^0/g,'')"
  410. class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary focus:border-primary transition-all form-input"
  411. autocomplete="off" required>
  412. </div>
  413. <div>
  414. <label for="userWechat" class="block text-sm font-medium text-gray-700 mb-1 form-label">微信ID</label>
  415. <input type="text" name="userWechat" id="userWechat" placeholder="微信ID ( 如没有WhatsApp )"
  416. autocomplete="off"
  417. class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary focus:border-primary transition-all form-input">
  418. </div>
  419. <div>
  420. <label for="userEmail" class="block text-sm font-medium text-gray-700 mb-1 form-label">电子邮箱</label>
  421. <input type="email" placeholder="请输入您的邮箱" name="userEmail" id="userEmail" autocomplete="off"
  422. class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-primary focus:border-primary transition-all form-input"
  423. required>
  424. </div>
  425. <div class="flex items-start">
  426. <input type="checkbox" id="agreement" name="agreement" class="mt-1 mr-2" required>
  427. <label for="agreement" class="text-sm text-gray-600 form-label">
  428. 我同意接收相关产品和服务的资讯
  429. </label>
  430. </div>
  431. <button type="submit" id="submitBtn"
  432. class="w-full py-3 px-6 rounded-lg gradient-background text-white font-medium hover:shadow-lg hover:shadow-primary/20 transition-all transform hover:-translate-y-0.5 form-button">
  433. 提交注册
  434. </button>
  435. </form>
  436. </div>
  437. </div>
  438. </div>
  439. </div>
  440. </section>
  441. <!-- 页脚区域 -->
  442. <footer class="footer-bg text-white py-12 px-4">
  443. <div class="container mx-auto max-w-6xl">
  444. <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
  445. <div>
  446. <div class="flex items-center space-x-2 mb-6">
  447. <div class="w-10 h-10 rounded-lg gradient-background flex items-center justify-center">
  448. <img alt="赢在美股" src="https://d31zlh4on95l9h.cloudfront.net/images/497d8b38ab9f738e9720d5d7bddf3beb.png"
  449. style="width: 40px;height: 40px;">
  450. </div>
  451. <span class="text-xl font-bold">赢在美股</span>
  452. </div>
  453. <p class="text-gray-400 mb-6 paragraph-text">
  454. 加入赢在美股,开启赢家人生!
  455. </p>
  456. <div class="flex space-x-4">
  457. <a href="#"
  458. class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors">
  459. <i class="fa fa-facebook"></i>
  460. </a>
  461. <a href="#"
  462. class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors">
  463. <i class="fa fa-twitter"></i>
  464. </a>
  465. <a href="#"
  466. class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors">
  467. <i class="fa fa-linkedin"></i>
  468. </a>
  469. <a href="#"
  470. class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-primary transition-colors">
  471. <i class="fa fa-instagram"></i>
  472. </a>
  473. </div>
  474. </div>
  475. <div>
  476. <h4 class="text-lg font-semibold mb-6 heading-tertiary">产品</h4>
  477. <ul class="space-y-3">
  478. <li class="list-item"><a href="https://api.whatsapp.com/send?phone=85255110485&text=我想了解赢在美股"
  479. target="_blank" class="text-gray-400 hover:text-white transition-colors">弘历云版软件</a></li>
  480. <li class="list-item"><a href="https://api.whatsapp.com/send?phone=85255110485&text=我想了解赢在美股"
  481. target="_blank" class="text-gray-400 hover:text-white transition-colors">HomilyChart</a></li>
  482. <li class="list-item"><a href="https://api.whatsapp.com/send?phone=85255110485&text=我想了解赢在美股"
  483. target="_blank" class="text-gray-400 hover:text-white transition-colors">夺宝奇兵</a></li>
  484. <li class="list-item"><a href="https://api.whatsapp.com/send?phone=85255110485&text=我想了解赢在美股"
  485. class="text-gray-400 hover:text-white transition-colors">博股会员</a></li>
  486. <li class="list-item"><a href="https://api.whatsapp.com/send?phone=85255110485&text=我想了解赢在美股"
  487. class="text-gray-400 hover:text-white transition-colors">最新软件</a></li>
  488. </ul>
  489. </div>
  490. <div>
  491. <h4 class="text-lg font-semibold mb-6 heading-tertiary">公司</h4>
  492. <ul class="space-y-3">
  493. <li class="list-item"><a href="https://api.whatsapp.com/send?phone=85255110485&text=我想了解赢在美股"
  494. target="_blank" class="text-gray-400 hover:text-white transition-colors">关于我们</a></li>
  495. <li class="list-item"><a href="https://api.whatsapp.com/send?phone=85255110485&text=我想了解赢在美股"
  496. target="_blank" class="text-gray-400 hover:text-white transition-colors">团队介绍</a></li>
  497. <li class="list-item"><a href="https://api.whatsapp.com/send?phone=85255110485&text=我想了解赢在美股"
  498. target="_blank" class="text-gray-400 hover:text-white transition-colors">联系我们</a></li>
  499. </ul>
  500. </div>
  501. <div>
  502. <h4 class="text-lg font-semibold mb-6 heading-tertiary">支持</h4>
  503. <ul class="space-y-3">
  504. <li class="list-item">
  505. <!-- <a href="hcdbqb-guide.html"
  506. class="text-gray-400 hover:text-white transition-colors">帮助中心</a> -->
  507. <a href="https://api.whatsapp.com/send?phone=85255110485&text=我想了解赢在美股"
  508. class="text-gray-400 hover:text-white transition-colors">帮助中心</a>
  509. </li>
  510. <li class="list-item"><a href="https://api.whatsapp.com/send?phone=85255110485&text=我想了解赢在美股"
  511. target="_blank" class="text-gray-400 hover:text-white transition-colors">常见问题</a></li>
  512. </ul>
  513. </div>
  514. </div>
  515. <div class=" border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
  516. <p class="text-gray-500 text-sm mb-4 md:mb-0 paragraph-text">
  517. &copy; Copyright 2025.Capitalmaster Pte Ltd All Rights Reserved.
  518. </p>
  519. <div class="flex space-x-6">
  520. 如需帮助,请及时联系我们!
  521. </div>
  522. </div>
  523. </div>
  524. </footer>
  525. <!-- 表单提交成功提示模态框 -->
  526. <div id="successModal" class="fixed inset-0 bg-black/50 flex items-center justify-center z-50 hidden">
  527. <div class="bg-white rounded-2xl p-8 max-w-md w-full mx-4 transform transition-all relative">
  528. <!-- 关闭按钮 - 右上角叉号 -->
  529. <button id="closeModal" class="absolute top-4 right-4 text-gray-400 hover:text-gray-600 transition-colors">
  530. <i class="fa fa-times text-xl"></i>
  531. </button>
  532. <div class="text-center">
  533. <div class="w-16 h-16 rounded-full bg-green-100 flex items-center justify-center mx-auto mb-6">
  534. <i class="fa fa-check text-secondary text-2xl"></i>
  535. </div>
  536. <h3 class="text-xl font-bold mb-2 heading-tertiary">注册成功!</h3>
  537. <p class="text-gray-600 mb-6 paragraph-text">感谢您的注册,我们的顾问将尽快与您联系。</p>
  538. <a href="https://api.whatsapp.com/send?phone=85255110485&text=课程" target="_blank"
  539. class="inline-block px-6 py-2 bg-primary text-white rounded-lg hover:bg-primary/90 transition-colors">
  540. 联系我们
  541. </a>
  542. </div>
  543. </div>
  544. </div>
  545. <style>
  546. /* 全局字体大小调整 - 整体调小 */
  547. html {
  548. font-size: 16px;
  549. }
  550. /* 文本样式类 */
  551. .page-body {
  552. font-size: 1rem;
  553. line-height: 1.6;
  554. }
  555. .text-heading-primary {
  556. font-size: clamp(2.2rem, 5vw, 3.5rem);
  557. line-height: 1.2;
  558. }
  559. .text-heading-secondary {
  560. font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  561. line-height: 1.3;
  562. }
  563. .text-heading-tertiary {
  564. font-size: clamp(1.3rem, 2.5vw, 2rem);
  565. line-height: 1.4;
  566. }
  567. .text-paragraph {
  568. font-size: 1rem;
  569. line-height: 1.6;
  570. }
  571. .text-list-item {
  572. font-size: 1rem;
  573. }
  574. .text-breadcrumb {
  575. font-size: 0.9rem;
  576. padding-top: 0.4rem;
  577. padding-bottom: 0.4rem;
  578. }
  579. .form-label-text {
  580. font-size: 1rem;
  581. margin-bottom: 0.5rem;
  582. }
  583. .form-input-field {
  584. font-size: 1rem;
  585. padding-top: 0.75rem;
  586. padding-bottom: 0.75rem;
  587. }
  588. .form-input-field::placeholder {
  589. font-size: 0.95rem;
  590. }
  591. /* 导航菜单字体调小 */
  592. .nav-link-text {
  593. font-size: 1rem;
  594. }
  595. /* 按钮文字调小 */
  596. .button-large-text {
  597. font-size: 1rem;
  598. padding-top: 0.75rem;
  599. padding-bottom: 0.75rem;
  600. }
  601. /* 特色功能卡片文字调小 */
  602. .feature-card-title {
  603. font-size: 1.3rem;
  604. margin-bottom: 0.75rem;
  605. }
  606. .feature-card-description {
  607. font-size: 0.95rem;
  608. line-height: 1.5;
  609. }
  610. /* 产品宣传区域文字调小 */
  611. .promo-section-paragraph {
  612. font-size: 1rem;
  613. line-height: 1.6;
  614. }
  615. .promo-section-list-item {
  616. font-size: 1rem;
  617. }
  618. .promo-section-breadcrumb {
  619. font-size: 0.9rem;
  620. }
  621. /* 页脚文字调小 */
  622. .footer-text {
  623. font-size: 0.95rem;
  624. }
  625. .footer-heading {
  626. font-size: 1.3rem;
  627. }
  628. /* 成功模态框文字调小 */
  629. .modal-heading {
  630. font-size: 1.5rem;
  631. }
  632. .modal-text {
  633. font-size: 1rem;
  634. }
  635. .modal-button {
  636. font-size: 1rem;
  637. }
  638. /* 宣传模块图片样式优化 - 确保图片完整显示 */
  639. .promotion-image {
  640. display: flex;
  641. min-height: 400px;
  642. overflow: hidden;
  643. align-items: center;
  644. justify-content: center;
  645. background-color: #f8fafc;
  646. }
  647. .promotion-image img {
  648. width: auto;
  649. max-width: 100%;
  650. height: auto;
  651. max-height: 100%;
  652. object-fit: contain;
  653. }
  654. /* 针对不同模块的图片进行特定调整 */
  655. /* 超级云脑图片 - 图表类图片,确保完整显示 */
  656. .bg-white.rounded-3xl.shadow-xl.overflow-hidden.mb-16.flex.flex-col.md\\:flex-row.animate-fade-in .promotion-image {
  657. background-color: #f0f9ff;
  658. }
  659. /* AI预测大模型图片 - 确保完整显示 */
  660. .bg-white.rounded-3xl.shadow-xl.overflow-hidden.mb-16.flex.flex-col.md\\:flex-row-reverse.animate-fade-in.delay-100 .promotion-image {
  661. background-color: #faf5ff;
  662. }
  663. /* 夺宝利剑图片 - 图表类图片,确保完整显示 */
  664. .bg-white.rounded-3xl.shadow-xl.overflow-hidden.mb-16.flex.flex-col.md\\:flex-row.animate-fade-in.delay-100 .promotion-image {
  665. background-color: #f0fdf4;
  666. }
  667. /* John Lu谈股专题讲座图片 - 确保完整显示 */
  668. .bg-white.rounded-3xl.shadow-xl.overflow-hidden.flex.flex-col.md\\:flex-row.animate-fade-in.delay-200 .promotion-image {
  669. background-color: #ecfdf5;
  670. }
  671. /* 特色功能卡片高度调整 */
  672. .feature-card {
  673. height: 100%;
  674. display: flex;
  675. flex-direction: column;
  676. }
  677. .feature-card-icon {
  678. margin-bottom: 1rem;
  679. }
  680. .feature-card-title {
  681. margin-bottom: 0.75rem;
  682. }
  683. /* 特色功能区域图标调整 */
  684. .feature-card img {
  685. max-width: 100%;
  686. height: auto;
  687. display: block;
  688. margin: 0 auto;
  689. }
  690. /* 注册表单区域调整 */
  691. .register-section-title {
  692. margin-bottom: 1rem;
  693. line-height: 1.3;
  694. }
  695. .register-section-description {
  696. margin-bottom: 1.5rem;
  697. }
  698. .register-section-features {
  699. gap: 1rem;
  700. }
  701. /* 页脚区域调整 */
  702. .footer-logo {
  703. margin-bottom: 1rem;
  704. }
  705. .footer-description {
  706. margin-bottom: 1rem;
  707. }
  708. .footer-heading {
  709. margin-bottom: 1rem;
  710. }
  711. .footer-list {
  712. gap: 0.5rem;
  713. }
  714. /* 移动端适配 */
  715. @media (max-width: 768px) {
  716. html {
  717. font-size: 14px;
  718. }
  719. .page-body {
  720. font-size: 0.95rem;
  721. }
  722. .mobile-nav-link {
  723. font-size: 0.95rem;
  724. padding-top: 0.6rem;
  725. padding-bottom: 0.6rem;
  726. }
  727. .promotion-image {
  728. min-height: 300px;
  729. }
  730. /* 移动端确保图片完整显示 */
  731. .promotion-image img {
  732. width: auto;
  733. max-width: 90%;
  734. height: auto;
  735. max-height: 90%;
  736. }
  737. }
  738. /* 动画定义 */
  739. @keyframes fadeIn {
  740. from {
  741. opacity: 0;
  742. transform: translateY(20px);
  743. }
  744. to {
  745. opacity: 1;
  746. transform: translateY(0);
  747. }
  748. }
  749. @keyframes spin {
  750. 0% {
  751. transform: rotate(0);
  752. }
  753. 100% {
  754. transform: rotate(360deg);
  755. }
  756. }
  757. /* 工具类 */
  758. .content-auto {
  759. content-visibility: auto;
  760. }
  761. .text-shadow-custom {
  762. text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  763. }
  764. .card-hover-effect {
  765. transition: all 0.3s ease;
  766. }
  767. .card-hover-effect:hover {
  768. box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  769. transform: translateY(-4px);
  770. }
  771. .gradient-background {
  772. background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  773. }
  774. .animate-fade-in {
  775. animation: fadeIn 0.6s ease-out forwards;
  776. }
  777. .loading-overlay {
  778. display: none;
  779. position: fixed;
  780. top: 0;
  781. left: 0;
  782. width: 100%;
  783. height: 100%;
  784. background: rgba(0, 0, 0, 0.5);
  785. z-index: 9999;
  786. justify-content: center;
  787. align-items: center;
  788. }
  789. .loading-spinner {
  790. width: 50px;
  791. height: 50px;
  792. border: 5px solid #f3f3f3;
  793. border-top: 5px solid #3B82F6;
  794. border-radius: 50%;
  795. animation: spin 1s linear infinite;
  796. }
  797. .gradient-background {
  798. background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  799. }
  800. .bg-image-overlay {
  801. background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
  802. url('https://d31zlh4on95l9h.cloudfront.net/images/3b28e7abdfc4b495324cc3e6d9210b51.jpg');
  803. background-size: cover;
  804. background-position: center;
  805. background-repeat: no-repeat;
  806. }
  807. .gradient-background {
  808. background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  809. }
  810. .footer-bg {
  811. background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  812. url('https://d31zlh4on95l9h.cloudfront.net/images/22576b3fe6f29e642f322d4d315ae426.jpg');
  813. background-size: cover;
  814. background-position: center;
  815. background-repeat: no-repeat;
  816. }
  817. </style>
  818. </body>
  819. </html>