.hintBox{
  margin-top: 7px;
  margin-bottom: 14px;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.hintItem{
  /*width: 129px;*/
  flex: 1;
  height: 5px;
  background: #E1E1E1;
  border-radius: 2px;
  margin-right: 2px;
}
.weak .hintItem:nth-child(1){
  background: #C41C1C;
}
.medium .hintItem:nth-child(1),.medium .hintItem:nth-child(2){
  background: #EEC000;
}
.strong .hintItem:nth-child(1),.strong .hintItem:nth-child(2),.strong .hintItem:nth-child(3){
  background: #8BC21D;
}
.strengthBox{
  display: flex;
  justify-content: space-between;
}
.textBox{
  font-size: 16px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #2C2C2C;
  line-height: 22px;
}
.hintImg{
  width: 20px;
  height: 20px;
  margin-right: 20px;
  cursor: pointer;
}
.ruleBox{
  /*width: 392px;*/
  background: #F2F2F2;
  padding: 13px;
  margin-top: 10px;
  position: relative;
}
.ruleImg{
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.s_arrow{
  position: absolute;
  right: 22px;
  top: -8px;
  width: 16px;
  height: 16px;
  background: #F2F2F2;
  transform: rotate(45deg);
}


.mini .topBox{
  display: flex;
}
.mini .hintBox{
  width: auto;
}
.mini .hintItem{
  width: 24px;
  height: 5px;
}
.mini .ruleBox{
  width: 392px;
}
.mini .textBox{
  margin: 0 8px;
}
.mini .s_arrow{
  right: 240px;
}
.mini.medium .s_arrow{
  right: 217px;
}
.mini.strong .s_arrow{
  right: 232px;
}