@charset "utf-8";



input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
}

input[type="number"] {
	-moz-appearance: textfield;
}

.video_modal {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	z-index: 10;
	background: rgba(0, 0, 0, .6);
	display: flex;
}


.video_box {
	width: 900px;
	max-width: 100%;
	position: relative;
}

.close_img {
	width: 30px;
	height: 30px;
	position: absolute;
	top: -40px;
	right: -40px;
	cursor: pointer;
}

.video_modal div video {
	width: 100%;
	height: auto;
}

/* CSS Document */
body {
	color: #333;
	font-size: 12px;
	font-family: "微软雅黑";
	margin: 0 auto;

	box-sizing: border-box;

}

body * {
	box-sizing: border-box;
}

/* 重置 */

div,
form,
p,
i,
img,
ul,
li,
ol,
dl,
dt,
dd,
table,
tr,
td,
th,
fieldset,
label,
legend,
select,
button,
input {
	margin: 0;
	padding: 0;
}

p,
li,
div {
	/* 
	line-height: 20px;*/
}

/* 标题样式 */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: normal;
}

h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
	margin: 0;
}

/* 列表样式 */

ul,
ol,
li,
dl,
dt,
dd {
	list-style: none;
}

/* 图片样式 */

img,
a img {
	border: 0px;
	padding: 0px;
	margin: 0px;

}

/* 链接样式 */
a {
	color: #333;
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: none;
}

/** 图片链接效果 **/

.pic a {
	padding: 0px;
	border: 1px solid #fff;

}

.pic a:hover {
	border: 1px solid #d00;
	background: #fff4ce;
}

/**输入框颜色样式**/

.input-gray {
	color: #999;
}

.input-black {
	color: #000;
}

/* 清除浮动 */
.clearBoth {
	clear: both;
	/*控制分类后，各行高度不一样对不齐问题*/
	width: 100%;
	height: 0px;
	font-size: 0;
	overflow: hidden;
	/*控制分类后，各行高度不一样对不齐问题*/
	line-height: 0;
}


/*公共导航nav*/
.head_nav {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	height: 100px;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0);
}



.head_nav.special-top {
	background: #fff;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);

}








.nav_pc {
	display: inline-block;
}

.safe_width {
	max-width: 1460px;
	width: 100%;
	min-width: 1300px;
	padding: 0 30px;
	margin: 0 auto;
}

.menu_nav {
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;

	padding: 0 60px;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	min-width: 1300px;
	
}

.nav_logo {
	display: inline-block;
}


.nav_logo img {
	width: auto;
	height: auto;
}

.logo_w {
	display: inline-block;
}

.logo_b {
	display: none;
}

.special-top .logo_w {
	display: none;
}

.special-top .logo_b {
	display: inline-block;
}

.menu_main {
	width: auto;
	margin: 0;
	height: 100px;
	padding: 0;
	display: flex;
	justify-content: left;
	align-items: center;
}



.head_nav.special-top .menu_main li.main_li .main_a {
	color: #333;
}

.head_nav.special-top .menu_main li.main_li.active .main_a {
	color: #333;
}





.head_nav.special-top .menu_main li.main_li:hover .main_a {
	color: #305dc3;
}



.menu_main li.main_li {
	margin: 0 30px;
	padding: 0;
	box-sizing: border-box;
	line-height: 100px;
	position: relative;
}

.menu_main li.main_li:last-child {
	margin-right: 0;
}

.menu_main li.main_li .main_a {
	font-size: 18px;
	color: #fff;
	display: inline-block;
	height: 100px;
	letter-spacing: 1px;
	line-height: 100px;
	position: relative;
	transition: all 0.5s ease-in-out;

}

.menu_main li.main_li .main_a::after {
	content: none;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	width: 0;
	bottom: 16px;

	transition: all 0.5s ease-in-out;
}

.special-top .menu_main li.main_li .main_a::after {
	background: #058ef7;
}

.menu_main li.main_li .main_a:focus {
	text-decoration: none;
}

.menu_main li.main_li.active .main_a {
	color: #fff;
}

.special-top .menu_main li.main_li.active .main_a {
	color: #058ef7;
}

.menu_main li.main_li.active .main_a::after {
	width: 100%;
	margin-left: -50%;
}




.menu_main li.main_li:hover .main_a {
	color: #fff;

}

.menu_main li.main_li:hover .main_a::after {
	width: 100%;
	margin-left: -50%;
}

.sub_menu {
	width: 1240px;
	background: url(../images/nav_dw.png) no-repeat #fff;
	padding: 24px 100px 30px 100px;
	background-size: 100% auto;
	background-position: center bottom;
	box-sizing: border-box;
	position: absolute;
	left: 0;

	top: 80px;
	display: none;
	opacity: 0;
	justify-content: space-between;
	align-items: flex-start;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;

}

.main_li:hover .sub_menu {
	display: flex;
	opacity: 1;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}


.tb_sub {
	height: 0;
	overflow: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	margin: 0;
	margin-left: -70px;
	z-index: 14;
	padding: 10px 0 10px 0;
	list-style: none;
	width: 140px;
	background: #fff;
	box-shadow: 0 6px 14px rgba(74, 74, 74, .15);
}

.menu_main li:hover .tb_sub {

	height: auto;
	top: 100px;
	opacity: 1;
	overflow: visible;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}


.tb_sub div {

	width: 100%;

}

.tb_sub div.active_d a {
	color: #fff;

}

.menu_main li.main_li .tb_sub div a,
.menu_main li.main_li .tb_sub div {
	line-height: 42px;
}

.tb_sub div a {
	display: inline-block;
	width: 100%;
	font-size: 14px;
	text-align: left;
	color: #000;
	line-height: 42px;
	text-align: center;
}

.tb_sub div a:hover,
.tb_sub div a.cur_a,
.tb_sub div a.cur_a:hover {
	color: #025CFF;
}






.sub_m_nav {
	width: 160px;
}

.sub_m_nav .a_head {
	display: inline-block;
	width: 100%;
	font-size: 16px;
	text-decoration: none;
	color: #333;
	line-height: 40px;
	border-bottom: 1px solid #dddddd;
}

.sub_m_nav .a_head:hover {
	color: #AE2723;
}

.sub_ul_box {
	width: 100%;
	max-height: 320px;
	min-height: 240px;
	padding-top: 10px;
	box-sizing: border-box;
	overflow: auto;
}

.sub_ul {
	width: 100%;
	margin: 0;
	padding: 0;
}

.sub_ul li a {
	font-size: 16px;
	color: #333;
	line-height: 40px;
}

.sub_ul li:hover a {
	color: #AE2723;
}

.sub_ul li {
	display: inline-block;
	width: 100%;
}

.sub_menu_single .sub_m_nav {
	width: 100%;
}

.sub_menu_single .sub_ul {
	width: 100%;
	display: flex;
	justify-content: left;

	flex-wrap: wrap;
	align-items: center;
}

.sub_menu_single .sub_ul li {
	display: inline-block;
	width: auto;
	margin-right: 40px;
}

/*公告标题*/
.head_template {
	width: 100%;
	padding-top: 78px;
	text-align: center;
	font-size: 36px;
	color: #E82C2C;
	line-height: 38px;
	position: relative;
}

.head_template::after {
	content: '';
	width: 40px;
	height: 3px;
	background: #E82C2C;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	bottom: -20px;
}


/*右侧悬停*/

.right_ti {
	width: 90px;
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 99;
	transform: translate(0, -50%);
}

.right_ti ul .right_ti li {
	width: 100%;
}

.right_ti li {
	background: rgba(2, 98, 255, .8);
	opacity: 1;
	border-bottom: 1px solid white;
	/* line-height: 80px;
    height: 80px; */
}

.right_ti li a {
	font-size: 13px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	/* line-height: 32px; */
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	/* height: 80px; */
	padding: 16px;
}

.back_to {
	background-color: rgba(254, 204, 20, .8) !important;
	border: none !important;
}

.right_ti_ul img {
	max-width: 30px;
	margin-bottom: 8px;
}



/*footer*/

.footer {
	width: 100%;
	background: #242424;

}

.f_head {
	width: 100%;
	padding: 78px 0;
}

.f_head h5 {
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	color: #fff;
	letter-spacing: 1px;
}

.f_head p {
	text-align: center;
	font-size: 14px;
	line-height: 36px;
	margin-top: 22px;
	color: #fff;
	letter-spacing: 1px;
}

.f_lx {
	overflow: hidden;
	width: 100%;

}

.f_lx_left {
	float: left;
	width: 370px;
	padding-right: 10px;
}

.lx_left_item {
	width: 100%;
	display: flex;
	justify-content: left;
	align-items: center;
	margin-bottom: 30px;
}

.lx_left_item:last-child {
	margin-bottom: 0;
}

.lx_left_item img {
	display: inline-block;
	width: 30px;
	height: auto;
}

.lx_left_item div {
	width: calc(100% - 30px);
	padding-left: 24px;
}

.lx_left_item p {
	font-size: 14px;
	color: #999999;
	line-height: 20px;
}

.lx_left_item h5 {
	font-size: 28px;
	font-family: SimSun;
	font-weight: bold;
	letter-spacing: 1px;
	color: #fff;
	line-height: 28px;
	margin-bottom: 8px;
}

.lx_right {
	float: right;
	width: calc(98% - 370px);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.lx_r_02 {
	width: 61.2%;
}

.lx_r_01 {
	width: 36.8%;
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: flex-start;
}

.lx_r_01 input {
	width: 100%;
	border-radius: 0;
	border: none;
	outline: none;
	height: 50px;
	padding: 0 20px;
	font-size: 14px;
	color: #fff;
	background: #2f2f2f;
	margin-bottom: 18px;
}

.lx_r_01 a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	width: 142px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	background: #058ef7;
}

.lx_r_02 textarea {
	width: 100%;
	border-radius: 0;
	border: none;
	outline: none;
	height: 118px;
	resize: none;
	padding: 20px;
	font-size: 14px;
	color: #fff;
	background: #2f2f2f;
}


.lx_right ::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #999;
}

.lx_right ::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #999;
}

.lx_right :-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #999;

}

.f_link {
	width: 100%;
	padding: 48px 0 20px 0;
	display: flex;
	justify-content: left;
	align-items: flex-start;
	flex-wrap: wrap;
}

.f_link a {
	font-size: 14px;
	color: #999999;
	line-height: 36px;
	margin-right: 60px;
	text-decoration: none;
}

.f_link a:hover {
	color: #fff;
}


.f_bottom {
	width: 100%;
	text-align: center;
	font-size: 14px;
	color: #555;
	line-height: 48px;
	text-align: center;
	background: #000;
}











/*滚动条样式*/
/*滚动条样式*/
::-webkit-scrollbar {
	width: 0px;
	/*height: 4px;*/
}

::-webkit-scrollbar-thumb {
	border-radius: 0px;
	-webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
	background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
	border-radius: 0;
	background: rgba(0, 0, 0, 0);

}


.itOther_p {
	position: relative;
}

.it_other {
	width: 100%;
	height: 100px;
	opacity: 0;
	position: absolute;
	top: -100px;
	left: 0;
	z-index: -2;
}

.open_page {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 100;
	background: #058ef7;

}

.open_page.open_show {
	animation: bj_motion 1s ease-in-out 0s 1 alternate forwards;
}

.open_page.open_show .logo_box {
	opacity: 1;
	animation: op_motion 1s ease-in-out 0s 1 alternate forwards;
}

@keyframes op_motion {
	0% {
		opacity: 1;
		display: inline-block;
	}

	100% {
		opacity: 0;
		display: none;
	}
}

@keyframes bj_motion {
	0% {
		height: 100vh;
		
		
	}

	100% {
		height: 0;
		display: 0;
		z-index: -1;
		
	}
}

.logo_box {
	position: relative;
	width: 269px;
	height: 131px;
	display: inline-block;
}

.logo_motion {
	width: 269px;
	height: 131px;
	display: inline-block;
	/*background: url(../images/logo_w.png) no-repeat center center;*/
	background-size: 100% auto;
	opacity: .2;
	position: relative;
}

.logo_motion_lay {
	width: 0px;
	height: 131px;
	display: inline-block;
	/*animation: logo_motion 2s infinite cubic-bezier(0.18, 0.89, 0.32, 1.28);*/

	top: 0;
	position: absolute;
	left: 0;

	overflow: hidden;
}

.logo_motion_lay i {
	width: 269px;
	height: 131px;
	opacity: 1;
	display: block;
	background: url(../images/logo_w.png) no-repeat center center;
	background-size: 269px auto;

}

@keyframes logo_motion {
	0% {
		width: 0;
	}

	100% {
		width: 269px;
	}
}

.overH {
	overflow: hidden;
}

.default_page {
	width: 100%;
	opacity: 0;
}

.default_page.show_div {
	opacity: 1;
}

.close_page {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	background: rgba(255, 255, 255, .2);
	height: 30px;
	line-height: 30px;
	border-radius: 15px;
	padding: 0 15px;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 5;
	cursor: pointer;
}

.close_page:hover {
	background: rgba(255, 255, 255, .4);

}