12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Checkout</title>
- <style>
- body {
- font-family: 'Arial', sans-serif;
- background-color: #f5f5f5;
- color: #333;
- margin: 0;
- padding: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100vh;
- }
- .container {
- text-align: center;
- padding: 20px;
- background-color: #fff;
- border-radius: 8px;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
- max-width: 400px;
- width: 100%;
- }
- h1 {
- color: #2ecc71;
- }
- p {
- margin-bottom: 20px;
- }
- .icon {
- font-size: 60px;
- color: #2ecc71;
- }
- .btn {
- display: inline-block;
- padding: 10px 20px;
- font-size: 16px;
- text-decoration: none;
- color: #fff;
- background-color: #3498db;
- border-radius: 5px;
- transition: background-color 0.3s ease;
- }
- .btn:hover {
- background-color: #2980b9;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <i class="icon">✔</i>
- <h1>{$notice}</h1>
- <p>感谢您的支付,订单已成功处理。</p>
- <a href="/index/index/index.htnl" class="btn">返回首页</a>
- </div>
- </body>
- </html>
|