tabbar.scss 753 Bytes
.page-total{
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		//height: 100rpx;
	}
	.tab-list{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		background-color: #FFFFFF;
		padding-top: 15rpx;
		padding-bottom: constant(safe-area-inset-bottom);
		padding-bottom: env(safe-area-inset-bottom);
		border-radius: 40rpx 40rpx 0 0;
		box-shadow: 0px 0px 20rpx 1rpx rgba(206, 206, 206, 0.32);
		.list{
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			width: 20%;
			height: 100rpx;
			image{
				width: 48rpx;
				height: 48rpx;
			}
			text{
				color: #AAADB6;
				font-size: 24rpx;
				margin-top: 10rpx;
			}
			.action{
				color: #0FBB59;
			}
		}
	}