#page_myAddr {
	margin: 0;
	padding: 0 0 80px 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: #e6f3ff;
	color: #333;
	line-height: 1.6;
}

.myAddr_container {
	min-height: 100vh;
	padding: 16px;
	background: linear-gradient(180deg, #e6f3ff 0%, #ffffff 100%);
}

.myAddr_addBtn {
	position: fixed;
	bottom: 168px;
	right: 25px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #007AFF 0%, #00C6FF 100%);
	color: white;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	z-index: 100;
	transition: all 0.3s ease;
	animation: myAddr_float 3s ease-in-out infinite;
}

.myAddr_addBtn:active {
	transform: scale(0.95) translateY(0);
	box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
}

@keyframes myAddr_float {
	0% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-10px) rotate(5deg); }
	100% { transform: translateY(0) rotate(0deg); }
}

.myAddr_card {
	background: white;
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	transform-origin: center;
	animation: myAddr_fadeIn 0.5s ease-out;
	border: 1px solid rgba(0, 122, 255, 0.1);
	transition: all 0.3s ease;
}

.myAddr_card:active {
	transform: scale(0.98);
}

@keyframes myAddr_fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.myAddr_name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
	display: flex;
	align-items: center;
	gap: 8px;
}

.myAddr_name i {
	color: #007AFF;
}

.myAddr_phone {
	color: #666;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.myAddr_phone i {
	color: #28CD41;
}

.myAddr_address {
	color: #666;
	line-height: 1.6;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding-bottom: 10px;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.myAddr_address i {
	color: #FF3B30;
	margin-top: 4px;
}

.myAddr_actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 15px;
	gap: 20px;
}
@media (max-width: 888px) {
	.myAddr_actions {gap:10px}
}
@media (max-width: 666px) {
	.myAddr_actions {gap:6px}
}

.myAddr_btn {
	background: none;
	border: none;
	color: #007AFF;
	padding: 6px 12px;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.myAddr_btn:hover {
	background: rgba(0, 122, 255, 0.1);
}

.myAddr_btn:active {
	transform: scale(0.95);
}

.myAddr_btn i {
	font-size: 16px;
}

.myAddr_default {
	position: absolute;
	top: -10px;
	right: 20px;
	background: linear-gradient(135deg, #FF3B30 0%, #FF9500 100%);
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	box-shadow: 0 4px 10px rgba(255, 59, 48, 0.2);
	animation: myAddr_bounce 1s ease infinite;
}

@keyframes myAddr_bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-3px); }
}

.myAddr_modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	z-index: 1000;
	animation: myAddr_fadeIn 0.3s ease-out;
}

.myAddr_modalContent {
	position: absolute;
	bottom: var(--menuHeight);
	left: 0;
	right: 0;
	background: white;
	border-radius: 25px 25px 0 0;
	padding: 25px;
	animation: myAddr_slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes myAddr_slideUp {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}

.myAddr_form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.myAddr_input {
	border: 2px solid #E5E5EA;
	border-radius: 12px;
	padding: 14px;
	font-size: 16px;
	outline: none;
	transition: all 0.3s ease;
}

.myAddr_input:focus {
	border-color: #007AFF;
	box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.myAddr_submitBtn {
	background: linear-gradient(135deg, #007AFF 0%, #00C6FF 100%);
	color: white;
	border: none;
	border-radius: 12px;
	padding: 16px;
	font-size: 16px;
	font-weight: 600;
	margin-top: 20px;
	box-shadow: 0 4px 15px rgba(0, 122, 255, 0.2);
	transition: all 0.3s ease;
}

.myAddr_submitBtn:active {
	transform: scale(0.98);
	box-shadow: 0 2px 8px rgba(0, 122, 255, 0.1);
}

.myAddr_empty {
	text-align: center;
	color: #8E8E93;
	margin-top: 60px;
	font-size: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	animation: myAddr_fadeIn 0.5s ease-out;
}

.myAddr_empty i {
	font-size: 48px;
	color: #007AFF;
	opacity: 0.5;
	animation: myAddr_pulse 2s ease-in-out infinite;
}

@keyframes myAddr_pulse {
	0% { transform: scale(1); opacity: 0.5; }
	50% { transform: scale(1.1); opacity: 0.7; }
	100% { transform: scale(1); opacity: 0.5; }
}

.myAddr_deleteConfirm {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	background: white;
	border-radius: 20px;
	padding: 25px;
	width: 85%;
	max-width: 320px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.myAddr_deleteConfirm.active {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	visibility: visible;
}

.myAddr_deleteConfirm h3 {
	margin-bottom: 15px;
	color: #333;
}

.myAddr_deleteConfirm p {
	margin-bottom: 25px;
	color: #666;
}

.myAddr_confirmButtons {
	display: flex;
	gap: 15px;
}

.myAddr_confirmBtn {
	flex: 1;
	padding: 12px;
	border-radius: 10px;
	border: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.myAddr_confirmBtn.cancel {
	background: #F2F2F7;
	color: #333;
}

.myAddr_confirmBtn.delete {
	background: #FF3B30;
	color: white;
}

.myAddr_confirmBtn:active {
	transform: scale(0.95);
}