.nut-image {
  display: block;
  position: relative;
  .nut-img {
    display: block;
    width: 100%;
    height: 100%;
  }

  &.nut-image-round {
    border-radius: 50%;
    overflow: hidden;
  }

  .nut-img-loading {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F6F6F6;
    z-index: 2;
    color: #ffffff;
    background-size: 100% 100%;
    &-custom {
      background: $overlay-bg-color;
    }
  }
  .nut-img-error {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F6F6F6;
    background-size: 100% 100%;
  }
  .nut-img-default {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F6F6F6;
    color: $nsui-gray6;
    font-size: 12px;
    background-size: 100% 100%;
    span {
      margin-top: 8px;
    }
  }
}
