index.less 838 B

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