jiazx0107
20 小时以前 bbc4982091c9d70caede6924380fbd7b1d8082c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="zh_CN" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="utf-8"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <title>智慧粮库管理系统-首页</title>
    <link rel="stylesheet" th:href="@{/ajax/libs/layui-ruoyi/css/layui.css}"/>
    <!-- 自定义样式 -->
    <style>
        body {
            background-color: #f8f9fa;
            font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
        }
 
        .container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
        }
 
        .notification-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 40px 30px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
 
        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
 
        .icon-container {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fb 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
 
        .icon-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(66, 153, 225, 0.1);
            transform: scale(0);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
 
        @keyframes pulse {
            0% {
                transform: scale(0.5);
                opacity: 0.8;
            }
            100% {
                transform: scale(1.2);
                opacity: 0;
            }
        }
 
        .notification-icon {
            font-size: 50px;
            color: #4299e1;
            position: relative;
            z-index: 1;
        }
 
        .notification-title {
            font-size: 24px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
        }
 
        .notification-desc {
            font-size: 16px;
            color: #718096;
            line-height: 1.6;
            margin-bottom: 30px;
        }
 
        .back-btn {
            background-color: #4299e1;
            color: #fff;
            border-radius: 8px;
/*            padding: 12px 30px;*/
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
        }
 
        .back-btn:hover {
            background-color: #3182ce;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
            color: #fff;
        }
 
        .footer {
            margin-top: 40px;
            color: #a0aec0;
            font-size: 14px;
            text-align: center;
        }
 
        @media (max-width: 768px) {
            .notification-card {
                padding: 30px 20px;
            }
 
            .icon-container {
                width: 100px;
                height: 100px;
            }
 
            .notification-icon {
                font-size: 40px;
            }
 
            .notification-title {
                font-size: 20px;
            }
 
            .notification-desc {
                font-size: 15px;
            }
        }
    </style>
</head>
<body>
<div class="container">
    <!-- 提醒卡片 -->
    <div class="notification-card">
        <div class="icon-container">
            <i class="fas fa-flask notification-icon"></i>
        </div>
 
        <h2 class="notification-title">功能调试中……</h2>
 
        <p class="notification-desc">
            您好!当前功能正在紧张测试中,为了给您带来更稳定、优质的体验,
            我们正在进行最后的优化调整。敬请期待正式开放!
        </p>
 
        <button class="layui-btn back-btn">
            <i class="fas fa-arrow-left mr-2"></i>稍后上线……
        </button>
    </div>
</div>
</body>
</html>