myOrderDetail.wxss
2.4 KB
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
/* pages/person/myOrderDetail/myOrderDetail.wxss */
@import '../myOrder/myOrder.wxss';
page{
background: #FCF8F7;
}
.detail_box{
padding: 0 32rpx;
margin-bottom: 16rpx;
background: #fff;
}
.detail_list{
display: flex;
align-items: center;
height: 100rpx;
padding-left: 10rpx;
border-bottom: solid 1rpx #EBEBEB;
}
.detail_box .detail_list:last-child{
border-bottom: none;
}
.detail_name{
width: 145rpx;
color: #000000;
font-size: 28rpx;
}
.detail_text{
width: 520rpx;
color: #292525;
font-size: 28rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.detail_check{
display: flex;
align-items: center;
justify-content: space-between;
height: 100rpx;
}
.detail_char{
color: #000000;
font-size: 30rpx;
font-weight: bold;
}
/* 改变checkbox样式 */
.detail_check checkbox .wx-checkbox-input{
width: 40rpx;
height: 40rpx;
border-radius: 50%;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked{
border: none;
background: #FD8779;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
color: #fff;
}
.detail_menu{
width: 686rpx;
margin: 0 auto 16rpx;
padding: 32rpx;
box-sizing: border-box;
border-radius: 20rpx;
background: #fff;
}
.detail_title{
padding-bottom: 32rpx;
color: #26363A;
font-size: 30rpx;
}
.detail_info{
display: flex;
align-items: center;
justify-content: flex-start;
}
.info_img{
width: 140rpx;
height: 140rpx;
}
.detail_left{
padding-left: 30rpx;
}
.info_txt{
color: #1A1A1A;
font-size: 26rpx;
}
.info_price{
padding-top: 22rpx;
color: #FD8779;
font-size: 24rpx;
}
.info_price text{
font-size: 32rpx;
}
.detail_tab{
width: 686rpx;
margin: 0 auto;
padding: 30rpx;
box-sizing: border-box;
border-radius: 20rpx;
background: #fff;
}
.tab_list{
display: flex;
align-items: center;
justify-content: space-between;
height: 100rpx;
padding: 0 10rpx;
border-bottom: solid 1rpx #EBEBEB;
}
.tab_list text{
color: #1A1A1A;
font-size: 26rpx;
}
.detail_btn{
display: flex;
align-items: center;
justify-content: center;
width: 312rpx;
height: 62rpx;
margin: 36rpx auto;
color: #000;
font-size: 30rpx;
border: solid 1rpx #999999;
border-radius: 10rpx;
background: #fff;
}
.pay{
width:200rpx;
height:60rpx;
background:rgba(253,135,121,1);
border-radius:60rpx;
color:#fff;
font-size: 28rpx;
text-align: center;
line-height: 60rpx;
margin-right: 20rpx;
margin: 20rpx auto 0;
}