45 lines
993 B
Plaintext
45 lines
993 B
Plaintext
|
|
.smallImg{-webkit-transform: scale(.8);transform: scale(.8);margin-right: -10rpx;}
|
|
.cart-btn-bg{
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
border-radius: 30rpx;
|
|
background-color: #0073bc;
|
|
-webkit-animation: scale_name 1s linear alternate infinite;
|
|
animation: scale_name 1s linear alternate infinite;
|
|
position: fixed;
|
|
}
|
|
.cart-btn{
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
.cart-btn image{
|
|
width: 62rpx;
|
|
height: 62rpx;
|
|
}
|
|
.cart-total{
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 36rpx;
|
|
height: 36rpx;
|
|
border-radius: 100%;
|
|
background-color: #FFFFFF;
|
|
font-size: 24rpx;
|
|
color: #068add;
|
|
position: absolute;
|
|
top: 20rpx;
|
|
right: 12rpx;
|
|
}
|
|
@-webkit-keyframes scale_name{
|
|
from{-webkit-transform: scale(.9);transform: scale(.9);}
|
|
to{-webkit-transform: scale(1);transform: scale(1);}
|
|
}
|
|
@keyframes scale_name{
|
|
from{-webkit-transform: scale(.9);transform: scale(.9);}
|
|
to{-webkit-transform: scale(1);transform: scale(1);}
|
|
}
|
|
|