.address-container {
    background: #fff;
    padding: 24px 30px 40px;
    min-height: 502px;
}

/* 地址类型切换 */
.address-tab {
    font-size: 14px;
}

.address-tab .address-tab-item {
    float: left;
    margin-right: 40px;
    cursor: pointer;
}

.address-tab .address-tab-item a {
    color: #999;
}

.address-tab .address-tab-item.active a {
    color: var(--main-color);
}


/* 添加地址 */
.table-tool {
    text-align: right;
    padding: 10px 0;
}

.table-tool span {
    display: inline-block;
    color: var(--main-color);
    cursor: pointer;
}


/* 数据表格 */
table {
    width: 100%;
    background: #fff;
    border: 1px solid #dedede;
}

/* 标题 */
table tr th {
    height: 40px;
    background: #f6f6f6;
    color: #999;
    font-weight: 400;
}

table tr th.th-1 {
    width: 144px;
}

table tr th.th-2 {
    width: 380px;
}

table tr th.th-3 {
    width: 158px;
}

table tr th.th-4 {
    width: 68px;
}

table tr+tr {
    border-top: 1px solid #dedede
}

/* 单元格 */
table tr td {
    padding: 20px 0;
    text-align: center;
    border-left: 1px solid #dedede;
}

table tr td .addr-box {
    text-align: left;
    line-height: 20px;
    word-break: break-all;
    padding: 0 40px;
}

/* 默认标签 */
table tr td i {
    *display: inline;
    display: inline-block;
    zoom: 1;
    font-style: normal;
    padding: 0 8px;
    color: var(--main-color);
    background: #e8f5ff;
    border: 1px solid var(--main-color);
    border-radius: 2px;
    margin-left: 5px;
}


/* 操作按钮 */
table tr td .operation button {
    background-color: #fff;
    border: 0;
    outline: none;
    cursor: pointer;
    margin: 0 4px;
}