uni-number-box.wxss 972 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .uni-numbox {
  2. display: flex;
  3. -webkit-box-pack: start;
  4. justify-content: flex-start;
  5. -webkit-box-align: center;
  6. align-items: center;
  7. width: 230rpx;
  8. height: 70rpx;
  9. background: #f5f5f5;
  10. }
  11. .uni-numbox-minus,.uni-numbox-plus {
  12. margin: 0;
  13. background-color: #f5f5f5;
  14. width: 70rpx;
  15. height: 100%;
  16. line-height: 70rpx;
  17. text-align: center;
  18. position: relative;
  19. }
  20. .uni-numbox-minus .yticon,.uni-numbox-plus .yticon {
  21. font-size: 36rpx;
  22. color: #555;
  23. }
  24. .uni-numbox-minus {
  25. border-right: none;
  26. border-top-left-radius: 6rpx;
  27. border-bottom-left-radius: 6rpx;
  28. }
  29. .uni-numbox-plus {
  30. border-left: none;
  31. border-top-right-radius: 6rpx;
  32. border-bottom-right-radius: 6rpx;
  33. }
  34. .uni-numbox-value {
  35. position: relative;
  36. background-color: #f5f5f5;
  37. width: 90rpx;
  38. height: 50rpx;
  39. text-align: center;
  40. padding: 0;
  41. font-size: 30rpx;
  42. }
  43. .uni-numbox-disabled.iconfont {
  44. color: #d6d6d6;
  45. }