* {
	font-family: 'Microsoft YaHei UI', 'Microsoft YaHei', SimSun, 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	border: none;
	vertical-align: middle;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

input {
	outline: none;
	border: none;
	padding: 0px 10px;
	background: none;
	height: 44px;
}

input:focus {
	outline: none;
	/* 移除默认的焦点边框 */
	/* border: none; */
	/* 可选：如果你还想移除原本的边框 */
	box-shadow: none;
	/* 某些浏览器可能会添加box-shadow作为焦点指示，也移除它 */
}

/* 基础主体色 */
:root {
	--secondary-color: #6968ce !important;
	--texta-color: #333 !important;
	/* 加深字体颜色 */
	--textb-color: #6B7284 !important;
	/* 常规字体颜色 */
	--textc-color: #707480 !important;
	/* 浅色字体颜色 */
	--textd-color: #999 !important;
	--texte-color: #555 !important;
	--textf-color: #7F7F88 !important;
	--tishi-color: #BEBEC7 !important;
	/* 输入框或检索框内提示文本颜色 */
	--bg-color: #F3F3F6 !important;
	/* 其他共用变量 */
	/* 背景hover颜色1 */
	--bgha-color: #dfdff3 !important;
	/* 背景hover颜色2 */
	--bghb-color: #3a399f !important;
	--icon-color: #1EA77A !important;
	--icon2-color: #3B82F6 !important;
	--mark-color: red;
	--border-color: #E6E4EC !important;
	/* 输入框或检索框内边框颜色 */
}



/* 暗色主题 */
.theme-dark {
	--secondary-color: #2c78ef;
	--text-color: #3B82F6;
	--bg-color: #fff;
}

/* 亮色主题 */
.theme-light {
	--secondary-color: #9b59b6;
	--text-color: #8e44ad;
	--bg-color: #fff;
}



.clc:after {
	content: '';
	display: block;
	clear: both;
}

.block {
	padding: 0px 30px;
}



/* /----------------复选框默认样式修改------------------ */
/* 对于支持 accent-color 属性的现代浏览器 */
input[type="checkbox"] {
	accent-color: var(--text-color);
}

/* 对于不支持 accent-color 属性的浏览器的替代方案 */
input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	min-width: 16px;
	height: 16px;
	border: 1px solid #ccc;
	border-radius: 3px;
	outline: none;
	position: relative;
	cursor: pointer;
}

input[type="checkbox"]:checked {
	background-color: var(--text-color);
}

input[type="checkbox"]:checked::after {
	content: '\2713';
	color: white;
	font-size: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -56%);
}

/* --------------------------------------------- */


/** layui分页按钮样式*/
.layui-laypage .layui-laypage-curr .layui-laypage-em {
	border: 1px solid var(--text-color) !important;
	background-color: var(--text-color) !important;
}

.layui-laypage .layui-laypage-curr {
	color: #fff;
}


/* *::-webkit-scrollbar {
	width: 5px;
	height: 8px;
}

*::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background: #cad3d7;
} */

.prompt-layer {
	width: 400px;
	height: 80px;
	display: none;
	background: #FFF;
	text-align: center;
}

.prompt-layer .progress {
	position: relative;
	width: 300px;
	border: 1px solid #ddd;
	padding: 1px;
	border-radius: 3px;
	background: #FFF;
	margin: 15px auto;
}

.prompt-layer .progress .bar {
	background-color: #B4F5B4;
	width: 0%;
	height: 20px;
	border-radius: 3px;
}

.prompt-layer .progress .percent {
	position: absolute;
	display: inline-block;
	top: 3px;
	left: 48%;
}