index.less 808 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: 24rpx;
  17. }
  18. .currentType {
  19. border: none;
  20. box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  21. background-color: white;
  22. font-weight: bold;
  23. }
  24. .search {
  25. padding: 8rpx 20rpx;
  26. text-align: center;
  27. border: 1rpx solid #9f9f9fa4;
  28. border-radius: 50rpx;
  29. .searchImg {
  30. width: 26rpx;
  31. height: 26rpx;
  32. }
  33. }
  34. }
  35. }