uni-number-box.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .uni-numbox.data-v-75f95e3f {
  12. /* position:absolute; */
  13. /* left: 30rpx; */
  14. /* bottom: 0; */
  15. display: flex;
  16. justify-content: flex-start;
  17. align-items: center;
  18. width: 180rpx;
  19. height: 52rpx;
  20. background: #f5f5f5;
  21. /* border: 1px solid #C7C7C7; */
  22. /* border-radius: 4rpx 4rpx 4rpx 4rpx; */
  23. /* z-index: 999; */
  24. }
  25. .uni-numbox-minus.data-v-75f95e3f,
  26. .uni-numbox-plus.data-v-75f95e3f {
  27. border: 1px solid #C7C7C7;
  28. margin: 0;
  29. background-color: #f5f5f5;
  30. width: 60rpx;
  31. height: 52rpx;
  32. line-height: 52rpx;
  33. text-align: center;
  34. position: relative;
  35. }
  36. .uni-numbox-minus .yticon.data-v-75f95e3f,
  37. .uni-numbox-plus .yticon.data-v-75f95e3f {
  38. font-size: 36rpx;
  39. color: #555;
  40. }
  41. .uni-numbox-minus.data-v-75f95e3f {
  42. border-right: none;
  43. border-top-left-radius: 4rpx;
  44. border-bottom-left-radius: 4rpx;
  45. }
  46. .uni-numbox-plus.data-v-75f95e3f {
  47. border-left: none;
  48. border-top-right-radius: 4rpx;
  49. border-bottom-right-radius: 4rpx;
  50. }
  51. .uni-numbox-value.data-v-75f95e3f {
  52. position: relative;
  53. background-color: #f5f5f5;
  54. width: 60rpx;
  55. height: 52rpx;
  56. text-align: center;
  57. padding: 0;
  58. font-size: 30rpx;
  59. border: 1px solid #C7C7C7;
  60. }
  61. .uni-numbox-disabled.data-v-75f95e3f {
  62. color: #d6d6d6 !important;
  63. }