* {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
}

.ui-header {
	width: 100%;
}

.ui-hd-tp1 {
	width: 100%;
	height: 40px;
	background: #E7E7E7;
}

.ui-hd-tp1-min {
	width: 1240px;
	display: flex;
	justify-content: space-between;
	margin: auto;
	height: 40px;
	align-items: center;
}

.ui-hd-tp1l {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 14px;
	color: #333333;
	display: flex;
}

.ui-hd-tp1l p {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 14px;
	color: #333333;
	padding-right: 5px;
}

.ui-hd-tp1r {
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 20px;
	color: #FF4902;
	display: flex;
	align-items: center;
}

.ui-hd-tp1r p {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 14px;
	color: #333333;
}

.ui-hd-tp2 {
	width: 100%;
	height: 120px;
	background: #FFFFFF;
}

.ui-hd-tp2-min {
	width: 1240px;
	height: 120px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ui-hd-tp2l {}

.ui-hd-tp2l-p {
	font-family: Source Han Serif CN;
	font-weight: 800;
	font-size: 36px;
	color: #333333;
}

.ui-hd-tp2l-p1 {
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 16px;
	color: #333333;
}

.ui-hd-tp2r {
	width: 387px;
}

.ui-hd-tp2r1 {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	margin-bottom: 10px;
}

.ui-hd-tp2r2 {
	width: 387px;
	height: 42px;
	background: #FFFFFF;
	border-radius: 6px;
	border: 1px solid #206BD1;
	display: flex;
}

.ui-hd-tp2r2l {
	width: 317px;
	padding: 10px;
	box-sizing: border-box;
	display: flex;
}

.ui-hd-tp-icon-img {
	/* width: 198px; */
	width: 395px;
    height: 64px;
	display: block;
}

.ui-hd-tp2r2l-img {
	width: 22px;
	height: 22px;
	display: block;
	margin-right: 10px;
}

.ui-hd-tp2r2l-pt {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	border: none;
	outline: none;
	width: 600px;
}

.ui-hd-tp2r2r {
	width: 70px;
	height: 42px;
	background: #206BD1;
	border-radius: 0px 6px 6px 0px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 20px;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ui-nav {
	width: 100%;
	height: 60px;
	background: #206BD1;
	position: relative;
	z-index: 9;
}

.ui-nav-min {
	width: 1240px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.ui-nav-li {
	width: 127px;
	height: 60px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 20px;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

.ui-nav-li:hover {
	background-color: rgba(77, 146, 239, 1);
}

.ui-hd-bt-li {
	width: 127px;
	height: 60px;
	font-size: 20px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

/* .ui-hd-bt-li:last-child::after {
	content: "";
	width: 1px;
	height: 30px;
	background-color: #008FCF;
	position: absolute;
	right: 0;
} */

/* .ui-hd-bt-li::after {
	content: "";
	width: 1px;
	height: 30px;
	background-color: #FFFFFF;
	position: absolute;
	right: 0;
} */

.ui-hd-bt-li:hover {
	background: #4D92EF;
	color: #fff;
}

.ui-hd-bt-li:hover>.ui-hd-bt-li-a {
	color: #fff;
}

.ui-hd-bt-li-a {
	font-size: 20px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #ffffff;
	text-decoration: none;
}

/* 下拉菜单样式 */
.dropbtn {
	/* background-color: #008FCF; */
	font-size: 20px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #ffffff;
	text-decoration: none;
	border: none;
	cursor: pointer;
	width: 127px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;

}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 127px;
}

.dropdown-content a {
	color: black;
	text-decoration: none;
	display: block;
	width: 127px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	text-decoration: none;
}

.dropdown-content a:hover {
	background-color: #4D92EF;
	color: #FFFFFF;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	background-color:#4D92EF;
	color: #fff;
}

.ui-footer {
	width: 100%;
	height: 234px;
}

.ui-ft {
	width: 100%;
	background-color: #2D60A2;
}

.ui-ft-min {
	width: 1240px;
	height: 174px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.ui-ftl {}

.ui-ftl-h {
	font-family: Source Han Serif CN;
	font-weight: 800;
	font-size: 36px;
	color: #FFFFFF;
	margin-top: 40px;
}

.ui-ftl-p {
	font-family: Source Han Sans CN;
	font-weight: 500;
	font-size: 16px;
	color: #FFFFFF;
}

.ui-ftr {
	margin-top: 40px;
}

.ui-ftr-li {
	display: flex;
	margin-bottom: 20px;
	align-items: center;
}

.ui-ftr-li-img2 {
	width: 16px;
	height: 17px;
	display: inline-block;
	margin-right: 9px;
}

.ui-ftr-li-img3 {
	width: 16px !important;
	height: 13px !important;
	display: inline-block;
	margin-right: 9px;
}

.ui-ftr-li-img1 {
	width: 14px;
	height: 19px;
	display: inline-block;
	margin-right: 9px;
}

.ui-ftr-li p {
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
}

.ui-ftb {
	width: 100%;
	height: 60px;
	background-color: #333333;
	font-family: Source Han Sans CN;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 60px;
	text-align: center;
}

@media screen and (max-width: 1240px) {
	html,body{
		width: 1240px!important;
	}
	.ui-header {
		width: 1240px!important;
	}
	.ui-hd-tp1-min{
		width: 1200px!important;
	}
	.ui-nav-min{
		width: 1200px!important;
	}
	.ui-hd-tp2-min{
		width: 1200px!important;
	}
	.ui-hd-tp1 {
		width: 1240px!important;
	}
	.ui-lunbo {
		width: 1240px;
	}
	.ui-content{
		width: 1200px!important;
		margin: 20px auto;
	}
	.ui-cnt1{
		width: 1200px!important;
	}
	.ui-cnt1-bx{
		width: 1200px !important;
	}
	.ui-cnt1-bxl{
		width: 560px !important;
	}
	.ui-cnt1-bxl-li-img{
		width: 560px !important;
	}
	.ui-cnt1-bxr{
		width: 590px !important;
	}
	.ui-cnt3{
		width: 1200px !important;
	}
	.ui-ft-min{
		width: 1200px !important;
	}
	.ui-cntl{
		margin-right: 10px!important;
		width: 250px;
		min-height: 2006px;
	}
	.ui-cntl-h{
		width: 250px !important;
	}
	.ui-cntr{
		width: 930px!important;
		min-height: 1919px;
	}
	.ui-footer{
		width: 1240px !important;
	}
	.ui-hd-tp2{
		width: 1240px !important;
	}
	.ui-nav{
		width: 1240px !important;
	}
	.ui-pages {
    margin-top: 80px;
}}