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
| page, view, scroll-view, swiper, movable-area, cover-view, text, icon, rich-text,
| progress, button, checkbox-group, checkbox, form, input, label, picker,
| picker-view, radio-group, slider, switch, textarea, navigator, audio, image,
| video, live-player, live-pusher, open-data, web-view {
| box-sizing: border-box;
| }
| .list{
| position: relative;
| background-color: #fff;
| overflow: hidden;
| .tip-image-block{
| width: 100%;
| height: 100%;
| .icon{
| width: 270rpx;
| height: 209rpx;
| margin-bottom: 40rpx;
| }
| .title{
| margin-bottom: 30rpx;
| font-size: 32rpx;
| color: #333;
| font-weight: bold;
| }
| .subtitle{
| font-size: 28rpx;
| color: #a2a2a2;
| letter-spacing: 4rpx;
| }
| }
|
| }
|
| // 表格数据
| .table-header{
| overflow: hidden;
| white-space: nowrap;
| .inline-block{
| display: inline-block;
| min-width: 100%;
| }
| .tr{
| display: flex;
| border-bottom: 2rpx solid #DDDDDD;
| .th{
| display: flex;
| flex-flow: wrap;
| justify-content: center;
| align-items: center;
| padding: 35rpx 10rpx;
| font-size: 28rpx;
| white-space:normal;
| word-break:break-all;
| color: #333;
| font-weight: bold;
|
| &.select{
| width: 60rpx;
| padding: 0 1rpx;
| }
| }
| }
|
| }
|
| .scroll-view{
| overflow: hidden;
| white-space: nowrap;
| .table-content{
| display: inline-block;
| min-width: 100%;
| }
| }
|
|