@charset "utf-8";

.block_pc {
	display: inline-block;
	width: 100%;
}

.block_sj {
	display: none;
	width: 100%;
}

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;
	padding-top: 120px;
	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: 120px;
	box-sizing: border-box;
	background: #fff;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .05);
}










.nav_pc {
	display: inline-block;
}

.nav_mobile {
	display: none;
}

.safe_width {
	max-width: 1460px;
	width: 100%;
	padding: 0 30px;
	margin: 0 auto;
}

.menu_nav {
	height: 120px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;

	padding: 0 30px;
	width: 100%;
	max-width: 1860px;
	margin: 0 auto;
}

.nav_logo {
	display: inline-block;
}


.nav_logo img {
	width: auto;
	height: auto;
}

.logo_w {
	display: inline-block;
}



.menu_main {
	width: auto;
	margin: 0;
	height: 120px;
	padding: 0;
	display: flex;
	justify-content: left;
	align-items: center;
}




.menu_main li.main_li {
	margin: 0 0px;
	padding: 0 22px;
	box-sizing: border-box;
	line-height: 120px;
	position: relative;
}

.menu_main li.main_li:last-child {
	padding-right: 0;
}

.menu_main li.li_phone img {
	margin-left: 60px;
}

.menu_main li.main_li .main_a {
	font-size: 18px;
	color: #000;
	display: inline-block;
	height: 120px;
	letter-spacing: 1px;
	line-height: 120px;
	position: relative;
	transition: all 0.5s ease-in-out;

}

.menu_main li.main_li .main_a::after {
	content: "";
	height: 3px;
	background: #005CA1;
	position: absolute;
	left: 50%;
	width: 0;
	bottom: 0px;

	transition: all 0.5s ease-in-out;
}


.menu_main li.main_li .main_a:focus {
	text-decoration: none;
}

.menu_main li.main_li.active .main_a {
	color: #005CA1;
}


.menu_main li.main_li.active .main_a::after {
	width: 100%;
	margin-left: -50%;
}




.menu_main li.main_li:hover .main_a {
	color: #005CA1;

}

/* .menu_main li.main_li:hover .main_a::after {
	width: 100%;
	margin-left: -50%;
} */

.sub_menu {
	width: 100%;
	background: #f8f8f8;
	position: fixed;
	left: 0;
	border-top: 1px solid #DEE0E3;
	top: 120px;
	-webkit-transition: all 0.4s ease-in-out 0.1s;
	/* transform: scale(1.06); */
	transition: all 0.4s ease-in-out 0.1s;

	display: inline-block;
	height: 0;
	overflow: hidden;





}

.main_li:hover .sub_menu {

	-webkit-transition: all 0.4s ease-in-out 0.1s;

	height: auto;
	overflow: visible;
	transition: all 0.4s ease-in-out 0.1s;
}




.sub_main {
	width: 100%;
	max-width: 1560px;
	padding: 40px 30px 46px 30px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;


}




.sub_item {
	display: flex;
	justify-content: left;
	align-items: flex-start;
	flex-direction: column;
}

.sub_head {
	font-size: 18px;
	color: #005DA3;
	font-weight: bold;
	line-height: 20px;
	margin-bottom: 8px;
}

.sub_p {
	display: flex;
	justify-content: left;
	align-items: flex-start;
	flex-direction: column;
}

.sub_a_link {
	line-height: 40px;
	text-align: left;
	font-size: 14px;
	color: #666666;
}

.sub_a_link:hover {
	color: #005DA3;
}

.sub_main_news {
	overflow: hidden;
	display: inline-block;
}

.sub_news_item {
	float: right;
	margin-left: 50px;
	display: flex;
	justify-content: left;
	align-items: flex-start;
	flex-direction: column;
}

.sub_news_item h5 {
	font-size: 18px;
	color: #666666;
	line-height: 20px;
	margin-bottom: 12px;
}

.sub_n_img {
	width: 230px;
	height: 140px;
	overflow: hidden;
}

.sub_n_img img {
	width: 100%;
	height: 100%;
	display: inline-block;
	-webkit-transition: all 0.4s ease-in-out 0.1s;
	/* transform: scale(1.06); */
	transition: all 0.4s ease-in-out 0.1s;
}

.sub_news_item:hover h5 {
	color: #005DA3
}

.sub_news_item:hover .sub_n_img img {
	-webkit-transition: all 0.4s ease-in-out 0.1s;
	transform: scale(1.06);
	transition: all 0.4s ease-in-out 0.1s;
}





/*公告标题*/
.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;
}


/*footer*/
.footer {
	width: 100%;
	background: #002d4e;
	padding: 60px 0px 0px 0px;
}

.f_b_box {
	width: 100%;
	max-width: 1460px;
	padding: 0 30px;
	margin: 0 auto;

}

.footer-con {
	width: 100%;
	max-width: 1460px;
	padding: 0 30px 66px 30px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-left {
	width: 300px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: last baseline;
}

.bottom-logo img {
	display: inline-block;
	width: auto;
	height: auto;
}

.b_gs_info {
	width: 100%;
	margin-top: 40px;
}

.gs_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 13px 0;
}

.gs_item img {

	width: 24px;
	height: auto;
	display: inline-block;

}

.gs_item text {
	display: inline-block;
	width: calc(100% - 40px);
	font-size: 14px;
	text-align: left;
	color: #fff;
	line-height: 24px;
}

.gs_item text a {
	color: #fff !important;
	text-decoration: none;
	cursor:unset;
}


.footer-right {
	width: 22%;
	display: flex;

	align-items: flex-start;
	justify-content: space-between
}

.f_r_item {
	width: 39%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}

.footer-right .b-ewm-img {
	display: inline-block;
	width: 100%;
	height: auto;
	margin-bottom: 6px;
}

.b-sm-text {
	width: 100%;
	text-align: center;
	line-height: 24px;
	font-size: 14px;
	color: #fff;
}

.b-sm-text-m {
	display: none;
}



.footer-center {
	display: flex;
	width: calc(78% - 300px);
	justify-content: space-around;
	align-items: flex-start;
	padding: 0 40px;


}

.link-item h5 {
	margin: 0;
	font-size: 18px;
	padding: 0;
	color: #fff;
}

.link-item ul {
	width: 100%;
	list-style: none;
	margin: 30px 0 0 0;
	padding: 0;
}

.link-item ul li {
	text-align: left;
}

.link-item ul li a {
	font-size: 14px;
	color: #A2A2A2;
	text-decoration: none;
	line-height: 30px;
}

.link-item ul li a:hover {
	color: #fff;
}

.footer-bottom {
	letter-spacing: 1px;
	width: 100%;
	padding: 28px 0;
	box-sizing: border-box;
	text-align: center;
	line-height: 28px;
	font-size: 14px;
	color: #626262;
}

.footer-bottom a {
	color: #626262;
	display: inline-block;
}

.footer-bottom-pc {
	display: flex;
	border-top: 1px solid #6F6F6F;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.footer-bottom-m {
	display: none;
}


/*右侧悬停*/

.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;
}


@media screen and (max-width:1660px) {}

@media screen and (max-width:1650px) {}

@media screen and (max-width:1440px) {





















	.menu_main li.main_li {
		/* padding: 0 18px; */
	}



}

@media screen and (max-width:1366px) {

	/* .head_nav {
		padding: 0 14px 0 44px;
	} */

	.menu_main li.main_li {
		/* padding: 0 14px; */
	}

	.menu_main li.main_li .main_a {
		font-size: 16px;
	}

	.menu_main li.li_phone img {
		margin-left: 30px;
	}
}

@media screen and (max-width:1280px) {


	.menu_main li.main_li {
		padding: 0 14px;
	}

	.menu_main li.main_li .main_a {
		/* font-size: 14px; */
	}


	.menu_nav {
		padding: 0 15px;
	}

	.nav_logo img {

		/* width: 380px; */
	}

	.menu_main li.li_phone img {
		margin-left: 20px;
	}


}

@media screen and (max-width:1024px) {
	body {
		padding-top: 100px
	}

	.right_ti {
		display: none;
	}

	.safe_width {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
	}

	body {

		min-width: unset;
		width: 100%;
		/* background: #f6f6f6; */
	}


	/*手机端top nav*/
	.nav_pc {
		display: none;
	}

	.nav_mobile {
		display: inline-block;
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 5;
		background: rgba(255, 255, 255, 1);
		box-shadow: 0 6px 12px rgba(0, 0, 0, .05);

	}


	.nav_m_con {
		width: 100%;
		height: 100px;

		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
	}

	.nav_m_con a {
		width: 260px;
		height: 100px;
		display: inline-block;
		background: url(../images/logo_pc_b.png) no-repeat left center;
		-webkit-background-size: 199px auto;
		background-size: 199px auto;
	}



	.nav_m_con a img {
		display: none;

	}

	.m_r_show {
		display: inline-block;
		width: 60px;
		height: 60px;
	}

	.m_r_show img {

		width: 100%;
		height: 100%;
	}




	.m_menu_box {
		display: block;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		right: -100%;
		background: rgba(0, 0, 0, .6);
		z-index: 10;
		transition: all .5s;
		-webkit-transition: all .5s;
		-moz-transition: all .5s;
		-o-transition: all .5s;
		opacity: 0;
		visibility: hidden;
		overflow: auto;
		padding-top: 100px;
	}

	.menu_head {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		height: 100px;
		line-height: 100px;
		box-sizing: border-box;
		background: #fff;
		z-index: 5;
	}

	.close_nav {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.close_nav img {
		display: inline-block;
		width: 32px;
		height: 32px;
	}

	.menu_head a {
		width: 260px;
		height: 100px;
		display: inline-block;
		background: url(../images/logo_pc_b.png) no-repeat left center;
		-webkit-background-size: 199px auto;
		background-size: 199px auto;
	}

	.menu_head a img {
		display: none;

	}

	.m_nav_box {
		width: 100%;
		padding-left: 33%;
		box-sizing: border-box;
		height: 100%;
		position: relative;
	}

	.hide_m_nav {
		width: 33%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: rgba(0, 0, 0, 0);
	}

	.m_nav_ul {
		width: 100%;
		margin: 0;
		padding: 0;
		height: 100%;
		list-style: none;
		background: #fff;
		overflow: auto;
	}

	.m_nav_ul li {
		display: inline-block;
		width: 100%;
		line-height: 50px;
		padding: 0 20px;
		border-bottom: 1px solid #ececec;
	}

	.m_nav_ul li.active a {
		color: #305dc3;
	}

	.m_nav_ul li a {
		display: inline-block;
		width: 100%;
		line-height: 50px;
		font-size: 14px;
		color: #333;
	}

	.m_nav_ul li.m_nav_ul_p {
		padding: 0;
	}

	.m_nav_ul li.m_nav_ul_p .parent_a {
		padding: 0 20px;
	}

	.m_nav_ul_p .parent_a {
		position: relative;
	}

	.m_nav_ul_p.show_nav .m_nav_div {
		display: inline-block;
	}

	.m_nav_ul_p .parent_a::after {
		content: '';
		width: 12px;
		height: 12px;
		background: url(../images/nav_arrow.png) no-repeat;
		background-size: 100% auto;
		background-position: center center;
		position: absolute;
		right: 20px;
		top: 50%;
		margin-top: -6px;
	}

	.m_nav_ul_p.show_nav .parent_a::after {
		content: '';
		width: 12px;
		height: 12px;
		background: url(../images/nav_arrow_b.png) no-repeat;
		background-size: 100% auto;
		background-position: center center;
		position: absolute;
		right: 20px;
		top: 50%;
		margin-top: -6px;
	}


	.m_nav_div {

		width: 100%;
		display: none;
		padding: 0 20px;
		background: #F7F7F7;
	}

	.m_nav_div div a {
		line-height: 50px;
		color: #666;
		font-size: 13px;
		border-top: 1px solid #ececec;
	}

	.m_nav_div div:nth-child(1) a {
		border: none;
	}

	.jump_sub_m a {
		position: relative;
	}

	.jump_sub_m a::after {
		content: '';
		width: 12px;
		height: 12px;
		background: url(../images/nav_arrow.png) no-repeat;
		background-size: 100% auto;
		background-position: center center;
		position: absolute;
		right: 20px;
		top: 50%;
		margin-top: -6px;

	}

	.m_nav_sub {
		display: none;
	}

	.m_r_show_right {
		display: flex;
		justify-content: right;
		align-items: center;

	}









	/*手机端 footer*/
	.footer-bottom-pc {
		display: none;
	}

	.footer-bottom-m {
		display: inline-block;
	}

	.footer-bottom-m a {
		color: rgba(255, 255, 255, .6);
		display: inline-block;
	}

	.footer {
		width: 100%;
		padding: 60px 30px 10px 30px;
	}

	.footer-con {
		width: 100%;
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;

		padding: 0 0 20px 0;
	}

	.footer-center {
		width: calc(100% - 300px);
		padding: 0 0 0 40px;
	}

	.link-item h5 {
		font-size: 16px;
	}

	.link-item h5 {
		margin-top: 20px;
	}

	.footer-right {
		padding-top: 10px;
		width: 100%;
		display: flex;
		justify-content: left;
		align-items: flex-start;
	}

	.f_r_item {
		width: 116px;
		margin-right: 20px;
	}

	.b-ewm-img {
		width: 100%;
		height: auto;
	}

	.b_gs_info {
		margin-top: 40px;
	}

	.b-sm-text {
		display: none;
	}

	.b-sm-text-m {
		width: 100%;
		text-align: center;
		line-height: 24px;
		font-size: 14px;
		color: #fff;
		display: inline-block;
	}



	.footer-left {
		width: 300px;
		display: flex;
		flex-direction: column;

	}

	.bottom-logo {
		width: auto;
	}





	.footer-bottom {
		font-size: 14px;
		line-height: 26px;
		padding: 10px 14px;
		border-top: 1px solid rgba(255, 255, 255, .2);
		color: rgba(255, 255, 255, .6);

	}



	.b_gs_info {
		margin-top: 20px;
	}

	.gs_item {
		padding: 8px 0;
	}


	.f_b_box {
		width: 100%;
		padding: 0;
	}

	.Float_windows {
		display: none;
	}


}





@media screen and (max-width:767px) {
	.safe_width {
		width: 100%;
		max-width: 100%;
		padding: 0 0.65rem;
	}

	.block_pc {
		display: none;
	}

	.block_sj {
		display: inline-block;
	}

	body {
		padding-top: 2.35rem;
	}




	.nav_m_con {

		height: 2.35rem;
		padding: 0 0.6rem;
	}


	.nav_m_con a {
		width: 5.5rem;
		height: 2.35rem;
		display: inline-block;
		background: url(../images/logo_mobile_b.png) no-repeat center center;

		-webkit-background-size: 4.4rem auto;
		background-size: 4.4rem auto;
	}



	.m_r_show {
		display: inline-block;
		width: 1.3rem;
		height: 1.3rem;
	}




	.m_menu_box {

		padding-top: 2.35rem;
	}

	.menu_head {

		padding: 0 0.6rem;
		height: 2.35rem;
		line-height: 2.35rem;

	}



	.close_nav img {
		width: 0.9rem;
		height: 0.9rem;
	}

	.menu_head a {

		background: url(../images/logo_mobile_b.png) no-repeat center center;
		width: 5.5rem;
		height: 2.35rem;
		display: inline-block;

		-webkit-background-size: 4.4rem auto;
		background-size: 4.4rem auto;
	}





	.m_nav_ul li {
		line-height: 2.1rem;
		padding: 0 0.8rem;
	}



	.m_nav_ul li a {

		line-height: 2.1rem;
		font-size: 0.6rem;
	}


	.m_nav_ul li.m_nav_ul_p .parent_a {
		padding: 0 0.8rem;
	}



	.m_nav_ul_p .parent_a::after {
		content: '';
		width: 0.6rem;
		height: 0.6rem;
		background: url(../images/nav_arrow.png) no-repeat;
		background-size: 100% auto;
		background-position: center center;
		position: absolute;
		right: 0.8rem;
		top: 50%;
		margin-top: -0.325rem;
	}

	.m_nav_ul_p.show_nav .parent_a::after {
		content: '';
		width: 0.6rem;
		height: 0.6rem;
		background: url(../images/nav_arrow_b.png) no-repeat;
		background-size: 100% auto;
		background-position: center center;
		position: absolute;
		right: 0.8rem;
		top: 50%;
		margin-top: -0.325rem;
	}


	.m_nav_div {

		width: 100%;
		display: none;
		padding: 0 0.8rem;
		background: #F7F7F7;
	}

	.m_nav_div div a {
		line-height: 2.1rem;
		color: #666;
		font-size: 0.6rem;

	}



	.jump_sub_m a::after {
		content: '';
		width: 0.6rem;
		height: 0.6rem;
		background: url(../images/nav_arrow.png) no-repeat;
		background-size: 100% auto;
		background-position: center center;
		position: absolute;
		right: 0.8rem;
		top: 50%;
		margin-top: -0.325rem;

	}





	.m_r_show_right {
		display: flex;
		justify-content: right;
		align-items: center;

	}

	.m_search {
		margin-right: 1rem;
	}

	.m_search input {
		width: 5.2rem;
		display: none;
		border: none;
		border-bottom: 0.025rem solid #333;
		outline: none;
		line-height: 1.25rem;
		padding-left: 1.25rem;
		background: url(../images/search_m.png) no-repeat 0.1rem center;
		background-size: 0.7rem auto;
		font-size: 0.6rem;
		color: #333;
	}

	.m_search.m_s_show input {
		display: inline-block;
	}

	.m_search.m_s_show img {
		display: none;
	}

	.m_search img {
		display: inline-block;
		width: 0.8rem;
		height: 0.8rem;
	}






	/*手机端 footer*/
	.footer-bottom-pc {
		display: none;
	}

	.footer-bottom-m {
		display: inline-block;
	}

	.footer-bottom-m a {
		color: rgba(255, 255, 255, .6);
		display: inline-block;
	}

	.footer {
		width: 100%;
		padding: 1.25rem 0.6rem 0 0.6rem;

	}

	.footer-con {
		width: 100%;
		padding: 0 0 1.3rem 0;
	}

	.footer-center {
		display: none;
	}



	.footer-right {
		display: flex;
		justify-content: space-around;
		padding-top: 0.85rem;

	}

	.f_r_item {
		width: 4.25rem;
	}

	.f_r_item img {
		width: 100%;
		height: auto;
		margin-bottom: 0.3rem;
	}

	.b-sm-text-m {
		width: 100%;
		font-size: 0.5rem;
		line-height: 0.85rem;
	}



	.bottom-logo {
		display: none;

	}



	.b_gs_info {
		margin-top: 0;
	}

	.gs_item {
		padding: 0.4rem 0;
	}

	.gs_item img {
		width: 0.8rem;

		line-height: 0.8rem;
	}

	.gs_item text {
		width: calc(100% - 1.1rem);
		font-size: 0.55rem;
		line-height: 0.8rem;
	}




	.footer-bottom {
		letter-spacing: normal;
		font-size: 0.55rem;
		line-height: 0.85rem;
		padding: 0.85rem 0rem 0.85rem 0rem;
		border-top: 0.025rem solid rgba(255, 255, 255, .2);
	}

	.f_b_box {
		width: 100%;
		padding: 0;
	}


	/*新加底部联系方式*/
	.footer_lx {
		width: 100%;
		padding: 1.9rem 0 1.5rem 0;
		flex-direction: column;

	}

	.f_lx_item {
		width: 100%;
		max-width: 100%;

		padding-right: 0;
	}

	.f_lx_item:last-child {
		padding-right: 0;
		margin-top: 0.75rem;
	}

	.f_lx_item h5 {
		font-size: 0.95rem;

		height: unset;
		line-height: 1.1rem;
		margin-bottom: 0.7rem;
	}

	.f_lx_item h6 {
		font-size: 0.7rem;
		line-height: 1rem;
		min-height: unset;
	}

	.f_lx_item div {
		margin-top: 0.35rem;
	}

	.f_lx_item div p {
		font-size: 0.55rem;
		line-height: 0.95rem;
	}



}


@media screen and (max-width:320px) {}


/*浮窗*/
.Float_windows {
	position: fixed;
	right: 0;
	top: 50%;
	margin-top: -120px;
	z-index: 6;
}

.Float_windows ul {
	margin: 0;
	padding: 0;
	display: inline-block;
	width: 80px;
}

.Float_windows ul li {
	display: inline-block;
	width: 80px;
	height: 80px;
	margin-bottom: 1px;
	position: relative;
	-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;
}

.Float_windows ul li:last-child {
	border: none;
}

.Float_windows ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-direction: column;
	height: 100%;
	font-size: 14px;
	color: #999;
	background: #fff;
	border: 1px solid #ECECEC;
}

.Float_windows ul li a span {
	display: inline-block;
	width: 34px;
	height: 34px;
	background: url(../images/fc_dh.png) no-repeat;
	background-size: 68px auto;

	background-position: 0 0;
	margin-bottom: 6px;
}

.Float_windows ul li a .icon_01 {

	background-position: 0px 0px;
}

.Float_windows ul li a .icon_02 {

	background-position: 0px -34px;
}

.Float_windows ul li a .icon_03 {

	background-position: 0px -68px;
}

.Float_windows ul li a .icon_04 {

	background-position: 0px -102px;
}

.Float_windows ul li a .icon_05 {

	background-position: 0px -136px;
}


.Float_windows ul li:hover a .icon_01 {

	background-position: -34px 0px;
}

.Float_windows ul li:hover a .icon_02 {

	background-position: -34px -34px;
}

.Float_windows ul li:hover a .icon_03 {

	background-position: -34px -68px;
}

.Float_windows ul li:hover a .icon_04 {

	background-position: -34px -102px;
}

.Float_windows ul li:hover a .icon_05 {

	background-position: -34px -136px;
}






.Float_windows ul li:hover a,
.Float_windows ul li:focus a {
	text-decoration: none;
	color: #305dc3;
}

.phone_box {
	display: none;
	height: 80px;
	width: 280px;
	background: #fff;
	opacity: 0;
	position: absolute;
	right: -280px;
	top: 0;
	text-align: center;
	box-shadow: 0 8px 24px rgba(74, 74, 74, .15);
	-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;

}

.Float_windows ul li:hover .phone_box {
	display: inline-block;
	right: 81px;
	opacity: 1;
}

.phone_box text {
	font-size: 20px;
	font-weight: bold;
	background: #333;
	-webkit-background-clip: text;
	color: transparent;
	line-height: 80px;
}

.phone_box.ewm_right {
	width: auto;
	padding: 10px;
	height: auto;
}

.phone_box.ewm_right text {
	width: 100%;
	line-height: 20px;
	font-size: 13px;
	font-weight: normal;
	text-align: center;
}

#myBtn {
	display: none;
}




.bigPic-show {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2000;
	width: 100%;
	height: 100%;
	display: none;
}

.bigPic-show div {
	position: absolute;
}




/*滚动条样式*/
/*滚动条样式*/
::-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);

}