index.rpx.css 718 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. .totalCount{
  19. display: flex;
  20. align-items: center;
  21. margin-left: 20rpx;
  22. padding: 8rpx 20rpx;
  23. background: linear-gradient(135deg, #FFE05C 0%, #FFD02A 100%);
  24. border-radius: 30rpx;
  25. box-shadow: 0 4rpx 12rpx rgba(255, 224, 92, 0.3);
  26. }
  27. .totalCountLabel{
  28. font-size: 24rpx;
  29. color: #333333;
  30. font-weight: 500;
  31. }
  32. .totalCountValue{
  33. font-size: 32rpx;
  34. color: #FF6B35;
  35. font-weight: bold;
  36. margin: 0 6rpx;
  37. text-shadow: 0 2rpx 4rpx rgba(255, 107, 53, 0.1);
  38. }