@charset "utf-8";
/* ====================公共样式========================= */


/* 头部 */
.Header-wrapper {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background-color: rgb(255, 255, 255);
	z-index: 99;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.Header-wrapper:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
	opacity: .3;
	transition: opacity .3s;
}

.Header-wrapper.on,
.Header-wrapper:hover {
	background-color: rgb(255, 255, 255);
	box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}

.Header-wrapper.on::after,
.Header-wrapper:hover::after {
	opacity: 0;
}

.Header-container {
	height: 100px;
}

.Header-container .logo {}

.Header-container .logo h1 {
	font-size: 0;

}

.Header-container .logo h1 a {
	font-size: 0;
}

.Header-container .logo h1 a img,
.Header-wrapper.on .logo h1 a img+img,
.Header-wrapper:hover .logo h1 a img+img {
	width: auto;
/*	height: 64px;*/
	display: block;
}

.Header-container .logo h1 a img+img,
.Header-wrapper.on .logo h1 a img,
.Header-wrapper:hover .logo h1 a img {
	display: none;
}


.Header-container .nav_item {
	/* margin-right: 0.2rem; */
}

.Header-container .nav_item>ul {}

.Header-container .nav_item>ul>li {
	float: left;
	position: relative;
	margin: 0 0.6rem 0 0;
}

.Header-container .nav_item>ul>li>a {
	display: inline-block;
	font-size: 18px;
	line-height: 100px;
	color: #000;
}

.Header-wrapper.on .Header-container .nav_item>ul>li>a,
.Header-wrapper:hover .Header-container .nav_item>ul>li>a {
	color: #221815;
}

.Header-container .nav_item>ul>li>a:hover,
.Header-container .nav_item>ul>li.active>a {
	color: #02448e !important;
}

/* 二级导航 */
.Header-container .nav_item .son {
	position: absolute;
	min-width: 240px;
	top: 100%;
	left: 50%;
	width: 100%;
	background-color: #fff;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	box-shadow: 0 5px 50px rgb(0 0 0 / 10%);
	display: none;
	transition: top .22s;
}

.Header-container .nav_item ul>li:hover>ul {
	pointer-events: all;
	-webkit-transform: translate(-50%);
	-ms-transform: translate(-50%);
	transform: translate(-50%);
}

.Header-container .nav_item .son .sub a {
	display: block;
	color: #000;
	font-size: 0.16rem;
	padding: 15px;
	text-align: center;
	transition: all .3s;
	position: relative;
}

.Header-container .nav_item .son .sub a:hover {
	color: #fff;
	background-color: #02448e;
}

.Header-container .tool .t_phone {
	display: flex;
	justify-content: center;
	align-items: center;
}

.Header-container .tool .t_phone .ico {
	width: 0.42rem;
	height: 0.42rem;
	margin-right: 0.1rem;
}

.Header-container .tool .t_phone .ico img {}

.Header-container .tool .t_phone .info {
	line-height: 1.1;
}

.Header-container .tool .t_phone .info p {
	font-size: 14px;
	color: #6c6c6c;
	margin-bottom: 0.04rem;
}

.Header-container .tool .t_phone .info span {
	font-size: 0.24rem;
	font-weight: 700;
	color: #1a4b96;
}

.Header-container .nav_item .son .fr .img {
	margin-top: 15px;
	max-width: 400px;
}

.Header-container .nav_item .son .fr .img img {}


.Header-container .tool {
	color: #000;
}

.Header-wrapper.on .Header-container .tool,
.Header-wrapper:hover .Header-container .tool {
	color: #333;
}

.Header-container .tool .search {}

.Header-container .tool .search i {
	position: relative;
	font-size: 0.24rem;
	padding-right: 0.18rem;
	margin-right: 0.2rem;
	cursor: pointer;
}

.Header-container .tool .search i::after {
	position: absolute;
	content: '';
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background-color: rgb(0, 0, 0, .3);
}

.Header-wrapper.on .Header-container .tool .search i::after,
.Header-wrapper:hover .Header-container .tool .search i::after {
	background-color: rgb(0, 0, 0, .3);
}

.Header-container .tool .language {
	position: relative;
}

.Header-container .tool .language a {}

.Header-container .tool .language i {
	font-size: 24px;
}

.Header-container .tool .language p {
	font-size: 14px;
	margin-left: 0.08rem;
	display: inline-block;
}

.Header-container .tool .language p::after {
	display: inline-block;
	margin-left: 5px;
	content: "\f0d7";
	font-size: 12px;
	font-family: 'fontawesome';
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	/* -webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform: rotate(180deg); */
}

.Header-container .tool .language.on p::after {
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}

.Header-container .tool .language .language_down {
	display: none;
	position: absolute;
	z-index: 2;
	left: 5px;
	top: calc(100% + 14px);
	width: 100%;
	height: auto;
	background: rgba(0, 0, 0, .8);
	text-align: left;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

.Header-container .tool .language .language_down a {
	display: block;
	font-size: 14px;
	padding: 10px 15px;
	color: rgba(255, 255, 255, .8);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	/* letter-spacing: 0.5px; */
	text-align: center;
}

.Header-container .tool .language .language_down a:hover {
	background-color: #02448e;
}

/* 产品下拉 */
.Header-container .nav_item ul li .drop_pro {
	position: fixed;
	top: 100px;
	left: 0;
	width: 100vw;
	background: #fff;
	padding: 0.55rem 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	/* box-shadow: 0 0 10px rgb(0 0 0 / 10%); */
	border-top: 1px solid #E5E5E5;
}

.Header-container .nav_item ul li:hover .drop_pro {
	opacity: 1;
	visibility: visible;
}

.Header-container .nav_item ul li .drop_pro .w16 {
	padding: 0 10%;
}

.Header-container .nav_item ul li .drop_pro .fl {
	width: 70%;
	padding-right: 0.3rem;
}

.Header-container .nav_item ul li .drop_pro .fl dl {
	float: left;
	/* width: calc(100% / 3); */
	width: 50%;
	margin: 0.12rem 0;
}

.Header-container .nav_item ul li .drop_pro .fl dl a {
	font-size: 16px;
	letter-spacing: 1px;
	/*font-family: "OBS";*/
	font-weight: 700;
	line-height: 24px;
	text-transform: capitalize;
	color: #242424;
}

.Header-container .nav_item ul li .drop_pro .fl dl a:hover {
	/* color: rgba(255,255,255,0.95); */
	-webkit-transform: translateX(8px);
	-ms-transform: translateX(8px);
	transform: translateX(8px);
	color: #02448e;
}

.Header-container .nav_item ul li .drop_pro .fl dl dt {}

.Header-container .nav_item ul li .drop_pro .fl dl dt a {
	height: 48px;
}

.Header-container .nav_item ul li .drop_pro .fl dl dd {}

.Header-container .nav_item ul li .drop_pro .fl dl dd a {}

.Header-container .nav_item ul li .drop_pro .fr {
	width: 30%;
}

.Header-container .nav_item ul li .drop_pro .fr .pic {
	/* background-color: white; */
}

.Header-container .nav_item ul li .drop_pro .fr .pic img {
	/* width: 100%; */
	height: 100%;
	object-fit: contain;
}

/*顶部导航开关*/
.c-switch {
	display: none;
	width: 24px;
	height: 20px;
	cursor: pointer;
}

@media (max-width: 991px) {
	.c-switch {
		display: block;
	}

	.Header-container .tool .t_phone {
		display: none !important;
	}
}

.c-switch i {
	position: relative;
	display: block;
	height: 2px;
	background: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.c-switch i:nth-child(1) {
	top: 0;
}

.c-switch i:nth-child(3) {
	bottom: 0;
}

.c-switch i:nth-child(2) {
	margin: 6px 0;
}

.c-switch i {
	background: #333;
}

.c-switch i {
	background: #000000;
}

/*顶部移动端导航*/
.c-nav2 {
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	height: 0;
	line-height: 50px;
	background: #fff;
	overflow-y: auto;
	transition: all 0.5s;
	text-align: left;
}

.c-nav2>li:last-child {
	border-bottom: 1px solid #f1f1f1;
}

.c-nav2 li {
	padding: 0 20px;
	border-top: 1px solid #f1f1f1;
}

@media (max-width: 767px) {
	.c-nav2 li {
		padding: 0 4%;
	}
}

.c-nav2 li .c-title-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.c-nav2 li a {
	color: #333;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	font-size: 16px;
}

.c-nav2 li i {
	font-size: 20px;
	color: #333;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.c-nav2 li .c-title-box.on i {
	transform: rotate(180deg);
}

.c-nav2 li a:hover,
.c-nav2 li.on>a {
	color: #024695;
}

.c-nav2 li ul {
	display: none;
}

.c-open .c-nav2 {
	height: calc(100vh - 80px);
}


/* 底部 */
.Footer-wrapper {
	/* background: url("../images/foot_bg.png") no-repeat center; */
	/* background-color: #41485a; */
	background-color: #434343;
	background-size: cover;
}

.Footer-container {}

.Footer-container .top {
	/* border-bottom: 1px solid rgba(255,255,255,0.3); */
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.36rem 0;
	display: inline-block;
	width: 100%;
}

.Footer-container .top .foot_logo {}

.Footer-container .top .foot_logo img {
	height: 500px;
}

.Footer-container .top .foot_link {}

.media_ul {}

.media_ul li {
	margin-right: 8px;
}

.media_ul li:last-child {
	margin-right: 0;
}

.media_ul li a {
	display: block;
	padding: 10px;
	background-color: #3b5999;
	color: white;
	border-radius: 50%;
	font-size: 0;
}

.media_ul li a i {
	font-size: 20px;
}

.media_ul li:nth-child(1) a {
	background-color: #1278F3;
}

.media_ul li:nth-child(2) a {
	background-color: #0A66C2;
}

.media_ul li:nth-child(3) a {
	background-color: #FB0204;
}

.media_ul li:nth-child(4) a {
	background-color: #1D9BF0;
}

.media_ul li:nth-child(5) a {
	background-color: #DA4369;
}

.media_ul li:nth-child(6) a {
	background-color: #FF0013;
}

.media_ul li:nth-child(7) a {
	background-color: #04C15F;
}


.media_ul li a img {}

.Footer-wrapper {
	padding-bottom: 0;
}

.foot_all {
	margin-bottom: 130px;
}

.Footer-container .foot_l {
	float: left;
	width: 34%;
}

.Footer-container .foot_l .foot_logo {
	height: 0.93rem;
	margin-bottom: 18px;
}

.Footer-container .foot_l .lxwm {
	color: #fff;
	font-size: 16px;
	line-height: 2;
}

.Footer-container .foot_l .lxwm i {
	font-size: 0.18rem;
	margin-right: 18px;
}

.Footer-container .foot_r {
	float: right;
	width: 66%;
}

.Footer-container .mid {}

.Footer-container .mid ul {}

.Footer-container .mid ul li {
	float: left;
	/* margin-right: 0.6rem; */
	overflow: hidden;
}

.Footer-container .mid ul li p {
	font-size: 20px;
	color: #fff;
	display: block;
	margin-bottom: 24px;
}

.Footer-container .mid ul li a {
	font-size: 14px;
	color: #bbb;
	color: rgb(255, 255, 255, .8);
	line-height: 30px;
	display: block;
}

.Footer-container .mid ul li a:hover {
	color: #fff;
	/* text-decoration: underline; */
}

.Footer-container .mid ul li.lxwm {
	max-width: 450px;
	margin-right: 0;
}

.Footer-container .mid ul li dl {}

.Footer-container .mid ul li dd {
	position: relative;
	font-size: 14px;
	line-height: 20px;
	color: rgb(255, 255, 255, .8);
	margin-bottom: 16px;
	padding-left: 30px;
}

.Footer-container .mid ul li dd i {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	color: rgb(255, 255, 255, .8);
}

.Footer-container .bot {
	display: inline-block;
	width: 100%;
	color: rgb(255, 255, 255, .8);
	padding: 0.25rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background-color: #313131;
}

.Footer-container .bot .copy {
	float: left;
	font-size: 0.16rem;
}

.Footer-container .bot a {
	font-size: 0.16rem;
}

.Footer-container .bot a:hover {
	color: #fff;
}

/* 中间+共用部分 */
/* 首页标题 */
.ind_tit {
	position: relative;
	text-align: left;
}

.ind_tit::after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 0;
	width: 10%;
	height: 2px;
	background-color: #dc021c;
}

.ind_tit span {
	display: block;
}

.ind_box .ind_tit {
	width: 25%;
}

.ind_box .ind_tit span:first-child {
	margin-bottom: 22px;
}

/* ind_banner */
.ind_banner .swiper-pagination-bullet {
	background-color: white;
	opacity: 1;
}

.ind_banner .swiper-pagination-bullet-active {
	background-color: #02448e;
}

.ind_banner {
	padding-top: 100px;
}

.ind_banner img,
.com_banner img {
	width: 100%;
}

/* 内页banner + 面包屑*/
.com_banner {
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

}

.com_banner.so .text {
	text-align: left;
	left: 0;
	padding-left: 12.5%;
	transform: translateY(-50%);
	width: auto;
}

.com_banner.so .text .t1,
.com_banner.so .text .t2 {
	color: #fff;
}

.com_banner .text {
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	color: #fff;
	font-weight: 500;
	text-align: center;
	width: 100%;
	padding: 0 0.4rem;
}

.com_banner .text2 {
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	color: #fff;
	font-weight: 500;
	padding: 0 1.8rem;
}

.com_banner .text .t1 {
	color: #fff;
}

.com_banner .text .t1 .sp1 {
	font-weight: bold;
}

.com_banner .text .t2 {
	margin-top: 0.16rem;
	color: #fdfdfd;
}

.com_banner .text .sp3 {
	text-transform: capitalize;
}


.com_banner .video video {
	width: 100%;
}

@media (max-width: 900px) {
	.com_banner .img img {
		width: 100%;
		height: 300px;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: center center;
		object-position: center center;
	}

	.com_banner .text2 {
		padding: 0 0.4rem;
	}
}

.com_bread {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 1px solid #eeeeee;
	line-height: 0.7rem;
	background-color: #fff;
}

.com_bread .bread {
	color: #666;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.com_bread .bread .home {
	margin-right: 0.2rem;
}

.com_bread .bread a:hover {
	color: #02448e;
}

.com_bread .bread .spot {
	margin: 0 0.2rem;
}

@media (max-width: 900px) {
	.com_bread .bread .home img {
		height: 18px;
	}

	.com_bread .bread .spot {
		margin: 0 0.1rem;
	}
}

.com_bread .tags {
	display: flex;
	overflow-x: auto;
}

.com_bread .tags .tag {
	padding: 0 0.3rem;
	background-color: #f5f6f7;
	color: #666666;
	white-space: nowrap;
	position: relative;
}

.com_bread .tags .tag::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 1px;
	background-color: #fff;
}

.com_bread .tags .tag.on,
.com_bread .tags .tag:hover {
	background-color: #02448e;
	color: #fff;
}

/* 分页条 */
.com_pag {
	display: flex;
	justify-content: center;
	align-items: center;
}

.com_pag .p_a,
.page-num {
	width: 0.38rem;
	height: 0.38rem;
	min-width: 30px;
	min-height: 30px;
	color: #666;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	box-sizing: border-box;
	white-space: nowrap;
	background-position: center center;
	background-size: 30%;
	background-repeat: no-repeat;
}

.com_pag .p_a:hover,
.page-num:hover {
	color: #fff;
	background-color: #02448e;
}

.com_pag .p_a:not(:last-child),
.page-num {
	margin-right: 0.2rem;
}

.com_pag .num.on,
.page-num-current {
	color: #fff;
	background-color: #02448e;
}

.com_pag .ellipsis {
	background-color: transparent !important;
}

.com_pag .ellipsis:hover {
	color: #02448e;
}

.com_pag .last {
	width: auto;
	padding: 0 0.25rem;
	border-radius: 1rem;
}

/* swiper-page01 */
.swiper-page01.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
}

.swiper-page01.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.swiper-page01.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #02448e;
	width: 30px;
	height: 8px;
	border-radius: 4px;
}

/* tc_search s */
.tc_search {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10001;
	pointer-events: none;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.tc_search.act {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	display: block;
	pointer-events: auto;
}

.tc_search form {
	width: 9.6rem;
	max-width: 80%;
	margin: 0 auto;
	padding: 0 20px;
	border-bottom: 2px solid #eee;
	height: 0.7rem;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.tc_search input {
	width: 80%;
	height: 0.7rem;
	font-size: 0.34rem;
	color: #c1c1c1;
	box-shadow: none;
	-webkit-appearance: none;
	float: left;
	border-right: 0;
	background: none;
}

.tc_search input::placeholder {
	color: #c1c1c1;
}

.tc_search button {
	max-width: 20%;
	height: 0.7rem;
	border: 0;
	line-height: 0.7rem;
	color: #c1c1c1;
	cursor: pointer;
	text-transform: uppercase;
	float: right;
	font-size: 0.48rem;
	background-color: transparent;
}

.tc_search .search_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .85);
	z-index: 0;
}

/* tc_search e */

/*左侧工具条*/
#toolbar {
	position: fixed;
	z-index: 9;
	right: 17px;
	bottom: 10%;
}

#toolbar li {
	margin-bottom: 3px;
	font-size: 0;
	width: 57px;
	height: 57px;
	right: 0;
	position: relative;
}

#toolbar li a {
	display: block;
	position: absolute;
	z-index: 9;
	right: 0;
	top: 0;
	width: 57px;
	height: 57px;
	overflow: hidden;
	background: #02448b;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	white-space: nowrap;
	font-size: 0;
}

#toolbar li .icon-font {
	display: inline-block;
	vertical-align: middle;
	width: 57px;
	height: 57px;
	background-color: #d9d9d9;
}

#toolbar li .icon-qq:after {
	background-position: 0 -150px;
}

#toolbar li .icon-phone:after {
	background-position: 0 -90px;
}

#toolbar li .icon-ewm:after {
	background-position: 0 -30px;
}

#toolbar li .icon-message:after {
	background-position: 0 -120px;
}

#toolbar li .icon-top:after {
	background-position: 0 -60px;
}

#toolbar li .icon-wangwang:after {
	background-position: 0 0;
}

#toolbar li .wz {
	display: inline-block;
	line-height: 57px;
	font-size: 14px;
	color: #fff;
	vertical-align: middle;
	padding-left: 10px;
}

#toolbar li.ewm .ewm-box {
	position: absolute;
	z-index: 1;
	padding: 5px;
	background: #02448b;
	width: 110px;
	right: 120%;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: all .7s;
	transition: all .7s;
}

#toolbar li.ewm .ewm-box p {
	margin-bottom: 0;
}

#toolbar li.ewm .ewm-box img {
	max-width: 100%;
}

#toolbar li.ewm .ewm-box:after {
	content: '';
	position: absolute;
	right: -5px;
	bottom: 20px;
	width: 0;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
	border-width: 5px;
	cursor: pointer;
	border-style: dashed dashed dashed solid;
	border-color: transparent transparent transparent #02448b;
	border-right: none;
}

.icon-font {
	position: relative;
}

.icon-font:after {
	content: "";
	width: 30px;
	height: 30px;
	background-image: url(../images/icon_spirit.png);
	background-repeat: no-repeat;
	position: absolute;
	left: calc(50% - 15px);
	top: calc(50% - 15px);
}

#toolbar li.ewm:hover .icon {
	background-position: -57px -180px;
}

#toolbar li.ewm:hover .ewm-box {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

#toolbar li.backtop {
	cursor: pointer;
}

#toolbar li.backtop .iconfont {
	color: #fff;
	background-color: #02448b;
}

#toolbar li:hover a {
	width: 200px;
}

#toolbar li:hover .icon-font {
	background-color: #02448b;
}

#toolbar li:hover .icon-qq:after {
	background-position: -30px -150px;
}

#toolbar li:hover .icon-phone:after {
	background-position: -30px -90px;
}

#toolbar li:hover .icon-ewm:after {
	background-position: -30px -30px;
}

#toolbar li:hover .icon-message:after {
	background-position: -30px -120px;
}

#toolbar li:hover .icon-wangwang:after {
	background-position: -30px 0;
}

#toolbar li:hover .icon-top:after {
	background-position: -30px -60px;
}

@media (max-width: 990px) {

	#toolbar,
	.guanggao-dbbox {
		display: none;
	}
}

/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
	/* 1600 × (900/1024/1200) */
}

@media all and (max-width:1599px) {
	/* 1440 × (900/1050) */
}

@media all and (max-width:1439px) {
	/* 1360 × (768) */
}

@media all and (max-width:1359px) {
	/* 1280 × (800/854/1024) */
	.Header-container .nav_item>ul>li {
		margin: 0 0.4rem 0 0;
	}
}

@media all and (max-width:1279px) {

	/* 1152 × (864) */

	.com_banner .img img {
		margin-top: 80px;
	}

}

@media all and (max-width:1151px) {
	/* 1024 × (600/768) */
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

	/* 平板设备 720 适配 */
	.pc {
		display: none;
	}

	.mb {
		display: block;
	}
}

@media all and (max-width:991px) {}

@media all and (max-width:768px) {}

@media all and (max-width:640px) {
	/* 移动终端以上 360 适配 */
}

@media all and (max-width:480px) {
	.com_banner .img img {
		height: 150px;
		margin-top: 80px;
	}

	.com_bread .tags {
		flex-wrap: wrap;
	}

}

@media all and (max-width:420px) {}

@media all and (max-width:376px) {}