.mic-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 100px;
}
.mic-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}
.mic-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #aaa;
}
.mic-process-line {
  display: inline-block;
  width: 100%;
  height: 4px;
  background-color: #e6e6e6;
  color: #03b3b3;
  /*IE10*/
}
.mic-process-line::-moz-progress-bar {
  background: #03b3b3;
}
.mic-process-line::-webkit-progress-bar {
  background: #e6e6e6;
}
.mic-process-line::-webkit-progress-value {
  background: #03b3b3;
}
.mic-process-circle {
  width: 200px;
  height: 200px;
  position: relative;
  border-radius: 50%;
  margin: 0 auto;
  color: #666;
  /*出于展示用的改变背景色*/
  /*.circle_left{
            background: green;
        }
        .circle_right{
            background: lightblue;
        }*/
  /*
        *当top和left取值为auto时，相当于0
        *当bottom和right取值为auto时，相当于100%
        */
}
.mic-process-circle .clip_left,
.mic-process-circle .clip_right {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0px;
  left: 0px;
}
.mic-process-circle .circle_left,
.mic-process-circle .circle_right {
  width: 200px;
  height: 200px;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
}
.mic-process-circle .circle_right,
.mic-process-circle .clip_right {
  clip: rect(0, auto, auto, 100px);
}
.mic-process-circle .circle_left,
.mic-process-circle .clip_left {
  clip: rect(0, 100px, auto, 0);
}
.mic-process-circle .mask {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  left: 25px;
  top: 25px;
  background: #FFF;
  position: absolute;
  text-align: center;
  line-height: 150px;
  font-size: 16px;
}
.mic-process-text {
  width: 100%;
  text-align: center;
  color: #666;
}
.mic-process-text p:first-child {
  font-size: 14px;
}
.mic-process-text p {
  font-size: 12px;
}
