index.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .tab-active-class {
  2. font-size: 28rpx;
  3. font-family: PingFang SC-Bold, PingFang SC;
  4. font-weight: bold !important;
  5. color: #3874F6 !important;
  6. }
  7. .head {
  8. display: flex;
  9. width: 100vw;
  10. height: 98rpx;
  11. align-items: center;
  12. padding: 0 30rpx;
  13. box-sizing: border-box;
  14. .count {
  15. flex: 1;
  16. font-size: 28rpx;
  17. font-family: PingFang SC-Regular, PingFang SC;
  18. color: #333333;
  19. flex-shrink: 0;
  20. }
  21. .search {
  22. display: flex;
  23. align-items: center;
  24. width: 360rpx;
  25. height: 58rpx;
  26. background: #FFFFFF;
  27. border-radius: 29rpx;
  28. box-sizing: border-box;
  29. padding: 0 15rpx;
  30. input {
  31. flex: 1;
  32. font-size: 28rpx;
  33. padding: 0 10rpx;
  34. }
  35. }
  36. .add {
  37. display: flex;
  38. align-items: center;
  39. justify-content: center;
  40. width: 58rpx;
  41. height: 58rpx;
  42. background: #FFFFFF;
  43. border-radius: 8rpx;
  44. border: 2rpx solid #CCCCCC;
  45. margin-left: 32rpx;
  46. color: #666666;
  47. }
  48. }