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
| @charset "UTF-8";
| /* 颜色变量 */
| .main-container {
| height: 100%;
| background-color: #fff;
| box-sizing: border-box;
| padding: 60rpx 32rpx env(safe-area-inset-bottom);
| }
| .main-container .notify-title {
| font-size: 44rpx;
| font-weight: 500;
| color: #222222;
| line-height: 44rpx;
| }
| .main-container .notify-time {
| margin-top: 32rpx;
| height: 26rpx;
| font-size: 26rpx;
| font-weight: 400;
| color: #999999;
| line-height: 26rpx;
| }
| .main-container .notify-content {
| margin-top: 40rpx;
| }
|
|