
.nut-theme-dark {
  .nut-address {
    .nut-elevator {
      &__list {
        &__inner {
          background-color: $dark6;
        }
      }
    }

    &__header {
      color: $dark1;

      &__title {
        color: $dark1;
      }
    }

    &__custom {
    }

    .nut-address__region-tab {
      .nut-address__tab-item {
        color: $dark1;
      }
    }

    .nut-address__region-con {
      .nut-address__region-group {
        .nut-address__region-item {
          div {
            color: $dark1;
          }
        }
      }
    }

    .nut-address__exist-item-info {
      color: $dark1;
    }

    &__exist {
      &-group {
        .nut-address__exist-ul {
          li {
            div {
              i {
                color: $dark1;
              }
            }
          }
        }
      }
    }

    .exist-address {
      .exist-address-group {
        .exist-ul {
          .exist-item {
            color: $dark1;
          }
        }
      }

      .choose-other {
        border-top: 1px solid $dark4;
      }
    }

    &-custom-buttom {
      border-top: 1px solid $dark4;
    }
  }
}

.nut-address {
  display: block;

  &__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 17px;
    padding: 0 20px;
    text-align: center;
    font-weight: bold;
    color: $title-color;
    line-height: 20px;

    &__title {
      display: block;
      color: $title-color;
      font-size: 18px;
    }
  }

  // 请选择
  .nut-address__custom {
    display: block;

    .nut-address__region-tab {
      position: relative;
      margin-top: 32px;
      padding: 0 20px;
      display: flex;
      font-size: 13px;
      color: $title-color;

      .nut-address__tab-item {
        min-width: 2px;
        margin-right: 30px;
        display: block;

        &.active {
          clear: $title-color;
          font-weight: bold;
        }

        span {
          display: inline-block;
          max-width: 100px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
        }
      }

      .nut-address__tab-line {
        position: absolute;
        bottom: -10px;
        left: 20px;
        display: inline-block;
        margin-top: 5px;
        width: 26px;
        height: 3px;
        background: $address-region-tab-line;
        transition: 0.2s all linear;
      }
    }

    .nut-address__region-con {
      display: block;
      margin: 20px 20px 0;

      .nut-address__region-group {
        padding-top: 15px;
        height: 270px;
        overflow-y: auto;
        box-sizing: border-box;
        padding: 0;

        .nut-address__region-item {
          display: flex;
          align-items: center;
          margin-bottom: 20px;
          font-size: $font-size-1;
          color: $title-color;

          &.active {
            font-weight: bold;
            color: $title-color;
          }

          .nut-address__region-item--icon {
            margin-right: 6px;
          }

          > div {
            width: 100%;
          }
        }
      }
    }

    .nut-address__elevator-group {
      display: flex;
      margin-top: 20px;
    }
  }

  // 配送至
  .nut-address__exist {
    display: block;
    margin-top: 15px;

    .nut-address__exist-group {
      padding: 15px 20px 0;
      height: 279px;
      overflow-y: auto;

      .nut-address__exist-ul {
        box-sizing: border-box;
        padding: 0;

        .nut-address__exist-item {
          margin-bottom: 20px;
          font-size: $font-size-1;
          line-height: 14px;
          color: $title-color;

          &.active {
            font-weight: bold;
          }

          > div {
            display: flex;
            align-items: center;
          }

          .nut-address__exist-item-icon {
            margin-right: 9px;
          }

          span {
            display: inline-block;
            flex: 1;
          }
        }
      }
    }

    .nut-address__choose-other {
      width: 100%;
      height: 54px;
      padding: 6px 0px 0;
      border-top: 1px solid #f2f2f2;

      &-btn {
        width: 90%;
        height: 42px;
        line-height: 42px;
        margin: auto;
        text-align: center;
        background: $button-primary-background-color;
        border-radius: 21px;
        font-size: 15px;
        color: $primary-text-color;
      }
    }
  }
}
