1
0

index.rpx.css 695 B

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