index.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .worksBox {
  2. padding-bottom: calc(140rpx + env(safe-area-inset-bottom)) !important;
  3. .selectType {
  4. padding: 30rpx 15rpx 30rpx 26rpx;
  5. display: flex;
  6. align-items: center;
  7. justify-content: space-between;
  8. z-index: 20;
  9. background-color: #F2F6FC;
  10. .type {
  11. padding: 14rpx 0rpx;
  12. width: 200rpx;
  13. box-sizing: border-box;
  14. text-align: center;
  15. border: 1rpx solid #9f9f9fa4;
  16. border-radius: 50rpx;
  17. color: #1A1A1A;
  18. font-size: 28rpx;
  19. }
  20. .currentType {
  21. box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  22. color: white;
  23. border-color: #00C657;
  24. background-color: #00C657;
  25. font-weight: bold;
  26. }
  27. .search {
  28. padding: 8rpx 20rpx;
  29. text-align: center;
  30. border: 1rpx solid #9f9f9fa4;
  31. border-radius: 50rpx;
  32. .searchImg {
  33. width: 26rpx;
  34. height: 26rpx;
  35. }
  36. }
  37. }
  38. }