maintenance.html 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>CWG Markets System Maintenance Notice</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. <meta name="viewport"
  10. content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no" />
  11. <link rel="stylesheet" href="css/element-ui.css" />
  12. <style>
  13. :root {
  14. --brand-red: #eb3f57;
  15. --brand-red-dark: #d92f48;
  16. --brand-red-soft: #fff1f3;
  17. --text-main: #111827;
  18. --text-secondary: #4b5563;
  19. --text-muted: #9ca3af;
  20. --border: #e5e7eb;
  21. --card-bg: rgba(255, 255, 255, .96);
  22. --page-bg: #f5f7fb;
  23. --radius-xl: 30px;
  24. --radius-lg: 22px;
  25. --shadow-card:
  26. 0 24px 70px rgba(17, 24, 39, .08),
  27. 0 6px 20px rgba(17, 24, 39, .05);
  28. }
  29. * {
  30. box-sizing: border-box;
  31. }
  32. body {
  33. margin: 0;
  34. min-height: 100vh;
  35. background:
  36. radial-gradient(circle at top left, rgba(235, 63, 87, .12), transparent 32%),
  37. radial-gradient(circle at top right, rgba(59, 130, 246, .1), transparent 30%),
  38. var(--page-bg);
  39. font-family:
  40. Inter,
  41. -apple-system,
  42. BlinkMacSystemFont,
  43. "Segoe UI",
  44. sans-serif;
  45. color: var(--text-main);
  46. -webkit-font-smoothing: antialiased;
  47. }
  48. img {
  49. display: block;
  50. max-width: 100%;
  51. }
  52. .container {
  53. width: 100%;
  54. }
  55. .maintenance-page {
  56. width: 100%;
  57. min-height: 100vh;
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. padding: 32px 20px;
  62. }
  63. .maintenance-card {
  64. width: min(760px, 100%);
  65. overflow: hidden;
  66. border-radius: var(--radius-xl);
  67. border: 1px solid rgba(255, 255, 255, .75);
  68. background: var(--card-bg);
  69. backdrop-filter: blur(18px);
  70. box-shadow: var(--shadow-card);
  71. }
  72. .maintenance-header {
  73. padding: 28px 32px;
  74. background:
  75. linear-gradient(135deg,
  76. var(--brand-red),
  77. var(--brand-red-dark));
  78. color: #fff;
  79. display: flex;
  80. align-items: center;
  81. justify-content: center;
  82. gap: 12px;
  83. font-size: 20px;
  84. font-weight: 800;
  85. letter-spacing: -.02em;
  86. }
  87. .maintenance-body {
  88. padding: 48px 42px;
  89. text-align: center;
  90. }
  91. .logo-box img {
  92. width: 180px;
  93. margin: 0 auto 34px;
  94. }
  95. .icon-wrap {
  96. width: 120px;
  97. height: 120px;
  98. margin: 0 auto 28px;
  99. border-radius: 50%;
  100. background: var(--brand-red-soft);
  101. display: flex;
  102. align-items: center;
  103. justify-content: center;
  104. box-shadow:
  105. inset 0 0 0 10px rgba(235, 63, 87, .06),
  106. 0 20px 40px rgba(235, 63, 87, .12);
  107. }
  108. .icon-wrap i {
  109. font-size: 54px;
  110. color: var(--brand-red);
  111. }
  112. .main-title {
  113. margin: 0;
  114. font-size: 34px;
  115. line-height: 1.2;
  116. font-weight: 850;
  117. letter-spacing: -.04em;
  118. }
  119. .description {
  120. max-width: 620px;
  121. margin: 26px auto 0;
  122. color: var(--text-secondary);
  123. font-size: 16px;
  124. line-height: 2;
  125. }
  126. .tips-box {
  127. margin-top: 36px;
  128. padding: 22px;
  129. border-radius: var(--radius-lg);
  130. border: 1px solid var(--border);
  131. background:
  132. linear-gradient(180deg,
  133. #ffffff 0%,
  134. #fafafa 100%);
  135. text-align: left;
  136. }
  137. .tips-title {
  138. margin: 0 0 14px;
  139. font-size: 15px;
  140. font-weight: 800;
  141. }
  142. .tips-list {
  143. margin: 0;
  144. padding-left: 18px;
  145. }
  146. .tips-list li {
  147. color: var(--text-secondary);
  148. line-height: 1.9;
  149. font-size: 14px;
  150. }
  151. .footer-note {
  152. margin-top: 36px;
  153. color: var(--text-muted);
  154. font-size: 13px;
  155. }
  156. @media (max-width: 768px) {
  157. .maintenance-page {
  158. padding: 14px;
  159. align-items: flex-start;
  160. }
  161. .maintenance-card {
  162. border-radius: 24px;
  163. }
  164. .maintenance-header {
  165. padding: 22px 18px;
  166. font-size: 18px;
  167. }
  168. .maintenance-body {
  169. padding: 32px 20px;
  170. }
  171. .logo-box img {
  172. width: 150px;
  173. }
  174. .icon-wrap {
  175. width: 96px;
  176. height: 96px;
  177. }
  178. .icon-wrap i {
  179. font-size: 44px;
  180. }
  181. .main-title {
  182. font-size: 26px;
  183. }
  184. .description {
  185. font-size: 14px;
  186. line-height: 1.9;
  187. }
  188. .tips-box {
  189. padding: 18px;
  190. }
  191. }
  192. </style>
  193. </head>
  194. <body>
  195. <div class="container">
  196. <div class="maintenance-page">
  197. <div class="maintenance-card">
  198. <div class="maintenance-header">
  199. <i class="el-icon-warning-outline"></i>
  200. <span>System Maintenance</span>
  201. </div>
  202. <div class="maintenance-body">
  203. <div class="logo-box">
  204. <img src="img/logo.jpg" alt="Logo" />
  205. </div>
  206. <div class="icon-wrap">
  207. <i class="el-icon-setting"></i>
  208. </div>
  209. <h1 class="main-title">
  210. CWG Markets System Maintenance Notice
  211. </h1>
  212. <div class="description">
  213. To provide you with a better and more stable trading experience,
  214. CWG Markets is currently performing scheduled system maintenance.
  215. During this period, some services may be temporarily unavailable.
  216. We sincerely apologize for any inconvenience caused and appreciate
  217. your understanding and continued support.
  218. </div>
  219. <div class="tips-box">
  220. <h3 class="tips-title">
  221. During maintenance:
  222. </h3>
  223. <ul class="tips-list">
  224. <li>Login and trading functions may be temporarily unavailable.</li>
  225. <li>Some account operations may experience delays.</li>
  226. <li>Please avoid submitting repeated requests during the maintenance period.</li>
  227. <li>All services will automatically resume once maintenance is completed.</li>
  228. </ul>
  229. </div>
  230. <div class="footer-note">
  231. Thank you for your patience and support.
  232. </div>
  233. </div>
  234. </div>
  235. </div>
  236. </div>
  237. </body>
  238. </html>