payment.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Payment Status</title>
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <meta name="full-screen" content="yes">
  8. <meta name="x5-fullscreen" content="true">
  9. <link rel="stylesheet" href="css/element-ui.css" />
  10. <link rel="stylesheet" href="css/element@2.12.2.css" />
  11. <style>
  12. :root {
  13. --primary: #eb3f57;
  14. --primary-dark: #d92f48;
  15. --primary-soft: #fff1f3;
  16. --blue: #368fec;
  17. --text-main: #111827;
  18. --text-secondary: #4b5563;
  19. --text-muted: #9ca3af;
  20. --border: #e5e7eb;
  21. --bg-page: #f5f7fb;
  22. --bg-card: rgba(255, 255, 255, .96);
  23. --radius-xl: 30px;
  24. --radius-lg: 22px;
  25. --radius-md: 16px;
  26. --shadow-card:
  27. 0 24px 70px rgba(17, 24, 39, .08),
  28. 0 6px 20px rgba(17, 24, 39, .05);
  29. }
  30. * {
  31. box-sizing: border-box;
  32. }
  33. html,
  34. body {
  35. margin: 0;
  36. min-height: 100%;
  37. background:
  38. radial-gradient(circle at top left, rgba(235, 63, 87, .12), transparent 32%),
  39. radial-gradient(circle at top right, rgba(59, 130, 246, .1), transparent 30%),
  40. var(--bg-page);
  41. font-family:
  42. Inter,
  43. -apple-system,
  44. BlinkMacSystemFont,
  45. "Segoe UI",
  46. sans-serif;
  47. color: var(--text-main);
  48. -webkit-font-smoothing: antialiased;
  49. }
  50. img {
  51. display: block;
  52. max-width: 100%;
  53. }
  54. a {
  55. text-decoration: none;
  56. }
  57. [v-cloak] {
  58. display: none;
  59. }
  60. #payment {
  61. width: 100%;
  62. min-height: 100vh;
  63. padding: 32px 20px;
  64. display: flex;
  65. align-items: center;
  66. justify-content: center;
  67. }
  68. .payment-wrapper {
  69. width: min(760px, 100%);
  70. }
  71. .payment-card {
  72. overflow: hidden;
  73. border-radius: var(--radius-xl);
  74. border: 1px solid rgba(255, 255, 255, .75);
  75. background: var(--bg-card);
  76. backdrop-filter: blur(18px);
  77. box-shadow: var(--shadow-card);
  78. }
  79. /*
  80. .payment-card::before {
  81. content: "";
  82. display: block;
  83. width: 100%;
  84. height: 5px;
  85. background:
  86. linear-gradient(90deg,
  87. var(--primary),
  88. var(--primary-dark));
  89. } */
  90. .card-header {
  91. padding: 28px 34px;
  92. display: flex;
  93. align-items: center;
  94. justify-content: space-between;
  95. gap: 20px;
  96. border-bottom: 1px solid var(--border);
  97. background:
  98. linear-gradient(180deg,
  99. #ffffff 0%,
  100. #fafcff 100%);
  101. }
  102. .logo-box img {
  103. width: 150px;
  104. object-fit: contain;
  105. }
  106. .language-switch {
  107. display: inline-flex;
  108. align-items: center;
  109. padding: 10px 14px;
  110. border-radius: 999px;
  111. border: 1px solid var(--border);
  112. background: #fff;
  113. box-shadow:
  114. 0 10px 22px rgba(17, 24, 39, .04);
  115. }
  116. .language-switch .menu {
  117. font-size: 14px;
  118. font-weight: 700;
  119. color: var(--text-main);
  120. cursor: pointer;
  121. }
  122. .card-body {
  123. padding: 42px 34px;
  124. text-align: center;
  125. }
  126. .status-image {
  127. width: 120px;
  128. height: 120px;
  129. margin: 0 auto 28px;
  130. border-radius: 50%;
  131. background: var(--primary-soft);
  132. display: flex;
  133. align-items: center;
  134. justify-content: center;
  135. padding: 24px;
  136. box-shadow:
  137. inset 0 0 0 10px rgba(235, 63, 87, .06),
  138. 0 20px 40px rgba(235, 63, 87, .12);
  139. }
  140. .status-image img {
  141. width: 100%;
  142. }
  143. .status-title {
  144. margin: 0;
  145. font-size: 30px;
  146. font-weight: 850;
  147. letter-spacing: -.03em;
  148. }
  149. .status-description {
  150. margin: 24px auto 0;
  151. max-width: 520px;
  152. font-size: 15px;
  153. line-height: 2;
  154. color: var(--text-secondary);
  155. }
  156. .status-description a {
  157. color: var(--blue);
  158. font-weight: 800;
  159. text-decoration: underline;
  160. }
  161. .support-card {
  162. margin-top: 42px;
  163. padding: 24px;
  164. border-radius: var(--radius-lg);
  165. border: 1px solid var(--border);
  166. background:
  167. linear-gradient(180deg,
  168. #ffffff 0%,
  169. #fafafa 100%);
  170. display: flex;
  171. align-items: center;
  172. gap: 24px;
  173. text-align: left;
  174. }
  175. .support-image {
  176. width: 92px;
  177. flex: 0 0 auto;
  178. }
  179. .support-text {
  180. color: #64748b;
  181. font-size: 13px;
  182. line-height: 2;
  183. }
  184. .support-text span {
  185. color: var(--blue);
  186. font-weight: 700;
  187. text-decoration: underline;
  188. }
  189. .footer-note {
  190. margin-top: 34px;
  191. padding-top: 28px;
  192. border-top: 1px solid var(--border);
  193. color: #9ca3af;
  194. font-size: 12px;
  195. line-height: 1.9;
  196. text-align: left;
  197. }
  198. .footer-note strong {
  199. color: #6b7280;
  200. }
  201. .card-footer {
  202. margin-top: 28px;
  203. display: flex;
  204. align-items: center;
  205. justify-content: space-between;
  206. gap: 18px;
  207. flex-wrap: wrap;
  208. }
  209. .footer-title {
  210. font-size: 13px;
  211. font-weight: 800;
  212. }
  213. .social-list {
  214. display: flex;
  215. align-items: center;
  216. gap: 12px;
  217. flex-wrap: wrap;
  218. }
  219. .social-item {
  220. width: 42px;
  221. height: 42px;
  222. border-radius: 14px;
  223. display: flex;
  224. align-items: center;
  225. justify-content: center;
  226. background: #fff;
  227. border: 1px solid var(--border);
  228. transition:
  229. transform .22s ease,
  230. box-shadow .22s ease,
  231. border-color .22s ease;
  232. }
  233. .social-item:hover {
  234. transform: translateY(-2px);
  235. border-color: rgba(235, 63, 87, .4);
  236. box-shadow:
  237. 0 14px 30px rgba(235, 63, 87, .12);
  238. }
  239. .social-item img {
  240. width: 20px;
  241. height: 20px;
  242. object-fit: contain;
  243. }
  244. .el-dropdown-menu {
  245. border-radius: 14px;
  246. overflow: hidden;
  247. }
  248. @media (max-width: 768px) {
  249. #payment {
  250. padding: 14px;
  251. align-items: flex-start;
  252. }
  253. .payment-card {
  254. border-radius: 24px;
  255. }
  256. .card-header {
  257. padding: 22px 18px;
  258. }
  259. .language-switch {
  260. justify-content: center;
  261. }
  262. .card-body {
  263. padding: 30px 18px;
  264. }
  265. .status-image {
  266. width: 96px;
  267. height: 96px;
  268. }
  269. .status-title {
  270. font-size: 24px;
  271. }
  272. .status-description {
  273. font-size: 14px;
  274. line-height: 1.8;
  275. }
  276. .support-card {
  277. flex-direction: column;
  278. text-align: center;
  279. }
  280. .footer-note {
  281. text-align: center;
  282. }
  283. .card-footer {
  284. justify-content: center;
  285. }
  286. .footer-title {
  287. width: 100%;
  288. text-align: center;
  289. }
  290. }
  291. </style>
  292. </head>
  293. <body>
  294. <div id="payment" v-if="isShow" v-cloak>
  295. <div class="payment-wrapper">
  296. <div class="payment-card">
  297. <header class="card-header">
  298. <div class="logo-box">
  299. <img src="img/logo.jpg" alt="logo" />
  300. </div>
  301. <div class="language-switch">
  302. <el-dropdown trigger="click" @command="chooseLang">
  303. <span class="menu language-box">
  304. {{langList[language]}}
  305. <i class="el-icon-arrow-down el-icon--right"></i>
  306. </span>
  307. <el-dropdown-menu slot="dropdown">
  308. <el-dropdown-item command="cn">中文简体</el-dropdown-item>
  309. <el-dropdown-item command="zhHant">中文繁体</el-dropdown-item>
  310. <el-dropdown-item command="en">English</el-dropdown-item>
  311. <el-dropdown-item command="vn">Tiếng Việt</el-dropdown-item>
  312. <el-dropdown-item command="de">Deutsch</el-dropdown-item>
  313. <el-dropdown-item command="es">Español</el-dropdown-item>
  314. <el-dropdown-item command="id">Indonesian</el-dropdown-item>
  315. <el-dropdown-item command="ms">Melayu</el-dropdown-item>
  316. <el-dropdown-item command="th">ภาษาไทย</el-dropdown-item>
  317. <el-dropdown-item command="ar">العربية</el-dropdown-item>
  318. <el-dropdown-item command="ko">한국어</el-dropdown-item>
  319. <el-dropdown-item command="pt">Português</el-dropdown-item>
  320. <el-dropdown-item command="fa">زبان پارسی</el-dropdown-item>
  321. <el-dropdown-item command="tr">Türkçe</el-dropdown-item>
  322. </el-dropdown-menu>
  323. </el-dropdown>
  324. </div>
  325. </header>
  326. <main class="card-body">
  327. <!-- <div class="status-image">
  328. <img src="img/wait.png" alt="status" />
  329. </div> -->
  330. <h1 class="status-title">
  331. {{lang.item1}}
  332. </h1>
  333. <div class="status-description">
  334. {{lang.item2}}
  335. <a :href="'https://secure.' + ho + '.com/'">
  336. {{lang.item3}}
  337. </a>
  338. {{lang.item4}}
  339. </div>
  340. <div class="support-card">
  341. <!-- <div class="support-image">
  342. <img src="img/kf.png" alt="support" />
  343. </div> -->
  344. <div class="support-text">
  345. {{lang.item5}}
  346. <span>{{lang.item6}}</span>
  347. {{lang.item7}}
  348. <span>{{lang.item8}}</span>
  349. {{lang.item9}}
  350. </div>
  351. </div>
  352. <div class="footer-note">
  353. <strong>{{lang.item10}}</strong>
  354. {{lang.item11}}
  355. </div>
  356. <div class="card-footer">
  357. <div class="footer-title">
  358. {{lang.item12}}
  359. </div>
  360. <div class="social-list">
  361. <!-- <a
  362. class="social-item"
  363. href="https://www.youtube.com/channel/UCsezhM2kqgoJ5s4wyU2XFqw?view_as=subscriber"
  364. >
  365. <img src="img/1.png" alt="youtube" />
  366. </a>
  367. <a
  368. class="social-item"
  369. href="https://www.facebook.com/cwgmarkets-113157100404084/"
  370. >
  371. <img src="img/2.png" alt="facebook" />
  372. </a>
  373. <a
  374. class="social-item"
  375. href="https://www.linkedin.com/company/20863443"
  376. >
  377. <img src="img/3.png" alt="linkedin" />
  378. </a>
  379. <a
  380. class="social-item"
  381. href="https://instagram.com/cwgmarkets?igshid=5o01ctz1iser"
  382. >
  383. <img src="img/4.png" alt="instagram" />
  384. </a>
  385. <a
  386. class="social-item"
  387. href="https://twitter.com/MarketsCwg"
  388. >
  389. <img src="img/5.png" alt="twitter" />
  390. </a> -->
  391. </div>
  392. </div>
  393. </main>
  394. </div>
  395. </div>
  396. </div>
  397. <script src="js/vue.min.js"></script>
  398. <script src="js/axios.min.js"></script>
  399. <script src="js/element-ui.js"></script>
  400. <script src="js/element@2.12.2.js"></script>
  401. <script src="./assets/js/payment.js"></script>
  402. </body>
  403. </html>