/*!
 * LABELAUTY jQuery Plugin Styles
 *
 * @file: jquery-labelauty.css
 * @author: Francisco Neves (@fntneves)
 * @site: www.francisconeves.com
 * @license: MIT License
 */

/* Prevent text and blocks selection */
input.labelauty + label ::selection {
    color: #ff5c38;
}

input.labelauty + label ::-moz-selection {
    color: #ff5c38;
}
input.labelauty + label :hover {
	color: #6d071e;
	display: inline-block;
}
/* 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!
 */

ul {
	list-style-type: none;
	
}
li {
	display: inline-block;
}

li {
	height: 20px;
	margin: 10px,30px;
}

input.labelauty + label {
	font: 14px "Microsoft Yahei";
}
/*2020-9-14 yyx修改 start*/
input.labelauty + label {
    font-size: 16px;
    color: #999;
    cursor: pointer;
    border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    padding:10px;
}
/*2020-9-14 yyx修改 end*/

	/* Stylish text inside label */
	input.labelauty + label > span.labelauty-unchecked,
	input.labelauty + label > span.labelauty-checked {
		display: inline-block;
		 line-height:18px;
		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 {
	color: #999;
}

input.labelauty:not(:checked) + label > span.labelauty-checked-image {
	display: none;
}

input.labelauty:not(:checked) + label > span.labelauty-checked {
	display: none;
}

/* When Checked */
/*2020-9-14 yyx修改 start*/
input.labelauty:checked + label {
	color: #6d071e;
}

/*input.labelauty:checked:not([disabled]) + label:hover {
	color: #a16a32;
}*/
/*2020-9-14 yyx修改 end*/
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;
}
/*2020-9-15 yyx start更多*/
.more_literature {
    cursor: pointer;
    color: cornflowerblue
}
	.more_literature:hover {
		color: #6d071e
	}
	
/*2020-9-15 yyx end*/
