/* ==================== 顶部广告条 ==================== */
.lsd-top-banner {
	width: 100%;
	height: 40px;
	background: #0069EA;
	position: relative;
	z-index: 1001;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lsd-top-banner-content {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 60px;
	position: relative;
}

.lsd-top-banner-text {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: opacity 0.2s;
	cursor: pointer;
}

.lsd-top-banner-text:hover {
	opacity: 0.9;
}

.lsd-header-no-banner .lsd-dropdown-menu {
	top: 70px;
}

.lsd-top-banner-icon {
	width: 16px;
	height: 16px;
	color: #FFFFFF;
}

.lsd-top-banner-arrow {
	width: 14px;
	height: 14px;
	color: #FFFFFF;
}
.lsd-container-box {
	position: relative;
}
.lsd-top-banner-close {
	width: 24px;
	height: 24px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease;
	flex-shrink: 0;
	position: absolute;
    right: calc(50% - 170px);
	top: 50%;
	transform: translateY(-50%);
}

.lsd-top-banner-close:hover {
	background: rgba(255, 255, 255, 0.1);
}

.lsd-top-banner-close svg {
	width: 14px;
	height: 14px;
	color: rgba(255, 255, 255, 0.5);
}

/* 广告条关闭后的header位置调整 - 默认在顶部 */
.lsd-header {
	position: fixed;
	top: 40px;
	width: 100%;
	z-index: 1000;
	background-color: #ffffff;
	z-index: 100;
	box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .08);
}

/* 有广告条时header下移 */
.lsd-top-banner:not(.lsd-hidden) ~ .lsd-header {
	top: 40px;
}

/* 下拉菜单位置由JS动态控制，初始值 */
.lsd-header .lsd-dropdown-menu {
	top: 110px;
}

/* 非通栏下拉菜单位置由JS动态控制，初始值 */
.lsd-header .lsd-dropdown-menu-compact {
	top: 70px;
}

/* 手机端隐藏广告条 */
@media screen and (max-width: 768px) {
	.lsd-top-banner {
		display: none !important;
	}
	
	.lsd-header {
		top: 0 !important;
	}
}

.lsd-nav-pc {
	display: flex;
	flex: 1;
}

.lsd-header .lsd-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1440px;
	margin: 0 auto;
	height: 70px;
	padding: 0 20px;
}

.lsd-header .lsd-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	height: 70px;
	padding: 0 20px;
	font-size: 16px;
}

.lsd-header .lsd-logo {
	width: 180px;
	height: auto;
}

.lsd-header .lsd-nav-dropdown-wrap {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}

.lsd-header .lsd-nav-dropdown-wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #0069EA;
	transition: width 0.3s ease, left 0.3s ease;
}

.lsd-header .lsd-nav-dropdown-wrap:hover::after {
	width: 100%;
	left: 0;
}

.lsd-header .lsd-nav-dropdown-wrap .lsd-nav-item {
	padding: 0 10px;
	width: 100px;
	text-align: center;
	justify-content: center;
}

.lsd-header .lsd-nav-dropdown-wrap:hover .lsd-nav-item {
	color: #0069EA;
}
.lsd-header .lsd-nav-dropdown-wrap:nth-child(1) {
	width: 80px;
}
.lsd-header .lsd-nav-item {
	color: #333333;
	font-size: 16px;
	text-decoration: none;
	transition: color 0.3s;
	height: 100%;
	display: flex;
	align-items: center;
	white-space: nowrap;
}
html {
  overscroll-behavior: none;
}
.lsd-header .lsd-nav-item:hover {
	color: #0066FF;
}

.lsd-header .lsd-header-right {
	display: flex;
    align-items: center;
    justify-content: right;
    gap: 15px;
    width: 305px;
}

.lsd-header .lsd-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #333333;
	font-size: 16px;
}

.lsd-header .lsd-icon {
	width: 20px;
	height: 20px;
	color: #0066FF;
}

.lsd-header .lsd-login-btn {
	padding: 5px 15px;
	background-color: #0066FF;
	color: #ffffff;
	border-radius: 4px;
	text-decoration: none;
	font-size: 16px;
	transition: background-color 0.3s;
}

.lsd-header .lsd-login-btn:hover {
	background-color: #0052CC;
}

/* ==================== 用户登录状态样式 ==================== */

/* 用户信息容器 */
.lsd-user-info {
	position: relative;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background-color: #F0F5FF;
	border-radius: 16px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.lsd-user-info:hover {
	background-color: #E6F0FF;
}

/* 用户头像 */
.lsd-user-avatar {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #0069EA;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 500;
	flex-shrink: 0;
}

/* 用户图标（代替头像） */
.lsd-user-icon {
	width: 16px;
	height: 16px;
	color: #0069EA;
	flex-shrink: 0;
}

.lsd-user-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

/* 用户名 */
.lsd-user-name {
	font-size: 14px;
	font-weight: 500;
	color: #0069EA;
	max-width: 80px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 下拉箭头 */
.lsd-user-arrow {
	width: 14px;
	height: 14px;
	color: #0069EA;
	transition: transform 0.2s ease;
	margin-left: 2px;
}

.lsd-user-info:hover .lsd-user-arrow {
	transform: rotate(180deg);
}

/* 用户下拉菜单 */
.lsd-user-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 8px;
	min-width: 140px;
	background-color: #FFFFFF;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid #E5E7EB;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.2s ease;
	z-index: 1001;
	overflow: hidden;
}

.lsd-user-info:hover .lsd-user-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* 下拉菜单项 */
.lsd-dropdown-item {
	display: block;
	padding: 12px 16px;
	font-size: 14px;
	color: #333333;
	text-decoration: none;
	transition: background-color 0.2s ease;
	border-bottom: 1px solid #F3F4F6;
}

.lsd-dropdown-item:last-child {
	border-bottom: none;
}

.lsd-dropdown-item:hover {
	background-color: #F0F5FF;
	color: #0069EA;
}

/* 隐藏登录按钮（已登录时通过 JS 添加此类） */
.lsd-login-btn.lsd-hidden {
	display: none;
}

/* 手机端用户信息样式（无下拉菜单） */
.lsd-user-info-phone {
	display: none; /* PC端隐藏 */
	padding: 6px 12px;
	background-color: #F0F5FF;
	border-radius: 20px;
}

.lsd-user-info-phone .lsd-user-name {
	max-width: 80px;
}

/* 手机端不显示下拉箭头和下拉菜单 */
.lsd-user-info-phone .lsd-user-arrow,
.lsd-user-info-phone .lsd-user-dropdown {
	display: none !important;
}

@media screen and (max-width: 768px) {
	/* 手机端隐藏PC端用户信息 */
	.lsd-user-info:not(.lsd-user-info-phone) {
		display: none !important;
	}
	
	/* 手机端显示手机端用户信息 */
	.lsd-user-info-phone {
		display: flex !important;
		align-items: center;
		gap: 8px;
	}

	.lsd-user-info {
		padding: 5px 10px;
		margin-right: 15px;
	}

	.lsd-user-avatar {
		width: 24px;
		height: 24px;
		font-size: 12px;
	}

	.lsd-user-name {
		font-size: 13px;
		max-width: 60px;
	}

	.lsd-user-dropdown {
		min-width: 120px;
	}

	.lsd-dropdown-item {
		padding: 10px 12px;
		font-size: 13px;
	}
}

/* 下拉菜单 */
.lsd-dropdown-menu {
	position: fixed;
	top: 110px;
	left: 0;
	width: 100%;
	display: none;
	z-index: 1000;
	border-bottom: 1px solid #E5E7EB;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	background: #F8FAFC;
}


.lsd-nav-dropdown-wrap:hover .lsd-dropdown-menu {
	display: block;
}

.lsd-dropdown-content {
	background: #FFFFFF;
	overflow: hidden;
	max-width: 1440px;
	min-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 0;
}

.lsd-product-list {
	background: #F8FAFC;
	padding: 16px 32px;
	display: flex;
	flex-direction: column;
	gap: 0px;
	width: 321px;
}

.lsd-product-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s;
}

.lsd-product-item:hover {
	background-color: #E0F2FE;
}

.lsd-product-item.lsd-active {
	background-color: rgba(0, 106, 235, 0.08);
}

.lsd-product-icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: rgba(0, 105, 234, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lsd-product-icon svg {
	width: 20px;
	height: 20px;
	color: #0069EA;
}

.lsd-product-icon img {
	width: 21px;
	height: 21px;
}

.lsd-product-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.lsd-product-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #1F2937;
}

.lsd-product-desc {
	font-size: 12px;
	color: #6B7280;
	line-height: 1.4;
}

.lsd-tag {
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 600;
	color: #FFFFFF;
}

.lsd-tag-hot {
	background-color: #FF4D4F;
}

.lsd-tag-new {
	background-color: #52C41A;
}

.lsd-function-list {
	background: #FFFFFF;
	padding: 16px 32px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	flex: 1;
}

.lsd-view-detail {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #0069EA !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 1px;
}

.lsd-view-detail svg {
	width: 18px;
	height: 18px;
}

.lsd-function-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lsd-function-row {
	display: flex;
	gap: 24px;
}

.lsd-function-card {
	background-color: #F8FAFC;
	padding: 15px 10px;
	border-radius: 5px;
}

.lsd-function-card .lsd-function-card-fill1 {
	background-color: #0069EA15;
}

.lsd-function-card .lsd-function-card-fill2 {
	background-color: #10B98115;
}

.lsd-function-card .lsd-function-card-fill3 {
	background-color: #F59E0B15;
}

.lsd-function-card .lsd-function-card-fill4 {
	background-color: #8B5CF615;
}

.lsd-function-card .lsd-function-card-img {
	padding: 5px;
	border-radius: 5px;
	line-height: 1;
}

.lsd-function-card:last-child {
	margin-bottom: 0;
}

.lsd-function-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	flex: 1;
}

.lsd-function-item .lsd-product-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background-color: rgba(0, 105, 234, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lsd-function-item svg {
	width: 24px;
	height: 24px;
	color: #0069EA;
	flex-shrink: 0;
}

.lsd-function-item img {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.lsd-function-title {
	font-size: 14px;
	font-weight: 500;
	color: #1F2937;
	margin-bottom: 2px;
}

.lsd-function-desc {
	font-size: 12px;
	color: #9CA3AF;
	line-height: 1.4;
}

.lsd-company-info {
	background: #F8FAFC;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 300px;
}

.lsd-awards {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lsd-awards-title {
	font-size: 12px;
	font-weight: 600;
	color: #6B7280;
	letter-spacing: 1px;
}

.lsd-award-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #4B5563;
}

.lsd-award-item svg {
	width: 16px;
	height: 16px;
	color: #0069EA;
	flex-shrink: 0;
}

.lsd-company-desc {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lsd-company-title {
	font-size: 12px;
	font-weight: 600;
	color: #6B7280;
	letter-spacing: 1px;
}

.lsd-company-desc p {
	font-size: 12px;
	color: #4B5563;
	line-height: 1.7;
	margin: 0;
}

.lsd-company-phone {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	background-color: #0069EA;
	color: #FFFFFF;
	border-radius: 8px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

.lsd-company-phone svg {
	width: 16px;
	height: 16px;
}

/* 典型案例下拉菜单 */
.lsd-case-list {
	background: #FFFFFF;
	padding: 16px 32px;
	display: flex;
	gap: 15px;
	flex: 1;
}

.lsd-case-category {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lsd-case-cat-title {
	font-size: 16px;
	font-weight: 700;
	color: #1F2937;
	letter-spacing: 1px;
}

.lsd-case-items {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.lsd-case-items a {
	font-size: 14px;
	color: #4B5563 !important;
	text-decoration: none;
	transition: color 0.2s;
}

.lsd-case-items a:hover {
	color: #0069EA !important;
}

/* 赋能体系下拉菜单 - 紧凑非通栏样式 */
.lsd-dropdown-menu-compact {
	position: absolute;
	top: 70px;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	background: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	padding: 20px 20px;
	display: none;
	z-index: 1000;
}

.lsd-nav-dropdown-wrap:hover .lsd-dropdown-menu-compact {
	display: block;
}

.lsd-empowerment-list {
	display: flex;
	gap: 15px;
}

.lsd-empowerment-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: transform 0.2s;
}

.lsd-empowerment-item:hover {
	transform: translateY(-2px);
}

.lsd-empowerment-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lsd-empowerment-icon svg {
	width: 24px;
	height: 24px;
}

.lsd-empowerment-title {
	font-size: 16px;
	font-weight: 600;
	color: #1F2937;
}

.lsd-empowerment-desc {
	font-size: 14px;
	color: #6B7280;
	white-space: nowrap;
}

/* 图标颜色 */
.lsd-icon-blue {
	color: #0069EA;
}

.lsd-icon-green {
	color: #10B981;
}

.lsd-icon-orange {
	color: #F59E0B;
}

.lsd-icon-purple {
	color: #8B5CF6;
}

/* 背景色 */
.lsd-bg-blue-light {
	background-color: rgba(0, 105, 234, 0.08);
}

.lsd-bg-green-light {
	background-color: rgba(16, 185, 129, 0.08);
}

.lsd-bg-orange-light {
	background-color: rgba(245, 158, 11, 0.08);
}

.lsd-bg-purple-light {
	background-color: rgba(139, 92, 246, 0.08);
}

/* 隐藏 */
.lsd-hidden {
	display: none;
}

/* 公司信息宽度 */
.lsd-company-info-compact {
	width: 300px;
	height: auto;
}

/* 资源中心下拉菜单 - 复用紧凑样式 */
.lsd-resource-list {
	display: flex;
	gap: 40px;
}

.lsd-resource-column {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.lsd-resource-column:last-child {
	padding-right: 40px;
}
.lsd-resource-title {
	font-size: 16px;
	font-weight: 600;
	color: #1F2937;
	white-space: nowrap;
}

.lsd-resource-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lsd-resource-item {
	font-size: 14px;
	color: #4B5563 !important;
	text-decoration: none;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.lsd-resource-item:hover {
	color: #0069EA !important;
}

/* ==================== 手机端左右结构导航 ==================== */

/* 手机端导航容器 - 默认隐藏 */
.lsd-nav-phone {
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #FFFFFF;
	z-index: 9998;
}

/* 手机端导航头部 */
.lsd-phone-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-bottom: 1px solid #E5E7EB;
	background: #FFFFFF;
}

.lsd-phone-close {
	width: 24px;
	height: 24px;
	cursor: pointer;
	color: #6B7280;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lsd-phone-close svg {
	width: 20px;
	height: 20px;
}

.lsd-phone-logo {
	font-size: 18px;
	font-weight: 600;
	color: #0069EA;
}

.lsd-phone-login {
	padding: 6px 16px;
	background: #0069EA;
	color: #FFFFFF;
	font-size: 14px;
	text-decoration: none;
	border-radius: 4px;
}

/* 左侧一级菜单 */
.lsd-phone-left {
	width: 120px;
	background: #F5F7FA;
	overflow-y: auto;
	float: left;
}

.lsd-phone-menu-item {
	padding: 16px 12px;
	font-size: 14px;
	color: #4B5563;
	cursor: pointer;
	border-left: 3px solid transparent;
	transition: all 0.2s ease;
}

.lsd-phone-menu-item.active {
	background: #FFFFFF;
	color: #0069EA;
	border-left-color: #0069EA;
}

.lsd-phone-menu-item a {
	color: inherit;
	text-decoration: none;
	display: block;
}

/* 右侧内容区 */
.lsd-phone-right {
	overflow-y: auto;
	padding: 16px;
	flex: 1;
}

/* 右侧内容面板 */
.lsd-phone-content {
	display: none;
}

.lsd-phone-content.active {
	display: block;
}

/* 二级菜单区块 */
.lsd-phone-section {
	margin-bottom: 8px;
}

.lsd-phone-section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	font-size: 15px;
	color: #1F2937;
	cursor: pointer;
	border-bottom: 1px solid #F3F4F6;
}

.lsd-phone-title-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.lsd-phone-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lsd-phone-icon svg {
	width: 20px;
	height: 20px;
}

.lsd-phone-icon-blue {
	color: #0069EA;
}

.lsd-phone-icon-purple {
	color: #8B5CF6;
}

.lsd-phone-icon-orange {
	color: #F59E0B;
}

.lsd-phone-icon-green {
	color: #10B981;
}

.lsd-phone-icon-gray {
	color: #6B7280;
}

.lsd-phone-section-title.lsd-phone-link-item {
	text-decoration: none;
}

.lsd-phone-arrow {
	width: 18px;
	height: 18px;
	color: #9CA3AF;
	transition: transform 0.3s ease;
}

.lsd-phone-section.active .lsd-phone-arrow {
	transform: rotate(180deg);
}

/* 三级菜单功能列表 */
.lsd-phone-section-body {
	display: none;
	padding: 8px 0 8px 12px;
}

.lsd-phone-section.active .lsd-phone-section-body {
	display: block;
}

.lsd-phone-link {
	display: block;
	padding: 10px 0;
	font-size: 14px;
	color: #6B7280;
	text-decoration: none;
	border-bottom: 1px solid #F3F4F6;
}

.lsd-phone-link:last-child {
	border-bottom: none;
}

.lsd-phone-link:active {
	color: #0069EA;
}

/* ==================== 响应式断点 ==================== */
.lsd-login-btn-phone {
	display: none;
}

@media screen and (max-width: 768px) {

	/* 隐藏桌面端元素 */
	.lsd-desktop-only {
		display: none !important;
	}

	.lsd-login-btn-phone {
		display: block;
		margin-right: 20px;
		padding: 5px 10px !important;
		font-size: 14px !important;
	}

	.lsd-nav-pc {
		display: none;
	}

	/* 显示汉堡菜单 */
	.lsd-mobile-menu-btn {
		display: flex;
	}

	.lsd-phone-link {
		color: #000000 !important;
	}

	/* 隐藏桌面导航 */
	.lsd-nav {
		display: none;
	}

	/* 显示手机端导航 */
	.lsd-nav-phone.active {
		display: flex;
	}

	.lsd-header .lsd-header-container {
		padding: 0;
	}

	.lsd-nav-phone-btn {
		display: flex !important;
		height: 70px;
		align-items: center;
		padding: 0 20px;
		border-right: 1px solid #e6e6e6;
	}

	.lsd-nav-phone-btn .btn-menu {
		height: 20px;
		line-height: 44px;
		font-size: 0;
		text-align: center;
		cursor: pointer;
		transition: transform .3s ease-in;
		-webkit-transition: transform .3s ease-in;
		order: -1;
	}

	.lsd-nav-phone-btn .btn-menu span {
		display: block;
		margin-bottom: 5px;
		width: 20px;
		height: 2px;
		background: #596efb;
		border-radius: 3px;
		transform-origin: center;
		transition: background .5s cubic-bezier(0.77, .2, .05, 1), opacity .55s ease, transform .5s cubic-bezier(0.77, .2, .05, 1), width .5s;
		-webkit-transform-origin: center;
		-webkit-transition: background .5s cubic-bezier(0.77, .2, .05, 1), opacity .55s ease, transform .5s cubic-bezier(0.77, .2, .05, 1), width .5s;
	}

	/* 汉堡菜单变成叉号的动画 */
	.lsd-nav-phone-btn.active .btn-menu span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
		-webkit-transform: translateY(7px) rotate(45deg);
	}

	.lsd-nav-phone-btn.active .btn-menu span:nth-child(2) {
		opacity: 0;
	}

	.lsd-nav-phone-btn.active .btn-menu span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
		-webkit-transform: translateY(-7px) rotate(-45deg);
	}

	.lsd-nav-phone .btn-menu {
		display: block;
	}

	/* 调整header容器 */
	.lsd-header-container {
		padding: 0 16px;
	}

	.lsd-logo {
		height: 32px;
	}

	.lsd-phone-menu-item a {
		color: #4B5563 !important;

	}

	.lsd-mobile-only {
		max-height: calc(100vh - 110px);
		overflow: auto;
	}
}

/* ==================== 个人信息弹窗样式 ==================== */

/* 弹窗遮罩层 */
.lsd-user-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
}

.lsd-user-modal.lsd-modal-show {
	display: flex;
}

/* 遮罩背景 */
.lsd-user-modal-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

/* 弹窗内容区 */
.lsd-user-modal-content {
	position: relative;
	background-color: #FFFFFF;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	width: 400px;
	max-width: 90%;
	overflow: hidden;
	z-index: 1;
}

/* 弹窗头部 */
.lsd-user-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #E5E7EB;
}

.lsd-user-modal-title {
	font-size: 18px;
	font-weight: 600;
	color: #1F2937;
}

.lsd-user-modal-close {
	font-size: 24px;
	color: #9CA3AF;
	cursor: pointer;
	line-height: 1;
	transition: color 0.2s;
}

.lsd-user-modal-close:hover {
	color: #4B5563;
}

/* 弹窗内容 */
.lsd-user-modal-body {
	padding: 0 20px;
}

/* 信息行 */
.lsd-user-modal-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid #F3F4F6;
}

.lsd-user-modal-row:last-child {
	border-bottom: none;
}

/* 用户名行 */
.lsd-user-name-row {
	padding-top: 20px;
	border-bottom: none;
}

.lsd-user-modal-name {
	font-size: 16px;
	font-weight: 600;
	color: #1F2937;
}

/* 认证状态行 */
.lsd-user-auth-row {
	padding-top: 8px;
	padding-bottom: 16px;
}

.lsd-user-modal-label {
	font-size: 14px;
	color: #6B7280;
	flex-shrink: 0;
}

.lsd-user-modal-value-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: flex-end;
}

.lsd-user-modal-value {
	font-size: 14px;
	color: #1F2937;
}

/* 认证状态标签 */
.lsd-user-status-tag {
	display: inline-block;
	padding: 2px 8px;
	font-size: 12px;
	border-radius: 20px;
}

.lsd-status-unverified {
	background-color: #FFF7E6;
	color: #FA8C16;
}

.lsd-status-verified {
	background-color: #F6FFED;
	color: #52C41A;
}

/* 去认证链接 */
.lsd-user-auth-link {
	font-size: 14px;
	color: #0069EA;
	text-decoration: none;
}

.lsd-user-auth-link:hover {
	text-decoration: underline;
}

/* 弹窗底部 */
.lsd-user-modal-footer {
	padding: 16px 20px;
	text-align: center;
}

.lsd-user-modal-btn {
	width: 100%;
	padding: 12px 0;
	background-color: #0069EA;
	color: #FFFFFF;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.lsd-user-modal-btn:hover {
	background-color: #0052CC;
}

/* ==================== 编辑个人信息弹窗样式 ==================== */

/* 编辑弹窗标题 */
.lsd-edit-title {
	color: #0069EA;
}

/* 编辑弹窗内容区 */
.lsd-edit-body {
	padding: 15px;
	max-height: 500px;
	overflow-y: auto;
}

/* 垂直表单样式（label在上，input在下） */
.lsd-form-vertical .layui-form-item {
	margin-bottom: 10px;
}

.lsd-form-vertical .layui-form-label {
	width: auto;
	float: none;
	display: block;
	padding: 0;
	font-size: 14px;
	color: #333333;
	font-weight: normal !important;
	text-align: left;
}

.lsd-form-vertical .layui-input-block {
	margin-left: 0;
	min-height: 38px;
	margin-left: 0 !important;
}

.lsd-form-vertical .layui-input {
	height: 40px;
	line-height: 40px;
	border-radius: 4px;
	padding: 0 12px;
}

.lsd-form-vertical .layui-input:focus {
	border-color: #0069EA;
}

/* 只读输入框样式 */
.lsd-form-vertical .layui-disabled {
	background-color: #F5F7FA;
	color: #909399;
	cursor: not-allowed;
}

/* 编辑弹窗底部按钮 */
.lsd-edit-footer {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	padding: 16px 24px;
	border-top: 1px solid #E5E7EB;
}

.lsd-edit-footer .layui-btn {
	padding: 0 24px;
	height: 36px;
	line-height: 36px;
	border-radius: 4px;
}

.lsd-edit-footer .layui-btn-primary {
	background-color: #FFFFFF;
	border: 1px solid #D9D9D9;
	color: #666666;
}

.lsd-edit-footer .layui-btn-primary:hover {
	border-color: #0069EA;
	color: #0069EA;
}

.lsd-edit-footer .layui-btn-normal {
	background-color: #0069EA;
}

.lsd-edit-footer .layui-btn-normal:hover {
	background-color: #0052CC;
}

/* ==================== 修改密码弹窗样式 ==================== */

/* 密码输入框（带眼睛图标） */
.lsd-password-input {
	position: relative;
}

.lsd-password-input .layui-input {
	padding-right: 40px;
}

.lsd-eye-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	cursor: pointer;
	color: #999999;
	transition: color 0.2s;
}

.lsd-eye-icon:hover {
	color: #666666;
}

.lsd-eye-icon svg {
	width: 100%;
	height: 100%;
}

/* 验证码输入区域 */
.lsd-verify-code-block {
	display: flex;
	gap: 12px;
}

.lsd-verify-input {
	flex: 1;
}

.lsd-verify-btn {
	width: 110px;
	height: 40px;
	line-height: 40px;
	padding: 0;
	font-size: 13px;
	white-space: nowrap;
	background-color: #FFFFFF;
	border: 1px solid #0069EA;
	color: #0069EA;
}

.lsd-verify-btn:hover {
	background-color: #F0F5FF;
}

.lsd-verify-btn-disabled,
.lsd-verify-btn-disabled:hover {
	background-color: #F5F7FA;
	border-color: #D9D9D9;
	color: #999999;
	cursor: not-allowed;
}

/* 修改密码弹窗响应式 */
@media screen and (max-width: 768px) {
	.lsd-verify-btn {
		width: 100px;
		height: 38px;
		line-height: 38px;
		font-size: 12px;
	}
}

/* ==================== 企业认证弹窗样式 ==================== */

/* 返回按钮 */
.lsd-user-modal-back {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #6B7280;
	transition: color 0.2s;
}

.lsd-user-modal-back:hover {
	color: #1F2937;
}

.lsd-user-modal-back svg {
	width: 20px;
	height: 20px;
}

/* 认证弹窗内容区 */
.lsd-auth-body {
	padding: 24px 20px;
	text-align: center;
}

.lsd-auth-tip {
	font-size: 14px;
	color: #6B7280;
	margin-bottom: 20px;
}

/* 二维码 */
.lsd-auth-qrcode {
	width: 180px;
	height: 180px;
	margin: 0 auto 16px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #E5E7EB;
}

.lsd-auth-qrcode img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 扫码说明 */
.lsd-auth-desc {
	font-size: 13px;
	color: #9CA3AF;
	margin-bottom: 24px;
}

/* 权益卡片 */
.lsd-auth-benefits {
	background-color: #F8FAFC;
	border-radius: 8px;
	padding: 16px;
	text-align: left;
}

.lsd-auth-benefits-title {
	font-size: 14px;
	font-weight: 600;
	color: #0069EA;
	margin-bottom: 12px;
}

.lsd-auth-benefit-item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 13px;
	color: #4B5563;
}

.lsd-auth-benefit-item:last-child {
	margin-bottom: 0;
}

.lsd-auth-check {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* 个人信息弹窗响应式 */
@media screen and (max-width: 768px) {
	.lsd-user-modal-content {
		width: 320px;
		margin: 0 16px;
	}

	.lsd-user-modal-title {
		font-size: 16px;
	}

	.lsd-user-modal-label {
		font-size: 13px;
	}

	.lsd-user-modal-value {
		font-size: 13px;
	}

	.lsd-auth-qrcode {
		width: 150px;
		height: 150px;
	}

	.lsd-auth-benefits {
		padding: 12px;
	}

	/* 编辑弹窗响应式 */
	.lsd-edit-body {
		padding: 16px 20px;
	}

	.lsd-form-vertical .layui-form-label {
		font-size: 13px;
		padding: 0 0 6px 0;
	}

	.lsd-form-vertical .layui-input {
		height: 38px;
		line-height: 38px;
	}
}