-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.wxss
180 lines (177 loc) · 3.41 KB
/
app.wxss
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/**app.wxss**/
@import"dist/index.wxss";
@import"style/weui.wxss";
@import "component2/toastTest/toastTest.wxss";
/* toast样式 */
.wxToast_mask{
width:100%;
height:100%;
position:fixed;
left:0px;
top:0px;
z-index:10000;
background:rgba(0,0,0,0);
opacity:0;
display:none}
.wxToast_show{display:block}
.wxToast_content{
max-width:80%;
min-width:90px;
position:absolute;
left:50%;top:20%;
transform:translate3d(-50%,0,0);
padding:15px;
color:#fff;
font-size:17px;
text-align:center;
border-radius:5px;
background:rgba(0,0,0,.8)}
.wxToast_img{
width:55px;
height:55px;
display:block;
margin:0 auto 8px auto
}
/* toast样式 */
page{
display: flex;
flex-direction: column;
height: 100%;
background: #EDEDED;
}
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
/* ===========售后普通报修公共样式================= */
.contain {
background: #fff;
font-size: 30rpx;
}
/* top栏样式两端对齐 */
.detailtop {
display: flex;
flex-direction: row;
justify-content: space-between;
border-top: 1px solid #E4E4E4;
line-height: 60rpx;
padding: 0 20rpx;
}
/* 状态主题颜色 */
.stu {
color: #28B98F;
}
/*行内分布样式 */
.comrow {
display: flex;
/* flex-direction: row;
justify-content: space-between; */
line-height: 60rpx;
flex-wrap: wrap
}
.comrow-1{
display: flex;
flex-direction: row;
line-height: 80rpx;
flex-wrap: wrap
}
/*列分布样式 */
/* .detailcenter {
display: flex;
flex-direction: column;
margin: 10rpx 20rpx;
overflow: hidden;
flex-wrap: wrap
} */
/* .detailbottom {
display: flex;
flex-direction: column;
padding: 10rpx 20rpx;
}
.detailbottom image{
width: 200rpx;
height: 200rpx;
} */
/* 星级排序 */
/* .detailbot-box .starpx{
display: flex;
flex-direction: row;
} */
.detailbot-box .star {
width: 50rpx;
height: 50rpx;
}
/*维修图片大小 */
.rep-img-box image {
width: 150rpx;
height: 150rpx;
margin: 5rpx
}
/* 上拉加载样式 */
.loading{
padding: 5rpx;
text-align: center;
font-size: 28rpx;
color: #7F7F7F
}
.loading .iconloading{
display: inline-block;
margin-right: 5rpx;
vertical-align: middle;
content: '';
width: 30rpx;
height: 30rpx;
background-size: contain;
}
/* .loading:before{
display: inline-block;
margin-right: 5rpx;
vertical-align: middle;
content: '';
width: 40rpx;
height: 40rpx;
background: url(../../images/icon-loading.gif) no-repeat;
background-size: contain;
animation: rotate 1s linear infinite;
} */
.loading.complete:before{
font-size: 28rpx;
display: none;
color: #7F7F7F
}
/* 订单列表样式 */
.themes-list-box {
display: block;
position: relative;
background: #fff;
margin: 15rpx 25rpx;
border-bottom: 1px solid #f2f2f2;
font-size: 30rpx;
border-radius: 5px
}
.themes-list-box {
display: block;
position: relative;
background: #fff;
margin: 15rpx 25rpx;
border-bottom: 1px solid #f2f2f2;
font-size: 30rpx;
border-radius: 5px
}
.themes-list-box .com-topbox {
display: flex;
justify-content: space-between;
padding: 15rpx;
border-bottom: 1px solid #f2f2f2;
border-top: 1px solid #f2f2f2;
background-color: #F7F7F7
}
.themes-list-box .com-centerbox {
display: flex;
padding: 10rpx
}