54 lines
823 B
Plaintext
54 lines
823 B
Plaintext
|
|
.tabbar-box{
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 20rpx 20rpx 40rpx;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 99;
|
|
}
|
|
.content{
|
|
align-items: center;
|
|
width: 70.5%;
|
|
height: 130rpx;
|
|
padding: 22rpx 7rpx;
|
|
border-radius: 30rpx 0 0 30rpx;
|
|
}
|
|
.content .nav{
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
width: 144rpx;
|
|
height: 100%;
|
|
border-right: 2rpx solid #FFFFFF;
|
|
}
|
|
.nav>image{
|
|
margin-top: 7rpx;
|
|
}
|
|
.nav>.title{
|
|
width: 100%;
|
|
font-size: 24rpx;
|
|
line-height: 1.5;
|
|
text-align: center;
|
|
}
|
|
.content .price{
|
|
width: calc(100% - 144rpx);
|
|
text-indent: 36rpx;
|
|
}
|
|
.cart{
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 29.5%;
|
|
height: 130rpx;
|
|
border-radius: 0 30rpx 30rpx 0;
|
|
}
|
|
.cart>.amount{
|
|
line-height: 2;
|
|
margin-left: 10rpx;
|
|
}
|
|
.cart>.amount text{
|
|
margin: 0 4rpx;
|
|
}
|
|
|