index.wxss
921 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.main_bar {
	width: 100%;
	border-top: 1rpx solid #ebebeb;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10000;
	display: flex;
	justify-content: space-around;
	height: 100rpx;
}
.main_bar.custom {
	border-top: none;
}
.tabbar_item {
	position: relative;
	/* height: 100%; */
	/* float: left; */
	text-align: center;
	padding: 0;
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
}
.tab_img {
	display: flex;
	justify-content: center;
	position: relative;
}
.nav_imgage {
	display: block;
	height: 48rpx;
	width: 48rpx;
	background-repeat: no-repeat;
	/* background-position: center;
	background-repeat: no-repeat; */
	background-size: 100%;
}
.cart_num {
	/* top: 8rpx; */
	background-color: red;
	color: #fff;
	font-size: 20rpx;
	border-radius: 50%;
	width: 36rpx;
	line-height: 36rpx;
	height: 36rpx;
	position: absolute;
	z-index: 100;
	right: 34rpx;
	/* margin-right: -70rpx; */
}