@mixin steps-item-status($step-item-head-border-color, $step-item-head-icon-color, $step-item-main-title-color, $step-item-main-description-color) {
    .#{$steps-prefix-cls}-head {
      &__inner {
        border-color: $step-item-head-border-color;
  
        .#{$steps-prefix-cls}-icon {
          color: $step-item-head-icon-color;
        }
      }
    }
  
    .#{$steps-prefix-cls}-main {
      &__title {
        color: $step-item-main-title-color;
      }
  
      &__description {
        color: $step-item-main-description-color;
      }
    }
  }