#head_table {
	margin: 0;
	width: 100%;
}
#head_table td {
	padding: 6px 12px;
}
#func_block {
	text-align: right;
	user-select: none;
}
#func_block > div {
	display: inline-block;
	margin: 5px;
}
#func_block .button.button-border {
	height: 24px;
	line-height: 24px;
}

#method_block {
	border-left: 1px solid #ddd;
	padding: 0 7px;
}
#method_block > div {
	display: inline-block;
	padding: 2px;
}
#method_block label {
	margin: 0;
}
#method_block input[name=method] {
	display: none;
}
#method_block input[name=method]:checked + label.button {
	background-color: #23a394 !important;
	color: #fff !important;
}

/*--排序--*/
#sort_block .sort {
	position: relative;
	cursor: pointer;
	font-weight: bold;
}
#sort_block i {
	color: #ddd;
}
#sort_block i.active {
	color: #23a394;
}
#sort_block i.fa.fa-sort-asc {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
/*--排序--*/

/*--開關--*/
.ui-check .ui-check-btn {
	display: inline-block;
	position: relative;
	height: 24px;
	width: 42px;
	border-radius: 24px;
	background-color: #ddd;
	cursor: pointer;
	vertical-align: middle;
	user-select: none;
	transition: all 0.3s ease;
}
.ui-check .ui-check-btn::before {
	content: '';
	display: block;
	height: 24px;
	width: 24px;
	border-radius: inherit;
	background-color: #f3a428;
	transition: width 0.3s ease;
}
.ui-check .ui-check-btn::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	width: 24px;
	border-radius: inherit;
	background-color: #fff;
	box-shadow: 0px 0px 1px 2px #eee;
	transition: left 0.3s ease;
}

.ui-check input {
	display: none;
}
.ui-check input[type=checkbox]:checked ~ .ui-check-btn::before {
	width: 42px;
}
.ui-check input[type=checkbox]:checked ~ .ui-check-btn::after {
	left: 18px;
}
.ui-check input[type=checkbox]:checked ~ .not-checked {
	visibility: hidden;
}
/*--開關--*/
