yj
2024-12-05 ac3234c308e86f20cc63465573f321561ee00690
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
 
.uni-numbox {
    position:absolute;
    left: 30rpx;
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    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.yticon {
    color: #d6d6d6;
}