index.less 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. background-color: #F2F6FC;
  9. .type {
  10. padding: 14rpx 0rpx;
  11. width: 200rpx;
  12. box-sizing: border-box;
  13. text-align: center;
  14. border: 1rpx solid #9f9f9fa4;
  15. border-radius: 50rpx;
  16. color: #1A1A1A;
  17. font-size: 28rpx;
  18. }
  19. .currentType {
  20. box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  21. color: white;
  22. border-color: #00C657;
  23. background-color: #00C657;
  24. font-weight: bold;
  25. }
  26. .search {
  27. padding: 8rpx 20rpx;
  28. text-align: center;
  29. border: 1rpx solid #9f9f9fa4;
  30. border-radius: 50rpx;
  31. .searchImg {
  32. width: 26rpx;
  33. height: 26rpx;
  34. }
  35. }
  36. }
  37. }