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
| @import "/repair/css/common.wxss";
|
|
|
|
|
|
|
| /* 查看图片 */
|
| .y_images>.body {
| justify-content:flex-start;
| flex-wrap: wrap;
| }
|
| .weui-uploader__img {
| margin: 5rpx 15rpx;
| display: block;
| width: 71px;
| height: 71px;
| }
|
| .footer_fixed {
| position: fixed;
| width: 80rpx;
| height: 80rpx;
| bottom: 20px;
| right: 20px;
| font-size: 80rpx;
| color: #16b5cb;
| }
|
| .footer_input {
| width: 100%;
| height: 100%;
| background-color: #888b91;
| border: 0;
| }
|
| /* //弹窗 */
|
| /**index.wxss**/
|
|
| .modal-mask {
| width: 100%;
| height: 100%;
| position: fixed;
| top: 0;
| left: 0;
| background: #000;
| opacity: 0.5;
| overflow: hidden;
| z-index: 9000;
| color: #fff;
| }
|
| .modal-dialog {
| width: 540rpx;
| overflow: hidden;
| position: fixed;
| top: 50%;
| left: 0;
| z-index: 9999;
| background: #fff;
| margin: -180rpx 105rpx;
| border-radius: 36rpx;
| }
|
| .modal-title {
| padding-top: 50rpx;
| font-size: 36rpx;
| color: #030303;
| text-align: center;
| }
|
| .modal-content {
| padding: 50rpx 32rpx;
| }
|
| .modal-input {
| display: flex;
| background: #fff;
| /* border-bottom: 2rpx solid #ddd; */
| border-radius: 4rpx;
| font-size: 28rpx;
| }
|
|
| .textarea {
| width: 100%;
| min-height: 150rpx;
| font-size: 28rpx;
| line-height: 28rpx;
| padding: 0 20rpx;
| box-sizing: border-box;
| color: #333;
| border: 2rpx solid #ddd;
| }
|
| input-holder {
| color: #666;
| font-size: 28rpx;
| }
|
| .modal-footer {
| display: flex;
| flex-direction: row;
| height: 86rpx;
| border-top: 1px solid #dedede;
| font-size: 34rpx;
| line-height: 86rpx;
| }
|
| .btn-cancel {
| width: 50%;
| color: #666;
| text-align: center;
| border-right: 1px solid #dedede;
| }
|
| .btn-confirm {
| width: 50%;
| color: #16b5cb;
| text-align: center;
| }
|
|