57 lines
932 B
Plaintext
57 lines
932 B
Plaintext
|
|
.count-box{
|
|
position: relative;
|
|
width: 140rpx;
|
|
height: 50rpx;
|
|
border-radius: 5px;
|
|
z-index: 1;
|
|
transition: all .3s;
|
|
}
|
|
.count-box-light{
|
|
/* border: 1px solid #AEAEAE; */
|
|
}
|
|
.count-box-gray{
|
|
/* border: 1px solid #AEAEAE; */
|
|
}
|
|
.count-pub{
|
|
position: absolute;
|
|
top: 50%;
|
|
-webkit-transform: translate(0, -50%);
|
|
transform: translate(0, -50%);
|
|
width: 38rpx;
|
|
height: 36rpx;
|
|
line-height: 100%;
|
|
text-align: center;
|
|
font-size: 22rpx;
|
|
border: 1rpx solid #AEAEAE;
|
|
}
|
|
.count-less{
|
|
left: 0;
|
|
}
|
|
.count-add{
|
|
right: 0;
|
|
}
|
|
.count-input{
|
|
width: 70rpx;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 50%;
|
|
-webkit-transform: translate(-50%, 0);
|
|
transform: translate(-50%, 0);
|
|
padding: 6rpx 0rpx;
|
|
box-sizing: border-box;
|
|
color: #808080;
|
|
font-size: 31rpx;
|
|
text-align: center;
|
|
}
|
|
.gray{
|
|
color: #809C76;
|
|
border: 2prx solid #809C76 !important;
|
|
}
|
|
.light{
|
|
color: #809C76;
|
|
border: 2prx solid #809C76 !important;
|
|
}
|
|
|