.m-setting-box {
	width: 100%;
	height: auto;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.m-setting-left {
	width: 587px;
	height: 608px;
	border-radius: 10px;
	background: rgba(var(--bg-color), var(--bg-opacity));
	backdrop-filter: var(--bg-blur);
	margin-right: 54px;
	position: relative;
	padding-top: 90px;
}

.m-setting-right {
	width: 959px;
	height: 608px;
	border-radius: 10px;
	padding: 30px;
	background: rgba(var(--bg-color), var(--bg-opacity));
	backdrop-filter: var(--bg-blur);
}

.m-setting-name {
	width: 100%;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.m-setting-name-text {
	width: auto;
	min-width: 130px;
	height: 30px;
	line-height: 30px;
	background: rgba(216, 216, 216, 0.08);
	border: 1px solid var(--themeColor);
	border-radius: 17px;
	color: var(--text-color);
	font-size: 12px;
	text-align: center;
	padding: 0 22px;
}

.m-setting-box-bg {
	width: 100%;
	height: 375px;
	margin-bottom: 20px;
}

.m-setting-box-bg .bg-box {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.m-setting-box-bg .bg-box .bg-img {
	width: 174px;
	height: auto;
	max-height: 100%;
}

.m-setting-box-con {
	width: 100%;
	height: 30px;
	position: absolute;
	left: 0;
	top: 30px;
	z-index: 1;
	padding-right: 30px;
}

.m-setting-box-con .status-box {
	width: 100%;
	height: 30px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.m-setting-box-con .status-box .icon {
	font-size: 30px;
}

.m-setting-box-con .status-box .link {
	width: 30px;
	height: 30px;
	color: var(--text-color);
	margin-right: 16px;
}

.m-setting-box-con .status-box .power {
	width: 30px;
	height: 30px;
	color: var(--text-color);

}

.m-setting-box-con .status-box .power-bg {
	width: 30px;
	height: 30px;
	color: var(--text-color);
	position: relative;
}

.m-setting-box-con .status-box .power-li {
	position: absolute;
	left: 8px;
	bottom: 1.5px;
	z-index: 2;
	width: 14px;
	height: 25px;
}

.m-setting-box-con .status-box .power-li-num {
	position: absolute;
	left: 0px;
	bottom: 0px;
	z-index: 3;
	width: 100%;
	height: 0;
	background: #51FF00;
	border-radius: 2px;
}

.m-setting-box-con .status-box .power-li-num.charge {
	animation: growShrink 1.5s linear infinite;
}

@keyframes growShrink {

	0% {
		height: 0%;
	}

	100% {
		height: 100%;
	}
}

.m-setting-box-con .status-box .power-li-charge {
	position: absolute;
	left: 0px;
	bottom: 0px;
	z-index: 4;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.m-setting-box-con .status-box .power-li-charge .icon {
	font-size: 14px;
	color: #ffffff;
}

.m-setting-dpi-box {
	width: 100%;
	height: auto;
}

.m-setting-dpi-ul {
	width: 100%;
	height: auto;
	padding-top: 12px;
}

.m-setting-dpi-duanshu {
	background: var(--kb-key-bg-color);
	color: var(--text-color);
}

.m-setting-dpi-li {
	width: 100%;
	height: auto;
	border-radius: 10px;
	background: var(--kb-key-bg-color);
	padding: 20px;
	padding-bottom: 7px;
	margin-bottom: 20px;
}

.m-setting-dpi-li.active {
	border: 2px solid var(--themeColor);
	box-shadow: 0px 0px 10px 0px rgba(255, 90, 22, 0.2);
}

.m-setting-dpi-li-top {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.m-setting-dpi-li-top-left {
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.m-setting-dpi-li-color {
	width: 4px;
	height: 12px;
	margin-right: 5px;
	border-radius: 2px;
}

.m-setting-dpi-li-title {
	color: var(--text-color);
	font-size: 14px;
	margin-right: 12px;
}

.m-setting-dpi-li-num {
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: absolute;
	left: 4px;
	top: -31px;
	z-index: 9;
}

.m-setting-dpi-li-num-x,
.m-setting-dpi-li-num-all {
	left: 65px;
}

.m-setting-dpi-li-num-title {
	color: var(--text-color);
	font-size: 12px;
	margin-right: 8px;
}

.m-setting-dpi-li-num-input {
	width: 82px;
	height: 22px;
	line-height: 20px;
	border-radius: 4px;
	box-sizing: border-box;
	color: var(--text-color);
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 0;
	margin: 0;
	background: var(--kb-key-bg-color);
}

.m-setting-dpi-li-open {
	height: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.m-setting-dpi-li-open-text {
	color: var(--text-color);
	font-size: 14px;
	margin-right: 3px;
}

.m-setting-dpi-li-open-btn {
	width: 38px;
	height: 18px;
	inset: 0;
	border-radius: 12px;
	background: var(--kb-key-border);
	position: relative;
}

.m-setting-dpi-li-open-btn-li {
	left: 2px;
	top: 2px;
	width: 14px;
	height: 14px;
	background: #FDFDFD;
	border-radius: 50%;
	position: absolute;
	z-index: 2;
	transition: left 0.2s ease;
}

.m-setting-dpi-li-open-btn.open {
	background: var(--themeColor);
}

.m-setting-dpi-li-open-btn.open .m-setting-dpi-li-open-btn-li {
	left: 22px;
	top: 2px;
	transition: left 0.2s ease;
}

.m-setting-dpi-li-bottom {
	width: 100%;
	height: auto;
	padding-top: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.input-range-box2 {
	display: none;
}

.input-range-box-li {
	width: 100%;
	height: auto;
	position: relative;
}

.dpi-range {
	-webkit-appearance: none;
	width: 855px;
	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;
	padding: 0 4px;
}

/* 滑条轨道样式 */
.dpi-range::-webkit-slider-runnable-track {
	height: 2px;
	border-radius: 1px;
	/* background: linear-gradient(#FF5A16 0 0) 0 0/calc(var(--progress) * 1%) 100% no-repeat rgba(170, 170, 170, 0.5); */
	background: linear-gradient(#FF5A16 0 0) 0 0 / calc(calc(var(--progress) * 1%) + calc(calc(var(--progress) - 50) * 0.02%)) 100% no-repeat rgba(170, 170, 170, 0.5);
}

/* 滑块按钮样式 */
.dpi-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--themeColor);
	outline: 4px solid rgba(255, 90, 22, 0.25);
	view-timeline: --slider inline;
	margin-top: -4px;
}

.dpi-range2 {
	-webkit-appearance: none;
	width: 400px;
	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;
	padding: 0 4px;
}

/* 滑条轨道样式 */
.dpi-range2::-webkit-slider-runnable-track {
	height: 2px;
	border-radius: 1px;
	/* background: linear-gradient(#FF5A16 0 0) 0 0/calc(var(--progress) * 1%) 100% no-repeat rgba(170, 170, 170, 0.5); */
	background: linear-gradient(#FF5A16 0 0) 0 0 / calc(calc(var(--progress) * 1%) + calc(calc(var(--progress) - 50) * 0.02%)) 100% no-repeat rgba(170, 170, 170, 0.5);
}

/* 滑块按钮样式 */
.dpi-range2::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--themeColor);
	outline: 4px solid rgba(255, 90, 22, 0.25);
	view-timeline: --slider inline;
	margin-top: -4px;
}