.setBox {
	width: 400px;
	height: 100%;
	background-color: #333;
	position: fixed;
	top: 0;
	left: -100%;
	/*transition: 500ms cubic-bezier(0.08, 0.5, 0,1);
*/
	z-index: 999;
	color: #fff;
}

.setBox-closeWin {
	width: 60px;
	height: 40px;
	font-size: 25px;
	font-weight: 100;
	line-height: 40px;
	/* border: solid 1px red; */
	user-select: none;
	text-align: center;
	transition: 250ms;
	position: absolute;
	right: 0;
	top: 0;
}

.setBox-closeWin:hover {
	background-color: #ff3838;
}

.setBox-title {
	padding-left: 30px;
	line-height: 50px;
}

.setBox ul {
	/* padding: 5%; */
	width: 100%;
	/*border: solid 1px red;
*/
	list-style-type: none;
}

.setBox ul li {
	line-height: 50px;
	padding-left: 5%;
	padding-right: 5%;
}
.setBox ul li:hover {
	background-color: rgba(255, 255, 255, 0.1);
}
.setBox ul li .swith {
	width: 60px;
	height: 30px;
	border: none;
	float: right;
	transition: 200ms;
	margin-top: 10px;
	border-radius: 60px;
	background-color: #8c8c8c;
}

.swith_round {
	width: 20px;
	height: 20px;
	margin: 3px;
	margin-left: 8px;
	border-radius: 50px;
	transition: 200ms;
	transform: translateX(0%);
	background-color: #fff;
	box-shadow: 0 0 0px 15px rgba(255, 255, 255, 0.3);
}

.swith_round:active {
	width: 25px;
}

.options {
	width: 100%;
	height: 60px;
	/* border: 1px solid red; */
	position: absolute;
	bottom: 10px;
}

.options .option {
	width: 22%;
	height: 60px;
	float: left;
	margin: 3px;
	font-size: 11px;
	line-height: 90px;
	text-align: center;
	position: relative;
	background-color: rgba(255, 255, 255, .2);
	border: solid 1px rgba(0, 0, 0, .0);
	transition: 300ms;
}

.options .option:hover {
	cursor: context-menu;
	border: solid 1px #c5c5c5;
}



.setPath {
	color: #55ffff;
}