.address-list-wrapper {
    margin-top: 1rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 0.4rem;
    min-height: 46rem;
}

.address-null-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.address-null-wrapper img {
    width: 22rem;
}

.address-null-wrapper p {
    font-size: 1.6rem;
    margin-top: 1rem;
}

.address-null-wrapper div {
    font-size: 1.4rem;
    margin-top: 1.5rem;
}

.address-null-wrapper span {
    font-size: 1.4rem;
    cursor: pointer;
    margin-left: 0.5rem;
    color: #0147a6;
    text-decoration: underline;
}

.address-list-top {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.address-list-top p {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.address-list-top i {
    font-size: 2rem;
    color: #FF7200;
    margin-right: 0.3rem;
}

.address-list-top span {
    font-size: 1.3rem;
    color: #FF7200;
    margin: 0 0.5rem;
}

.address-list-content button {
    display: flex;
    align-items: center;
    background: #0147a6;
    border: #0147a6 1px solid;
    font-size: 1.3rem;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
    color: #ffffff;
    cursor: pointer;
    letter-spacing: 0;
}

.address-list-content button:hover {
    background: #0054c7;
}

.address-list-content button i {
    font-size: 1.6rem;
    margin-right: 0.6rem;
    color: #ffffff;
}

.address-list-content .address-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    border: 1px solid #dde6ff;
    margin-bottom: 2rem;
    border-radius: 0.4rem;
    cursor: pointer;
    margin-top: 2rem;
}

.address-list-content .address-list:hover {
    background: #e5efff;
}

.address-list-content .address-list .left {
    display: flex;
    align-items: center;
}

.address-list-content .address-list .name {
    max-width: 22%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    margin-right: 3rem;
    font-size: 1.4rem;
}

.address-list-content .address-list .phone, .address-list-content .address-list .province, .address-list-content .address-list .city, .address-list-content .address-list .district, .address-list-content .address-list .address {
    display: inline-block;
    margin-right: 1.5rem;
    font-size: 1.4rem;
}

.address-list-content .address-list .default {
    text-align: center;
    font-size: 1.2rem;
    padding: 0.2rem 0;
    color: #ffffff;
    width: 6rem;
    border-radius: 0.4rem;
    background-color: #0147a6;
    border: 1px solid #0147a6;
    display: none;
}

.address-list-content .address-list .right span {
    font-size: 1.2rem;
    margin-left: 2rem;
    cursor: pointer;
}

.address-list-content .address-list .right span:hover {
    color: #0147a6;
}

.address-list-content .address-list .right .del:hover {
    color: #FF7200;
}

/* 兼容不同分辨率样式 */
@media screen and (max-width: 1919px) and (min-width: 1680px) {
    .user-wrapper {
        padding: 0 18rem;
    }
}

@media screen and (max-width: 1679px) and (min-width: 1600px) {
    .user-wrapper {
        padding: 0 18rem;
    }
}

@media screen and (max-width: 1599px) and (min-width: 1440px) {
    .user-wrapper {
        padding: 0 14rem;
    }

    .user-left-wrapper {
        width: 17%;
    }

    .user-right-wrapper {
        width: 82%;
    }
}

@media screen and (max-width: 1439px) and (min-width: 1280px) {
    .user-wrapper {
        padding: 0 8rem;
    }

    .user-left-wrapper {
        width: 17%;
    }

    .user-right-wrapper {
        width: 82%;
    }

    .pop-up-content {
        width: 50%;
    }

    .address-list-content .address-list {
        padding: 1.5rem;
    }

    .address-list-content .address-list .name, .address-list-content .address-list .phone, .address-list-content .address-list .province, .address-list-content .address-list .city, .address-list-content .address-list .district, .address-list-content .address-list .address {
        font-size: 1.3rem;
        margin-right: 1rem;
    }
    .address-list-content .address-list .right span{
        margin-left: 1.5rem;
    }
}