uni-number-box.wxss 885 B

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