#page_myInfo {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: #e6f3ff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #333;
	font-size: 14px;
}

.myInfo_header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 24px;
	padding: 40px 15px 25px 15px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	z-index: 100;
	display: flex;
	align-items: center;
}

.myInfo_backBtn {
	font-size: 20px;
	color: #333;
	padding: 10px;
	margin-left: -10px;
}

.myInfo_title {
	flex: 1;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
}

.myInfo_container {
	padding-top: 89px;
	padding-bottom: 20px;
}

.myInfo_form {
	background: #fff;
	margin: 10px;
	border-radius: 10px;
	overflow: hidden;
}

.myInfo_item {
	display: flex;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #eee;
	min-height: 24px;
}

.myInfo_item:last-child {
	border-bottom: none;
}

.myInfo_label {
	width: 80px;
	color: #666;
}

.myInfo_content {
	flex: 1;
	display: flex;
	align-items: center;
}

.myInfo_input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 14px;
	color: #333;
	padding: 0 5px;
}

.myInfo_arrow {
	color: #ccc;
	margin-left: 5px;
}

.myInfo_avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #f5f5f5;
	overflow: hidden;
}

.myInfo_avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.myInfo_avatar .imagePreview{all: unset;}
.myInfo_avatar .imagePreview_deleteBtn{display:none}

.myInfo_modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0);
	display: none;
	z-index: 200;
	transition: background-color 0.3s;
}

.myInfo_modalContent {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 20px 20px 0 0;
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	max-height: 70vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.myInfo_modalContent::-webkit-scrollbar {
	display: none;
}

.myInfo_modalShow {
	display: block;
	background: rgba(0,0,0,0.5);
}

.myInfo_modalShow .myInfo_modalContent {
	transform: translateY(0);
	box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}

.myInfo_item {
	position: relative;
	overflow: hidden;
}

.myInfo_item:active {
	background: rgba(0,0,0,0.05);
}

@keyframes myInfo_fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.myInfo_form .myInfo_item {
	animation: myInfo_fadeIn 0.3s ease-out forwards;
	animation-delay: calc(var(--index) * 0.05s);
	opacity: 0;
}

.myInfo_modalTitle {
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
}

.myInfo_modalOption {
	padding: 12px 0;
	text-align: center;
	font-size: 15px;
	border-bottom: 1px solid #eee;
}

.myInfo_modalOption:last-child {
	border-bottom: none;
}

.myInfo_modalOption.myInfo_selected {
	color: #007aff;
}