.asp-mp-progress {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10rpx;
  &__line {
    height: 16rpx;
    background: rgba(0,0,0,0.04);
    border-radius: 8rpx;
    &-fill {
      height: 16rpx;
      position: relative;
      background: #1372F0;
      border-radius: 8rpx;
      .item {
        height: 40rpx;
        min-width: 80rpx;
        padding: 0 6rpx;
        border-radius: 25rpx;
        line-height: 40rpx;
        position: absolute;
        right: -40rpx;
        bottom: 30rpx;
        font-family: PingFangSC-Regular;
        font-size: 12px;
        color: #FFFFFF;
        text-align: center;
        background: #1372F0;
        box-shadow: 0 2rpx 12rpx 0 rgba(100,101,102,0.08);
      }
      .triangle {
        display: block;
        height: 20rpx;
        width: 20rpx;
        right: -5rpx;
        bottom: 22rpx;
        position: absolute;
        background: #1372F0;
        // ---关键代码 start---
        clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
        transform: rotate(-45deg);
        // ---end---
        border-radius: 0 0 0 2rpx;
      }
    }
  }
  &__count {
    width: 10%;
    font-size: 28rpx;
    text-align: center;
    color: rgba(0,0,0,0.85);
    
  }
}