.wm-tabs-hub-item {
  display: flex;
  flex-direction: row;
  align-items: center;

  .text {
    font-size: 24px;
    color: #333;
  }

  .active {
    color: #ff6600;
    font-weight: 500;
  }

  .icon {
    width: 24px;
    height: 24px;
    margin-left: 8px;
    transition: transform 100ms linear;
    transform: rotate(0deg);
  }

  .expand {
    transform: rotate(180deg);
  }
}

.expand-modal {
  width: 100%;
  height: calc(100vh - 80px);
  position: absolute;
  left: 0;
  top: 80px;
  background-color: rgba(000, 000, 000, 0.4);
  z-index: 9999;

  .expand-content {
    background: #fff;
    border-radius: 0 0 16px 16px;
    align-items: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    max-height: 560px;

    .item {
      font-size: 24px;
      color: #333;
      height: 80px;
      width: 100%;
      line-height: 80px;
      text-align: center;
    }

    .multiple-box {
      display: flex;
      flex-wrap: wrap;
      max-height: 456px;
      overflow-y: scroll;
    }

    .btn-box {
      display: flex;
      flex-direction: row;
      align-items: center;
      height: 104px;
      border-top: 1px solid #e6e6e6;
      padding: 0 32px;
      justify-content: space-between;

      .btn {
        display: flex;
        width: 336px;
        height: 64px;
        border-radius: 36px;
        font-size: 24px;
        align-items: center;
        justify-content: center;
        font-weight: bold;
      }

      .confirm {
        background: linear-gradient(
          90deg,
          rgba(255, 136, 0, 1) 0%,
          rgba(255, 77, 0, 1) 100%
        );
        color: #fff;
      }

      .reset {
        border: 2px solid #ff6600;
        color: #ff6600;
      }
    }

    .multiple {
      font-size: 24px;
      color: #333;
      height: 80px;
      width: 50%;
      line-height: 80px;
      padding: 0 24px;
    }

    .active {
      color: #ff6600;
      font-weight: 500;
    }
  }
}

.pop-filter-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  top: 0;
  right: 0;
  background: rgba(000, 000, 000, 0.4);
  justify-content: flex-end;
  z-index: 999;
  flex-direction: row;

  .content {
    width: calc(100vw - 110px);
    height: 100%;
    background: #fff;
    padding: 20px 32px 54px;
    overflow-y: auto;

    .btn-box {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      position: fixed;
      bottom: 88px;
      z-index: 99;

      .reset-btn {
        display: flex;
        width: 280px;
        height: 72px;
        border-radius: 36px;
        border: 2px solid rgba(255, 102, 0, 1);
        font-size: 28px;
        color: #ff6600;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        background: #fff;
      }

      .confirm-btn {
        display: flex;
        width: 280px;
        height: 72px;
        background: linear-gradient(
          90deg,
          rgba(255, 136, 0, 1) 0%,
          rgba(255, 77, 0, 1) 100%
        );
        border-radius: 36px;
        font-size: 28px;
        color: #fff;
        margin-left: 16px;
        align-items: center;
        justify-content: center;
        font-weight: bold;
      }
    }
  }
}
