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
| /* pages/problemReport/proRep.wxss */
|
| .van-rate {
| width: 60%;
| justify-content: center;
| display: flex;
| }
| .rateItem{
| color: #909399;
| }
| .title{
| width: 90vw;
| margin: 10rpx auto;
| font-size: 30rpx;
| font-weight: 600;
| padding: 10rpx 0 0rpx 0;
| display: flex;
| align-items: center;
| }
| .chose{
| width: 90vw;
| height: 90rpx;
| border: 1rpx solid gainsboro;
| border-radius: 10rpx;
| margin: 0 auto;
| line-height: 90rpx;
| background-color: white;
| padding-left: 20rpx;
| box-sizing: border-box;
| color: #888;
| }
| .textbox{
| width: 90vw;
| height: 90rpx;
| border: 1rpx solid gainsboro;
| border-radius: 10rpx;
| background-color: white;
| margin: 0 auto;
| text-indent: 20rpx;
| }
| .photoBox{
| width: 90vw;
| margin: 0 auto;
| color: #888;
| background-color: white;
| padding: 20rpx 10rpx;
| box-sizing: border-box;
| border-radius: 10rpx;
| }
| .upphotoimg{
| width: 260rpx;
| height: 200rpx;
| /* border: 1rpx solid #999; */
| border-radius: 10rpx;
| }
| .upimgbox{
| position: relative;
| }
| .removeimg{
| height: 50rpx;
| width: 50rpx;
| position: absolute;
| /* top: 0; */
| right: 15rpx;
| }
| .footer{
| width: 90vw;
| display: flex;
| /* margin-top: 30rpx; */
| margin: 50rpx auto;
| }
| .btnC{
| background-color: rgb(209, 209, 209);
| color: #888;
| width: 40%!important;
| }
| .btnY{
| background-color: #1E90FF;
| color: whitesmoke;
| width: 40%!important;
| }
| .primg{
| width: 30rpx;
| height: 30rpx;
| margin-right: 10rpx;
| }
| .map{
| width: 100%;
| height: 350rpx;
| border-radius: 5rpx;
| margin-top: 20rpx;
| border: 1rpx solid ghostwhite;
| display: none;
| }
| .address{
| width: 100%;
| height: 90rpx;
| border: 1rpx solid gainsboro;
| border-radius: 10rpx;
| margin: 0 auto;
| line-height: 90rpx;
| background-color: white;
| padding-left: 20rpx;
| box-sizing: border-box;
| color: #888;
| }
| .addressBtn{
| border: 1rpx solid gainsboro;
| width: 200rpx;
| /* height: 50rpx; */
| padding: 3rpx;
| text-align: center;
| border-radius: 15rpx;
| margin-top: 10rpx;
| }
| .addresstit{
| margin-bottom: 5rpx;
| color: #555;
| }
|
|