@charset "utf-8";

@font-face {
	font-family: Im;
	src: url('../fonts/impact.ttf');
}

.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: 116px;
	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: 25;
	height: 116px;
	box-sizing: border-box;
	background: #ffb300;
}










.nav_pc {
	display: inline-block;
}

.nav_mobile {
	display: none;
}

.safe_width {
	max-width: 1660px;
	width: 100%;
	padding: 0 30px;
	margin: 0 auto;
}

.safe_width_1 {
	max-width: 1730px;
	width: 100%;
	padding: 0 30px;
	margin: 0 auto;
}

.safe_width_2 {
	max-width: 1310px;
	width: 100%;
	padding: 0 30px;
	margin: 0 auto;
}

.menu_nav {
	height: 116px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;

	padding: 0 30px;
	width: 100%;
	max-width: 1660px;
	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: 116px;
	padding: 0;
	display: flex;
	justify-content: left;
	align-items: center;
}




.menu_main li.main_li {
	margin: 0 0px;
	padding: 20px 20px 0 20px;
	box-sizing: border-box;
	line-height: 96px;
	position: relative;

}

.menu_main li.main_li::after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 16px;
	border-right: 1px dashed #2b2b2b;
	position: absolute;
	top: 50%;
	margin-top: 3px;
	z-index: 5;
	left: 0;

}

.menu_main li.main_li:last-child {
	padding-right: 0;
}

.menu_main li.main_li:first-child::after {
	content: none;
}

.menu_main li.main_li .main_a {
	font-size: 18px;

	padding: 0 10px;
	text-align: center;
	color: #2b2b2b;
	display: inline-block;
	height: 96px;
	letter-spacing: 1px;
	line-height: 96px;
	position: relative;
	transition: all 0.5s ease-in-out;

}

.menu_main li.main_li .main_a::after {
	content: "";
	height: 4px;
	background: #2b2b2b;
	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::after {
	width: 100%;
	margin-left: -50%;
}




.menu_main li.main_li:hover .main_a {
	color: #2b2b2b;

}

.menu_main li.main_li:hover .main_a::after {
	width: 100%;
	margin-left: -50%;
}

.li_cut {
	padding-top: 20px;
	display: flex;
	justify-content: left;
	align-items: center;
	cursor: pointer;
}

.li_cut i {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url(../images/e_icon.png) no-repeat center center;
	background-size: 100% auto;
	margin-right: 8px;
}

.li_cut span {
	font-size: 13px;
	color: #151515;
}

.tb_sub {
	height: 0;
	overflow: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;

	margin: 0;

	z-index: 14;
	padding: 0;
	list-style: none;
	width: 100%;
	background: #fff;
	box-shadow: 0 6px 14px rgba(74, 74, 74, .15);
}

.menu_main li:hover .tb_sub {

	height: auto;
	padding: 10px 0 10px 0;
	top: 116px;
	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: #ffb300;
	font-weight: bold;

}

.menu_main li.main_li .tb_sub div a,
.menu_main li.main_li .tb_sub div {
	line-height: 24px;
}

.tb_sub div a {
	display: inline-block;
	width: 100%;
	font-size: 14px;
	text-align: left;
	color: #000;
	line-height: 24px;
	padding: 10px 20px;
	text-align: center;
}

.tb_sub div a:hover,
.tb_sub div a.cur_a,
.tb_sub div a.cur_a:hover {
	color: #ffb300;
}

/*footer*/
.footer {
	width: 100%;


}

.footer_top {
	background: #292929;
}

.t_con {
	width: 100%;
	padding: 60px 0 70px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.t_con_l {
	width: 252px;


}

.t_con_l a {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
}

.t_con_l a img {
	display: inline-block;
	width: auto;
	max-width: 100%;
	height: auto;
}

.t_con_l a p {
	width: 100%;
	height: 34px;
	background: #ffb300;
	text-align: center;
	line-height: 34px;
	border-radius: 17px;
	margin-top: 16px;
	font-size: 20px;
	color: #2b2b2b;
}

.t_con_c {
	display: flex;

	justify-content: left;
	align-items: flex-start;
}

.label_span {
	display: inline-block;

	width: 100px;
	line-height: 30px;
	font-size: 20px;
	color: #fff;
}


.c_ewm {
	display: flex;
	justify-content: left;
	align-items: flex-start;
}

.c_ewm_item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.c_ewm_item img {
	display: inline-block;
	width: 126px;
	height: auto;
}

.c_ewm_item span {
	display: inline-block;
	width: 126px;
	text-align: center;
	font-size: 15px;
	color: #dadada;
	line-height: 32px;
}

.c_ewm_item:last-child {
	margin-left: 26px;
}

.t_con_r {
	width: 380px;
	display: flex;

	justify-content: left;
	align-items: flex-start;
}

.r_info {
	display: flex;
	justify-content: left;
	align-items: flex-start;
	flex-direction: column;
	width: calc(100% - 100px);
}

.r_info h5 a {
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	color: #ffb300;
	text-decoration: none;
}

.f_info_b {
	width: 100%;
	margin-top: 10px;
}

.f_info_b p {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 10px;
}

.f_info_b p img {
	display: inline-block;
	width: 20px;
	height: auto;
}

.f_info_b p span {
	display: flex;
	width: calc(100% - 50px);
	font-size: 16px;
	color: #fff;
	line-height: 20px;
}

.t_link {
	width: 100%;
	border-top: 1px solid #4C4C4C;
	padding: 50px 0 36px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.link_item {
	display: flex;
	justify-content: left;
	align-items: flex-start;
	flex-direction: column;
}

.link_item h5 {
	width: 100%;

}

.link_item h5 a {
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	line-height: 20px;
	letter-spacing: 0.5px;
}

.link_list {
	margin-top: 16px;
	width: 100%;
	display: flex;
	justify-content: left;
	align-items: flex-start;
	flex-direction: column;
}

.link_list div {
	margin-bottom: 4px;
}

.link_list div a {
	font-size: 16px;
	color: #fff;
	line-height: 28px;
	opacity: .5;

}

.link_list div a:hover {
	opacity: 1;
}

.footer_bottom {
	width: 100%;
	background: #191919;

	padding: 10px 0;

}

.footer_bottom .safe_width {
	text-align: center;
	line-height: 40px;
	font-size: 16px;
	color: #fff;
}

.footer_bottom .safe_width a {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width:1660px) {}

@media screen and (max-width:1650px) {}

@media screen and (max-width:1440px) {}

@media screen and (max-width:1366px) {



	.menu_main li.main_li .main_a {
		font-size: 16px;
	}


}

@media screen and (max-width:1280px) {


	.menu_main li.main_li {
		padding: 20px 10px 0 10px;
	}

	.menu_main li.main_li .main_a {
		font-size: 15px;
	}

	.menu_main li.main_li .main_a::after {
		height: 2px;
	}

	.nav_logo img {
		max-width: 210px;
	}

	.menu_nav {
		padding: 0 12px;
	}




}

@media screen and (max-width:1024px) {
	body {
		padding-top: 100px
	}

	.right_ti {
		display: none;
	}

	.safe_width {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
	}

	.safe_width_1 {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
	}

	.safe_width_2 {
		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: 25;
		background: #ffb300;

	}


	.nav_m_con {
		width: 100%;
		height: 110px;

		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 30px;
	}

	.nav_m_con a {
		width: 260px;
		height: 110px;
		display: inline-block;
		background: url(../images/logo_mobile_b.png) no-repeat left center;
		-webkit-background-size: 240px auto;
		background-size: 240px auto;
	}



	.nav_m_con a img {
		display: none;

	}

	.m_r_show {
		display: inline-block;
		width: 52px;
		height: 52px;
	}

	.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: 110px;
	}

	.menu_head {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 30px;
		height: 110px;
		line-height: 120px;
		box-sizing: border-box;
		background: #000;
		z-index: 5;
	}

	.close_nav {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.close_nav img {
		display: inline-block;
		width: 44px;
		height: 44px;
	}

	.menu_head a {
		width: 260px;
		height: 110px;
		display: inline-block;
		background: url(../images/logo_mobile_w.png) no-repeat left center;
		-webkit-background-size: 240px auto;
		background-size: 240px auto;
	}

	.menu_head a img {
		display: none;

	}

	.m_nav_box {
		width: 100%;

		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: #000;
		overflow: auto;
	}

	.m_nav_ul li {
		display: inline-block;
		width: 100%;
		line-height: 50px;
		padding: 0 40px;
		border-bottom: 1px solid #414141;
	}

	.m_nav_ul li:first-child {
		border-top: 1px solid #414141;
	}

	.m_nav_ul li.active a {
		color: #305dc3;
	}

	.m_nav_ul li a {
		display: inline-block;
		width: 100%;
		line-height: 70px;
		font-size: 16px;
		color: #b6b6b6;
	}

	.m_nav_ul li.m_nav_ul_p {
		padding: 0;
	}

	.m_nav_ul li.m_nav_ul_p .parent_a {
		padding: 0 40px;
	}

	.m_nav_ul_p .parent_a {
		position: relative;
	}

	.m_nav_ul_p.show_nav .parent_a {
		color: #ffaf31;
	}

	.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 40px;
		border-top: 1px solid #414141;

	}

	.m_nav_div div a {
		line-height: 50px;
		color: #b6b6b6;
		font-size: 13px;

	}

	.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*/




	.t_con {

		padding: 40px 0 40px 0;

	}

	.t_con_l {
		width: 26%;


	}





	.t_con_l a p {

		height: 30px;

		line-height: 30px;
		border-radius: 15px;
		margin-top: 16px;
		font-size: 16px;
	}

	.t_con_c {
		flex-direction: column;

		width: 30%;
	}

	.label_span {
		display: inline-block;

		width: 100%;
		line-height: 18px;
		font-size: 16px;
	}

	.c_ewm {
		justify-content: space-between;
		margin-top: 20px;
	}



	.c_ewm_item {
		width: 47.5%;
	}

	.c_ewm_item img {

		width: 100%;
		height: auto;

	}

	.c_ewm_item span {

		width: 100%;
		font-size: 13px;
		line-height: 32px;
	}

	.c_ewm_item:last-child {
		margin-left: 0;
	}

	.t_con_r {
		width: 30%;
		flex-direction: column;
	}

	.r_info {

		width: calc(100%);
	}

	.r_info h5 a {
		font-size: 26px;

		line-height: 28px;
		margin-top: 20px;
		display: inline-block;

	}

	.f_info_b {

		margin-top: 5px;
	}

	.f_info_b p {

		margin-top: 10px;
	}

	.f_info_b p img {

		width: 20px;

	}

	.f_info_b p span {

		width: calc(100% - 40px);
		font-size: 14px;

	}

	.t_link {

		padding: 30px 0 22px 0;

	}





	.link_item h5 a {
		font-size: 16px;

		line-height: 18px;
	}

	.link_list {
		margin-top: 12px;

	}

	.link_list div {}

	.link_list div a {
		font-size: 14px;

		line-height: 22px;


	}





	.footer_bottom .safe_width {

		font-size: 14px;

	}











}





@media screen and (max-width:767px) {
	.Float_windows {
		display: none;
	}

	.show_more {
		display: inline-block;
		width: 100%;
		line-height: 1.8rem;
		background: #eeeeee;
		font-size: 0.55rem;
		color: #333;
		text-align: center;
		margin-top: 1rem;
	}

	.safe_width {
		width: 100%;
		max-width: 100%;
		padding: 0 0.65rem;
	}

	.safe_width_1 {
		width: 100%;
		max-width: 100%;
		padding: 0 0.65rem;
	}

	.safe_width_2 {
		width: 100%;
		max-width: 100%;
		padding: 0 0.65rem;
	}


	.block_pc {
		display: none;
	}

	.block_sj {
		display: inline-block;
	}

	body {
		padding-top: 2.8rem;
	}




	.nav_m_con {

		height: 2.8rem;
		padding: 0 0.6rem;
	}


	.nav_m_con a {
		width: 6rem;
		height: 2.8rem;
		display: inline-block;
		background: url(../images/logo_mobile_b.png) no-repeat center center;

		-webkit-background-size: 6rem auto;
		background-size: 6rem auto;
	}



	.m_r_show {
		display: inline-block;
		width: 1.3rem;
		height: 1.3rem;
	}




	.m_menu_box {

		padding-top: 2.8rem;
	}

	.menu_head {

		padding: 0 0.6rem;
		height: 2.8rem;
		line-height: 2.8rem;

	}



	.close_nav img {
		width: 1.1rem;
		height: 1.1rem;
	}

	.menu_head a {

		background: url(../images/logo_mobile_w.png) no-repeat center center;
		width: 6rem;
		height: 2.8rem;
		display: inline-block;

		-webkit-background-size: 6rem auto;
		background-size: 6rem auto;
	}





	.m_nav_ul li {
		line-height: 2.2rem;
		padding: 0 1.75rem;
	}



	.m_nav_ul li a {

		line-height: 2.2rem;
		font-size: 0.65rem;
		color: #b6b6b6;
	}


	.m_nav_ul li.m_nav_ul_p .parent_a {
		padding: 0 1.75rem;
	}



	.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.65rem 2.8rem;

	}

	.m_nav_div div a {
		line-height: 1.6rem;
		color: #b6b6b6;
		font-size: 0.65rem;

	}



	.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*/




	.t_con {

		padding: 1.1rem 0 0.9rem 0;

	}

	.t_con_l {
		width: 6.2rem;


	}





	.t_con_l a p {

		height: 0.75rem;

		line-height: 0.75rem;
		border-radius: 0.4rem;
		margin-top: 0.5rem;
		font-size: 0.5rem;
	}

	.t_con_c {
		display: none;
	}

	.label_span {

		line-height: 0.6rem;
		font-size: 0.55rem;
	}





	.t_con_r {
		width: calc(100% - 7rem);
		padding-top: 0.4rem;

	}



	.r_info h5 a {
		font-size: 0.8rem;

		line-height: 0.85rem;
		margin-top: 0.5rem;

	}

	.f_info_b {

		margin-top: 0.3rem;
	}

	.f_info_b p {

		margin-top: 0.3rem;
	}

	.f_info_b p img {

		width: 0.5rem;
		margin-top: 0.15rem;

	}

	.f_info_b p span {

		width: calc(100% - 0.85rem);
		font-size: 0.5rem;
		line-height: 0.8rem;

	}

	.t_link {

		padding: 1.1rem 0.85rem 1rem 0.85rem;
		display: flex;
		justify-content: left;
		align-items: flex-start;
		flex-direction: column;
		width: 100%;

	}


	.link_item {
		width: 100%;
		display: inline-block;
	}

	.link_item:nth-child(1) h5::after {
		content: none;
	}

	.link_item h5 {
		padding-right: 4.25rem;
		position: relative;
		width: 100%;
	}

	.link_item h5 a {
		font-size: 0.6rem;

		line-height: 1.4rem;
		display: inline-block;
		width: 100%;


	}

	.link_item h5::after {
		content: '';
		width: 0.5rem;
		height: 0.5rem;
		background: url(../images/r_add.png) no-repeat center center;
		background-size: 100% auto;
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -0.25rem;

	}

	.link_show.link_item h5::after {

		background: url(../images/r_jian.png) no-repeat center center;
		background-size: 100% auto;
	}

	.link_list {
		margin-top: 0;
		display: none;

	}

	.link_show .link_list {
		padding: 0.4rem 0;
		display: inline-block;

	}

	.link_list div {
		width: 100%;

	}

	.link_list div a {
		padding-left: 0.6rem;
		display: inline-block;
		width: 100%;
		font-size: 0.55rem;
		line-height: 1.34rem;


	}





	.footer_bottom .safe_width {

		font-size: 0.5rem;
		line-height: 1rem;

	}












}


@media screen and (max-width:320px) {}





.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);

}



/*页码*/
.page_con {
	width: 100%;
	text-align: center;
	margin: 0px 0 40px 0;
}

.page_con nav ul {
	margin: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_con nav ul li {
	border-radius: 0;
}

.page_con nav ul li a {
	border: 1px solid #d2d2d2 !important;
	background: #fff;
	display: inline-block;
	text-align: center;
	color: #8f8e8e;
	font-size: 16px;
	width: 44px;
	line-height: 44px;
	padding: 0 !important;
	border-radius: 2px !important;
	margin: 0 3px;
}

.pagination>li:first-child>a,
.pagination>li:last-child>a {
	width: 110px;
}

.page_con nav ul li:hover a {
	color: #ffb300;
}

.page_con nav ul li.active a {
	color: #fff !important;

	background: #ffb300 !important;

}



/*浮窗*/
.Float_windows {
	position: fixed;
	right: 0px;
	
	bottom:40px;
	z-index: 100;
}

.Float_windows ul {
	margin: 0;
	padding: 0;
	display: inline-block;
	width: 90px;
	box-shadow: 0 10px 16px rgba(74, 74, 74, .15);
}

.Float_windows ul li {
	display: inline-block;
	width: 90px;
	height: 90px;
	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;
	border-top: 1px solid #fff;
}

.Float_windows ul li:first-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: 13px;
	color: #fff;
	background: rgba(2, 98, 255, .8);
	opacity: 1;

	position: relative;
}
.Float_windows ul li.fl_top{
	height: 80px;
}
.Float_windows ul li.fl_top a {
	background-color: rgba(255, 179, 0, .8) !important;
	border: none !important;
}

.Float_windows ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

}

.Float_windows ul li a img {
	display: inline-block;
	width: 38px;
	height: auto;
	 margin-bottom:6px;
}

.phone_box {
	display: none;
	height: 90px;
	width: 246px;
	background: #fff;
	opacity: 0;
	position: absolute;
	right: -246px;
	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; */

}

.phone_box::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 8px solid #fff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	position: absolute;
	top: 16px;
	right: -8px;
}

.Float_windows ul li:hover .phone_box {
	display: inline-block;
	right: 104px;
	opacity: 1;
	box-shadow: 0 10px 16px rgba(74, 74, 74, .15);
}

.phone_box text {
	font-size: 18px;
	font-weight: bold;
	background: #333;
	-webkit-background-clip: text;
	color: transparent;
	line-height: 90px;
}

.phone_box.ewm_right {
	width: 246px;

	height: 102px;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.ewm_left {
	display: flex;
	justify-content: left;
	align-items: flex-start;
	flex-direction: column;
}

.ewm_left h5 {
	display: flex;
	justify-content: left;
	align-items: center;
	font-size: 15px;
	color: #333333;
}

.ewm_left h5 img {
	display: inline-block;
	width: 28px;
	height: auto;
}

.ewm_left p {
	font-size: 13px;
	color: #666666;
	line-height: 14px;
	margin-top: 5px;
}



.ewm_right {
	display: inline-block;
	width: 70px;
	height: auto;
	margin-left: 12px;
}

#myBtn {
	display: none;
}