.banner {
  height: 150px;
  background: url('../../images/consult/banner-bg-1.png') no-repeat center / cover;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}
.banner .title {
  font-family: PingFangSC-Medium;
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 20px;
  margin-bottom: 22px;
  letter-spacing: 3px;
}
.banner .btn {
  width: 100px;
  height: 30px;
  background: #3377FF;
  box-shadow: 0 10px 20px 0 #3377ff33;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 12px;
}
/* 挑战 */
.challenge {
  background: #E4EEFF;
}
.challenge .container {
  width: 100%;
  max-width: 678px;
  margin: auto;
  box-sizing: border-box;
  padding: 20px 0;
}
.challenge .container > .title {
  font-family: PingFangSC-Medium;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: #17294D;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 20px;
}
.challenge .container .list {
  padding: 0 16px;
}
.challenge .container .list .item {
  background: #FFFFFF;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 20px 0;
}
.challenge .container .list .item .icon {
  width: 88px;
  height: 88px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 10px;
}
.challenge .container .list .item:nth-child(1) .icon {
  background-image: url('../../images/consult/challenge-ic-1.png');
}
.challenge .container .list .item:nth-child(2) .icon {
  background-image: url('../../images/consult/challenge-ic-2.png');
}
.challenge .container .list .item:nth-child(3) .icon {
  background-image: url('../../images/consult/challenge-ic-3.png');
}
.challenge .container .list .item .title {
  font-family: PingFangSC-Medium;
  font-weight: 700;
  font-size: 16px;
  color: #17294D;
  letter-spacing: 1px;
  line-height: 30px;
  margin-bottom: 16px;
}
.challenge .container .list .item .desc {
  font-family: PingFangSC-Regular;
  font-weight: 400;
  font-size: 14px;
  color: #5A5C5F;
  letter-spacing: 1px;
  line-height: 20px;
  text-align: center;
}
/* 深度范围 */
.range {
  background: #F3F7FF;
}
.range .container {
  width: 100%;
  max-width: 678px;
  box-sizing: border-box;
  padding: 20px 0;
  margin: 0 auto;
}
.range .container > .title {
  font-family: PingFangSC-Medium;
  font-weight: 700;
  font-size: 18px;
  color: #17294D;
  letter-spacing: 1px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 20px;
}
.range .container .list {
  padding: 0 16px;
}
.range .container .list .item {
  position: relative;
  margin-bottom: 9px;
  height: 142px;
  display: flex;
  align-items: center;
}
.range .container .list .item .chart {
  position: relative;
  z-index: 1;
  width: 185px;
  height: 100%;
  display: flex;
  justify-content: center;
}
.range .container .list .item .chart .text {
  background-repeat: no-repeat ;
  background-position: 0 0 ;
  background-size: 100% 100% ;
  color: #fff;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  transition: all ease 0.3s;
  height: 100% !important;
}
.range .container .list .item .chart .text.active {
  transform: scale(1.1);
}
.range .container .list .item:nth-child(1) .chart .text {
  width: 43px;
  height: 65px;
  background-image: url('../../images/operation/range-bg-1.png');
  padding-top: 95px;
  line-height: 16px;
}
.range .container .list .item:nth-child(2) .chart .text {
  width: 90px;
  height: 65px;
  background-image: url('../../images/operation/range-bg-2.png');
  padding-top: 90px;
  line-height: 16px;
}
.range .container .list .item:nth-child(3) .chart .text {
  width: 130px;
  height: 62px;
  background-image: url('../../images/operation/range-bg-3.png');
  padding-top: 102px;
}
.range .container .list .item:nth-child(4) .chart .text {
  width: 180px;
  height: 74px;
  background-image: url('../../images/operation/range-bg-4.png');
  padding-top: 100px;
}
.range .container .list .item .desc {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
  width: calc(100% - 90px);
}
.range .container .list .item .desc .circle {
  width: 9px;
  height: 9px;
  background: #B3CCFF;
  border-radius: 50%;
  margin: 0 8px;
}
.range .container .list .item .desc .line {
  height: 0px;
  border: 1px dashed #B6CEFF;
  flex: 1;
}
.range .container .list .item .desc .box {
  width: 300px;
  padding: 7px 12px;
  background: #E0EBFF;
  font-size: 12px;
  color: #919399;
  line-height: 16px;
  cursor: pointer;
}
@media screen and (max-width: 530px) {
  .range .container .list .item .desc .box {
    width: 150px;
  }
}
@media screen and (max-width: 374px) {
  .range .container .list .item .desc .box {
    width: 100px;
  }
}
.range .container .list .item:nth-child(1) .desc {
  bottom: 0px;
}
.range .container .list .item:nth-child(2) .desc {
  bottom: 5px;
}
.range .container .list .item:nth-child(3) .desc {
  bottom: 0px;
}
.range .container .list .item:nth-child(4) .desc {
  bottom: 0;
}
.range .container .list .item .desc.active .circle{
  background: #3377FE;
}
.range .container .list .item .desc.active .box{
  background: #3377FE;
  color: #fff;
}
/* 流程 */
.flow {
  background: #E4EEFF;
}
.flow .container {
  width: 100%;
  max-width: 678px;
  box-sizing: border-box;
  padding: 20px 0;
  margin: 0 auto;
}
.flow .container > .title {
  font-family: PingFangSC-Medium;
  font-weight: 700;
  font-size: 18px;
  color: #17294D;
  letter-spacing: 1px;
  line-height: 30px;
  margin-bottom: 20px;
  text-align: center;
}
.flow .container .list {
  width: 100%;
  padding: 0 16px;
}
.flow .container .list .item {
  background: #3377FE;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 0 4px 5px;
}
.flow .container .list .item .name {
  text-align: center;
  font-family: PingFangSC-Medium;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0;
  padding: 14px 0;
}
.flow .container .list .item .detail {
  width: 100%;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  box-sizing: border-box;
  padding: 16px;
  font-family: PingFangSC-Regular;
  font-weight: 400;
  font-size: 14px;
  color: #5A5C5F;
  letter-spacing: 0;
  line-height: 20px;
}
.flow .container .list .split {
  width: 32px;
  height: 32px;
  background: url('../../images/consult/arrow-ic-right.png') no-repeat 0 0 / 100%;
  margin: auto;
  transform: rotate(90deg);
}
/* 评测 */
.survey {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  background: url('../../images/operation/survey-bg-1.png') no-repeat center / 100% 100%;
}
.survey > .title {
  font-family: PingFangSC-Medium;
  font-weight: 700;
  font-size: 18px;
  color: #17294D;
  letter-spacing: 0;
  text-align: center;
  line-height: 30px;
  margin-bottom: 10px;
}
.survey > .desc {
  font-family: PingFangSC-Regular;
  font-weight: 400;
  font-size: 14px;
  color: #535E75;
  letter-spacing: 0;
  text-align: center;
  line-height: 20px;
  margin-bottom: 30px;
}
.survey .btn-wrapper {
  display: flex;
  justify-content: center;
}
.survey .btn-wrapper .btn {
  width: 100px;
  height: 34px;
  border: 1px solid #3377FF;
  border-radius: 4px;
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3377FF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}
.survey .btn-wrapper .btn.active {
  background: #3377FF;
  color: #fff;
  margin-right: 24px;
  box-shadow: 0 10px 20px 0 #3377ff33;
}