| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /* 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: 20rpx 32rpx 58rpx 32rpx;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- justify-content: space-around;
- .orders {
- display: flex;
- align-items: center;
- margin-right: 40rpx;
- padding: 8rpx 0 16rpx;
- &.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;
- }
- }
- }
|