.box {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fff;

  &.border {
    border: 1px solid $basic-border-color;
  }
  &.collapse {
    .box-content {
      display: none;
    }
    .box-title {
      padding-bottom: 0;
    }

    &.open {
      .box-content {
        display: block;
      }
      .box-title {
        padding-bottom: 10px;
        border-bottom: 1px solid $basic-border-color;
      }
      .box-title-toggle-icon {
        transform: rotate(180deg);
      }
    }
  }

  .box-loading {
    display: block;
    margin: 50px auto;
    transform: scale(0.6);
  }
}
.box-title {
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 20px;
  color: $primaryDarkColor;
  fill: $primaryDarkColor;
  font-weight: bold;
  position: relative;
  .icon {
    margin-top: 2px;
    margin-right: 10px;
  }
  .right-block {
    flex: 1;
    > a {
      cursor: pointer;
      font-size: 12px;
      color: $primaryDarkColor;
      .icon {
        margin-right: 6px;
      }
      &:hover {
        color: $basic-aid-blue-color;
      }
    }
  }
}
.box-title-toggle {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  font-size: 14px;

  .box-title-toggle-icon {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    margin-right: 5px;
  }
}

.no-result {
  font-size: 16px;
  margin: 20px auto;
  text-align: center;
  color: $font-color-low;
}
