TabBar.scss 716 Bytes
.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;
			}
		}
	}