/* 地址管理页样式 */

.top-nav-add {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #1890FF;
    background: none;
    border: none;
    cursor: pointer;
}

.address-list {
    padding: 10px 15px;
    padding-bottom: 80px;
}

.address-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.address-info {
    margin-bottom: 12px;
}

.address-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.address-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.address-phone {
    font-size: 14px;
    color: #666;
}

.address-default {
    font-size: 12px;
    color: #1890FF;
    background-color: #e6f7ff;
    padding: 2px 8px;
    border-radius: 4px;
}

.address-detail {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.address-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.action-btn {
    font-size: 14px;
    color: #1890FF;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
}

.action-btn.delete {
    color: #FF4D4F;
}

.action-btn:active {
    opacity: 0.7;
}

/* 地址标签 */
.address-tags {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.address-tags .tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.address-tags .tag.active {
    background-color: #e6f7ff;
    border-color: #1890FF;
    color: #1890FF;
}

/* 底部按钮 */
.address-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 750px;
    padding: 10px 15px;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.address-footer .btn {
    height: 44px;
}

