/* ====================公共样式========================= */


/* 头部 */
.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 {
	font-size: 0;

}

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

.Header-container .logo a img {
	width: 210px;
}

/* .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.2em; */
}

.Header-container .nav_item .nav_tool {
	width: 100%;
	border-bottom: 1PX SOLID #f1f1f1;
}

.Header-container .nav_item .nav_tool .fl {
	width: 20%;
}

.Header-container .nav_item .nav_tool .fr {
	width: 50%;
	/* font-family: 'TSB'; */
}

.Header-container .nav_item .nav_tool .tel {
	line-height: 40PX;
}

.Header-container .nav_item .nav_tool .tel.flex {
	width: max-content;
}

.Header-container .nav_item .nav_tool .tel i {
	margin-right: 0.06em;
	font-size: .2em;
}

.Header-container .nav_item .nav_tool .tel i.icon-youxiang {
	margin-left: .4em;
}

.Header-container .nav_item .nav_tool .tel p {
	font-size: .16em;
}

.Header-container .nav_item>ul {}

.Header-container .nav_item>ul>li {
	float: left;
	position: relative;
	margin: 0 35px 0 0;
	font-size: 16px;
}

.Header-container .nav_item>ul>li:last-child a {
	font-family: 'TR';
}

.Header-container .nav_item>ul>li>a {
	display: inline-block;
	font-size: 18px;
	line-height: 68PX;
	/* color: #fff; */
	color: #221815;
	font-family: 'TB';
	text-transform: uppercase;
}

.Header-container .nav_item>ul>li.search {
	margin-right: 15px;
	margin-left: 40px;
}

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

/* 二级导航 */
.Header-container .nav_item .sub_nav {
	display: none;
	position: absolute;
	margin-left: 0px;
	left: -20px;
	top: 100%;
	/* padding: 0.1rem; */
	box-shadow: 0 0 8px rgb(0, 0, 0, .1);
	background-color: white;
	z-index: 2;
	/* padding-top: 0.2rem; */
}

.Header-container .nav_item>ul>li:hover .sub_nav {
	display: block;
	animation: HnavDD .2s ease-in-out;
	-webkit-animation: HnavDD .2s ease-in-out;
}

/* 自定义下拉菜单 */
.Header-container .nav_item .sub_nav .second_sub_nav {
	top: 0;
	left: 90%;
	position: absolute;
	background: white;
	text-align: left;
	display: none;
	z-index: 999;
	box-shadow: 0 0 8px rgb(0, 0, 0, .1);
}

.Header-container .nav_item .sub_nav li:hover .second_sub_nav {
	display: block;
	animation: HnavDD .2s ease-in-out;
	-webkit-animation: HnavDD .2s ease-in-out;
}

.Header-container .nav_item .sub_nav li:hover a {
	-moz-transform: translateX(5px);
	-webkit-transform: translateX(5px);
	-ms-transform: translateX(5px);
	-o-transform: translateX(5px);
	transform: translateX(5px);
}

.Header-container .nav_item .sub_nav .second_sub_nav li:hover a {
	-moz-transform: translateX(5px);
	-webkit-transform: translateX(5px);
	-ms-transform: translateX(5px);
	-o-transform: translateX(5px);
	transform: translateX(5px);
}

/* 自定义下拉菜单 end */

@keyframes HnavDD {
	from {
		transform: translateY(20px);
		-webkit-transform: translateY(20px);
		opacity: 0;
	}

	top {
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
		opacity: 1;
	}
}

@-webkit-keyframes HnavDD {
	from {
		transform: translateY(20px);
		-webkit-transform: translateY(20px);
		opacity: 0;
	}

	top {
		transform: translateY(0px);
		-webkit-transform: translateY(0px);
		opacity: 1;
	}
}

.Header-container .nav_item .sub_nav li {
	position: relative;
	padding: 15px 20px;
	line-height: 1.5;
	/* margin-bottom: 0.2rem; */
	width: 250px;
}

.Header-container .nav_item .sub_nav>li:hover>a {
	color: white;
}

.Header-container .nav_item .second_sub_nav>li:hover>a {
	color: white;
}

.Header-container .nav_item .sub_nav li:hover {
	background-color: #D80C18;
	color: white;
}

.Header-container .nav_item .sub_nav li:before {
	content: "";
	display: block;
	height: 1px;
	background: #f6f6f6;
	position: absolute;
	top: 0;
	left: 12px;
	right: 12px;
}

.Header-container .nav_item .sub_nav li:first-child:before {
	display: none;
}

.Header-container .nav_item .sub_nav li a {
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: #595757;
	/* font-family: 'microsoft yahei'; */
	/* padding-bottom: 8px; */
}

.Header-container .nav_item .sub_nav li a i {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -10px;
	display: inline-block;
	overflow: hidden;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

/* .Header-container .nav_item .sub_nav li a i:before {
    content: '\f107';
    font-family: 'fontawesome';
} */
.Header-container .nav_item .sub_nav li a:hover {
	color: white;
}

.Header-container .nav_item .sub_nav li:hover:before {
	background: transparent;
}

/* 三级导航 */
.Header-container .nav_item .sub_nav li dl {
	position: absolute;
	left: 100%;
	top: 0;
	display: none;
	padding: 0.1em 0;
	background-color: white;
	box-shadow: 0 0 6px rgb(0, 0, 0, .1);
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	z-index: 3;
}

.Header-container .nav_item .sub_nav li.active dl {
	display: block;
}

.Header-container .nav_item .sub_nav li dd {
	width: 1.1em;
	padding: 0.11em 0 0.11em 0.1em;
}

.Header-container .nav_item .sub_nav li dd a {
	font-size: 12px;
	color: #595757;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.Header-container .nav_item .sub_nav li dd a:hover {
	color: #D80C18;
}


.Header-container .tool {
	/* color: #fff; */
	color: #333;
}

/* .Header-wrapper.on .Header-container .tool,.Header-wrapper:hover .Header-container .tool{
	color: #333;
} */
.Header-container .tool .search {
	line-height: 68PX;
}

.Header-container .tool .search i {
	position: relative;
	font-size: 24px;
	/* padding-right: 0.18em; */
	margin-right: 20px;
	cursor: pointer;
}

.Header-container .tool .language {
	position: relative;
	margin-left: .5em;
}

.Header-container .tool .language a {}

.Header-container .tool .language i {
	font-size: .2em;
}

.Header-container .tool .language p {
	font-size: .16em;
	margin-left: 0.08em;
	display: inline-block;
}

/*  */

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

/* 产品下拉 */
.Header-container .nav_item ul li .drop_pro {
	position: fixed;
	top: 90px;
	left: 0;
	width: 100vw;
	background: #fff;
	padding: 0.55em 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 .drop_pro>ul>li {
	width: 18.8%;
	/* color: #283940; */
	color: #000;
}

.Header-container .nav_item .drop_pro>ul>li .pic {
	overflow: hidden;
}

.Header-container .nav_item .drop_pro>ul>li .pic img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.Header-container .nav_item .drop_pro>ul>li a.tit {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
	/* height: 50px; */
	margin: 0.15em 0 0.12em;
}

.Header-container .nav_item .drop_pro>ul>li>ul {}

.Header-container .nav_item .drop_pro>ul>li>ul>li {}

.Header-container .nav_item .drop_pro>ul>li>ul>li>a {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 1.75;
	/* padding-left: 18px;
	background: url('../images/ico_li.png') no-repeat center;
	background-position: left center;
	background-size: 13px; */
}

/* .Header-container .nav_item .drop_pro>ul>li>ul>li>a:hover{
	background-image: url('../images/ico_li_on.png');
} */

.Header-container .nav_item .drop_pro>ul>li a:hover {
	color: #D80C18;
	text-decoration: underline;
	-webkit-transform: translateX(4px);
	-ms-transform: translateX(4px);
	transform: translateX(4px);

}



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

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

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

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

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

#c-header .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-header .c-nav2 li .c-title-box.on i {
	transform: rotate(180deg);
}

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

#c-header .c-nav2 li ul,
#c-header .c-nav2 li ol {
	display: none;
	margin-left: 0em;
}

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

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

	#c-header .c-nav2>li {
		padding: 0 4%;
	}

	#c-header .c-nav2 ul>li a {
		font-size: 14px;
	}
}

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

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

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

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

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

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

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

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

body.c-open #c-header .c-switch i:nth-child(2) {
	opacity: 0;
}

body.c-open #c-header .c-switch i:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

body.c-open #c-header .c-switch i:nth-child(3) {
	bottom: 8px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}



/* 底部 */
.Footer-wrapper {
	background: #f2f3f5;
}

.Footer-wrapper .top {
	padding: .25em;
	border-bottom: 1px solid #dcdcdc;
}

.Footer-wrapper .top li {
	margin: 0 .2em;
}

.Footer-wrapper .top li a {}

.Footer-wrapper .top li a i {
	font-size: .4em;
	transition: all .3s;
	color: #595757;
}

.Footer-wrapper .top li:hover a i {
	color: #D80C18;
}

.Footer-wrapper .cont {
	padding: .35em;
	border-bottom: 1px solid #dcdcdc;
}

.Footer-wrapper .cont {
	text-align: center;
}

.Footer-wrapper .cont h4 {
	font-size: .24em;
	font-family: 'TSB';
	color: #595757;
	margin-bottom: .6em;
}

.Footer-wrapper .cont ul {}

.Footer-wrapper .cont ul li {
	margin: 0 .3em;
}

.Footer-wrapper .cont ul li i {
	font-size: .2em;
	color: #595757;
	margin-right: 0.06em;
}

.Footer-wrapper .cont ul li p {
	font-size: .18em;
	font-family: 'TSB';
	color: #595757;
}

.Footer-container .bot {
	padding: 28px 0;
	text-align: center;
	color: #595757;
	font-size: .18em;
}


/* 首页公共底部板块 */
.ind_tem {}

.ind_tem ul {}

.ind_tem ul li {
	float: left;
	width: 25%;
	border: 1px solid #1b1b1d;
	border-right: none;
	padding: 0.8em 2%;
	color: #4d4d4d;
	text-align: center;
}

.ind_tem ul li:first-child {
	border-left: none;
}

.ind_tem ul li i {
	font-size: 0.65em;
	color: #D80C18;
}

.ind_tem ul li h4 {
	display: block;
	font-size: 0.22em;
	margin: 0.22em 0;
}

.ind_tem ul li p {
	font-size: 16px;
	line-height: 20px;
	height: 80px;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.ind_tem ul li a {
	font-size: 16px;
	margin-top: 0.35em;
}

.ind_tem ul li a:hover {
	color: #D80C18;
}

/* 中间+共用部分 */



/* ind_banner */
.ind_banner img,
.ind_banner video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ind_banner video {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: 0;
}

.ind_banner .swiper-button-next,
.ind_banner .swiper-button-prev {
	color: #fff;
	background-color: rgba(35, 24, 21, 0.5);
}

.ind_banner .swiper-button-next:hover,
.ind_banner .swiper-button-prev:hover {
	color: #fff;
	background-color: rgba(216, 12, 24, 0.75);
}

.Projectsw .swiper-button-next,
.Projectsw .swiper-button-prev {
	color: #fff;
	background-color: rgba(35, 24, 21, 0.5);
	top: 43%;
}

.Projectsw .swiper-button-next:hover,
.Projectsw .swiper-button-prev:hover {
	color: #fff;
	background-color: rgba(216, 12, 24, 0.75);
}

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

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

.ind_banner .swiper-slide {
	position: relative;
}

.ind_banner .swiper-wrapper .swiper-slide {
    height: calc(100vh - 112px);
}

.ind_banner .swiper-slide-active .txt {
	/* opacity: 1;
	left: 8%; */
}

.ind_banner .txt .w14 {
	margin: 0 auto;
}

.ind_banner .txt h4 {
	font-size: 0.48em;
	color: #343434;
	font-weight: 700;
	line-height: 1.3;
	/* font-family: "UlagadiSans Bold"; */
	/* text-transform: uppercase; */
}

.ind_banner .txt .line {
	position: relative;
	width: 2.4em;
	margin: 0.35em 0;
	background: #fff;
	height: 1px;
	border-radius: 5px;
}

.ind_banner .txt .line::after {
	position: absolute;
	content: "";
	width: 0;
	height: 1px;
	left: 0;
	bottom: 0;
	background-color: #D80C18;
	-webkit-transition: all 5s ease-out;
	-moz-transition: all 5s ease-out;
	-ms-transition: all 5s ease-out;
	-o-transition: all 5s ease-out;
	transition: all 5s ease-out;
}

.ind_banner .swiper-slide-active .txt .line::after {
	width: 100%;
}

.ind_banner .txt .info {
	font-size: 18px;
	color: #333;
	/* font-weight: 600;'' */
	line-height: 1.5;
	margin-bottom: 0.4em;
}

.ind_banner .txt a {
	display: inline-flex;
	font-size: 16px;
	color: #333;
	line-height: 48px;
	cursor: pointer;
	line-height: 3;
	padding: 0 0.3em;
	/* border-radius: 50px;'' */
	border: 1px solid #333;
}

.ind_banner .txt a span {
	display: inline-block;
	font-size: 14px;
	margin-left: 0.06em;
}

.ind_banner .txt a:hover {
	background-color: #000;
	border-color: #000;
	color: white;
}

.ind_banner .txt.white h4,
.ind_banner .txt.white .info {
	color: white;
}

.ind_banner .txt.white a {
	border: 1px solid white;
	color: white;
}

.ind_banner .txt.white a:hover {
	border-color: #D80C18;
}

.ind_banner .swiper-slide-active .txt h4 {
	-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 0.2s;
	animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 0.2s;
}

.ind_banner .swiper-slide-active .txt .info {
	-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 0.7s;
	animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 0.7s;
}

.ind_banner .swiper-slide-active .txt {
	-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 1.2s;
	animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 1.2s;
}

/* banner自定义样式 */

.ind_banner .txt {
	position: absolute;
	top: 30%;
	left: 13%;
	width: 60%;
	line-height: 30px;
}

.ind_banner .txt .p1 {
	font-size: .6em;
	color: #fff;
	font-weight: 900;
	/* font-family: 'HMB'; */
	text-transform: uppercase;
	text-shadow: 0 3px 4px rgb(0 0 0 / 15%);
	line-height: 1.2;
	width: 70%;
}

.ind_banner .txt .p1 p {
	margin-bottom: 20px;
}

.ind_banner .txt .p2 {
	color: #fff;
	font-size: .24em;
	width: 60%;
	/* margin: .1em 0 .15em 0; */
	line-height: 1.2;
}

.ind_banner .txt .p2 p {
	margin-top: 10px;
	margin-bottom: 10px;
}

.ind_banner .txt .p3 {
	color: #fff;
	font-size: .20em;
	width: 100%;
	line-height: 1.4;
}

.ind_banner .txt .p3 p {
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 14px;
}

.ind_banner .txt .btn {
	background: #D8262C;
	padding: 10px 25px;
	text-align: center;
	color: #fff;
	margin-top: 20px;
	font-size: .18em;
}

.ind_banner .txt a {
	display: inline-flex;
	font-size: 16px;
	color: #333;
	line-height: 48px;
	cursor: pointer;
	line-height: 1;
	padding: 0.3em 0.5em;
	border: 1px solid #D8262C;
}


/* banner自定义样式 end */

@-webkit-keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

/* ind_more */
.ind_more {
	display: block;
	height: 48px;
	line-height: 46px;
	width: 200px;
	font-size: .2em;
	color: #595757;
	margin-top: .2em;
	/* text-align: center; */
	/* background-color: #595757;
	border: 1px solid #595757; */
	font-weight: 700;
}

.ind_more span {
	margin-left: 0.06em;
}

.ind_more:hover {
	background-color: transparent;
	color: #D80C18;
}

/* ind_tit */
.ind_tit {
	margin-bottom: 0.55em;
}

.ind_tit.tal {
	text-align: left;
}

.ind_tit h3 {
	width: 100%;
	display: block;
	font-size: 0.48em;
	line-height: 1.4;
	color: #2c2c2c;
	text-transform: uppercase;
	font-family: "TB";
}

/* .ind_tit h3::after{
	content: "";
	width: 0.6em;
	height: 2px;
	display: block;
	margin: 0.12em auto 0.12em;
	background-color: #D80C18;
	position: relative;
}
.ind_tit.tal h3::after{
	margin-left: 0;
}
.ind_tit.white h3::after{
	background-color: white;
} */
.ind_tit p {
	color: #595757;
	font-size: 16px;
	line-height: 1.75;
	/* margin-top: 0.2em; */
}

.ind_tit.white h3,
.ind_tit.white p {
	color: white;
}

/* com_swiper_button */
.com_swiper_button.swiper-button-next::after,
.com_swiper_button.swiper-button-prev::after {
	display: none;
}

.com_swiper_button.swiper-button-next,
.com_swiper_button.swiper-button-prev {
	width: 0.4em;
	height: 0.4em;
	line-height: 0.4em;
	text-align: center;
	border-radius: 50%;
	background-color: #D80C18;
	color: white;
	top: 50%;
	margin-top: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.com_swiper_button.swiper-button-next i,
.com_swiper_button.swiper-button-prev i {
	font-size: 18px;
	color: white;
}

.com_swiper_button.swiper-button-prev {
	left: -0.6em;
}

.com_swiper_button.swiper-button-next {
	right: -0.6em;
}

/* des */
.des,
.des p {
	font-size: 16px;
	line-height: 24px;
	color: #666;
	overflow: hidden;
}

/* 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.6em;
	max-width: 80%;
	margin: 0 auto;
	padding: 0 20px;
	border-bottom: 2px solid #eee;
	height: 0.7em;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.tc_search input {
	width: 80%;
	/* height: 0.7em; */
	font-size: 0.34em;
	color: #c1c1c1;
	box-shadow: none;
	-webkit-appearance: none;
	float: left;
	border-right: 0;
	background: transparent !important;
	border-radius: 0px;
	border: 1px solid transparent;
}

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

.tc_search button {
	max-width: 20%;
	height: 0.7em;
	border: 0;
	line-height: 0.7em;
	color: #c1c1c1;
	cursor: pointer;
	text-transform: uppercase;
	float: right;
	font-size: 0.48em;
	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 */


/* com_page */
.com_page {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 0.4em;
}

.com_page a {
	width: .42em;
	height: .42em;
	border-radius: .4em;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(222, 222, 222);
	font-size: 14px;
	color: #333;
	background: #fff;
	margin: 0 .05em;
	transition: all .3s
}

.com_page a.page-num-current,
.com_page a:hover {
	border-color: #D80C18;
	background: #D80C18;
	color: #fff
}


/* des */
.des,
.des p {
	font-size: 16px;
	line-height: 24px;
	color: #666;
	overflow: hidden;
}

/* com_ban */
.com_ban {
	position: relative;
	height: 5em;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* .com_ban::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgb(0,0,0,.15);
	z-index: 1;
	mix-blend-mode: multiply;
} */
.com_ban::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgb(16, 154, 36, .28);
	opacity: 0;
	z-index: 2;
	mix-blend-mode: multiply;
}

.com_ban .ban_txt {
	position: absolute;
	top: 50%;
	left: 0;
	color: #ffffff;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 3;
}

.com_ban.pro_ban .ban_txt {
	color: #56636c;
}

.com_ban .ban_txt h3 {
	font-size: 0.48em;
	font-weight: 700;
	line-height: 1.3;
	text-transform: capitalize;
}

.com_ban.pro_ban .ban_txt h3 {
	text-transform: uppercase;
	font-family: "UlagadiSans Bold";
}

.com_ban .ban_txt p {
	font-size: 16px;
	margin-top: 12px;
}

/* loca */
.loca {
	line-height: 60px;
	overflow: hidden;
	border-bottom: 1px solid #ededed;
}

.pro_loca.loca {
	background-color: #ededed;
}

.pro_loca.loca .fr {
	float: left;
}

.loca .fr a,
.loca .fr i {
	font-size: 14px;
	color: #666;
}

.loca .fr i {
	margin: 0 0.04em;
}

.loca .fr img {
	margin-right: 10px;
	display: inline-block;
	vertical-align: baseline;
}

.loca .fr a:hover {
	color: #D80C18;
}

.loca .fl {}

.loca .fl ul {
	overflow: hidden;
}

.loca .fl ul li {
	float: left;
	margin-right: 0.4em;
}

.loca .fl ul li:last-child {
	margin-right: 0;
}

.loca .fl ul li a {
	display: block;
	font-size: 16px;
	-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;
}

.loca .fl ul li.active a,
.loca .fl ul li:hover a {
	color: #D80C18;
}

/* ny_form */
.ny_form {
	margin-top: 0.8em;
}

.input_control {
	position: relative;
	width: 32%;
	float: left;
	margin-right: 2%;
	background: #f2f5f8;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	height: 54px;
}

.input_control:nth-child(3) {
	margin-right: 0;
}

.form_input {
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: 0;
	height: 54px;
	line-height: 54px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 30px;
	font-size: 14px;
	color: #666;
	width: calc(100% - 30px);
	background: #f2f5f8;
}

.input_control label {
	color: red;
	position: absolute;
	left: 20px;
	line-height: 54px;
}

.form_input::-moz-placeholder,
.form_text::-moz-placeholder {
	color: #666;
}

.form_text {
	height: 100px;
	background: #f2f5f8;
	position: absolute;
	left: 30px;
	top: 15px;
	width: calc(100% - 30px);
	font-size: 14px;
	color: #666;
	line-height: 25px;
	border: none;
}

.input_control2 {
	width: 100%;
	margin: 16px 0 25px;
	height: 130px;
}

.ny_form p {
	font-size: 14px;
	line-height: 1.3;
	;
	color: #666;
	display: block;
	float: left;
	display: block;
	width: 100%;
}

.ny_form .submit {
	border-radius: 4px;
	background: #D80C18;
	font-size: 0.18em;
	color: #fff;
	cursor: pointer;
	margin-top: 0.25em;
	padding: 0.2em 0.8em;
}

/* ny_tit */
.ny_tit {
	margin-bottom: 0.55em;
}

.ny_tit h3 {
	font-size: 0.36em;
	color: #242424;
	font-family: 'UlagadiSans Bold';
}

.ny_tit h3::after {
	content: "";
	position: relative;
	margin: 0.2em 0;
	display: block;
	width: 1em;
	height: 2px;
	background-color: #D80C18;
}

.ny_tit.tac h3::after {
	margin-left: auto;
	margin-right: auto;
}

.ny_tit p {
	font-size: 0.22em;
	color: #121212;
}

.ny_tit .des {
	margin-top: 0.15em;
}

/* ab_tit */
.ab_tit {
	font-size: 0.36em;
	font-family: 'UlagadiSans Bold';
	margin-bottom: 0.45em;
	text-transform: uppercase;
	color: #D80C18;
}

.ab_tit.white {
	color: white;
}

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

.swiper-page01.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	-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 {
	width: 30px;
	height: 8px;
	border-radius: 4px;
}

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

.swiper-page02.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	color: #D80C18;
	width: 25px;
	height: 25px;
	line-height: 25px;
	font-size: 12px;
	text-align: center;
	background: white;
	border-radius: 0;
	opacity: 1;
	-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-page02.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-page02.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:hover {
	color: white;
	background: #FF0000 !important;
}

/* com_btn */
.com_btn {
	display: inline-block;
	font-size: 16px;
	color: white;
	padding: 15px 20px;
	background-color: #D80C18;
	border: 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) */

	.Header-container .nav_item>ul>li {
		margin-right: 0.2em;
	}
}

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

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

	/* 1152 × (864) */
	.Header-container .nav_item>ul>li>a {
		font-size: 16px;
	}

	.Header-container .logo img {
		height: 32px;
	}

	.Header-container .nav_item .drop_pro>ul>li a.tit {
		font-size: 16px;
	}

	.Header-container .nav_item .drop_pro>ul>li>ul>li>a {
		font-size: 14px;
	}
}

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

	/* 1024 × (600/768) */
	.Header-container .nav_item {
		display: none;
	}

	.Header-container .logo {
		padding: 14px 0;
	}

	.mt {
		margin-top: 60px;
	}

	#c-header .c-switch {
		display: block;
		margin-left: 20px;
	}

	.Footer-container .top .w16 {
		display: flex;
		flex-direction: column-reverse;
	}

	.Footer-container .top .fr,
	.Footer-container .top .fl {
		width: 100%;
	}

	.Footer-container .top .fl {
		margin-top: 0.5em;
	}

	.loca .sort_nav {
		display: none;
	}
}


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

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

	.mb {
		display: block;
	}

	.Header-container .tool .search i,
	.Header-container .tool .language i {
		font-size: 22px;
	}

	.ind_tit h3 {
		font-size: 0.40em;
	}

	.Footer-container .top {
		padding: 0.55em 0;
	}

	.Footer-container .top .fr>ul {
		flex-wrap: wrap;
	}

	.Footer-container .top .fr>ul>li {
		width: 100%;
		border-bottom: 1px solid rgb(255, 255, 255, .8);
	}

	.Footer-container .top .fr>ul>li p {
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 18px;
		padding: 20px 0;
		margin-bottom: 0;
	}

	.Footer-container .top .fr>ul>li p i {}

	.Footer-container .top .fr>ul>li p.on i {
		transform: rotate(180deg);
	}

	.foot_nav_link {
		display: none;
		padding-bottom: 0.2em;
	}

	.Footer-container .top .fl .foot_logo img {
		height: 0.5em;
	}

	.Footer-container .top .fl .foot_link {
		margin: 0.45em 0;
	}

	.loca {
		height: auto;
		line-height: 20px;
		padding: 10px 0;
	}

	.loca .fr {
		float: none !important;
	}

	.loca .fr a,
	.loca .fr i {
		font-size: 13px;
	}

	.loca .fr img {
		margin-right: 6px;
	}

	.com_ban {
		height: 3.6em;
	}

	.ny_tit h3 {
		font-size: 0.45em;
	}

	.ny_tit h3::after {
		margin: 0.3em 0;
	}

	.ny_tit p {
		font-size: 0.28em;
	}

	.ab_tit {
		font-size: 0.45em;
	}

	.com_page a {
		font-size: 14px;
		width: 0.6em;
		height: 0.6em;
	}

	.ind_banner .swiper-slide {
		height: 700px;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}

	.ind_banner img {
		/* display: none; */
	}

	.ind_banner .txt {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: start;
		left: 8%;
		width: 85%;
		top: 0;
		height: 100%;
		/* background: rgba(255, 255, 255, 0.66); */
	}

	.ind_banner .txt .p2 {
		color: #fff;
		font-size: .44em;
		width: 100%;
		/* margin: .1em 0 .15em 0; */
		line-height: 1.1;
	}

	.ind_banner .txt.white {
		background: rgba(82, 80, 80, 0.6);
	}

	.ind_banner .txt h4 {
		font-size: 0.4em;
	}

	.ind_banner .txt .line {
		width: 2em;
	}

	.ind_banner .txt .info {
		font-size: 16px;
		margin-bottom: 0.55em;
	}

	.ind_banner .txt {
		right: 13%;
	}

	.ind_banner .txt a {
		/* padding: 0 0.5em; */
		line-height: 1;
	}

	.ind_banner .swiper-button-next,
	.ind_banner .swiper-button-prev {
		display: none;
	}
}

@media all and (max-width:768px) {
	.tc_search form {
		width: 92%;
		max-width: 92%;
		padding: 0 0.2em;
		margin-bottom: 1px;
		height: 0.8em;
		border-width: 1px;
	}

	.tc_search input {
		font-size: 0.32em;
		height: 0.8em;
	}

	.ind_banner .swiper-slide {
		height: 450px;
	}
	
	.ind_banner .swiper-wrapper .swiper-slide {
  		height: calc(100vh - 60px);
	}

	.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
		font-size: 16px;
		bottom: 10px !important;
		height: 42px;
	}

	.Header-container .logo a img {
		width: unset;
	}
}

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

	/* 移动终端以上 360 适配 */
	.Header-container .logo {
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
	}

	.Header-container .logo img {
		height: 30px;
	}

	.ind_more {
		font-size: 16px;
		width: 180px;
		line-height: 40px;
		height: 42px;
		border-radius: 4px;
	}

	.ind_banner .txt a,
	.ind_banner .swiper-slide-active .txt .info {
		font-size: 14px;
	}
}

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

@media all and (max-width:420px) {
	.ind_more {
		font-size: 14px;
		width: 150px;
		line-height: 34px;
		height: 36px;
	}

	.media_ul li a {
		padding: 8px;
	}

	.des,
	.des p {
		font-size: 14px;
		line-height: 20px;
	}

	.Header-container .logo img {
		height: 25px;
		width: unset;
	}

	.Footer-container .top .fr>ul>li p {
		font-size: 16px;
		padding: 16px 0;
	}
}

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