1
0

index.rpx.css 844 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. }
  17. .selectParamInput /deep/ input {
  18. cursor: pointer;
  19. pointer-events: none;
  20. }
  21. .input-wrapper {
  22. position: relative;
  23. z-index: 1;
  24. cursor: pointer;
  25. }
  26. .totalCount{
  27. display: flex;
  28. align-items: center;
  29. margin-left: 20rpx;
  30. padding: 2rpx 20rpx;
  31. background: linear-gradient(135deg, #FFE05C 0%, #FFD02A 100%);
  32. border-radius: 30rpx;
  33. box-shadow: 0 4rpx 12rpx rgba(255, 224, 92, 0.3);
  34. }
  35. .totalCountLabel{
  36. font-size: 22rpx;
  37. color: #333333;
  38. font-weight: 500;
  39. }
  40. .totalCountValue{
  41. font-size: 22rpx;
  42. color: #FF6B35;
  43. font-weight: bold;
  44. margin: 0 6rpx;
  45. text-shadow: 0 2rpx 4rpx rgba(255, 107, 53, 0.1);
  46. }