123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>正在开发中</title>
- <style>
- /* 全局样式 */
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body, html {
- height: 100%;
- font-family: 'Arial', sans-serif;
- background: #f4f4f9;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #333;
- }
- .container {
- text-align: center;
- max-width: 600px;
- width: 100%;
- padding: 20px;
- background: #fff;
- border-radius: 10px;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
- }
- h1 {
- font-size: 3rem;
- margin-bottom: 20px;
- color: #333;
- }
- p {
- font-size: 1.2rem;
- line-height: 1.6;
- margin-bottom: 30px;
- color: #666;
- }
- .icon {
- font-size: 5rem;
- color: #ff6b6b;
- margin-bottom: 20px;
- }
- .spinner {
- display: inline-block;
- width: 50px;
- height: 50px;
- border: 4px solid rgba(0, 0, 0, 0.1);
- border-left-color: #ff6b6b;
- border-radius: 50%;
- animation: spin 1s linear infinite;
- }
- @keyframes spin {
- to {
- transform: rotate(360deg);
- }
- }
- .footer {
- margin-top: 20px;
- font-size: 0.9rem;
- color: #999;
- }
- a {
- color: #ff6b6b;
- text-decoration: none;
- font-weight: bold;
- }
- a:hover {
- text-decoration: underline;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="icon">🚧</div>
- <h1>等待上线中</h1>
- <p>我们正在努力为您带来更好的体验,请稍后再来访问。</p>
- <div class="spinner"></div>
- <div class="footer">
- <p>如果您有任何问题或建议,请联系公司为你服务!</p>
- </div>
- </div>
- </body>
- </html>
|