1234567891011121314151617181920212223242526272829303132333435363738 |
- .worksBox {
- padding-bottom: calc(140rpx + env(safe-area-inset-bottom)) !important;
- }
- .worksBox .selectType {
- padding: 30rpx 15rpx 30rpx 26rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- z-index: 20;
- background-color: #F2F6FC;
- }
- .worksBox .selectType .type {
- padding: 14rpx 0rpx;
- width: 200rpx;
- box-sizing: border-box;
- text-align: center;
- border: 1rpx solid #9f9f9fa4;
- border-radius: 50rpx;
- color: #1A1A1A;
- font-size: 28rpx;
- }
- .worksBox .selectType .currentType {
- box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
- color: white;
- border-color: #00C657;
- background-color: #00C657;
- font-weight: bold;
- }
- .worksBox .selectType .search {
- padding: 8rpx 20rpx;
- text-align: center;
- border: 1rpx solid #9f9f9fa4;
- border-radius: 50rpx;
- }
- .worksBox .selectType .search .searchImg {
- width: 26rpx;
- height: 26rpx;
- }
|