.addressItem {
  width: 100%;
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 5px;

  .upInfo {
    padding: 15px;
    box-sizing: border-box;
    border-bottom: 1px solid #e2e2e2;

    .userInfo {
      color: #000;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .addressInfo {
      display: grid;
      grid-template-columns: 1fr 14px;
      gap: 10px;

      .address {
        font-size: 12px;
        color: #a7a7a7;
      }

      .icon {
        width: 14px;
        height: 14px;
      }
    }
  }

  .downInfo {
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    padding: 12px 14px;

    .checkBoxPc {
      display: flex;
      justify-content: center;
      align-items: center;

      input {
        margin-right: 5px;
      }
    }

    .checkboxMini {
      .checkBoxWrap {
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .wx-checkbox-input {
        width: 12px;
        height: 12px;
        border-radius: 50%;
      }

      .wx-checkbox-input .wx-checkbox-input-checked {
        color: red;
        border-color: #000;
      }

      .wx-checkbox-input.wx-checkbox-input-checked::before {
        background-color: #000;
        width: 12px;
        height: 12px;
        line-height: 12px;
        border-radius: 50%;
        text-align: center;
        font-size: 10px;
        color: #fff;
        transform: translate(-50%, -50%) scale(1);
      }
    }

    .del {
      font-size: 12px;
      color: #a7a7a7;
    }
  }
  .adm-checkbox.adm-checkbox-checked .adm-checkbox-icon {
    border-color: #34c0bc;
    background-color: #34c0bc;
  }
}
