index.scss 998 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .head {
  2. display: flex;
  3. align-items: center;
  4. width: 100vw;
  5. height: 120rpx;
  6. padding: 0 20rpx 0 30rpx;
  7. box-sizing: border-box;
  8. .count {
  9. font-size: 28rpx;
  10. font-family: PingFang SC-Regular, PingFang SC;
  11. color: #333333;
  12. }
  13. .expand {
  14. flex: 1;
  15. display: flex;
  16. justify-content: flex-end;
  17. align-items: center;
  18. .but {
  19. flex-shrink: 0;
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. width: 80rpx;
  24. height: 80rpx;
  25. background: #FFFFFF;
  26. border-radius: 8rpx;
  27. border: 2rpx solid #CCCCCC;
  28. margin-left: 20rpx;
  29. color: #666666;
  30. }
  31. }
  32. }
  33. .exp {
  34. margin-top: 8rpx;
  35. font-size: 24rpx;
  36. font-family: PingFang SC-Regular, PingFang SC;
  37. color: #333333;
  38. }
  39. .custom-class {
  40. --search-background-color: #fff !important;
  41. padding-right: 10rpx !important;
  42. }