uinNumberCart.wxss 1.0 KB

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