.header {
	background-color: rgba(0, 0, 0, 0);
}

.header .navbar_nav li a {
	color: #fff;
}

.codeboxbg {
	width: 100%;
	height: 6.5rem;
	background-image: url('../image/codeboxbg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

.codelist {
	margin: 1.2rem auto 0;
	width: 100%;
	display: flex;
	justify-content: space-between;

}

.codelist .title {
	width: 90%;
	margin: 0 auto;
	font-size: 0.22rem;
	font-weight: 400;
	border-bottom: 1px #C30D23 dashed;
	padding: 0.3rem 0 0.2rem;
}

.codelist>div {
	height: 4rem;
}

.codelist>div>div {
	width: 100%;
	height: 100%;
	background-color: rgb(253, 253, 246);
}

.codelist ul li {
	display: flex;
	align-items: center;
	width: 90%;
	margin: 0.2rem auto 0;

}

.codelist ul li img {
	width: 0.3rem;
	vertical-align: middle;
}

.codelist ul li span {
	font-size: 0.16rem;
	font-weight: 400;
	font-family: 'MyFontRegular';
	margin-left: 0.2rem;
	cursor: pointer;
	position: relative;

}

.codelist ul li span .code {
	position: absolute;
	width: 2rem;
	z-index: 100;
	left: 50%;
	transform: translateX(-50%);
	top: -2.15rem;
	display: none;
	pointer-events: none;
	background-image: url('../image/union.png');
	background-size: cover;
	background-position: top left;
	height: 2.1rem;
}

.codelist ul li span .code img {
	width: 1.7rem;
	margin: 0.15rem 0.15rem 0;
}

.codelist ul li span a:hover {
	color: #C30D23 !important;
}