1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| @charset "UTF-8";
| /* 页面左右间距 */
| /* 文字尺寸 */
| /*文字颜色*/
| /* 边框颜色 */
| /* 图片加载中颜色 */
| /* 行为相关颜色 */
| .empty-content {
| display: flex;
| align-items: center;
| justify-content: center;
| flex-direction: column;
| position: fixed;
| left: 0;
| top: 0;
| right: 0;
| bottom: 0;
| background: #f8f8f8;
| padding-bottom: 120rpx;
| }
| .empty-content-image {
| width: 200rpx;
| height: 200rpx;
| }
|
|