/*** IE9及以上版本+非IE浏览器样式 ***/
/*登录页面*/
input[type="checkbox"] {
	visibility: hidden;
}

.checkboxOne {
	width: 15px;
	position: relative;
	float: left;
}

.checkboxOne label {
	cursor: pointer;
	position: absolute;
	width: 15px;
	height: 15px;
	top: 0;
	left: 0;
	background: #eee;
	border: 1px solid #b5b5b5;
	box-shadow: 0 0 5px #c1c1c1;
}

.checkboxOne label:after {
	opacity: 0;
	content: '';
	position: absolute;
	width: 12px;
	height: 6px;
	background: transparent;
	top: 3px;
	left: 3px;
	border: 3px solid #EC6504;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.checkboxOne label:hover:after {
	filter: "alpha(opacity=0.2)";
	filter: alpha(opacity = 0.2);
	-moz-opacity: 0.2;
	-khtml-opacity: 0.2;
	opacity: 0.2;
}

.checkboxOne input[type=checkbox]:checked+label:after {
	filter: "alpha(opacity=100)";
	filter: alpha(opacity = 100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}