order.wxss
2.5 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
/* pages/order/order.wxss */
@import "../../templates/templates.wxss";
@import "../../pages/css/modal.wxss";
.tab_box {
height: 90rpx;
line-height: 90rpx;
display: flex;
align-items: center;
justify-content: center;
border-bottom: 1rpx solid #f5f5f5;
overflow: hidden;
white-space: nowrap;
flex-wrap: nowrap;
position: fixed;
top:0;
left:0;
right:0;
background: #ffffff;
}
.tab_item {
display: inline-block;
width: 160rpx;
font-size: 30rpx;
color: #333333;
position: relative;
text-align: center;
/* border: 1rpx solid red; */
}
.active {
color: #EA5D27;
}
.tab_box .active::after {
content: "";
/*border: 2rpx solid #DB4E2A;*/
position: absolute;
bottom: 0rpx;
left: 50%;
transform: translateX(-50%);
width: 80rpx;
height: 2rpx;
background: #EA5D27;
}.content_box {
padding: 10rpx 20rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-top: 1rpx solid #eeeeee;
}
.post_box {
margin-top: 92rpx;
padding-bottom:130rpx;
}
.content_item {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 30rpx 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-bottom: 1rpx solid #eeeeee;
}
.content_item .thumb {
width: 170rpx;
height: 170rpx;
margin-right: 26rpx;
}
.lish-right {
height: 166rpx;
display: flex;
flex:1;
flex-direction: column;
justify-content: space-around;
}
.lish-right .title-box {
display: flex;
align-items: center;
justify-content: space-between;
}
.lish-right .title, .lish-right .time{
font-size: 24rpx;
color: #333333;
}
.lish-right .state {
color:#999999;
font-size: 24rpx;
}
.lish-right .name-box {
display: flex;
align-items: center;
justify-content: space-between;
color: #666666;
font-size: 22rpx;
}
.lish-right .name-box .name-left {
display: flex;
align-items: center;
justify-content: flex-start;
}
.lish-right .name-box .btn {
color:#E2C8B1;
font-size: 24rpx;
}
.lish-right .name-box .btn text {
border-radius: 6rpx;
padding: 8rpx 32rpx;
background-color: #323232;
}
.lish-right .name-box .avatar{
width: 40rpx;
height: 40rpx;
margin-right: 16rpx;
border-radius: 50%;
}
.no-data {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 30rpx;
color: #cccccc;
margin-top: 200rpx;
}