index.wxss 913 B

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