12345678910111213141516171819202122232425262728 |
- /* pages/luckDraw/components/tabbar.wxss */
- .tab-bar-body{
- position: fixed;
- z-index: 1000;
- left: 0;
- bottom: 0;
- height: 98rpx;
- background: #fff;
- width: 100vw;
- box-shadow: 0 8px 49px 0 rgba(179, 117, 117, 0.22);
- display: flex;
- justify-content: space-around;
- }
- .tab-bar-body ._ico {
- height: 60rpx;
- width: 60rpx;
- padding-top: 4rpx;
- }
- .tab-bar-body ._image {
- width: 100%;
- height: 100%;
- }
- .tab-bar-body ._text {
- line-height: 28rpx;
- height: 28px;
- text-align: center;
- font-size: 28rpx;
- }
|