/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.mk-steps {
  font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 700px;
  height: 32px;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mk-steps .step {
  flex: 1;
  width: 105px;
  height: 100%;
  background: #e8e8e8;
  float: left;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  font-size: 13px;
}
.mk-steps .step:before {
  content: '';
  width: 0;
  height: 0;
  border: 19px solid transparent;
  border-left-color: #fff;
  position: absolute;
  right: -38px;
  top: -3px;
  z-index: 1;
}
.mk-steps .step:after {
  content: '';
  width: 0;
  height: 0;
  border: 16px solid transparent;
  border-left-color: #e8e8e8;
  position: absolute;
  top: 0;
  right: -32px;
  z-index: 2;
}
.mk-steps .step.active {
  background-color: #0066B3;
  color: #fff;
}
.mk-steps .step.active:after {
  border-left-color: #0066B3;
}
.mk-steps .step.active .step-number {
  border-color: #fff;
}
.mk-steps .step-number {
  width: 19px;
  height: 19px;
  line-height: 17px;
  border: 1px solid #666;
  border-radius: 50%;
  margin-right: 8px;
  text-align: center;
}
