.upVIP{
  display: block;
  background: #43c3b6;
  width: 100px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff !important;
  margin: 0 auto;
  border-radius: 5px;
  margin-top: 25px;
}

.step,.notes{
  width: 190px;
}
.step{
  float: left;
  counter-reset: step;  /*创建步骤数字计数器*/
  border: 1px solid #ddd;
  text-align: center;
}
.notes{
  float: right;
}
.step ul{
  display: inline-block;
  padding-bottom: 30px;
}
.step ul li{
  position: relative;
  padding: 30px 0 0 35px;
}
.step ul li:before{
  content: counter(step);
  counter-increment: step;  /*计数器值递增*/
  background: #999;
  color: #ddd;
  width: 25px;
  height: 25px;
  border-radius: 15px;
  display: block;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 100;
  line-height: 25px;
  text-align: center;
}
.step ul li:not(:nth-child(1))::after{
  content: "";
  width: 1px;
  height: 100%;
  background: #999;
  display: block;
  position: absolute;
  top: -28px;
  left: 12px;
}
.step ul li h1{
  font-size: 18px;
  color: #999;
}
.step ul li span{
  font-size: 16px;
  color: #999;
}

.step .onstep::before{
  background: #ff6e3d;
  color: #fff;
}
.step .onstep::after{
  background: #ff6e3d !important;
}
.step .onstep h1{
  color: #333;
}
.step .onstep span{
  color: #ff6e3d;
}

.notes {
  background: #fcf8e3;
  padding: 15px;
  height: 310px;
  display: block;
}
.notes .fw_b{
  line-height: 32px;
  text-indent: 2em;
  background: url("../images/warning-icon.png") left center no-repeat;
}
.notes p {
  line-height: 32px;
}
.notes p span{
  color: #FF6445;
}
