index.rpx.css 867 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .page {
  2. height: 100vh;
  3. background-color: #f7f7f7;
  4. padding: 0 32rpx;
  5. }
  6. .selectParam{
  7. font-size: 24rpx;
  8. color: #999999;
  9. text-align: center;
  10. }
  11. .selectParamInput{
  12. width: 250rpx;
  13. height: 30rpx;
  14. font-size: 24rpx;
  15. margin-left: 10rpx;
  16. pointer-events: none;
  17. }
  18. .selectParamInput /deep/ input {
  19. cursor: pointer;
  20. pointer-events: none;
  21. }
  22. .input-wrapper {
  23. position: relative;
  24. z-index: 1;
  25. cursor: pointer;
  26. }
  27. .totalCount{
  28. display: flex;
  29. align-items: center;
  30. margin-left: 20rpx;
  31. padding: 2rpx 20rpx;
  32. background: linear-gradient(135deg, #FFE05C 0%, #FFD02A 100%);
  33. border-radius: 30rpx;
  34. box-shadow: 0 4rpx 12rpx rgba(255, 224, 92, 0.3);
  35. }
  36. .totalCountLabel{
  37. font-size: 22rpx;
  38. color: #333333;
  39. font-weight: 500;
  40. }
  41. .totalCountValue{
  42. font-size: 22rpx;
  43. color: #FF6B35;
  44. font-weight: bold;
  45. margin: 0 6rpx;
  46. text-shadow: 0 2rpx 4rpx rgba(255, 107, 53, 0.1);
  47. }