12345678910111213141516171819202122232425262728293031323334353637 |
- /* custom-tab-bar/index.js.wxss */
- .tab-bar {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 112rpx;
- background-color: rgb(255, 255, 255);
- display: flex;
- width: 750rpx;
- z-index: 10000;
- padding-bottom: env(safe-area-inset-bottom);
- }
- .tab-bar-item {
- width: 187.5rpx;
- height: 112rpx;
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .tab-bar-item>image:nth-child(1){
- width: 48rpx;
- height: 48rpx;
- }
- .tab-bar-item>view:nth-child(2){
- margin-top: 8rpx;
- width: 250rpx;
- height: 28rpx;
- font-size: 20rpx;
- font-weight: 500;
- color: rgba(0, 0, 0, 0.87);
- line-height: 28rpx;
- text-align: center;
- }
|