index.wxss 684 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @import "/icon.wxss";
  2. .i-input-number {
  3. color: #495060;
  4. display: flex;
  5. align-items: center;
  6. position: relative;
  7. }
  8. .i-input-number .i-input-number-view {
  9. width: 48rpx;
  10. height: 48rpx;
  11. display: inline-block;
  12. vertical-align: middle;
  13. }
  14. .i-input-number .i-input-number-view .img {
  15. width: 48rpx;
  16. height: 48rpx;
  17. font-size: 48rpx;
  18. }
  19. .i-input-number-minus {
  20. border-right: none;
  21. border-radius: 4rpx 0 0 4rpx;
  22. }
  23. .i-input-number-plus {
  24. border-left: none;
  25. border-radius: 0 4rpx 4rpx 0;
  26. }
  27. .i-input-number .i-input-number-text {
  28. position: relative;
  29. text-align: center;
  30. height: 48rpx;
  31. width: 66rpx;
  32. font-size: 24rpx;
  33. line-height: 48rpx;
  34. z-index: 0;
  35. }