kycAuth.html 11 KB

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