@-webkit-keyframes load {
  0% {
    stroke-dashoffset: 0;
  }
}
@keyframes load {
  0% {
    stroke-dashoffset: 0;
  }
}
html,body{
	margin:0;
	padding:0;
	 font-family: "arial","Microsoft Yahei","Hiragino Sans GB",tahoma,arial,"微软雅黑";
	 color:#fff;
	 -webkit-font-smoothing: subpixel-antialiased;
}
.progress {
  position: absolute;
  display: inline-block;
  padding: 0;
  text-align: center;
  width:120px;
  height:120px;
  top:-0.3rem;
  left:-0.3rem;
  margin-top:14px;
  margin-left:14px;
}
.progress > li {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #93A2AC;
  font-family: Lato;
  font-weight: 100;
  color:#fff;
}
.progress > li:before {
  content: attr(data-name);
  position: absolute;
  width: 100%;
  bottom: -1.2rem;
  font-weight: 400;
  
}
.progress > li:after {
  content: attr(data-percent);
  position: absolute;
  width: 100%;
  top: 3.1rem;
  left: 0;
  font-size: 1rem;
  text-align: center;
   left:1.8rem;
}
.progress svg {
  width: 7.2rem;
  height: 7.26rem;
}
.progress svg:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.progress svg:nth-child(2) path {
  fill: none;
  stroke-width: 10;
  stroke-dasharray: 629;
  stroke: #fff;
  opacity: .9;
  -webkit-animation: load 10s;
  animation: load 10s;
}