cardDetails.wxss
457 Bytes
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
page,
.page {
	height: 100%;
}
page {
	background-color: #f2f2f2;
}
.image {
	width: 100%;
	display: block;
}
.price {
	color: #FF6768;
	font-size: 60rpx;
}
.price::before {
	content: '¥';
	font-size: 40rpx;
}
.line {
	position: relative;
}
.line::before {
	content: '';
	position: absolute;
	width: 60%;
	height: 1rpx;
	background-color: #7b7b7b;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.title {
	padding: 10rpx;
}