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
| .container {
| width: 100%;
| height: 100%;
| min-height: 242rpx;
| }
|
| .album-container {
| margin: 3rpx;
| min-height: 242rpx;
| marring-top: 83rpx;
| }
|
| .item-group {
| display: flex;
| }
|
| .album-item {
| flex: 1;
| text-align: center;
| margin: 3rpx;
| width: 242rpx;
| height: 242rpx;
| line-height: 242rpx;
| }
|
| .album-item.empty {
| background: transparent;
| }
|
| .upload-tips {
| color: #888;
| display: block;
| font-size: 30rpx;
| height: 80rpx;
| line-height: 80rpx;
| margin: 0 20rpx;
| }
| .upload-wrap {
| color: #ccc;
| background-color: #fff;
| border: 1px solid #888;
| position: absolute;
| left: 6rpx;
| top: 86rpx;
| width: 240rpx;
| height: 239rpx;
| text-align: center;
| line-height: 240rpx;
| overflow: hidden;
| }
| .upload-add-outer {
| display: inline-block;
| flex: 1;
| text-align: center;
| margin: 3rpx;
| width: 242rpx;
| height: 242rpx;
| line-height: 242rpx;
| }
| .upload-add {
| display: block;
| position: relative;
| text-align: center;
| margin: 3rpx;
| width: 242rpx;
| height: 240rpx;
| border: 1rpx solid #ccc;
| line-height: 240rpx;
| color: #ccc;
| overflow: hidden;
| box-sizing:border-box;
| }
|
| .upload-add image {
| position: absolute;
| left: 0;
| width: 240rpx;
| height: 2.6rem;
| top: 1.2rem;
| }
|
| .upload-add text {
| position: absolute;
| width: 240rpx;
| height: 2rem;
| left: 0;
| top: 1.6rem;
| color: #888;
| }
|
| .upload-image {
| color: #ccc;
| background-color: #fff;
| border: 1px solid #888;
| position: absolute;
| left: 6rpx;
| top: 86rpx;
| width: 240rpx;
| height: 239rpx;
| text-align: center;
| line-height: 240rpx;
| overflow: hidden;
| }
|
| .upload-image image {
| position: absolute;
| left: 0;
| width: 242rpx;
| height: 2.6rem;
| top: 1.2rem;
| }
|
| .upload-image text {
| position: absolute;
| width: 242rpx;
| height: 2rem;
| left: 0;
| top: 1.6rem;
| color: #888;
| }
|
| .swiper-container {
| position: fixed;
| left: 0;
| top: 0;
| width: 100%;
| height: 100%;
| background: #000;
| }
|
| .swiper-container image {
| width: 100%;
| height: 100%;
| }
|
| action-sheet-item.warn {
| color: #e64340;
| }
|
|