uni-number-box.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. -webkit-border-top-left-radius: 6rpx;
  36. border-top-left-radius: 6rpx;
  37. -webkit-border-bottom-left-radius: 6rpx;
  38. border-bottom-left-radius: 6rpx;
  39. }
  40. .uni-numbox-plus {
  41. border-left: none;
  42. -webkit-border-top-right-radius: 6rpx;
  43. border-top-right-radius: 6rpx;
  44. -webkit-border-bottom-right-radius: 6rpx;
  45. border-bottom-right-radius: 6rpx;
  46. }
  47. .uni-numbox-value {
  48. position: relative;
  49. background-color: #f5f5f5;
  50. width: 90rpx;
  51. height: 50rpx;
  52. text-align: center;
  53. padding: 0;
  54. font-size: 30rpx;
  55. }
  56. .uni-numbox-disabled.iconfont {
  57. color: #d6d6d6;
  58. }