order.wxss
1 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
page {
	background-color: #f4f4f4;
}
.main > view {
	/* background-color: white; */
}
.active {
	color: #FF6768;
	font-weight: bold;
	position: relative;
}
.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	height: 4rpx;
	background-color: #FF6768;
}
.avatar {
	display: block;
	width: 60rpx;
	height: 60rpx;
	background-color: #eee;
	border-radius: 50%;
}
.img {
	display: block;
	width: 200rpx;
	height: 200rpx;
	background-color: #eee;
}
.money::before {
	content: '¥';
	font-size: 22rpx;
}
.noMore {
	padding: 20rpx;
	color: #bbb;
	text-align: center;
	font-size: 26rpx;
	background-color: transparent !important;
}
.tab-head {
	position: fixed;
	width: 100%;
	top: 0;
}
.tab-content {
	box-sizing: border-box;
	padding: 96rpx 20rpx 20rpx 20rpx;
}
.tab-head,
.item {
	background-color: white;
}
.item {
	border-radius: 12rpx;
}
.item ~ .item {
	margin-top: 20rpx;
}
.icon-ren {
	font-size: 60rpx;
	line-height: 60rpx;
	color: #ccc;
}