123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .uni-numbox {
- display: flex;
- -webkit-box-pack: start;
- justify-content: flex-start;
- -webkit-box-align: center;
- align-items: center;
- width: 230rpx;
- height: 70rpx;
- background: #f5f5f5;
- }
- .uni-numbox-minus,.uni-numbox-plus {
- margin: 0;
- background-color: #f5f5f5;
- width: 70rpx;
- height: 100%;
- line-height: 70rpx;
- text-align: center;
- position: relative;
- }
- .uni-numbox-minus .yticon,.uni-numbox-plus .yticon {
- font-size: 36rpx;
- color: #555;
- }
- .uni-numbox-minus {
- border-right: none;
- border-top-left-radius: 6rpx;
- border-bottom-left-radius: 6rpx;
- }
- .uni-numbox-plus {
- border-left: none;
- border-top-right-radius: 6rpx;
- border-bottom-right-radius: 6rpx;
- }
- .uni-numbox-value {
- position: relative;
- background-color: #f5f5f5;
- width: 90rpx;
- height: 50rpx;
- text-align: center;
- padding: 0;
- font-size: 30rpx;
- }
- .uni-numbox-disabled.iconfont {
- color: #d6d6d6;
- }
|