#img {
	-webkit-filter: grayscale(1);
	/* Webkit */
	filter: gray;
	/* IE6-9 */
	filter: grayscale(1);
	/* W3C */
}

/* nmchat_index.html 页面样式 */
/* Ant Design Mobile 风格样式 */
:root {
	--primary-color: #1677ff;
	--success-color: #52c41a;
	--warning-color: #faad14;
	--error-color: #ff4d4f;
	--text-primary: #000000d9;
	--text-secondary: #00000073;
	--text-tertiary: #00000045;
	--border-color: #d9d9d9;
	--bg-color: #ffffff;
	--bg-gray: #f5f5f5;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
	--shadow-md: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
}

* {
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: var(--bg-gray);
	color: var(--text-primary);
}

.oneline {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.upUserlist {
	padding: 0px;
	background-color: transparent;
	color: #fff;
	position: absolute;
	bottom: 20%;
	left: 50%;
	border-radius: 5px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/* 悬浮按钮样式 - Ant Design 风格 */
.float-action-btn {
	position: absolute;
	right: 12px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: var(--shadow-md);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.float-action-btn:active {
	transform: scale(0.95);
}

#doBlack {
	top: 75px;
	background: #ffffff;
	color: var(--error-color);
	font-size: 18px;
}

#warningReport {
	top: 135px;
	background: #ffffff;
	color: var(--warning-color);
	font-size: 18px;
}

#goBottom {
	top: 195px;
	background: #ffffff;
	color: var(--primary-color);
	font-size: 18px;
}

/* 按钮基础样式 */
.ant-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 12px;
	font-size: 14px;
	border-radius: var(--radius-md);
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	outline: none;
}

.ant-btn-primary {
	background: var(--primary-color);
	color: #ffffff;
	border-color: var(--primary-color);
}

.ant-btn-primary:active {
	background: #0958d9;
	border-color: #0958d9;
}

.ant-btn-success {
	background: var(--success-color);
	color: #ffffff;
	border-color: var(--success-color);
}

.ant-btn-success:active {
	background: #389e0d;
	border-color: #389e0d;
}

.ant-btn-default {
	background: #ffffff;
	color: var(--text-primary);
	border-color: var(--border-color);
}

.ant-btn-default:active {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.ant-btn-text {
	background: transparent;
	border-color: transparent;
	color: var(--text-secondary);
}

.ant-btn-text:active {
	background: rgba(0, 0, 0, 0.02);
}

/* 卡片样式 */
.ant-card {
	background: #ffffff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	margin-bottom: 12px;
	overflow: hidden;
}

.ant-card-header {
	padding: 12px 16px;
	border-bottom: 1px solid var(--border-color);
	font-weight: 500;
	font-size: 15px;
}

.ant-card-body {
	padding: 16px;
}

/* 输入框样式 */
.ant-input {
	height: 40px;
	padding: 0 12px;
	font-size: 14px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	background: #ffffff;
	color: var(--text-primary);
	transition: all 0.3s ease;
	outline: none;
	width: 100%;
}

.ant-input:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.1);
}

/* 列表样式 */
.ant-list-item {
	padding: 12px 16px;
	border-bottom: 1px solid #f0f0f0;
	background: #ffffff;
	cursor: pointer;
	transition: background 0.3s ease;
}

.ant-list-item:active {
	background: #f5f5f5;
}

.ant-list-item:last-child {
	border-bottom: none;
}

/* 标签样式 */
.ant-tag {
	display: inline-flex;
	align-items: center;
	height: 24px;
	padding: 0 8px;
	font-size: 12px;
	border-radius: 4px;
	border: 1px solid var(--border-color);
	background: var(--bg-gray);
	color: var(--text-secondary);
}

.ant-tag-success {
	background: #f6ffed;
	border-color: #b7eb8f;
	color: var(--success-color);
}

.ant-tag-primary {
	background: #e6f4ff;
	border-color: #91caff;
	color: var(--primary-color);
}

/* 分割线 */
.ant-divider {
	height: 1px;
	background: var(--border-color);
	margin: 16px 0;
}

/* 开关样式优化 */
.layui-form-switch {
	height: 24px;
	min-width: 44px;
	border-radius: 12px;
}

/* 匹配按钮特殊样式 */
#ButtonRandom {
	width: 120px !important;
	height: 120px !important;
	line-height: 120px !important;
	background: linear-gradient(135deg, var(--primary-color) 0%, #40a9ff 100%) !important;
	box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
	font-size: 24px !important;
	font-weight: 600 !important;
	letter-spacing: 2px;
}

#ButtonRandom:active {
	transform: scale(0.95);
	box-shadow: 0 2px 8px rgba(22, 119, 255, 0.3);
}

/* 顶部标题栏按钮样式 */
.title-center-roomcmd #doBlack,
.title-center-roomcmd #warningReport {
	display: none;
	cursor: pointer;
	float: right;
	margin-right: 6px;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 12px;
	line-height: 16px;
	white-space: nowrap;
	transition: opacity 0.3s ease;
}

.title-center-roomcmd #doBlack {
	background-color: #000;
	color: #fff;
}

.title-center-roomcmd #doBlack:active {
	opacity: 0.8;
}

.title-center-roomcmd #warningReport {
	background-color: #ff4d4f;
	color: #fff;
}

.title-center-roomcmd #warningReport:active {
	opacity: 0.8;
}

/* 用户列表头部 */
.userListHeader {
	background: #ffffff;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

#user_count {
	background: linear-gradient(90deg, var(--primary-color), #40a9ff) !important;
	color: #ffffff !important;
	font-size: 15px !important;
	font-weight: 500;
	border: none !important;
	padding: 12px 16px;
}

#user_Random,
#user_My {
	background: #ffffff;
	color: var(--text-primary);
	font-weight: 500;
	transition: all 0.3s ease;
}

#user_Random {
	border-bottom: 2px solid var(--primary-color);
	color: var(--primary-color);
}

#user_My:active {
	background: var(--bg-gray);
}

/* 表单项优化 */
.layui-form-item {
	background: #ffffff;
	padding: 0px !important;
	margin-bottom: 0px !important;
	margin-top: 0px !important;
	border-radius: var(--radius-md);
	line-height: 1.2 !important;
}

.layui-form-label {
	color: var(--text-primary);
	font-weight: 500;
}

/* 消息输入区域 - 单行布局 */
/* 默认隐藏，由JS控制显示 */
.input-main {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	top: auto;
	width: 100%;
	height: auto;
	background: #ffffff;
	border-top: 1px solid #e0e0e0;
	/* Safari 兼容性：处理底部导航栏和安全区域 */
	padding: 10px 12px;
	padding-bottom: max(10px, calc(10px + env(safe-area-inset-bottom)));
	z-index: 10;
	box-sizing: border-box;
	display: none;
}

.input-message {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	flex-wrap: nowrap;
	position: relative;
	top: 0;
	height: auto;
	border: none;
}

#toolMain {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
	width: auto;
	position: relative;
}

#toolMain .btn {
	height: 40px;
	padding: 0 12px;
	font-size: 14px;
	border-radius: 6px;
	white-space: nowrap;
	flex-shrink: 0;
}

.emoji {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #f5f5f5;
	border-radius: 50%;
	cursor: pointer;
	flex-shrink: 0;
	margin: 0;
}

.emoji img {
	width: 24px;
	height: 24px;
}

.input-wrapper {
	position: relative;
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
}

#inp_say {
	width: 100%;
	height: 40px;
	border: 1px solid #d9d9d9;
	border-radius: 20px;
	padding: 0 16px;
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
}

#inp_say:focus {
	border-color: var(--primary-color);
}

.upload-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #f5f5f5;
	border-radius: 50%;
	cursor: pointer;
	flex-shrink: 0;
}

.upload-btn img {
	width: 24px;
	height: 24px;
}

#btn_say {
	height: 40px;
	padding: 0 20px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 20px;
	border: none;
	background: var(--success-color);
	color: #ffffff;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
}

#btn_say:active {
	background: #389e0d;
}

.input-tools {
	display: none;
}

.input-tools-link-more {
	display: flex;
	align-items: center;
	gap: 8px;
	width: auto;
	min-width: 0;
	position: relative;
	padding: 0;
	margin: 0;
}

.input-tools-link-img {
	display: flex;
	align-items: center;
	gap: 8px;
	width: auto;
	min-width: 0;
	margin: 0;
}

.input-area {
	display: flex;
	border: none;
	position: relative;
	top: 0;
	left: 0;
	height: auto;
}

/* 提示文字优化 */
.tips-text {
	color: var(--text-tertiary);
	font-size: 12px;
	line-height: 1.6;
	padding: 8px;
}

.tips-text a {
	color: var(--primary-color);
	text-decoration: none;
}

.tips-text a:active {
	color: #0958d9;
}

/* VIP区域样式 */
#area_VIP {
	position: relative;
	padding-bottom: 10px;
}

#area_VIP_Close {
	background: rgba(0, 0, 0, 0.6);
}

/* 按钮组优化 */
.button-group {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
	justify-content: center;
	padding: 6px 16px !important;
	margin: 2px 0 !important;
}

.button-group .ant-btn {
	flex: 1;
	min-width: 80px;
	max-width: 120px;
}

/* 滚动条优化 */
.scrollbar::-webkit-scrollbar {
	width: 4px;
}

.scrollbar::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 2px;
}

.scrollbar::-webkit-scrollbar-track {
	background: transparent;
}

/* Logo区域 */
.logo-section {
	text-align: center;
	padding: 12px 16px;
}

.logo-section img {
	width: 60px;
	height: 60px;
	border-radius: 12px;
}

/* 系统信息区域 */
.sysInfo {
	background: #ffffff;
	border-radius: var(--radius-lg);
	padding: 16px;
	margin: 12px 16px;
}

/* 折叠提示 */
#SlideUserInfos,
#SlideSysInfos {
	color: var(--text-tertiary);
	font-size: 12px;
	padding: 8px 0;
}

.SlideUp,
.SlideDown {
	display: inline-block;
	border-style: solid;
	opacity: 0.5;
}

.SlideUp {
	position: relative;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #DDD;
	border-left: 6px solid transparent;
}

.SlideDown {
	position: relative;
	width: 0;
	height: 0;
	border-top: 6px solid #DDD;
	border-right: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid transparent;
}

/* 昵称输入组件 - Ant Design 风格 */
.nickname-input {
	display: flex;
	align-items: center;
	width: 100%;
	height: 44px;
	margin-bottom: 12px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	background: #ffffff;
	transition: all 0.3s ease;
	overflow: hidden;
}

.nickname-input:focus-within {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.1);
}

.nickname-label {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-primary);
	background: var(--bg-gray);
	white-space: nowrap;
	flex-shrink: 0;
	height: 100%;
}

.nickname-field {
	flex: 1;
	height: 100%;
	padding: 0 12px;
	font-size: 14px;
	border: none;
	outline: none;
	background: #ffffff;
	color: var(--text-primary);
	min-width: 0;
}

.nickname-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 500;
	border: none;
	border-left: 1px solid var(--border-color);
	background: #ffffff;
	color: var(--primary-color);
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
	outline: none;
}

.nickname-btn:active {
	background: var(--bg-gray);
}

.nickname-btn span {
	font-size: 14px;
	font-weight: 500;
}

/* layui样式覆盖 */
.layui-layer {
	opacity: 0.9;
}

.layui-layer-title {
	background-color: #393D49;
	color: #FFF;
	border: none;
}

.layui-layer-content {
	background-color: #393D49;
	color: #FFF;
}

.layui-layer-btn {
	background-color: #393D49;
	text-align: center;
	padding-top: 0px;
	border: none;
}

.layui-layer-btn a {
	margin-top: 10px;
}

.layui-form-switch {
	height: 24px;
	margin-top: 0;
}

.layui-colorpicker-main-input div.layui-inline {
	margin-right: 0px;
}

.layui-colorpicker-trigger-i {
	display: inline-block;
	color: #FFF;
	font-size: 12px;
	top: -5px;
	left: 0px;
	position: relative;
}

.layui-slider-input-btn {
	display: block;
}

.layui-layer-iframe .layui-layer-btn,
.layui-layer-page .layui-layer-btn {
	padding-top: 0px;
}


.layui-colorpicker {
	border: 0px solid #e6e6e6;
}

/* VIP折叠区样式 - Ant Design风格 */
.vip-collapse-section {
	margin: 16px 0;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	overflow: hidden;
	background: #ffffff;
	transition: all 0.3s ease;
}

.vip-collapse-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
	cursor: pointer;
	user-select: none;
	transition: all 0.3s ease;
}

.vip-collapse-header:hover {
	background: linear-gradient(135deg, #e6f4ff 0%, #bae0ff 100%);
}

.vip-collapse-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	color: #1677ff;
}

.vip-icon {
	font-size: 18px;
	animation: shine 2s infinite;
}

@keyframes shine {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.6; }
}

.vip-collapse-arrow {
	font-size: 14px;
	color: #1677ff;
	transition: transform 0.3s ease;
}

.vip-collapse-content {
	padding: 8px;
	background: #ffffff;
}

/* VIP控制区域样式 */
.vip-controls-area {
	margin-bottom: 16px;
}

.vip-controls-area.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.vip-controls-area .layui-form-item {
	padding: 8px 12px;
	border-radius: 6px;
	margin-bottom: 8px;
	transition: all 0.2s ease;
}

.vip-controls-area .layui-form-item:hover {
	background: #f5f5f5;
}

.vip-controls-area .layui-form-label {
	color: rgba(0, 0, 0, 0.85);
	font-weight: 500;
}

.vip-features-intro {
	margin-bottom: 16px;
	padding: 12px;
	background: linear-gradient(135deg, #f0f9ff 0%, #e6f4ff 100%);
	border-radius: 8px;
	border-left: 4px solid #1677ff;
}

.vip-feature-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	color: rgba(0, 0, 0, 0.88);
	font-size: 14px;
}

.feature-icon {
	font-size: 16px;
}

.feature-text {
	flex: 1;
}

.vip-price-tag {
	text-align: center;
	margin-bottom: 16px;
	padding: 8px 12px;
	background: linear-gradient(135deg, #fff7e6 0%, #fffbe6 100%);
	border-radius: 6px;
	border: 1px solid #ffd591;
}

.vip-price-tag span {
	color: #ff4d4f;
	font-weight: 600;
	font-size: 14px;
}

.vip-action-buttons {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}

.vip-btn {
	flex: 1;
	min-width: 100px;
	cursor: pointer;
	border-radius: 6px;
	padding: 10px 16px;
	height: 36px;
	line-height: 24px;
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.vip-btn-primary {
	background: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(255, 77, 79, 0.3);
}

.vip-btn-primary:hover {
	background: linear-gradient(135deg, #ff7875 0%, #ffa39e 100%);
	box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}

.vip-btn-primary:active {
	box-shadow: 0 2px 4px rgba(255, 77, 79, 0.3);
}

.vip-btn-default {
	background: #ffffff;
	color: #1677ff;
	border: 1px solid #d9d9d9;
}

.vip-btn-default:hover {
	background: #e6f4ff;
	border-color: #1677ff;
	color: #1677ff;
}

.vip-btn-default:active {
	background: #bae0ff;
	border-color: #1677ff;
}

/* VIP控件区域 - 强制垂直居中 */
.vip-form-row {
	display: flex !important;
	align-items: center !important;
	height: 32px !important;
	margin-bottom: 8px !important;
	margin-top: 0px !important;
	gap: 8px !important;
}

.vip-form-row .layui-form-label {
	width: 120px !important;
	text-align: right !important;
	flex-shrink: 0 !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	height: auto !important;
	line-height: 1.5 !important;
	margin: 0 !important;
	font-size: 14px !important;
}

.vip-form-row .vip-colon {
	flex-shrink: 0 !important;
	width: auto !important;
	text-align: center !important;
	height: auto !important;
	line-height: 1.5 !important;
	margin: 0 !important;
	display: inline-block !important;
}

.vip-form-row .layui-input-block {
	width: auto !important;
	margin-left: 0 !important;
	margin: 0 !important;
	flex: 0 0 auto !important;
	height: auto !important;
	line-height: 1.5 !important;
	display: flex !important;
	align-items: center !important;
	padding: 0 !important;
}

/* 用户信息表单区域样式 - 参考VIP布局 */
.userInfo .layui-form-item {
	margin-bottom: 8px !important;
	margin-top: 0 !important;
	display: flex !important;
	align-items: center !important;
	height: 32px !important;
	gap: 8px !important;
}

/* 性别选择行 */
.userInfo .form-row-sex {
	margin-top: 5px !important;
}

.userInfo .form-row-sex .layui-form-label {
	width: 100px !important;
	text-align: right !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	flex-shrink: 0 !important;
	height: auto !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

.userInfo .form-row-sex .layui-input-block {
	width: auto !important;
	margin-left: 0 !important;
	margin: 0 !important;
	flex: 1 !important;
	height: auto !important;
	line-height: 1.5 !important;
	display: flex !important;
	align-items: center !important;
	padding: 0 !important;
}

/* 年龄滑块行（隐藏的） */
.userInfo .form-row-age-slider {
	display: none !important;
}

.userInfo .form-row-age-slider .layui-form-label {
	width: 100px !important;
	text-align: right !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	flex-shrink: 0 !important;
	height: auto !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

.userInfo .form-row-age-slider .layui-input-block {
	width: auto !important;
	margin-left: 0 !important;
	margin: 0 !important;
	padding-top: 17px !important;
	flex: 1 !important;
	height: auto !important;
	line-height: 1.5 !important;
	display: flex !important;
	align-items: center !important;
	padding: 0 !important;
}

/* 年龄范围滑块行 */
.userInfo .form-row-age-range .layui-form-label {
	width: 100px !important;
	text-align: right !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	flex-shrink: 0 !important;
	margin: 0 !important;
}

.userInfo .form-row-age-range .layui-input-block {
	width: auto !important;
	margin-left: 0 !important;
	margin: 0 !important;
	flex: 1 !important;
	height: auto !important;
	line-height: 1.5 !important;
	display: flex !important;
	align-items: center !important;
	padding: 0 !important;
}

.userInfo .form-row-age-range #SliderrandomAge {
	width: 30px;
	float: left;
	position: relative;
	left: -5px;
}

.userInfo .form-row-age-range output {
	width: 30px;
	float: left;
	display: none;
}

.userInfo .form-row-age-range .button {
	display: none;
}

/* 显示城市开关行 */
.userInfo .form-row-address .layui-form-label {
	width: 100px !important;
	text-align: right !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	flex-shrink: 0 !important;
	height: auto !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

.userInfo .form-row-address .layui-input-block {
	width: auto !important;
	margin-left: 0 !important;
	margin: 0 !important;
	flex: 0 0 auto !important;
	height: auto !important;
	line-height: 1.5 !important;
	display: flex !important;
	align-items: center !important;
	padding: 0 !important;
}

/* 青少年模式开关行 */
.userInfo .form-row-health .layui-form-label {
	width: 100px !important;
	text-align: right !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	flex-shrink: 0 !important;
	height: auto !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

.userInfo .form-row-health .layui-input-block {
	width: auto !important;
	margin-left: 0 !important;
	margin: 0 !important;
	flex: 0 0 auto !important;
	height: auto !important;
	line-height: 1.5 !important;
	display: flex !important;
	align-items: center !important;
	padding: 0 !important;
}

/* 个人标签行 */
.userInfo .form-row-tags .layui-form-label {
	width: 100px !important;
	text-align: right !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	flex-shrink: 0 !important;
	height: auto !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

.userInfo .form-row-tags .layui-input-block {
	margin-left: 0 !important;
	margin: 0 !important;
	display: flex !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	flex: 1 !important;
	height: auto !important;
	line-height: 1.5 !important;
	padding: 0 !important;
}

.userInfo .form-row-tags #user_tags_display {
	color: #5FB878;
	font-size: 12px;
	flex: 0 1 auto;
}

.userInfo .form-row-tags #btn_set_tags {
	margin-left: 15px;
	padding: 2px 8px;
	font-size: 12px;
	flex-shrink: 0;
}

/* 安全提示样式 */
.notice-section {
	margin-bottom: 16px;
}

.notice-section:last-child {
	margin-bottom: 0;
}

.notice-title {
	display: flex;
	align-items: center;
	color: #1890ff;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.notice-icon {
	margin-right: 6px;
	font-size: 16px;
}

.notice-content {
	color: rgba(0, 0, 0, 0.65);
	font-size: 13px;
	line-height: 1.8;
	text-align: justify;
	padding-left: 22px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.notice-divider {
	height: 1px;
	background-color: #f0f0f0;
	margin: 16px 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.notice-title {
		font-size: 13px;
	}

	.notice-icon {
		font-size: 15px;
	}

	.notice-content {
		font-size: 12px;
		line-height: 1.7;
		padding-left: 20px;
	}

	.notice-divider {
		margin: 12px 0;
	}
}