1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /* pages/reservationMan/index.wxss */
- .container{
- padding-bottom: 120rpx;
- }
- .filterStatus{
- font-size: 28rpx;
- padding: 10rpx 0 20rpx 30rpx;
- background-color: #fff;
- margin-bottom: 20rpx;
- color: rgba(0,0,0,0.85);
- }
- .filterStatus view{
- display: inline-block;
- padding: 0 18rpx;
- position: relative;
- }
- .filterStatus .active{
- font-weight: bold;
- }
- .filterStatus .active::after{
- display: inline-block;
- content: '';
- width: 40rpx;
- height: 4rpx;
- position: absolute;
- left: 34rpx;
- bottom: -20rpx;
- /* margin-left: -20rpx; */
- background: #2C6CEC;
- border-radius: 2rpx;
- }
- .filterStatus .active.first::after{
- left: 24rpx;
- }
- .bottomBtn{
- padding-top: 20rpx;
- text-align: right;
- }
- .bottomBtn button {
- margin-left: 0 !important;
- }
|