weliam-smartcity智慧城市
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

59 lines
841 B

@-webkit-keyframes myfirst {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes myfirst {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.barrageImg {
width: 30rpx;
height: 30rpx;
border-radius: 50%;
}
.mbList {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-duration: 4s;
animation-duration: 4s;
-webkit-animation-name: myfirst;
animation-name: myfirst;
position: absolute;
height: 50rpx;
background: rgba(0, 0, 0, 0.65);
display: inline-block;
border-radius: 20rpx;
}
.mbPackage {
padding: 0 20rpx;
}
.font26 {
font-size: 26rpx;
}
.colorW {
color: white;
}
.lineH50 {
line-height: 50rpx;
}
.verCenter {
vertical-align: middle;
}
.pL10 {
padding-left: 10rpx;
}