@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: 60px;
	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: #c82126 !important;
}

/* 二级导航 */
.Header-container .nav_item .son {
	position: fixed;
	top: 100px;
	left: 0;
	width: 100%;
	background: rgba(200, 33, 38, .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: #d3031c;
	border-radius: 50%;
	right: 24px;
	top: 24px;
	z-index: 1;
	transition: all .3s;
	opacity: 0;
}

.Header-container .nav_item .son .fl a:hover::after {
	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 .sub a:hover {
	text-decoration-line: underline;
}

.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: #333;
}

.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.3rem;
	/* padding-right: 0.18rem;
	margin-right: 0.2rem; */
	cursor: pointer;
}

.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(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: #c82126;
}

/* 产品下拉 */
.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: #c82126;
}

.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: 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: #d63128;
}

.c-nav2 li ul {
	display: none;
}

.c-open .c-nav2 {
	height: calc(100vh - 60px);
}

/* ind_banner s */
.ind_banner .swiper-pagination-bullet {
	background-color: white;
	opacity: 1;
}

.ind_banner .swiper-pagination-bullet-active {
	background-color: #d3031c;
}

/* ind_banner e*/

/* 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 */

/* 内页banner */
.inbanner {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}

.inbanner>img {
	position: relative;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 0;
	padding-top: 50px;
}

.inbanner .cer {
	position: relative;
	height: 100%;
}

@media screen and (max-width: 1023px) {
	.inbanner {
		height: 420px;
	}

}

@media screen and (max-width: 750px) {
	.inbanner {
		height: 300px;
	}
}

.ibcate {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 60%;
	z-index: 1;
	color: #fff;
	text-align: center;
	overflow: hidden;
	margin-bottom: -90px;
}

.ibcate .cn {
	font-size: 36px;
	line-height: 56px;
	font-weight: bold;
	letter-spacing: 2px;
	text-indent: 2px;
}

.ibcate .en {
	font-size: 54px;
	line-height: 70px;
	font-weight: bold;
	text-transform: uppercase;
	word-break: normal;
}

.ibcate .hx {
	width: 40px;
	height: 3px;
	background-color: #fff;
	margin: 10px auto;
}

.mouse {
	width: 50px;
	height: 50px;
	margin-top: 123px;
	margin-left: -25px;
	position: absolute;
	left: 50%;
	top: 40%;
	z-index: 2;
	/*font-size: 16px; line-height: 28px; color: #fff; text-align: center;*/
	background: url('../images/jtd-ib.png') center 0 no-repeat;
}

.updown {
	-webkit-animation: updown 2s linear infinite;
	animation: updown 2s linear infinite;
}

@media screen and (max-width: 750px) {
	/* .ibcate {
		margin-bottom: -50px;
	} */

	.ibcate .en {
		font-size: 32px;
		line-height: 60px;
	}

	.ibcate .hx {
		margin: 0 auto;
	}
}

/* 内页栏目导航 */
.baninfo {
	height: 70px;
	position: relative;
	z-index: 2;
	background-color: #f1f1f1;
}

.cer8 {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 30px;
}

.baninfo .cer8 {
	height: 100%;
}


.erji {
	float: left;
	font-size: 0;
	white-space: nowrap;
	text-align: center;
	margin: 17px 0;
	max-width: 100%;
	line-height: 36px;
	height: 36px;
}

.erji a {
	display: inline-block;
	width: auto;
	height: 100%;
	margin-left: 26px;
	border-radius: 18px;
	color: #333;
	font-size: 16px;
	line-height: 36px;
	vertical-align: top;
	background-color: #f1f1f1;
	padding: 0 10px;
}

.erji a:first-child {
	margin-left: 0;
}

.erji a:after {
	content: '';
	position: absolute;
	left: 100%;
	bottom: 0;
	z-index: 0;
	display: none;
	width: 0;
	height: 1px;
	background-color: #009de2;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.erji a:hover {
	background-color: #fff;
	color: #c31e16;
}

.erji a.on {
	background-color: #c31e16;
	color: #fff;
	font-weight: bold;
}

.erji a:hover:after {
	left: 0;
	width: 100%;
	-webkit-transition: width 0.3s;
	transition: width 0.3s;
}

.tree {
	float: right;
	height: 100%;
	font-size: 14px;
	line-height: 70px;
	color: #666;
	padding-left: 30px;
	background: url('../images/point1.png') 0 no-repeat;
}

.tree a {
	display: inline-block;
	height: 100%;
	color: #666;
	vertical-align: middle;
}

.tree a:hover,
.tree a.leaf {
	color: #c31e16;
}

.tree i {
	display: inline-block;
	width: 28px;
	height: 100%;
	vertical-align: middle;
	text-align: center;
}

@media screen and (max-width: 1280px) {
	.tree {
		display: none;
	}

	.erji {
		float: none;
		overflow: auto;
	}
}

/* 分页条 */
.page_bar {
	position: relative;
	line-height: 31px;
	height: 33px;
	margin: 40px 0;
	text-align: center;
	font-size: 12px;
}

.page_bar a,
.page_bar span {
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding: 0 12px;
	border: 1px solid #999;
	margin: 0 4px;
	text-align: center;
	border-radius: 3px;
	filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#fff 65%', endColorStr='#ececec', gradientType='0');
	background: -webkit-linear-gradient(top, #fff 65%, #ececec);
	background: -moz-linear-gradient(bottom, #fff 65%, #ececec);
	background: -o-linear-gradient(bottom, #fff 65%, #ececec);
	background: linear-gradient(to bottom, #fff 65%, #ececec);
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.page_bar a.current,
.page_bar a:hover,
.page-num-current {
	color: #FFF !important;
	background: #cb241d !important;
	border-color: #cb241d !important
}

.page_bar a:not(.current):hover {
	border-color: #cb241d;
	background-color: #cb241d;
	color: #fff;
}

.page_bar span.current2 {
	margin-left: 8px;
}

/*ny_banner_title */
@media screen and (max-width:480px) {

	.ibcate .cn {
		font-size: 30px;
		line-height: 46px;
	}

	.ibcate .en {
		font-size: 18px;
		line-height: 40px;
	}

	.mouse {
		margin-top: 100px;
	}

	/* 内页标题 */
	.i-com-title .cn {
		font-size: 36px !important;
	}

	.about-padding {
		padding-top: 40px !important
	}

	.service-wrapper {
		margin-top: 40px !important
	}
}