123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .uni-numbox {
- /* position:absolute; */
- /* left: 30rpx; */
- /* bottom: 0; */
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: start;
- -webkit-justify-content: flex-start;
- justify-content: flex-start;
- -webkit-box-align: center;
- -webkit-align-items: 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;
- -webkit-border-top-left-radius: 6rpx;
- border-top-left-radius: 6rpx;
- -webkit-border-bottom-left-radius: 6rpx;
- border-bottom-left-radius: 6rpx;
- }
- .uni-numbox-plus {
- border-left: none;
- -webkit-border-top-right-radius: 6rpx;
- border-top-right-radius: 6rpx;
- -webkit-border-bottom-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;
- }
|