12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- page{
- padding-bottom: 100rpx;
- }
- .tarbar-module {
- width: 100%;
- position: fixed;
- bottom: 50rpx;
- left: 0;
- // padding: 0 20rpx;
- bottom:120rpx;
- .tarbar {
- background: white;
- width: 100%;
- display: grid;
- grid-template-columns:repeat(5, 110rpx);
- justify-content: space-between;
- padding: 10rpx 0rpx;
- box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
- // border-radius: 50rpx;
- font-size: 26rpx;
- .tarbar-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- .icon{
- width:40rpx;
- height:40rpx;
- margin-bottom: 10rpx;
- }
- .active-icon{
- width: 80rpx;
- height: 80rpx;
- margin-top: -30rpx;
- }
- .tarbar-text{
- color: #919090;
- }
- .active-text{
- color: black;
- }
- }
- }
- }
|