.nut-addresslist {
  overflow: hidden;
  .nut-long-press-shell {
    &__contain {
      width: 100%;
      min-height: 76px;
      padding: 5px 10px;
      background-color: #fff;
      border-bottom: 1px solid #f0f0f0;
      color: #333333;
      font-size: 16px;
      display: flex;
      align-items: center;
      position: relative;
      box-sizing: border-box;
      &-mask {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.4);
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0 40px;
        z-index: 2001;
        &-copy,
        &-set,
        &-del {
          height: 55px;
          width: 55px;
          border-radius: 50%;
          text-align: center;
          background-color: #fff;
          font-size: 14px;
          display: flex;
          justify-content: center;
          align-items: center;
        }
        &-set {
          color: #fff;
          background-color: #f5a623;
        }
        &-del {
          color: #fff;
          background-color: #e1251b;
        }
      }
    }
    //设置mask
    &__mask-bottom {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2000;
      background-color: transparent;
    }
  }
  .nut-long-press-shell:last-child {
    &__contain {
      border-bottom: none;
    }
  }
  .nut-swipe-shell,
  .nut-general-shell {
    // width:100%;
    min-height: 76px;
    padding: 5px 10px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    color: #333333;
    font-size: 16px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .nut-swipe-shell:last-child,
  .nut-general-shell:last-child {
    border-bottom: none;
  }
  .nut-item-contents {
    &__contain {
      width: 100%;
    }
    &__info {
      display: flex;
      justify-content: space-between;
      &-contact {
        display: flex;
        justify-content: flex-start;
        font-weight: bold;
        align-items: center;
        &-name {
          max-width: 145px;
          word-wrap: break-word;
        }
        &-tel {
          margin-left: 8px;
          max-width: 110px;
          word-wrap: break-word;
        }
        &-default {
          margin-left: 5px;
          padding: 0 6px;
          height: 16px;
          line-height: 16px;
          background: $addresslist-contnts-contact-default;
          border-radius: 2px;
          font-size: 12px;
          color: $addresslist-contnts-contact-color;
        }
      }
      &-handle {
        &-edit {
          margin-left: 15px;
        }
      }
    }
    &__addr {
      color: #666666;
      font-size: 12px;
      margin-top: 5px;
    }
  }
  &__bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    bottom: constant(safe-area-inset-bottom);
    bottom: env(safe-area-inset-bottom);
    width: 100%;
    padding: 12px 18px 24px;
    z-index: 100000;
    background-color: #fff;
    box-sizing: border-box;
  }
}
.nut-addresslist:last-child {
  padding-bottom: 84px;
}
