

ul { list-style-type: none;}
li { display: inline-block;}
li { margin: 10px 0;}
input.labelauty + label { font: 12px "Microsoft Yahei";}

/* Prevent text and blocks selection */
input.labelauty + label ::selection { background-color: rgba(255, 255, 255, 0); }
input.labelauty + label ::-moz-selection { background-color: rgba(255, 255, 255, 0); }

/* Hide original checkboxes. They are ugly! */
input.labelauty { display: none !important; }

/*
 * Let's style the input
 * Feel free to work with it as you wish!
 */
body,td,th {font-family:微软雅黑,宋体, Arial, Helvetica, sans-serif；} 
input.labelauty + label
{
	display: table;
	font-size: 13px;
	padding: 10px 18px;
	background: #ffffff;
	color: #64748b;
	cursor: pointer;
	border: 2px solid #e2e8f0;

	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;

	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	position: relative;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Stylish text inside label */

input.labelauty + label > span.labelauty-unchecked,
input.labelauty + label > span.labelauty-checked
{
	display: inline-block;
	line-height: 16px;
	vertical-align: bottom;
}

/* Stylish icons inside label */

input.labelauty + label > span.labelauty-unchecked-image,
input.labelauty + label > span.labelauty-checked-image
{
	display: inline-block;
	width: 16px;
	height: 16px;
	vertical-align: bottom;
	background-repeat: no-repeat;
	background-position: left center;

	transition: background-image 0.5s linear;
	-moz-transition: background-image 0.5s linear;
	-webkit-transition: background-image 0.5s linear;
	-o-transition: background-image 0.5s linear;
}

/* When there's a label, add a little margin to the left */
input.labelauty + label > span.labelauty-unchecked-image + span.labelauty-unchecked,
input.labelauty + label > span.labelauty-checked-image + span.labelauty-checked
{
	margin-left: 7px;
}

/* When not Checked */
input.labelauty:not(:checked):not([disabled]) + label:hover
{
	background: #f0f9ff;
	color: #0369a1;
	border-color: #0ea5e9;
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
	transform: translateY(-2px);
}
input.labelauty:not(:checked) + label > span.labelauty-checked-image
{
	display: none;
}

input.labelauty:not(:checked) + label > span.labelauty-checked
{
	display: none;
}

/* When Checked */
input.labelauty:checked + label
{
	background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0ea5e9 100%);
	background-size: 200% 200%;
	color: #ffffff;
	border-color: #0284c7;
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
	font-weight: bold;
}

input.labelauty:checked:not([disabled]) + label:hover
{
	background-position: 100% 100%;
	box-shadow: 0 10px 25px rgba(14, 165, 233, 0.5);
	transform: translateY(-2px) scale(1.02);
}
input.labelauty:checked + label > span.labelauty-unchecked-image
{
	display: none;
}

input.labelauty:checked + label > span.labelauty-unchecked
{
	display: none;
}

input.labelauty:checked + label > span.labelauty-checked
{
	display: inline-block;
}

input.labelauty.no-label:checked + label > span.labelauty-checked
{
	display: block;
}

/* When Disabled */
input.labelauty[disabled] + label
{
	opacity: 0.5;
}

/* Add a background to (un)checked images */
input.labelauty + label > span.labelauty-unchecked-image
{
	background-image: url( ../images/input-unchecked.png );
}

input.labelauty + label > span.labelauty-checked-image
{
	background-image: url( ../images/input-checked.png );
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
	input.labelauty + label
	{
		font-size: 14px;
		padding: 12px 16px;
		margin: 4px 2px;
		display: inline-block;
	}
	
	li {
		display: block;
		margin: 6px 0;
	}
}

@media screen and (max-width: 480px) {
	input.labelauty + label
	{
		font-size: 13px;
		padding: 10px 14px;
	}
}