/* 会员中心样式 */
.gl2-body {
	background: #f2f2f2;
	overflow-x: hidden;
}
.zheli-header {
	background: linear-gradient(135deg, #1878D1 0%, #1878D1 100%);
	width: 100%;
	padding: 30px 0;
	position: relative;
}





.zheli-header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

/* 左侧Logo和标题区域 */
.zheli-header-left {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 1;
}

.logo-section {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.logo-top-text {
	font-size: 14px;
	color: #fff;
	opacity: 0.9;
	white-space: nowrap;
}

.logo-main {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo-icon {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
}

.logo-icon svg {
	width: 100%;
	height: 100%;
}

.logo-text {
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 2px;
	white-space: nowrap;
}

/* 右侧搜索区域 */
.zheli-header-right {
	display: flex;
	align-items: center;
	gap: 0;
	flex-shrink: 0;
}

.search-wrapper {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-dropdown {
	position: relative;
	border-right: 1px solid #e0e0e0;
}

.search-dropdown-select {
	padding: 12px 35px 12px 15px;
	border: none;
	background: #fff;
	font-size: 14px;
	color: #333;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
	min-width: 120px;
}

.search-dropdown::after {
	content: '';
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid #666;
	pointer-events: none;
}

.search-input-1-wrapper {
	display: flex;
	align-items: center;
	padding: 0 15px;
	min-width: 400px;
}

.search-input-1 {
	flex: 1;
	border: none;
	outline: none;
	font-size: 14px;
	color: #333;
	padding: 12px 0;
	background: transparent;
}

.search-input-1::placeholder {
	color: #999;
}

.search-btn-1 {
	padding: 12px 30px;
	background: #f4f4f4;
	color: #1878D1;
	border: none;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s;
	white-space: nowrap;
	font-weight: bold;
}



/* 响应式设计 */
@media (max-width: 1200px) {
	.zheli-header-container {
		padding: 0 20px;
		gap: 20px;
	}
	
	.logo-text {
		font-size: 36px;
	}
	
	.search-input-1-wrapper {
		min-width: 300px;
	}
}

@media (max-width: 768px) {
	.zheli-header{display: none !important;}
	.zheli-header-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	
	.logo-text {
		font-size: 32px;
	}
	
	.search-wrapper {
		width: 100%;
	}
	
	.search-input-1-wrapper {
		min-width: auto;
		flex: 1;
	}
	
	.search-dropdown-select {
		min-width: 100px;
		padding: 12px 30px 12px 12px;
	}
}
.main-container {
	width: 100%;
	max-width: 1200px;
	margin: 30px auto;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.member-wrapper {
	display: flex;
	min-height: 600px;
}

.member-sidebar {
	width: 250px;
	background: #fafafa;
	border-right: 1px solid #e8e8e8;
	padding: 20px 0;
}

.member-user-info {
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid #e8e8e8;
}

.member-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 15px;
	background: #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.member-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member-username {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	margin-bottom: 5px;
}

.member-mobile {
	font-size: 14px;
	color: #999;
}

.member-menu {
	padding: 10px 0;
}

.member-menu h3 {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	margin-bottom: 10px;
	padding: 0 20px;
}

.member-menu h3 i {
	
	margin-right: 10px;
	font-weight: bold;
}

.member-menu-group {
	margin-top: 20px;
	border-top: 1px solid #e8e8e8;
	padding-top: 10px;
}

.member-menu-item {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	color: #333;
	text-decoration: none;
	transition: background 0.3s;
	cursor: pointer;
}

.member-menu-item:hover {
	background: #f0f0f0;
}

.member-menu-item.active {
	background: #e6f7ff;
	color: #0076FE;
	border-right: 2px solid #0076FE;
}

.member-menu-item-icon {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	display: inline-block;
	display: none;
}
.member-menu-item span{
	padding-left: 20px;
}

.member-menu-item {
	position: relative;
}

i.message-badge-dot {
	position: absolute;
	right: -10px;
	top: -10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	line-height: 1;
	text-align: center;
	background: #ff4444;
	color: #fff;
	border-radius: 100%;
	font-size: 11px;
	font-weight: bold;
	box-shadow: 0 2px 4px rgba(255, 68, 68, 0.3);
	z-index: 10;
	font-style: normal;
}

i.message-badge-dot:empty {
	min-width: 8px;
	height: 8px;
	padding: 0;
	border-radius: 50%;
}
.member-content {
	flex: 1;
	padding: 30px;
}

/* 会员中心首页样式 */
.member-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e8e8e8;
}

.member-title {
	font-size: 24px;
	font-weight: 500;
	color: #333;
}

.member-since {
	font-size: 14px;
	color: #999;
}

.welcome-message {
	font-size: 20px;
	font-weight: 500;
	color: #333;
	margin-bottom: 10px;
}

.description {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 30px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 30px;
	
}

.stat-card {
	background: #f5f5f5;
	border-radius: 4px;
	padding: 20px;
	text-align: center;
}

.stat-number {
	font-size: 32px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 14px;
	color: #666;
}

.action-buttons {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.action-btn {
	background: #f5f5f5;
	border: none;
	border-radius: 4px;
	padding: 15px;
	cursor: pointer;
	text-align: center;
	transition: background 0.3s;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
}

.action-btn:hover {
	background: #e8e8e8;
}

.action-btn-icon {
	font-size: 20px;
	color: #666;
}

.action-btn-text {
	font-size: 14px;
	color: #333;
}

/* 表单样式 */
.form-title {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-bottom: 30px;
	text-align: left;
}

.form-group {
	margin-bottom: 25px;
}

.form-label {
	display: block;
	font-size: 14px;
	color: #333;
	margin-bottom: 8px;
	font-weight: 500;
}

.form-input {
	width: 100%;
	height: 44px;
	padding: 0 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	color: #333;
	background: #fff;
	transition: border-color 0.3s;
}

.form-input:focus {
	outline: none;
	border-color: #0076FE;
}

.form-input::placeholder {
	color: #999;
}

.form-textarea {
	width: 100%;
	height: 100px;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	color: #333;
	background: #fff;
	transition: border-color 0.3s;
}

.form-textarea:focus {
	outline: none;
	border-color: #0076FE;
}


.form-textarea::placeholder {
	color: #999;
}

.form-hint {
	font-size: 12px;
	color: #999;
	margin-top: 5px;
}

.form-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

/* 按钮样式 */
.btn {
	padding: 12px 30px;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s;
	border: none;
}

.btn-back {
	background: #fff;
	color: #333;
    border: 1px solid #ddd;
}

.btn-back:hover {
	background: #fff;
	color: #006bbb;
}

.btn-continue {
	background: #006bbb;
	color: #fff;
}

.btn-continue:hover {
	background: #005a9c;
}

.btn-continue:disabled {
	background: #ccc;
	cursor: not-allowed;
}

/* 错误和成功提示 */
.error-msg {
	color: #EF0F25;
	font-size: 12px;
	margin-top: 5px;
	display: none;
}

.error-msg.show {
	display: block;
}

.success-msg {
	color: #52c41a;
	font-size: 14px;
	margin-bottom: 20px;
	display: none;
}

.success-msg.show {
	display: block;
}

/* 响应式设计 */
@media (max-width: 768px) {
	
	
	.main-container{ margin: 0px auto !important;}
	.footer-container{display: none !important;}
	.member-wrapper {
		flex-direction: column;
	}
	
	.member-index-body .member-index-container{ display: none !important;}
	.member-sidebar {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #e8e8e8;
		padding:0px;
		display: none;
	}

	/* .member-index-container .member-sidebar{
		display: block;
	} */
	
	.member-user-info{
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: 10px;
	}
	.member-avatar{
		margin-left: 0px !important;
		margin-right: 10px !important;
	}
	.member-user-info-content{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.member-menu {
		display: flex;
		flex-direction: column;
	}
	
	.member-menu-item {
		white-space: nowrap;
	}
	

	.member-content-index{
		display: none;
	}

	.member-content{
		padding: 20px !important;
	}
	.member-content .form-title{display: none !important;}


	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.action-buttons {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 手机版会员中心头部样式 */
.mobile-member-header {
	display: none;
	background: #fff;
	padding: 5px 15px;
	border-bottom: 1px solid #e6e6e6;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 999;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}



.mobile-member-header-left,
.mobile-member-header-right {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	transition: all 0.3s ease;
	text-decoration: none;
	color: #333;
	flex-shrink: 0;
}

.mobile-member-header-left:active,
.mobile-member-header-right:active {
	background: #e6e6e6;
	transform: scale(0.95);
}

.mobile-member-header-left i,
.mobile-member-header-right i {
	font-size: 20px;
	color: #333;
	transition: color 0.3s ease;
}

.mobile-member-header-left:hover i,
.mobile-member-header-right:hover i {
	color: #1878D1;
}

.mobile-member-header-title {
	flex: 1;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	letter-spacing: 0.5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* PC版隐藏手机版头部 */
@media (min-width: 769px) {
	.mobile-member-header {
		display: none !important;
	}
}

/* 手机版显示 */
@media (max-width: 768px) {
	.mobile-member-header {
		display: flex !important;
	}
	.member-index-body .mobile-member-header{
		display: none !important;
	}
	.zheli-header {
		display: none !important;
	}
}





.header {
	background: url('../images/user_top_bg.jpg') no-repeat top;
	border-radius: 0 0 5% 5%;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 15px;
	padding-bottom: 20px;
	width: 100%;
	z-index: 2;
	position: relative;
	overflow: visible;
	min-height: 180px;
}

/* 顶部导航栏 */
.header-top-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0px;
}

.header-logout {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	font-weight: 500;
	transition: opacity 0.2s;
}

.header-logout:hover {
	opacity: 0.7;
}

.header-logout svg {
	width: 18px;
	height: 18px;
}

.header-nav-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.header-nav-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-decoration: none;
	color: #333;
	font-size: 11px;
	transition: opacity 0.2s;
}

.header-nav-icon:hover {
	opacity: 0.7;
}

.header-nav-icon svg {
	width: 20px;
	height: 20px;
}

.header-nav-icon span {
	font-size: 11px;
	white-space: nowrap;
}

.profile {
	display: flex;
	align-items: center;
	position: relative;
	color: #333;
	padding: 10px 0 20px 0;
}

.profile .info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.profile h2 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin: 0;
	line-height: 1.2;
}

.avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 3px solid white;
	margin-right: 15px;
	background: #f5f5f5;
	object-fit: cover;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.level {
	display: inline-block;
	background: rgba(255, 255, 255, 0.95);
	padding: 5px 14px;
	border-radius: 15px;
	font-size: 13px;
	font-weight: 500;
	color: #333;
	align-self: flex-start;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 20px;
}

.stat-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 10px;
	border-radius: 8px;
	text-align: center;
}

.stat-value {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 12px;
	opacity: 0.8;
}

.chart-container {
	background: white;
	margin: 15px;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#salesChart {
	width: 100%;
	height: 300px;
}

.bottom-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	display: flex;
	justify-content: space-around;
	padding: 10px 0;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.menu-item {
	text-align: center;
	color: #666;
}

.menu-item.active {
	color: #1878D1;
}

.menu-icon {
	font-size: 24px;
	margin-bottom: 4px;
}
.menu-icon i{ font-size: 24px;}
.menu-label {
	font-size: 12px;
}

.menu-list {
	background: white;
	margin: 15px;
	border-radius: 10px;
	/* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

.menu-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #eee;
}
.menu-row i{font-size:14px;font-weight: 900;color: #999;}
.menu-row:last-child {
	border-bottom: none;
}

.menu-left {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
}

.menu-left i {
	font-size: 20px;
	color: #666;
	width: 24px;
	text-align: center;
}

.menu-left span {
	font-size: 16px;
	color: #333;
}

.fa-chevron-right {
	color: #999;
	font-size: 14px;
}

 .stats-grid {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 10px;
			padding: 15px;
			background: white;
			margin: 15px;
			border-radius: 10px;
			margin-top: 50px;
			/* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
		}

		.stat-card {
			display: flex;
			align-items: center;
			gap: 10px;
			padding: 10px;
			background: #f8f9fa;
			border-radius: 8px;
			transition: transform 0.2s;
		}

		.stat-card:hover {
			transform: translateY(-2px);
		}

		.stat-icon {
			width: 40px;
			height: 40px;
			background: #f2f2f2;
			border-radius: 8px;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.stat-icon i {
			color: #666;
			font-size: 20px;
		}

		.stat-info {
			flex: 1;
		}

		.stat-info .stat-value {
			font-size: 18px;
			font-weight: bold;
			color: #333;
			margin-bottom: 2px;
		}

	   .stat-info .stat-label {
			font-size: 12px;
			color: #333;
		}

		.deposit-notice {
	background: linear-gradient(135deg, #ff9800, #f57c00);
	margin: 15px;
	padding: 15px;
	border-radius: 10px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.deposit-notice-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.deposit-notice i {
	font-size: 24px;
}

.deposit-notice-content {
	flex: 1;
}

.deposit-notice-title {
	font-weight: bold;
	margin-bottom: 4px;
}

.deposit-notice-desc {
	font-size: 12px;
	opacity: 0.9;
}

.deposit-notice-button {
	background: white;
	color: #ff9800;
	padding: 8px 16px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
	transition: transform 0.2s;
}

 .deposit-notice-button:hover {
 	transform: scale(1.05);
 }

/* 企业菜单网格样式 */
.enterprise-menu-grid-section {
	background: white;
	margin: 15px;
	border-radius: 10px;
	/* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
	padding: 20px 15px;
}

.enterprise-menu-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0 0 20px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.enterprise-menu-title i {
	font-size: 20px;
	color: #333;
}

.enterprise-menu-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	justify-items: center;
}

.enterprise-menu-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #333;
	transition: transform 0.2s ease;
	width: 100%;
	max-width: 80px;
}

.enterprise-menu-item:active {
	transform: scale(0.95);
}

.enterprise-menu-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	background: #FA9641;
}

.enterprise-menu-item:hover .enterprise-menu-icon,
.enterprise-menu-item.active .enterprise-menu-icon {
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.enterprise-menu-icon i {
	font-size: 28px;
	color: #fff;
}

.enterprise-menu-label {
	font-size: 13px;
	color: #333;
	text-align: center;
	line-height: 1.3;
	word-break: break-all;
}

.enterprise-menu-item.active .enterprise-menu-label {
	color: #1878D1;
	font-weight: 600;
}

/* 响应式调整 */
@media (max-width: 480px) {
	.enterprise-menu-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 10px;
	}
	
	.enterprise-menu-icon {
		width: 50px;
		height: 50px;
	}
	
	.enterprise-menu-icon i {
		font-size: 24px;
	}
	
	.enterprise-menu-label {
		font-size: 12px;
	}
}

/* 全国统一服务热线样式 */
.service-hotline-card {
	background: white;
	margin: 20px 15px 0 15px;
	border-radius: 10px;
	padding: 15px 20px;
	
	position: absolute;
	bottom: -25px;
	left: 0;
	right: 0;
	z-index: 10;
}

.service-hotline-content {
	display: flex;
	align-items: center;
	gap: 12px;
}

.service-hotline-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: #666;
}

.service-hotline-text {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	font-size: 15px;
}

.service-hotline-label {
	color: #666;
	font-weight: 500;
}

.service-hotline-number {
	color: #333;
	font-weight: 600;
}

/* 在售车源和我的店铺菜单 */
.member-quick-menu {
	background: white;
	margin: 15px;
	border-radius: 10px;
	padding: 15px 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 40px;

}

.quick-menu-item {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 0 20px;
	text-decoration: none;
	color: #333;
	transition: opacity 0.2s;
}

.quick-menu-item:active {
	opacity: 0.7;
}

.quick-menu-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	border-radius: 8px;
	flex-shrink: 0;
}

.quick-menu-icon.car-icon {
	background: #4A90E2;
	color: white;
}

.quick-menu-icon.shop-icon {
	background: #FF9537;
	color: white;
}

.quick-menu-icon svg {
	width: 24px;
	height: 24px;
}

.quick-menu-text {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.quick-menu-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 4px;
	line-height: 1.2;
}

.quick-menu-desc {
	font-size: 12px;
	color: #999;
	line-height: 1.2;
}

.quick-menu-divider {
	width: 1px;
	height: 40px;
	background: #e5e5e5;
	flex-shrink: 0;
}
.mobile-account-info{display: none;}
@media (max-width: 768px) {
	.mobile-account-info{display: block;}
}