Blame view

components/TabBar/TabBar.scss 858 Bytes
290144e9   易尊强   第一次
1
2
3
4
5
6
  .page-total-content {
  	position: fixed;
  	bottom: 0;
  	width: 100%;
  	padding-bottom: constant(safe-area-inset-bottom);
  	padding-bottom: env(safe-area-inset-bottom);
e6b161ae   易尊强   2/23
7
  	z-index: 2;
290144e9   易尊强   第一次
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
  	background-color: rgba(255, 255, 255, .5);
  }
  .page-total{
  		width: 100%;
  		// height: 100rpx;
  		background-color: rgba(255, 255, 255, 1);
  		border-radius: 40rpx 40rpx 0 0;
  		position: absolute;
  		bottom: 0;
  		z-index: 999;
  	}
  	.tab-list{
  		display: flex;
  		justify-content: space-between;
  		align-items: center;
  		width: 100%;
  		height: 120rpx;
  		padding-top: 10rpx;
  		.list{
  			display: flex;
  			flex-direction: column;
  			align-items: center;
  			justify-content: center;
  			width: 50%;
  			height: 100rpx;
  			image{
  				width: 48rpx;
  				height: 48rpx;
  			}
  			text{
  				color: #AAAAAC;
  				font-size: 24rpx;
  				margin-top: 10rpx;
  			}
  			.action{
  				color: #D32D25;
  			}
  		}
  	}