38 lines
788 B
Plaintext
38 lines
788 B
Plaintext
.tabbar_pages {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 750rpx;
|
|
height: 120rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
background-color: #fff;
|
|
box-shadow: 0rpx -6rpx 12rpx 2rpx rgba(88, 140, 255, 0.1);
|
|
border-radius: 15rpx 15rpx 0rpx 0rpx;
|
|
z-index: 99;
|
|
padding: 20rpx 115rpx;
|
|
}
|
|
.tabbar_pages_view {
|
|
width: 100%;
|
|
}
|
|
.tabbar_pages_view view {
|
|
font-size: 24rpx;
|
|
color: #999999;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
.tabbar_pages_view view image {
|
|
width: 44rpx;
|
|
height: 44rpx;
|
|
margin-bottom: 15rpx;
|
|
}
|
|
.tabbar_pages_view:nth-child(1) view {
|
|
align-items: flex-start;
|
|
}
|
|
.tabbar_pages_view:nth-child(3) view {
|
|
align-items: flex-end;
|
|
} |