body {
	--themeColor: #FF5A16;
	--bgColor: #1F1F1F;
	--tipsColor: #949494;
	--btnBgColor: #1E1E1E;
	--btnBorderColor: #6B6B6B;
}

.kb-box {
	width: 100%;
	height: auto;
	padding-top: 0px;
	padding-left: 0px;
}

.kb-box-top {
	width: 100%;
	height: auto;
	padding-top: 0px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.kb-menu {
	flex-shrink: 0;
	width: 160px;
	height: auto;
	padding-top: 0px;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-top: 20px;
	background: var(--btn-bg);
	padding: 10px;
	border-radius: 3px;
}

.kb-menu-ul {
	width: 100%;
	height: auto;
	/* display: flex;
	justify-content: center;
	align-items: center; */
}

.kb-menu-ul .li {
	width: 100%;
	height: 26px;
	line-height: 26px;
	font-size: 12px;
	border-radius: 3px;
	text-align: left;
	cursor: pointer;
	color: var(--btn-text);
	background: var(--btn-bg);
	margin-bottom: 5px;
	padding-left: 10px;
}

.kb-menu-ul .li .icon {
	font-size: 14px;
	color: var(--btn-text);
	margin-right: 10px;
}

.kb-menu-ul .li:last-child {
	margin-bottom: 0px;
}

.kb-menu-ul .li.active {
	color: var(--btn-active-text);
	background: var(--btn-active-bg);
}

.kb-menu-ul .li.active .icon {
	color: var(--btn-active-icon);
}

.kb-info-box {
	width: 100%;
	height: auto;
	border-radius: 3px;
	background-color: #1F1F1F;
}

.kb-info-box-ul {
	width: 900px;
	height: auto;
	padding: 20px;
}

.kb-info-box-li {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.kb-info-box-li-title {
	line-height: 22px;
	font-size: 12px;
	padding-top: 10px;
	color: #C4C4C4 !important;
}

.kb-info-box-li-con {
	font-size: 12px;
	line-height: 30px;
	color: #ffffff !important;
}

.kb-info-box input[type=text],
.kb-info-box input[type=file],
.kb-info-box input[type=password],
.kb-info-box input[type=email],
.kb-info-box select {
	width: 100%;
	height: 30px;
	line-height: 30px;
	padding: 0 12px;
	border: none;
	border-radius: 4px !important;
	transition: all 0.2s ease;
	margin-bottom: 0px;
	/* border: 1px solid transparent; */
	font-size: 12px;
	/* background: #EBECF0; */
	/* box-shadow: var(--invagination-shadow); */
	background: var(--white);
	border: 1px solid rgba(187, 187, 187, 1);
}

.kb-info-box input[type=text]:focus,
.kb-info-box input[type=file]:focus,
.kb-info-box input[type=password]:focus,
.kb-info-box input[type=email]:focus,
.kb-info-box select:focus {
	border: 1px solid var(--blue) !important;
	background: var(--white);
	box-shadow: none;
}

.kb-info-box .button {
	padding: 0 20px;
	width: auto;
	margin-right: 20px;
	background: var(--btnBgColor);
	border: 1px solid var(--btnBorderColor);

	&:hover {
		background: var(--themeColor);
	}
}

.kb-info-box .radio-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.kb-info-box .radio {
	width: auto;
	min-width: 80px;
	height: 28px;
	line-height: 28px;
	text-align: left;
	padding-left: 36px;
	padding-right: 20px;
	font-size: 12px;
	color: var(--white);
	border: 1px solid #6B6B6B;
	position: relative;
	border-radius: 4px;
	margin-right: 20px;
	cursor: pointer;
}

.kb-info-box .radio:hover {
	cursor: pointer;
	color: var(--white);
	background: #FF5A16;
	border: 1px solid #6B6B6B;
}

.kb-info-box .radio:before {
	position: absolute;
	left: 10px;
	top: 0;
	z-index: 2;
	display: block;
	height: 28px;
	line-height: 28px;
	font-size: 12px;
	color: var(--white);
	font-family: "iconfont" !important;
	content: "\e62d";
}

.kb-info-box .radio.active {
	color: var(--white);
	background: #1E1E1E;
	border: 1px solid #6B6B6B;
}

.kb-info-box .radio.active:before {
	color: #FF5A16;
	content: "\e62e";
}

.kb-con {
	/* background-color: #1F1F1F;
	padding: 10px 10px;
	border-radius: 3px;
	margin-bottom: 10px; */
	overflow: auto;
	padding-top: 20px;
	padding-left: 30px;
	padding-bottom: 20px;
}

.kb-con-ul {
	width: 100%;
	height: auto;
	position: relative;
}

.kb-con-ul .li-box {
	width: 40px;
	height: 40px;
	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: absolute;
}

.kb-con-ul .li {
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	/* background: rgba(255, 255, 255, 0.9); */
	background: rgba(37, 37, 37, 0.9) !important;
	/* background: rgba(0, 0, 0, 0.9) !important; */
	font-size: 10px;
	text-align: center;
	border: 1px solid black;
	border-radius: 2px;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.19);
	cursor: pointer;
	/* color: var(--an); */
	color: #A2A2A2;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	position: relative;
	padding-top: 2px;
	padding-left: 2px;
}

.kb-con-ul .li.big {
	padding-left: 0px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	background: #C4C4C4 !important;
	color: var(--an) !important;
}

.kb-con-ul .li:hover {
	/* transform: scale(1.02);
	transition: transform 0.2s ease-in-out; */
	border: 1px solid #ff0000;
	/* transition: border 0.1s ease-in-out; */
}

.kb-con-ul .li.active {
	/* background: var(--blue) !important; */
	background: rgba(100, 100, 100, 0.9) !important;
	border: 1px solid #ffffff;
}

.kb-con-ul .li.down {
	background: var(--an) !important;
}

.kb-con-ul .li.do {
	background: var(--white) !important;
}

.kb-con-ul .li.success {
	background: var(--green) !important;
}

.kb-con-ul .li.shake {
	animation: shake .01s infinite;
}

.kb-con-ul .li .tips {
	width: 100px;
	color: #000;
	background: #ffffff;
	border: 1px solid #ddd;
	text-align: center;
	border-radius: 6px;
	padding: 10px 10px;
	position: absolute;
	z-index: 9999;
	bottom: 100%;
	left: 50%;
	margin-left: -60px;
	font-size: 12px;
	display: none;
}

.do-btn {
	width: auto;
	color: #000;
	background: #ffffff;
	border: 1px solid #ddd;
	text-align: center;
	border-radius: 6px;
	padding: 10px 10px;
	position: fixed;
	z-index: 999999999;
	bottom: 100%;
	left: 50%;
	font-size: 12px;
	display: none;
}

.high-keys-ul {
	width: 100%;
	height: auto;
	max-height: 80px;
	overflow: auto;
}

.high-keys-li {
	width: 64px;
	height: 64px;
	margin-right: 10px;
	border: 1px solid #6B6B6B;
	position: relative;
	border-radius: 3px;
	overflow: hidden;
	padding-top: 20px;
	float: left;

	.high-title {
		width: 100%;
		height: 20px;
		line-height: 20px;
		font-size: 10px;
		background: #404040;
		color: #C4C4C4;
		padding-left: 10px;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 2;
	}

	.high-close {
		position: absolute;
		right: 0;
		top: 0;
		z-index: 3;
		font-size: 16px;
		height: 20px;
		line-height: 20px;
		cursor: pointer;
	}

	.high-con {
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.high-key {
		height: auto;
		font-size: 10px;
	}

	.high-key-icon {
		font-size: 10px;
	}

	.high-key-more {
		height: auto;
		font-size: 10px;
		white-space: nowrap;
	}
}

/* .kb-con-ul .li:hover .tips {
	display: block;
} */

@keyframes shake {
	0% {
		transform: scale(1);
	}

	25% {
		transform: scale(0.95);
	}

	50% {
		transform: scale(1.05);
	}

	75% {
		transform: scale(0.95);
	}

	100% {
		transform: scale(1);
	}
}

.kb-con-ul .li.error {
	background: var(--red) !important;
}

.kb-con-ul .li .title {
	width: 100%;
	/* color: var(--an); */
	color: #A2A2A2;
	font-size: 9px;
	height: 9px;
	line-height: 9px;
	margin-bottom: 0px;
	text-align: left;
	flex-grow: 1;
	flex-shrink: 1;
}

.kb-con-ul2 .li .title {
	width: 100%;
	/* color: var(--an); */
	color: #A2A2A2;
	font-size: 10px;
	line-height: 10px;
	flex-grow: 1;
	flex-shrink: 1;
}

.kb-con-ul .li .num {
	width: 100%;
	/* color: var(--red); */
	color: #ffffff;
	font-size: 9px;
	line-height: 9px;
	height: 9px;
	flex-grow: 1;
	flex-shrink: 1;
}

.kb-con-ul .li .icon {
	/* color: var(--red); */
	color: #FF5A16;
	font-size: 9px;
	flex-grow: 1;
	flex-shrink: 1;
}

.kb-con-ul .li .num.none {
	color: var(--hui);
}

.kb-con-ul .li .num.none .icon {
	color: var(--hui);
}

.kb-con-ul .li.yellow {
	box-shadow: 0px 2px 2px 2px rgba(255, 255, 0, .8);
	border: 1px solid rgba(255, 255, 0, .8);
}

.kb-con-ul .li.red {
	box-shadow: 0px 2px 2px 2px rgba(255, 0, 0, .8);
	border: 1px solid rgba(255, 0, 0, .8);
}

.kb-con-ul .li.green {
	box-shadow: 0px 2px 2px 2px rgba(117, 216, 96, .8);
	border: 1px solid rgba(117, 216, 96, .8);
}

.kb-con-ul .li.blue {
	box-shadow: 0px 2px 2px 2px rgba(30, 144, 255, .8);
	border: 1px solid rgba(30, 144, 255, .8);
}

.kb-con-ul .li .mode {
	width: 100%;
	/* color: var(--an); */
	color: #ffffff;
	font-size: 10px;
	line-height: 10px;
}

.kb-con-ul .li .mode .icon {
	/* color: var(--an); */
	color: #ffffff;
	font-size: 10px;
	line-height: 10px;
}

/* .kb-con-ul .li.active,
.kb-con-ul .li:hover {
	box-shadow: 0px 2px 2px 2px rgba(79, 239, 239, 61), 1px 2px 2px 0px rgba(0, 255, 255, 61);
	border: 1px solid rgba(79, 239, 239, 61);
} */

.kb-config {
	width: 100%;
	padding-left: 0;
}

.kb-config-box {
	width: 100%;
	height: auto;
	/* padding-left: 120px; */
	/* position: relative; */
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.kb-config-menu {
	width: 160px;
	margin: 0 20px;
	padding: 10px;
	height: auto;
	padding-top: 10px;
	background: var(--btn-bg);
}

.kb-config-menu .li {
	width: 100%;
	height: 26px;
	line-height: 26px;
	font-size: 12px;
	border-radius: 3px;
	text-align: left;
	padding-left: 10px;
	cursor: pointer;
	color: var(--btn-text);
	background: var(--btn-bg);
	margin-bottom: 5px;
}

.kb-config-menu .li:last-child {
	margin-bottom: 0px;
}

.kb-config-menu .li.active {
	color: var(--btn-active-text);
	background: var(--btn-active-bg);
}

.kb-config-menu .li .icon {
	font-size: 14px;
	color: var(--btn-text);
	margin-right: 10px;
}

.kb-config-menu .li.active .icon {
	color: var(--btn-active-icon);
}

.kb-keys-box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	border: 1px solid #666666;
	border-radius: 3px;
	overflow: hidden;
}

.kb-keys-box .kb-config-menu {
	width: 120px;
	margin: 0px;
	padding: 0px;
	height: auto;
	padding-top: 10px;
}

.kb-config-con {
	width: 100%;
	display: none;
}

.kb-config-con.active {
	display: block;
}

.kb-config-light-box {
	width: 100%;
	height: auto;
}

.kb-config-light {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	background-color: var(--ya);
	padding: 10px 10px;
	border-radius: 3px;
}

.kb-config-light-mode {
	width: 400px;
	height: auto;
}

.kb-config-light-color {
	width: 400px;
	height: auto;
}

.kb-config-light-speed {
	width: 400px;
	height: auto;
}

input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
	/* 移除WebKit浏览器的颜色选择器包裹器的内边距 */
}

input[type="color"]::-webkit-color-swatch {
	border: none;
	border-radius: 5px;
	/* 移除WebKit浏览器的颜色选择器的边框 */
}

input[type="color"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 30px;
	outline: none;
	padding: 0px;
	border-radius: 5px;
	background: #666666;
	border: 1px solid #666666;
}

.kb-config-light-color-input {
	width: 380px !important;
	height: auto;
	margin-right: 60px;
}

datalist {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	writing-mode: vertical-lr;
	width: 100%;
	color: var(--an);
}

option {
	padding: 0;
	color: var(--an);
}

span.tips {
	font-size: 10px;
	color: var(--tipsColor);
	padding-left: 6px;
}

.kb-index-public-my-con {
	width: 100%;
	height: auto;
	position: relative;
}

.kb-config-pz {
	width: 100%;
	height: auto;
	display: none;
	padding-left: 10px;
	padding-bottom: 8px;

	.con {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.set-ul {
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.set-li {
		height: 30px;
		line-height: 30px;
		font-size: 11px;
		background: var(--white);
		color: var(--an);
		margin-right: 16px;
		border-radius: 6px;
		cursor: pointer;
		border: 1px solid var(--hui);
		padding: 0px 10px;
	}

	.tips {
		font-size: 11px;
		line-height: 20px;
		color: #dddddd;
	}

	.tips2 {
		font-weight: bold;
	}
}

.kb-config-pz.active {
	display: block;
}

.kb-config-pz-shu {
	width: 26px;
	height: auto;
	position: absolute;
	left: -30px;
	top: 0;
	z-index: 2;

	.set-ul {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-direction: column;
	}

	.set-li {
		width: 100%;
		font-size: 12px;
		color: var(--btn-text);
		background: var(--btn-bg);
		margin-bottom: 16px;
		border-radius: 5px;
		cursor: pointer;
		writing-mode: vertical-rl;
		text-orientation: upright;
		padding: 10px 0px;
		padding-right: 5px;
		letter-spacing: 1px;
	}

	.set-li.active {
		background: var(--btn-active-bg);
		color: var(--btn-active-text);
	}
}

.kb-config-light-li {
	width: 100%;
	height: auto;
	padding-bottom: 10px;

	.title {
		width: 100%;
		height: auto;
		line-height: 20px;
		font-size: 12px;
		color: var(--white);
		margin-bottom: 5px;
	}

	.con {
		width: 100%;
		height: auto;
	}

	.light-mode-ul {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;

		.button {
			min-width: 85px;
			text-align: center;
			font-size: 12px;
			color: var(--white);
			background: var(--btnBgColor);
			padding: 0 10px;
			line-height: 24px;
			margin-right: 12px;
			margin-bottom: 8px;
			border-radius: 2px;
			cursor: pointer;
			border: 1px solid var(--btnBorderColor);

		}

		.button:hover {
			color: var(--white);
			background: #FF5A16;
		}

		.button.active {
			color: var(--white);
			background: var(--themeColor);
		}
	}

	.num {
		width: 100%;
		height: 30px;
		line-height: 30px;
		color: var(--an);
		font-size: 18px;
		margin-bottom: 10px;
	}
}

.kb-config-light-li:last-child {
	border: none;
}

/* 定义一个CSS变量，整数类型 */
@property --progress {
	syntax: "<integer>";
	initial-value: 0;
	inherits: true;
}

/* 定义一个动画，从0到100，表示进度 */
@keyframes slider {
	to {
		--progress: 100;
	}
}

.pages-kb-index-keys-set-box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;

	.left {
		height: auto;
	}

	.set-box-tab {
		height: auto;
		margin-right: 10px;
	}

	.set-box-tab-li {
		height: 40px;
		line-height: 40px;
		text-align: center;
		width: 200px;
		font-size: 12px;
		color: var(--an);
		cursor: pointer;
	}

	.set-box-tab-li.active {
		border-bottom: 2px solid #6c6c6c;
	}

	.set-box-tab-con-box {
		width: 100%;
		padding: 10px;
		height: auto;
		background: var(--bgColor);
		border-radius: 3px;
		margin-bottom: 10px;
	}

	.set-box-tab-con-load {
		width: 100%;
		height: auto;
		display: none;
	}

	.set-box-tab-con {
		width: 100%;
		height: auto;
		flex: 1;
	}

	.set-box-tab-con-li {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.set-box-li-box {
		width: 100%;
		min-width: 100%;
	}

	.set-box-li-box-title {
		width: 100%;
		padding-top: 10px;
		font-size: 12px;
		font-weight: bold;
		padding-bottom: 10px;
	}

	.set-box-li-box-con {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		border-top: 1px solid #ddd;
	}

	.set-box-li {
		height: auto;
	}

	.set-box-li-range {
		width: 100%;
	}

	.set-box-li-lr-box {
		width: 100%;
		max-width: 1180px;
		height: auto;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	.set-box-li-lr-li {
		width: 470px;
	}

	.select-all {
		width: 120px;
		height: 50px;
		line-height: 50px;
		font-size: 18px;
		background: var(--an);
		color: var(--ya);
		text-align: center;
	}

	.set-ul {
		width: 100%;
		height: auto;
	}

	.set-li {
		width: 100%;
		height: auto;
		padding: 0;
		padding-bottom: 10px;
	}

	.set-li:last-child {
		border: none;
	}

	.set-li .con {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		/* flex-direction: column; */
		/* position: relative; */
	}

	.set-li .con .input-box {
		width: 320px;
		height: 22px;
		margin-right: 20px;
		padding-top: 0px;
	}

	.set-li .con .show-box {
		width: 30px;
		line-height: 22px;
		height: 22px;
	}

	.set-li .intro {
		width: 100%;
		height: auto;
		line-height: 16px;
		font-size: 10px;
		color: var(--tipsColor);
	}

	input[type="range"] {
		-webkit-appearance: none;
		width: 320px;
		height: 20px;
		cursor: pointer;
		appearance: none;
		border-radius: 5px;
		margin: 0;
		outline: 0;
		background-color: transparent;
		overflow: hidden;
		timeline-scope: --slider;
		animation: slider linear 3s reverse;
		animation-timeline: --slider;
	}

	/* 滑条轨道样式 */
	input[type="range"]::-webkit-slider-runnable-track {
		height: 6px;
		border-radius: 4px;
		background: linear-gradient(#FF5A16 0 0) 0 0/calc(var(--progress) * 1%) 100% no-repeat #404040;
	}

	/* 滑块按钮样式 */
	input[type="range"]::-webkit-slider-thumb {
		-webkit-appearance: none;
		appearance: none;
		width: 15px;
		height: 15px;
		border-radius: 50%;
		background-color: #000000;
		border: 1px solid #FF5A16;
		view-timeline: --slider inline;
		margin-top: -4px;
	}

	.light .input-box {
		width: 380px !important;
		height: 22px;
		padding-top: 0px;
	}

	.light input[type="range"] {
		width: 380px;
	}

	/* 隐藏input的上下箭头，这会禁用步进功能 */
	input::-webkit-inner-spin-button,
	input::-webkit-outer-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}

	select {
		width: 100%;
		height: 28px;
		line-height: 28px;
		font-size: 12px;
		border-radius: 4px;
		color: var(--white);
		background: #404040;
		border: 1px solid #4F4F4F;
	}

	.set-li .con .show-num {
		width: 85px;
		height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		border: 1px solid #4D4D4D;
		overflow: hidden;
		border-radius: 4px;
	}

	.set-li .con .show-num:hover {
		border: 1px solid #aaaaaa;
	}

	.set-li .con .input-num {
		width: 45px;
		height: 20px;
		line-height: 20px;
		border: none;
		border-left: 1px solid #4D4D4D;
		border-right: 1px solid #4D4D4D;
		font-size: 11px;
		color: #FF5A16;
		background: #000000;
		text-align: center;
	}

	.set-li .con .icon {
		width: 20px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		font-size: 10px;
		color: #FF5A16;
		background: #383838;
		cursor: pointer;
	}

	.set-li.rt-set-li {
		display: none;
	}

	.open {
		margin-right: 20px;
		font-size: 12px;
		color: var(--white);
		cursor: pointer;
		height: 30px;
		line-height: 30px;
	}

	.open .icon {
		font-size: 12px !important;
		color: #333333;
		margin-right: 2px;
		display: none;
	}

	.open.none .icon.none {
		display: inline;
		color: var(--white);
		background: var(--btn-bg);
	}

	.open.active .icon.active {
		color: #FF5A16;
		display: inline;
		background: var(--btn-bg);
	}

	.set-li .title {
		width: 100%;
		height: auto;
		line-height: 12px;
		font-size: 12px;
		margin-bottom: 5px;
		text-align: left;
	}

	.num {
		width: 100px;
		height: 30px;
		line-height: 30px;
		color: var(--white);
		font-size: 18px;
		text-align: center;
	}

	.button-show-box {
		width: 100%;
		height: auto;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.button-show-title {
		height: 26px;
		line-height: 26px;
		margin-right: 5px;
		font-size: 12px;
		color: var(--white);
	}

	.button-show {
		min-width: 100px;
		height: 26px;
		line-height: 26px;
		text-align: center;
		font-size: 12px;
		color: var(--white);
		padding: 0px 12px;
		margin-right: 16px;
		border-radius: 6px;
		cursor: pointer;
		border: 1px solid var(--btnBorderColor);
		background: var(--btnBgColor);
	}

	.button-show-color {
		width: 80px;
		height: 26px;
		cursor: pointer;
		margin-left: 10px;
		margin-right: 26px;
		border-radius: 6px;
	}

	.button-save {
		width: 100px;
		height: 26px;
		line-height: 26px;
		text-align: center;
		font-size: 12px;
		color: var(--white);
		padding: 0px 12px;
		margin-right: 16px;
		border-radius: 6px;
		cursor: pointer;
		background: var(--btnBgColor);
		border: 1px solid var(--btnBorderColor);
	}

	.button-save.active,
	.button-save:hover {
		background: #FF5A16;
		color: var(--white);
		font-size: 12px;
		font-weight: bold;
		border: 1px solid var(--btnBorderColor);
	}

}

.tab-box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 60px;
}

.tab-title {
	height: auto;
	font-size: 12px;
	color: var(--an);
	margin-right: 20px;
}

.tab-ul {
	height: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.tab-li {
	height: auto;
	height: 28px;
	line-height: 28px;
	font-size: 12px;
	border-radius: 3px;
	text-align: center;
	cursor: pointer;
	color: var(--white);
	border: 1px solid var(--btnBorderColor);
	background: var(--btnBgColor);
	margin-right: 12px;
	padding: 0 20px;
}

.tab-li.active {
	color: var(--white);
	border: 1px solid var(--btnBorderColor);
	background: #FF5A16;
}

.keys-test-big {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 10px 0;
}

.keys-test-big .pages-kb-index-keys-set-box {
	flex: 1;
	margin-right: 60px;
	padding-left: 70px;
}

.keys-test-box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}

.keys-test-box2 {
	padding-top: 0px;
	position: absolute;
	left: 500px;
	top: 10px;
	z-index: 2;
}

.keys-test-fluctuation {
	width: 33%;
	height: auto;
}

.keys-test-img {
	width: 170px;
	height: auto;
	margin-right: 20px;
}

.keys-test-intro {
	margin-right: 100px;
}

.keys-test-num {
	width: 33%;
	height: auto;
}

.keys-test-wave {
	width: 33%;
	height: auto;
}

.keys-test-rule {
	width: 50px;
	height: auto;
	margin-right: 20px;
	background: #404040;
}

.keys-test-rule-bg {
	width: 50px;
	height: 200px;
	position: relative;
}

.keys-test-rule-show {
	width: 50px;
	height: 0px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	/* background: #00ff00; */
	background: #dddddd;
}

.keys-test-rule-top {
	width: 50px;
	height: 200px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9;

	.line-con {
		width: 50px;
		height: 200px;
	}

	.line-ul {
		width: 18px;
		height: 200px;
		margin-right: 5px;
		float: left;
	}

	.line-li {
		width: 8px;
		height: 1px;
		background: var(--white);
		margin-bottom: 4px;
	}

	.line-li:nth-child(5n+1) {
		width: 12px;
	}

	.line-li:nth-child(1) {
		width: 18px;
	}

	.line-li:nth-child(10n+1) {
		width: 18px;
	}

	.num-ul {
		width: 26px;
		height: 100%;
		float: left;
		margin-top: -5px;
	}

	.num-li {
		width: 100%;
		text-align: left;
		font-size: 10px;
		color: var(--white);
		height: 10px;
		line-height: 10px;
		margin-bottom: 40px;
	}
}

.keys-test-img-key {
	width: 170px;
	height: auto;
	padding-top: 0px;

	.move {
		width: 170px;
		height: 170px;
		margin: 0 auto;
		position: relative;
		box-sizing: border-box;
	}

	.bg {
		width: 170px;
		height: 170px;
		position: absolute;
		left: 0px;
		top: 0px;
		z-index: 2;
		background: url(../images/cy-pro-bg.png) no-repeat center center;
		background-size: 100% 100%;
	}

	.top {
		width: 158px;
		height: 158px;
		position: absolute;
		left: 6px;
		top: 0px;
		z-index: 3;
		background: url(../images/cy-pro-top.png) no-repeat center center;
		background-size: 100% 100%;
	}

	.bg.bg-j {
		background-image: url(../images/fenb.png);
	}

	.top.top-j {
		background-image: url(../images/fent.png);
	}

	.text {
		width: 100%;
		height: 30px;
		line-height: 30px;
		font-size: 12px;
		color: var(--white);
		text-align: center;
	}
}

.keys-test-wave-num {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
	height: 50px;
}

.keys-test-wave-num .icon {
	font-size: 30px;
	margin-right: 10px;
	color: var(--blue);
}

.keys-test-wave-num .icon.red {
	color: var(--red);
}

.keys-test-wave-num .icon.green {
	color: var(--green);
}

.keys-test-wave-num .num {
	font-size: 20px;
	margin: 0;
}

.keys-test-wave-small {
	width: 100%;
	height: 80px;
}

.keys-test-wave-big {
	width: 100%;
	min-width: 600px;
	height: 140px;
}

.keys-test-wave-show {
	width: 300px;
	height: 200px;
	background: #404040;
}


@keyframes blink {
	0% {
		background-color: #ff9900;
		/* 红色背景 */
	}

	50% {
		background-color: #ff9900;
		/* 半透明背景 */
	}

	90% {
		background-color: #ff9900;
		/* 半透明背景 */
	}

	100% {
		background-color: #00ff00;
		/* 重新变为红色 */
	}
}

.blinking-background {
	animation: blink .5s infinite;
	/* 每1秒闪烁一次，无限次数 */
}

.pages-kb-index-hong-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;

	.hong-box-left {
		width: 40%;
		padding-right: 10px;
		flex: 1;
	}

	.hong-box-mid {
		width: 30%;
	}

	.hong-box-right {
		width: 60%;
		padding-left: 18px;
		border-left: 1px solid #303030;
	}

	.hong-box-con {
		width: 100%;
		padding-right: 10px;
	}

	.title {
		color: var(--themeColor);
		width: 100%;
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.title-text {
		color: var(--themeColor);
	}

	.btn-box {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		border-radius: 2px;
	}

	.btn {
		height: 24px;
		line-height: 24px;
		font-size: 12px;
		color: #737373;
		border-radius: 2px;
		background: #1E1E1E;
		cursor: pointer;
		padding: 0 8px;
		margin-right: 8px;
		border: 1px solid var(--btnBorderColor);

		&:hover {
			color: var(--white);
			border: 1px solid var(--white);
		}
	}

	.btn:hover .icon {
		color: var(--white);
	}

	.btn:last-child {
		margin-right: 0px;
	}

	.btn .icon {
		font-size: 12px;
		color: #737373;
		margin-right: 3px;
	}

	.con {
		width: 100%;
	}

	.ul {
		width: 100%;
		border-radius: 5px;
		height: 188px;
		overflow: auto;
		margin-top: 10px;

		.li {
			width: 100%;
			height: 30px;
			line-height: 30px;
			font-size: 12px;
			color: var(--an);
			background: #2E2E2E;
			padding: 0 10px;
			border-radius: 4px;
			margin-bottom: 4px;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.li .btn-box {
			display: none;
		}

		.name {
			font-size: 12px;
			color: var(--white);
			cursor: pointer;
			width: 100%;
			flex: 1;
			margin-right: 20px;
		}

		.li.active {
			background: #4A4A4A;
			color: var(--white);
		}

		.li.active .btn-box,
		.li:hover .btn-box {
			display: flex;
		}

		.li.active .name {
			color: var(--white);
		}
	}

	.ul2 {
		width: 100%;
		background: var(--bgColor);
		border-radius: 5px;
		height: auto;

		.ul-head {
			width: 100%;
			margin-bottom: 5px;
			border-bottom: 1px solid #363636;
		}

		.ul-body {
			width: 100%;
			height: 160px;
			overflow: auto;
		}

		.li {
			width: 100%;
			height: 32px;
			line-height: 24px;
			font-size: 12px;
			color: var(--white);
			border-radius: 3px;
			padding: 4px 0;
		}

		.li-con {
			float: left;
			font-size: 12px;
			color: var(--white);
			text-align: center;
			height: 24px;
		}

		.ul-body .li.active,
		.ul-body .li:hover {
			background: #4A4A4A;
		}

		.li1 {
			width: 20%;
		}

		.li2 {
			width: 20%;
		}

		.li3 {
			width: 18%;
			border-radius: 3px;
		}

		.li3 input {
			width: 100px;
			height: 22px;
			line-height: 22px;
			padding-left: 5px;
			color: var(--hei);
		}

		.li4 {
			width: 42%;
			display: flex;
			justify-content: center;
			align-items: center;
		}

		/* .li.active,
		.li:hover,
		.li.active .li-con,
		.li:hover .li-con {
			background: var(--red);
			color: var(--white);
		} */
	}

	.hong-box-hand-add {
		width: 100%;
		height: auto;
		background: #ffffff;
		padding: 40px 20px;
		border-radius: 3px;
		position: relative;
		border: 1px solid #eeeeee;
		margin-bottom: 20px;
		padding-bottom: 20px;
		display: none;
	}

	.hong-box-hand-add-close {
		width: 40px;
		height: 40px;
		line-height: 40px;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 2;
		font-size: 12px;
		color: #333333;
		cursor: pointer;
	}

	.hong-box-hand-add-close .icon {
		font-size: 30px;
		color: #333333;
	}

	.hong-box-hand-add-tab {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.hong-box-hand-add-tab-li {
		height: 30px;
		line-height: 30px;
		border: 1px solid #dddddd;
		border-radius: 6px 6px 0 0;
		padding: 0 30px;
		font-size: 12px;
		color: #666666;
		border-bottom: none;
		cursor: pointer;
	}

	.hong-box-hand-add-tab-li.active {
		border: 1px solid #999999;
		border-bottom: none;
		color: #000000;
	}

	.hong-box-hand-add-con {
		width: 100%;
		height: auto;
	}

	.hong-box-hand-add-con-li {
		width: 100%;
		height: auto;
		display: none;
		border: 1px solid #eeeeee;
		border-radius: 0 6px 6px 6px;
		padding: 30px 30px;
		font-size: 12px;
		color: #666666;
	}

	.hong-box-hand-add-con-li.active {
		width: 100%;
		height: auto;
		display: block;
		border: 1px solid #999999;
	}

	.hong-box-hand-add-con-li input {
		width: 160px;
		height: 30px;
		line-height: 30px;
	}

	.hong-box-hand-add-con-li select {
		width: 160px;
		height: 30px;
		line-height: 30px;
	}

	.hong-box-hand-add-btn {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		padding-top: 20px;
	}


}

.pages-kb-index-test-box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;

	.left-con {
		width: 878px;
		height: auto;
	}

	.left-con-top {
		width: 100%;
		height: auto;
		border-radius: 20px;
		background-color: var(--active2);
		border: 2px solid #6C6C6C;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		padding: 30px;
	}

	.left-con-top-li {
		width: 33%;
		height: auto;
	}

	.left-con-top-li-top {
		width: 100%;
		line-height: 25px;
		color: var(--hei);
		margin-bottom: 10px;
		font-size: 18px;
		text-align: center;
	}

	.left-con-top-li-bottom {
		width: 100%;
		line-height: 50px;
		color: var(--hei);
		font-size: 36px;
		text-align: center;
	}

	.left-con-bottom {
		width: 100%;
		height: auto;
		padding-top: 12px;
		margin-bottom: 20px;
	}

	.left-con-bottom-li {
		width: 100%;
		height: auto;
		line-height: 24px;
		font-size: 12px;
		color: var(--hei);
		margin-bottom: 8px;
	}

	.left-con-bottom-li.title {
		font-weight: bold;
	}

	.left-con-btn {
		width: 310px;
		height: 60px;
		line-height: 60px;
		border-radius: 20px;
		background-color: #6c6c6c;
		border: 1px solid #6c6c6c;
		text-align: center;
		font-size: 28px;
		color: var(--white);
	}

	.right-con {
		width: 496px;
		height: 330px;
		border-radius: 20px;
		background-color: var(--active2);
		border: 2px solid #6C6C6C;
		margin-left: 20px;
		padding: 20px 20px;
		padding-right: 10px;
	}

	.right-con-ul {
		width: 100%;
		height: 100%;
		overflow: auto;
		padding-right: 10px;
	}

	.right-con-li {
		width: 100%;
		height: auto;
		margin-bottom: 10px;
		display: flex;
		justify-content: space-between;
		align-items: center;

		.title {
			display: flex;
			justify-content: flex-start;
			align-items: center;

			.name {
				width: 60px;
				height: 32px;
				line-height: 32px;
				border-radius: 6px;
				background-color: var(--white);
				border: 1px solid var(--hui);
				text-align: center;
				font-size: 12px;
				color: var(--hei);
			}

			.icon {
				font-size: 20px;
				margin-left: 32px;
				color: #6C6C6C;
			}
		}

		.time {
			color: #6C6C6C;
			font-size: 12px;
		}
	}
}

.login-type {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 28px;
}

.login-type-li {
	width: 180px;
	height: 30px;
	line-height: 30px;
	font-size: 12px;
	cursor: pointer;
	margin-right: 22px;
	text-align: center;
	border-radius: 5px;
	color: var(--white);
	background: #3D3D3D;
}

.login-type-li.active {
	background: #FF5A16 100%;
	color: var(--white);
}

.login-wx-box {
	width: 100%;
	height: 420px;
}

.login-wx-box iframe {
	width: 100%;
	height: 100%;
}

.tool-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.tool-menu {
	width: 200px;
	overflow: hidden;
}

.tool-menu-ul {
	width: 100%;
}

.tool-menu-ul .li {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--ya);
	border-radius: 3px;
	margin-bottom: 10px;
	font-size: 18px;
	color: var(--an);
	cursor: pointer;
	padding: 10px 20px;
}

.tool-menu-ul .li i {
	font-size: 18px !important;
	color: var(--an);
	margin-right: 4px;
	width: 30px;
}

.tool-menu-ul .li:hover {
	background: var(--ya);
}

.tool-menu-ul .li.active {
	background: var(--red);
	color: var(--white);
	transition: all 0.2s ease;
}

.tool-menu-ul .li.active i {
	color: var(--white);
	transition: all 0.2s ease;
}

.tool-con {
	width: 740px;
	margin-left: 20px;
}

.tool-con-main {
	width: 100%;
}

.tool-con-main-top {
	width: 100%;

	.title {
		width: 100%;
		height: 40px;
		line-height: 40px;
		font-size: 18px;
		text-align: center;
	}

	.ul {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.li {
		width: 100px;
		height: auto;
		margin-right: 20px;
		margin-bottom: 20px;
		cursor: pointer;
	}

	.li .img {
		width: 100px;
		height: 100px;
		margin-bottom: 4px;
		border: 1px solid #dddddd;
		border-radius: 50%;
	}

	.li .name {
		width: 100%;
		height: 30px;
		line-height: 30px;
		font-size: 12px;
		text-align: center;
	}

	.li.active .name {
		font-weight: bold;
		font-size: 12px;
	}
}

.tool-con-main-list {
	width: 100%;

	.user-ul {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
		border-top: 1px solid #aaaaaa;
		padding-top: 20px;
	}

	.user-li {
		width: 100%;
		height: auto;
		margin-bottom: 20px;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		border-bottom: 1px solid #bbbbbb;
		padding-bottom: 20px;
	}

	.user-li-left {
		width: 150px;
		height: auto;
		text-align: center;
	}

	.user-li-left .head {
		width: 100px;
		height: 100px;
		margin-bottom: 10px;
		border: 1px solid #dddddd;
		border-radius: 50%;
	}

	.user-li-left .name {
		width: 100%;
		height: 30px;
		line-height: 30px;
		font-size: 12px;
		text-align: center;
	}

	.user-li-right {
		width: 100%;
		flex: 1;
		height: auto;
		padding-left: 20px;
	}

	.user-li-right-li {
		height: auto;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		margin-bottom: 10px;
	}

	.user-li-right-li .title {
		width: 140px;
		height: 30px;
		line-height: 30px;
		font-size: 12px;
		color: #666666;
		text-align: right;
		padding-right: 10px;
	}

	.user-li-right-li .con {
		width: 100%;
		flex: 1;
		line-height: 30px;
		font-size: 12px;
		color: #333333;
	}

	.user-li-right-li .con .text {
		width: 100%;
		line-height: 30px;
		font-size: 12px;
		color: #333333;
	}

	.user-li-right-li .con .img {
		width: 80px;
		height: 80px;
		border: 1px solid #dddddd;
		border-radius: 20px;
	}

	.user-li-right-btn-box {
		width: 100%;
		text-align: right;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.user-li-right-btn-box .btn {
		width: 120px;
		height: 40px;
		line-height: 40px;
		background: var(--red);
		color: #ffffff;
		text-align: center;
		border-radius: 3px;
		font-size: 12px;
		cursor: pointer;
	}
}

.tool-con-main-mid {
	width: 100%;

	.ul {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}

	.li {
		width: 100px;
		height: 100px;
		margin-right: 20px;
		margin-bottom: 20px;
		border: 1px solid #dddddd;
	}
}

.tool-con-ul {
	width: 100%;
}

.kb-screen-img-show-box {
	width: 900px;
	height: 380px;
	border-radius: 3px;
	background: #1F1F1F;

	.show-box {
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.img-show {
		margin-bottom: 20px;
	}

	.img-show img {
		width: 240px;
		height: 135px;
		display: none;
	}

	.img-show .icon {
		font-size: 100px;
	}

	.title {
		font-size: 12px;
		font-weight: 400;
		letter-spacing: 0px;
		line-height: 34.75px;
		color: var(--white);
		margin-bottom: 10px;
	}

	.intro {
		font-size: 12px;
		font-weight: 400;
		letter-spacing: 0px;
		line-height: 20.27px;
		color: rgba(161, 161, 161, 1);
	}
}

.kb-screen-img-set-box {
	width: 100%;
	height: auto;

	.set-box {
		width: 100%;
		height: auto;
		padding-top: 20px;
	}

	.btn1 {
		width: 200px;
		height: 30px;
		line-height: 30px;
		text-align: center;
		border-radius: 2px;
		color: #FFFFFF;
		background: #1E1E1E;
		font-size: 12px;
		margin-bottom: 20px;
		cursor: pointer;
		border: 1px solid #6B6B6B;
	}

	.btn2 {
		width: 300px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		border-radius: 8px;
		color: #FFFFFF;
		background: #1E1E1E;
		font-size: 18px;
		margin-bottom: 20px;
		cursor: pointer;
		border: 1px solid #6B6B6B;
	}
}