Blame view

components/TabBar/TabBar.scss 716 Bytes
1f3f2378   起风了   我的第一次
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
  .page-total{
  		position: fixed;
  		bottom: 50rpx;
  		background-color: #fff;
  		border-radius: 20rpx 20rpx 0 0;
  		box-shadow:0 0 20rpx #ebebeb;
  		width: 90%;
  		border-radius: 100rpx;
  		left: 50%;
  		transform: translateX(-50%);
  		padding: 0 80rpx;
  		z-index: 99;
  	}
  	.tab-list{
  		display: flex;
  		justify-content: space-around;
  		align-items: center;
  		width: 100%;
  		height: 120rpx;
  		padding-top: 10rpx;
  		.list{
  			display: flex;
  			flex-direction: column;
  			align-items: center;
  			justify-content: center;
  			width: 20%;
  			height: 100rpx;
  			image{
  				width: 48rpx;
  				height: 48rpx;
  			}
  			text{
  				color: #8a9294;
  				font-size: 24rpx;
  				margin-top: 10rpx;
  			}
  			.action{
  				color: #707ddd;
  			}
  		}
  	}