Title
#fengche {
margin: 50px auto;
width: 100px;
background: rgb(155, 197, 51);
border-color: rgb(255, 255, 255);
border-style: dotted;
border-width: 50px 0px 50px 0px;
border-radius: 50%;
position: relative;
-webkit-animation: circle 4s infinite linear;
}
@-webkit-keyframes circle {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}



