TabBar.scss 858 Bytes
.page-total-content {
	position: fixed;
	bottom: 0;
	width: 100%;
	padding-bottom: constant(safe-area-inset-bottom);
	padding-bottom: env(safe-area-inset-bottom);
	z-index: 2;
	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;
			}
		}
	}