payError.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Checkout</title>
  7. <style>
  8. body {
  9. font-family: 'Arial', sans-serif;
  10. background-color: #f5f5f5;
  11. color: #333;
  12. margin: 0;
  13. padding: 0;
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. height: 100vh;
  18. }
  19. .container {
  20. text-align: center;
  21. padding: 20px;
  22. background-color: #fff;
  23. border-radius: 8px;
  24. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  25. max-width: 400px;
  26. width: 100%;
  27. }
  28. h1 {
  29. color: #2ecc71;
  30. }
  31. p {
  32. margin-bottom: 20px;
  33. }
  34. .icon {
  35. font-size: 60px;
  36. color: #2ecc71;
  37. }
  38. .btn {
  39. display: inline-block;
  40. padding: 10px 20px;
  41. font-size: 16px;
  42. text-decoration: none;
  43. color: #fff;
  44. background-color: #3498db;
  45. border-radius: 5px;
  46. transition: background-color 0.3s ease;
  47. }
  48. .btn:hover {
  49. background-color: #2980b9;
  50. }
  51. </style>
  52. </head>
  53. <body>
  54. <div class="container">
  55. <i class="icon">&#10004;</i>
  56. <h1>{$notice}</h1>
  57. <p>感谢您的支付,订单已成功处理。</p>
  58. <a href="/index/index/index.htnl" class="btn">返回首页</a>
  59. </div>
  60. </body>
  61. </html>