@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 {}

.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: 40px;
	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: 90px;
	color: #fff;
}

.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: #045d7e !important;
}

/* 二级导航 */
.Header-container .nav_item .son {
	position: fixed;
	top: 90px;
	left: 0;
	width: 100%;
	background: rgba(4, 93, 126, .88);
	display: none;
	transition: top .22s;
}

.Header-container .nav_item .son .fl {
	width: 30%;
	padding: 50px 50px 50px 0;
	position: relative;
}

.Header-container .nav_item .son .fl::before {
	content: '';
	display: block;
	width: 200%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	position: absolute;
	top: 0;
	right: 0;
}

.Header-container .nav_item .son .fl .tit {
	font-size: 0.3rem;
	color: white;
	text-transform: uppercase;
	position: relative;
	font-family: "Montserrat-Bold";
}

.Header-container .nav_item .son .fl .des {
	margin-top: 20px;
	line-height: 1.7;
	font-size: 0.16rem;
	position: relative;
	color: rgba(255, 255, 255, .7);
}

.Header-container .nav_item .son .fl a {
	display: block;
	width: 290px;
	height: 50px;
	line-height: 48px;
	border: 1px solid rgba(255, 255, 255, .6);
	border-radius: 100px;
	text-align: center;
	margin-top: 50px;
	font-size: 0.16rem;
	color: #fff;
	position: relative;
	transition: all .3s;
	box-sizing: border-box;
	padding-right: 10px;
}

.Header-container .nav_item .son .fl a i {
	margin-left: 8px;
	position: absolute;
	right: 14px;
	top: 17px;
	font-size: 0.14rem;
	line-height: 1;
	z-index: 2;
	transition: all .3s;
}

.Header-container .nav_item .son .fl a:hover i {
	color: #fff;
}

.Header-container .nav_item .son .fl a::after {
	position: absolute;
	content: '';
	display: block;
	width: 0;
	height: 0;
	background: #045d7e;
	border-radius: 50%;
	right: 24px;
	top: 24px;
	z-index: 1;
	transition: all .3s;
	opacity: 0;
}

.Header-container .nav_item .son .fl a:hover::after {
	display: none;
	width: 42px;
	height: 42px;
	right: 3px;
	top: 3px;
	opacity: 1;
}

.Header-container .nav_item .son .fr {
	width: 70%;
	padding: 50px 0 50px 60px;
	display: flex;
}

.Header-container .nav_item .son .fr .sub {
	width: calc(100% - 450px);
}

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

.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: #fff;
}

.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;
	color: #fff;
}

.Header-wrapper.on .Header-container .tool .search i {
	color: #000
}

.Header-container .tool .search i::after {
	display: none;
	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(255, 255, 255, .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: #045d7e;
}

/* 产品下拉 */
.Header-container .nav_item ul li .drop_pro {
	position: fixed;
	top: 90px;
	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: #045d7e;
}

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

.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: 80px;
	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: #045d7e;
}

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

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

/* 面包屑 */
.sonbar {
	width: 100%;
	background: rgb(0, 0, 0, .3);
	font-size: 0;
	position: absolute;
	left: 0;
	bottom: 0;
}

.sonbar a {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
	height: 60px;
	line-height: 64px;
	font-size: 14px;
	color: #f5f5f5;
	transition: all .4s ease;
	padding-right: 22px;
	position: relative;
}

.sonbar a:first-child {
	width: 40px;
	background: url('../images/sonic1.png') no-repeat left center;
}

.sonbar a:after {
	content: ">";
	font-size: 14px;
	color: #f5f5f5;
	font-family: "\5B8B\4F53";
	position: absolute;
	right: 7px;
	height: 100%;
	top: 0;
	font-weight: 700;
}

.sonbar a:last-child {
	padding-right: 0;
}

.sonbar a:last-child:after {
	display: none;
}

.sonbar a:hover {
	color: #045d7e;
}

/* 内页导航 */
.newstabwrap {
	width: 100%;
	box-sizing: border-box;
	/* padding: 0 200px; */
	border-bottom: 1px solid #DDDDDD;
}

.add_diyi {
	padding: 0 4%;
}

.newstab {
	width: 100%;
	display: flex;
	display: -webkit-flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-content: center;
	flex-wrap: wrap;
}

.add_pro {
	/* justify-content: space-between; */
}

.newstab a {
	display: block;
	height: 80px;
	line-height: 80px;
	position: relative;
	font-size: 16px;
	color: #221815;
	padding: 0 25px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.newstab a:after {
	content: '';
	display: block;
	width: 0%;
	height: 2px;
	background-color: #045d7e;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all .3s;
}

.newstab a:last-child::before {
	display: none;
}

.newstab a:hover:after,
.newstab a.active:after {
	width: 100%;
}

.newstab a:hover,
.newstab a.active {
	color: #ffffff;
	background-color: #045d7e;
}

.newstab a::before {
	position: absolute;
	content: "";
	right: 0;
	top: 50%;
	height: 20px;
	width: 1px;
	margin-top: -10px;
	background-color: #c5c5c5;
}

.newstab i {
	display: block;
	width: 1px;
	height: 20px;
	background-color: #888888;
}

/* 分页条 */
.page {
	width: 100%;
	clear: both;
	text-align: center;
	padding-top: 20px;
}

.page strong {
	color: #FFF;
	background-color: #045d7e;
	padding: 7px 12px;
	margin: 1px 10px 0px -1px;
	cursor: pointer;
	border: 1px solid #045d7e;
}

.page a {
	display: inline-block;
	border: 1px solid #bdbdbd;
	padding: 7px 12px;
	margin-right: 10px;
	cursor: pointer;
	color: #000;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.page a:hover,
.page a.page-num-current {
	background-color: #045d7e;
	border: 1px solid #045d7e;
	color: #fff;
}

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

.Footer-container {}

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

.Footer-container .top .foot_logo {}

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

.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: transparent;
	color: white;
	border-radius: 50%;
	font-size: 0;
}

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

/* .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-container .mid {
	padding: 0.6rem 0;
}

.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: 18px;
	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 {
	text-decoration: underline;
}

.Footer-container .mid ul li.lxwm {
	max-width: 450px;
	margin-right: 0;
	border-left: 1px solid #a0a0a0;
	padding-left: 145px;
}

.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 .mid ul li dd:last-child {}

.Footer-container .mid ul li span {
	display: inline-block;
	width: 50%;
	height: 50%;
	max-width: 50%;
	max-height: 50%;
}

.Footer-container .bot {
	font-size: 16px;
	color: rgb(255, 255, 255, .8);
	background-color: #535353;
	/* text-align: center; */
	padding: 0.3rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.Footer-container .bot a {
	font-size: 16px;
	color: rgb(255, 255, 255, .8);
}

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


/*左侧工具条*/
#float {}

#float .one {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translate3d(0px, -50%, 0);
	z-index: 99;
}

#float .one .con {
	position: relative;
}

#float .one .con .ites {
	/*width: 65px;*/
	margin-right: 10px;
}

#float .one .con .ites .shutdown {
	width: 100%;
	cursor: pointer;
	border: 1px solid #045d7e;
	border-radius: 50px 0 0 0;
	padding: 8px 0;
}

#float .one .con .ites .slide {
	width: 60px;
	height: 60px;
	cursor: pointer;
	background: #fff;
	border: 1px solid #045d7e;
	position: relative;
	padding-top: 12px;
	margin-top: 2px;
}

#float .one .con .ites .slide .icon {
	width: 25px;
}

#float .one .con .ites .slide .txt {
	line-height: 1;
	color: #666;
	margin-top: 5px;
	font-size: 12px;
}

#float .one .con .ites .slide .tel {
	width: auto;
	white-space: nowrap;
	text-align: left;
	display: none;
	background: #045d7e;
	position: absolute;
	right: 104%;
	top: 0;
	z-index: 2;
	padding: 12px 24px;
}

#float .one .con .ites .slide .tel .txt1 {
	color: #fff;
	margin-bottom: 10px;
}

#float .one .con .ites .slide .tel .txt2 {
	color: #fff;
}

#float .one .con .ites .slide .qr-code {
	width: 100px;
	display: none;
	background: #fff;
	border: 1px solid #045d7e;
	position: absolute;
	right: 104%;
	top: 0;
	z-index: 2;
}

#float .one .con .ites .slide:hover .tel {
	display: block;
}

#float .one .con .ites .slide:hover .qr-code {
	display: block;
}

#float .one .con .ites .slide.cur {
	background: #045d7e;
}

#float .one .con .ites .slide.cur .txt {
	color: #fff;
	margin-top: 0;
}

#float .one .con .ites .slide:nth-child(1) {
	margin-top: 0;
}

#float .one .con .show {
	background: #045d7e;
	display: flex;
	align-items: center;
	cursor: pointer;
	border-radius: 25px 0 0 25px;
	position: absolute;
	top: 50%;
	right: -30px;
	z-index: 2;
	padding: 30px 8px;
	margin: auto;
	transform: translate3d(0px, -50%, 0);
}

#float .one .con .show .txt {
	width: 14px;
	line-height: 2;
	text-align: center;
	cursor: pointer;
	color: #fff;
}

#float .one.cur .con .ites {
	margin-right: -100px;
}

#float .one.cur .con .show {
	right: 0;
}

.gotop {
	display: none;
}

.gotop.show2 {
	display: block;
}

.text-center {
	text-align: center;
}

.pc-show {
	display: block;
}

.fz0 {
	font-size: 0;
}

.inline-block,
[inline-block] {
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: top;
}

@media (max-width: 990px) {

	#float {
		display: none;
	}
}

/* 中间+共用部分 */
.ind_box {
	margin: 85px auto;
}

.ind_title {
	text-align: center;
	margin: 0 auto;
}

.ind_title .cn {
	position: relative;
	color: #353535;
	z-index: 2;
}

.ind_title .cn::after {
	content: '';
	position: absolute;
	bottom: -18px;
	left: 50%;
	height: 3px;
	width: 100px;
	margin-left: -50px;
	text-align: center;
	background-color: #045d7e;
	z-index: 2;
}

.ind_title .en {
	display: none;
	position: relative;
	top: -15px;
	color: #b9b9b9;
	z-index: 0;
	text-transform: uppercase;
}

.ind_solution .ind_title .en {
	color: #f0eeee;
}

.fs14 {
	font-size: 0.14rem;
}

.fs16 {
	font-size: 0.16rem;
}

.fs18 {
	font-size: 0.18rem;
}

.fs22 {
	font-size: 0.22rem;
}

.fs24 {
	font-size: 0.24rem;
}

.fs25 {
	font-size: 0.25rem;
}

.fs28 {
	font-size: 0.28rem;
}

.fs30 {
	font-size: 0.3rem;
}

.fs36 {
	font-size: 0.36rem;
}

.fs40 {
	font-size: 0.4rem;
}

.fs48 {
	font-size: 0.48rem;
}

.fs52 {
	font-size: 0.52rem;
}

.fs58 {
	font-size: 0.58rem;
}

.fs62 {
	font-size: 0.62rem
}

.fs166 {
	font-size: 141px
}

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

.ind_banner .swiper-pagination-bullet-active {
	background-color: #045d7e;
}

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


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

/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {

	/* 1600 × (900/1024/1200) */
	.fs166 {
		font-size: 130px;
	}
}

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

	/* 1440 × (900/1050) */
	.Header-container .tool .language {
		margin-right: 0.3rem;
	}
}


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

	/* 1360 × (768) */
	.Header-container .logo h1 a img,
	.Header-wrapper.on .logo h1 a img+img,
	.Header-wrapper:hover .logo h1 a img+img {
		height: 30px;
	}

	.Header-container .nav_item>ul>li {
		margin-right: .4rem;
	}

	.fs166 {
		font-size: 110px;
	}

	.add_diyi {
		padding: 0;
	}

	.newstab {
		flex-wrap: nowrap;
	}
}

@media all and (max-width:1359px) {
	/* 1280 × (800/854/1024) */
}

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

	/* 1152 × (864) */
	.fs166 {
		font-size: 90px;
	}
}

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

	/* 1024 × (600/768) */
	.Footer-container .mid ul li {
		display: none;
	}

	.Footer-container .mid ul li:last-child {
		display: block;
	}

	.Footer-container .mid ul li.lxwm {
		padding-left: 20px;
	}
}

@media all and (max-width:1085px) {
	.tc_search form {
		width: 100%;
	}

	.c-nav2 {
		top: 100px;
	}

	.fs166 {
		font-size: 72px;
	}
}

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

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

	.mb {
		display: block;
	}

	.Header-wrapper {
		background-color: #fff;
	}

	.ind_mb_banner img {
		margin-top: 60px;
	}

	.c-nav2 {
		top: 60px;
	}

}

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

	.newstab {
		flex-wrap: wrap;
	}

	.fs166 {
		font-size: 60px;
	}

	.Footer-container .mid ul li dd {
		float: left;
		width: 100%;
	}

	.add_diyi a {
		display: none;
	}

}

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

	/* 移动终端以上 360 适配 */

	.Header-container .logo h1 a img,
	.Header-wrapper.on .logo h1 a img+img,
	.Header-wrapper:hover .logo h1 a img+img {
		height: 20px;
	}

	.Footer-container .bot {
		font-size: 14px;
	}

}

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

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

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