body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select {
	margin: 0;
	padding: 0
}

body {
	/* font-size:13px */
	font-size: 12px;
			/* Okra, Helvetica, sans-serif */
	font-family:"思源黑体";
	background: #fff;
	-webkit-text-size-adjust: 100%;
	overflow: hidden;
}

html {
	overflow: hidden;
}

a {
	color: #2d374b;
	text-decoration: none
}

a:hover {
	/*color: #cd0200;*/
	/* text-decoration: underline; */
	text-decoration: none;
}

em {
	font-style: normal
}

li {
	list-style: none
}

img {
	border: 0;
	vertical-align: middle
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

p {
	word-wrap: break-word
}

input[type="text"] {
	outline-style: none;
}

i {
	color: red
}

img[src=""],
img:not([src]) {
	opacity: 0;
}
/*hj 2021.10.25*/
/* 自定义单选按钮样式 */
input[type="radio"] {
	-webkit-appearance: none;
	width: 13px;
	height: 13px;
	border: 1px #d5d5d5 solid;
	outline: none;
	border-radius: 50%;
	position: relative;
}

/* 单选按钮选中时样式 */
input[type="radio"]:checked::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	bottom: 0px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #0760ab;
}
/* 自定义复选按钮样式 */
input[type="checkbox"] {
	-webkit-appearance: none;
	width: 13px;
	height: 13px;
	border: 1px #d5d5d5 solid;
	outline: none;
	position: relative;
}
/* 复选按钮选中时样式 */
input[type="checkbox"]:checked{
	background-color:#0760ab;
}
/* 复选按钮选中后样式 */
input[type="checkbox"]:checked::after {
	content: '';
    position: absolute;
    top: -2px;
    left: 4px;
    bottom: 0px;
    width: 4px;
    height: 10px;
    transform: rotate(45deg);
    border: 1.8px #FFFFFF solid;
    border-top: 0px;
    border-left: 0px;
}