123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /* custom-tab-bar/index.wxss */
- .bottom-section {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- background-color: #FFFFFF;
- box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
- padding: 24rpx 32rpx 24rpx 32rpx;
- padding-bottom: calc(env(safe-area-inset-bottom) + 24rpx);
- /* 新版 iOS */
- display: flex;
- align-items: center;
- box-sizing: border-box;
- justify-content: space-around;
- .orders {
- display: flex;
- align-items: center;
- margin-right: 40rpx;
- &.active {
- text {
- color: #131415;
- }
- }
- image {
- width: 44rpx;
- height: 44rpx;
- }
- text {
- padding-left: 16rpx;
- font-weight: 500;
- font-size: 28rpx;
- color: #AAAAAA;
- line-height: 44rpx;
- text-align: center;
- }
- }
- }
|