@charset "utf-8";

/* CSS Document */

@font-face{

	src:url(https://images.nbturbo.com/OPPOSans-R.ttf);

	font-family:"myfont";

	}

@font-face{

	src:url(https://images.nbturbo.com/OPPOSans-M.ttf);

	font-family:"title2";

	}

*{

	padding:0;

	margin:0;

	border:none;

	outline:none;

	font-size:12px;

	color:#666;

	list-style:none;

	font-family:"myfont",Arial,sans-serif;

	font-weight:normal;

	}

@font-face {

  font-family: 'iconfont';

  src:url(../icons/iconfont.eot);

  src: url(../icons/iconfont.eot?#iefix) format('embedded-opentype'),

  url(../icons/iconfont.woff) format('woff'),

  url(../icons/iconfont.ttf) format('truetype'),

  url(../icons/iconfont.svg#iconfont) format('svg');

}

.iconfont{

  font-family:"iconfont" !important;

  font-size:16px;font-style:normal;

  -webkit-font-smoothing: antialiased;

  -webkit-text-stroke-width: 0.2px;

  -moz-osx-font-smoothing: grayscale;

}

*{

	margin:0;

    padding:0;

    border:0;

    outline:0;

	list-style:none;

	}

.clear{

	clear:both;

	}

a{

	text-decoration:none;

	}

/*index*/

.w_all{

	width:94%;

	margin:auto;

	}

.w_all2{

	width:1200px;

	margin:auto;

	}

.w_all3{

	width:80%;

	margin:auto;

	}

html, body{

	width:100%;

	font-size: 62.5%;

	position:relative;

	}

header{

	width:100%;

	position:absolute;

	left:0;

	top:0;

	z-index:999;

	-webkit-transition: all 0.3s ease-out;

	transition: all 0.3s ease-out;

	background: #fff;

	box-shadow: 0 0 5px rgba(0,0,0,0.08);

	}
	header .tops{
	
	background: #ab1f22;
	padding: 6px 0;
}
header .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .top p{
	color: #fff;
	font-size: 1.3rem;
}
header .nav_box{

	position:relative;

	display: flex;

	align-items: center;

	justify-content: space-between;

}

header .logo{

	height: 52px;

	position:relative;

	padding:18px 0;

	-webkit-transition: all 0.3s linear;

	transition: all 0.3s linear;

}

header .logo img{

	display:block;

	height:100%;

	}

header .nav ul{

	display: flex;

	width: max-content;

}

header .nav li{

	position: relative;

	margin: 0 3.5rem;

	}

header .nav li::before{

	content: "";

	position: absolute;

	left: 0;

	bottom: -1px;

	width: 100%;

	height: 2px;

	background: #e0c596;

	opacity: 0;

}

header .nav li h3{

	color:#1a1a1a;

	line-height: 88px;

	text-align: center;

	font-size:1.8rem;

	font-family: "title2";

	letter-spacing: 1px;

	-webkit-transition: all 0.3s linear;

	transition: all 0.3s linear;

	}

header .nav li:hover h3{

	color: #ab1f22;

}

header .h_other{

	display: flex;

	align-items: center;

}

header .h_other  .lls{

	display: flex;

	align-items: center;

	font-size: 1.5rem;

	color: #1a1a1a;

}

header .h_other i{

	color: #1a1a1a;

	font-size: 2.6rem;

	margin-right: 8px;

	margin-top: 2px;

}

header .h_other  .lls.search {

	color: #333;

	background: #eee;

	border-radius: 50px;

	padding: 5px 1.5rem;

	justify-content: space-between;

	width: 15rem;
	margin-right: 3rem;

}

header .h_other  .lls.search input{

	background: none;

	width: 80%;

	font-size: 1.5rem;

	color: #333;

}

header .h_other  .lls.search i{

	font-size: 1.7rem;

	padding: 0;

	margin: 0;

	color: #888;

}

header .h_other  .lls.search button{

	background: none;

	cursor: pointer;

}

.navBtn{

	position:absolute;

	right:0;

	top:50%;

	z-index:99999;

	cursor:pointer;

	-webkit-transform:translate(0%,-50%);

	transform:translate(0%,-50%);

	display: none;

}

.navBtn span{

	display: block;

	width: 30px;

	height: 2px;

	background:#222;

	margin:6px auto;

}

.nav_btn_active{

	-webkit-transition:all 0.4s;

	transition:all 0.4s;

	background: #e0c596;

	border-radius: 50%;

	width: 30px;

	height: 20px;

	padding:20px 12px 15px;

	-webkit-transform: scale(0.7);

	transform: scale(0.7);

	margin-top: -20px;

}

.nav_btn_active span{

	background:#fff;}

.nav_btn_active span:nth-of-type(1){

	-webkit-transform:rotate(45deg);

	transform:rotate(45deg);

	}

.nav_btn_active span:nth-of-type(2){

	opacity:0;

	}

.nav_btn_active span:nth-of-type(3){

	margin-top:-55%;

	-webkit-transform:rotate(-45deg);

	transform:rotate(-45deg);

	}

.s_menu{

	position: absolute;

	width: max-content;

	left: 0px;

	text-align: center;

	top: 88px;

	background: #e0c596;

	padding: 6px 20px;

	box-sizing: border-box;

	display: none;

}

.s_menu::before{

	content: "";

	width: 0;

    height: 0;

    border-bottom: 10px solid #e0c596;

    border-right: 10px solid transparent;

	position: absolute;

	left: 0;

	top: -10px;

}

.s_menu dl{

	width:100%;

}

.s_menu dd{

	font-size: 1.5rem;

	margin:10px 0;

	color: #333;

	cursor: pointer;

	-webkit-transition: all 0.3s linear;

	transition: all 0.3s linear;

}

.s_menu dd:hover{

	text-decoration: underline;

}

/*banner*/

.banner{

	position:relative;

	width:100%;

	height:auto !important;

	overflow: hidden;

	}

.banner .swiper-slide{

	width: 100%;

}

.banner b img{

	display: block;

	width: 100%;

}

.banner .txt{

	text-align: center;

	position: absolute;

	left: 50%;

	top: 52%;

	-webkit-transform: translate(-50%,-50%);

	transform: translate(-50%,-50%);

	-webkit-transition: all 1s ease-out;

	transition: all 1s ease-out;

	z-index: 999;

}

.banner .txt{

	top:50%;

}

.banner .txt h2{

	font-size: 5.2rem;

	color: #fff;

	font-family: "title2";

	font-weight: bold;

	position: relative;

	letter-spacing: 1px;

	text-shadow: 0 2px 10px rgba(0,0,0,0.06);

}

.banner .txt p{

	font-size: 2rem;

	color: #fff;

	margin: 2rem 0 0;

	text-shadow: 0 2px 10px rgba(0,0,0,0.06);

}

.banner .swiper-pagination span{

	background: #fff;

	opacity: 1 !important;

	margin: 2rem 6px !important;

	width: 10px !important;

	height: 10px !important;

}

.banner .swiper-pagination-bullet-active{

	background: #ab1f22 !important;

}

.btn .ll{

	position: absolute;

	top: 50%;

	-webkit-transform: translateY(-50%);

	transform: translateY(-50%);

	z-index: 99;

	opacity: 0.3;

	-webkit-transition: all 0.3s linear;

	transition: all 0.3s linear;

}

.btn .ll i{

	font-size: 5.6rem;

	color: #fff;

	cursor: pointer;

}

.btn .ll.lll{

	left: 0%;

}

.btn .ll.llr{

	right: 0%;

	top: 46%;

	-webkit-transform: rotate(180deg);

	transform: rotate(180deg);

}

.btn .ll:hover{

	opacity: 0.8;

}

.more{

	margin: 5rem auto 0;

	transition: all 0.4s linear;

	display: flex;

	justify-content: center;

	align-items: center;

	cursor: pointer;

	font-size: 1.4rem;

	position: relative;

	background: #e1c596;

	color: #333;

	width: max-content;

	padding: 1.2rem 2rem;

}

.more i{

	font-size: 1.6rem;

	display: block;

	margin: 0 0 0 8px;

	-webkit-transition: all 0.6s linear;

	transition: all 0.6s linear;

}

.more:hover{

	color: #ab1f22;

	border-radius: 50px;

}
.more:hover i{
	color: #ab1f22;
	transform: translateX(5px);
}
.index_title{

	text-align: center;

	margin-bottom:4rem;

	position: relative;

	z-index: 3;

}

.index_title h2{

	display: inline-block;

	font-size:3.2rem;

	color:#fff;

	font-family: "title2";

	font-weight: bold;

	letter-spacing: 1px;
	display: flex;
	justify-content: center;
	align-items: center;

	}
.index_title h2::before{
	content: "";
	display: block;
	width: 1.5rem;
	height: 3rem;
	background: #fff;
	transform: rotate(-30deg);
	margin-right: 3rem;
    margin-top: 5px;
}
.index_title h2::after{
	content: "";
	display: block;
	width: 1.5rem;
	height: 3rem;
	background: #fff;
	transform: rotate(-30deg);
	margin-left: 3rem;
    margin-top: 5px;
}
.index_box{

	position: relative;

	padding: 6% 0;

	box-sizing: border-box;

	overflow: hidden;

}
.index_bar2{
	background: #ab1f22;
}
.index_bar2 .title{
	color: #fff;
}
.index_title h2{
	color: #fff;
}
.index_bar2 ul{

	position: relative;

	display: flex;

	justify-content: space-between;

	flex-wrap: wrap;

}

.index_bar2 ul a{

	width: 22%;

	box-sizing: border-box;

	

}
.index_bar2 ul li{
	position: relative;
	background: #fff;
    border-radius: 10px;
    padding: 5%;
	overflow: hidden;
}
.index_bar2 ul li b{

	display: block;

	width: 100%;

	overflow: hidden;

}

.index_bar2 ul li b img{

	display: block;

	width: 100%;

}

.index_bar2 ul li .txt{

	position: absolute;

	left: 0;

	top: 0;

	width: 100%;

	height: 100%;

	background: rgba(171,31,34,0.7);

	box-sizing: border-box;

	-webkit-transition: all 0.3s linear;

	transition: all 0.3s linear;

	display: flex;

	justify-content: center;

	align-items: center;

	opacity: 0;

}

.index_bar2 ul li .txt h3{

	font-size: 1.8rem;

	color: #fff;

	font-family: "title2";

	letter-spacing: 1px;

}
.index_bar2 ul h6{

	font-size: 1.6rem;
	margin-top: 2rem;
	color: #fff;
	font-family: "title2";
	text-align: center;
	letter-spacing: 1px;

}
.index_bar2 ul li:hover .txt{

	opacity: 1;

}

.index_bar3::before{

	content: "";

	position: absolute;

	right: 0;

	top: 0;

	height:100%;

	width: 100%;

	background: #ab1f22;

}

.index_bar3 ul{

	position: relative;

	display: flex;

	justify-content: space-between;

	flex-wrap: wrap;

}

.index_bar3 ul li{

	width: 32%;

	box-sizing: border-box;

	margin-bottom: 2.5%;
	overflow: hidden;
	border-radius: 10px;

}
.index_bar3 ul li b{
	display: block;
	width: 100%;
	overflow: hidden;
}
.index_bar3 ul li img{

	display: block;

	width: 100%;

	-webkit-transition: all 0.5s linear;

	transition: all 0.5s linear;

}

.index_bar3 ul li:hover img{

	display: block;

	transform: scale(1.06);

}

.index_bar3 ul li .txt{

	padding:5% 5%;

	box-sizing: border-box;

	text-align: center;

	background: #f5f6f8;

	-webkit-transition: all 0.3s linear;

	transition: all 0.3s linear;

}

.index_bar3 ul li .txt h3{

	font-size: 1.6rem;

	color: #333;

	font-family: "title";

	font-weight: bold;

}

.index_bar3 ul li .txt p{

	font-size: 1.2rem;

	color: #333;

	margin: 5px 0;

}

.index_bar3 ul li:hover .txt{

	background: #e0c596;

	box-shadow: 0rem 5rem 5rem -5rem #e0c596;

}

.index_bar3 ul li:hover .txt h3,.index_bar3 ul li:hover .txt p{

	color: #ab1f22;

}

.index_bar3 .more{

	margin-top:2rem;

}

.index_bar1{

	padding-top: 0;

}

.index_bar1 .box{

	position: static;

}

.index_bar1 .box::before{

	content: "";

	position: absolute;

	right: 0;

	bottom: 0;

	height: 60%;

	width: 200%;

	background: #ab1f22;

}

.index_bar1 .top{

	position: relative;

	z-index: 4;

}

.index_bar1 .top b{

	display: block;

	width: 100%;

	height: 100%;

	overflow: hidden;

	position: relative;

}

.index_bar1 .top b::before{

	content: '';

	position: absolute;

	left: 0;

	top: 0;

	width: 100%;

	height: 100%;

	background: #000;

	opacity: 0.4;

}

.index_bar1 .top b img{

	display: block;

	width: 100%;

}

.index_bar1 .txt{

	position: absolute;

	z-index: 6;

	left: 50%;

	top: 50%;

	width: 80%;

	transform: translate(-50%,-50%);

}

.index_bar1 .txt p{

	position:relative;

	font-size:1.5rem;

	color:#fff;

	text-align: center;

	line-height: 2;

	text-shadow: 0 2px 10px rgba(0,0,0,0.06);

}

.index_bar1 .txt p strong{

	font-size:3rem;

	display: block;

	color:#fff;

	font-family: "title2";

	font-weight: bold;

	position:relative;

	margin-bottom: 3rem;

	letter-spacing: 1px;

	}

.index_bar1 .bottom{

	display: flex;

	justify-content: space-between;

	position: relative;

	z-index: 4;

}

.index_bar1 .bottom a{

	display: block;

	padding: 3%;

	box-sizing: border-box;

	background: #eee;

	width: 25%;

	text-align: center;

	position: relative;

}

.index_bar1 .bottom a:first-of-type{

	width: 50%;

	background: none;

	text-align: left;

}

.index_bar1 .bottom a:last-of-type{

	border-left: 1px solid #ccc;

}

.index_bar1 .bottom a::before{

	content: "";

	width: 100%;

	height: 0%;

	position: absolute;

	left: 0;

	bottom: 0;

	-webkit-transition: all 0.3s linear;

	transition: all 0.3s linear;

	background: #e0c596;

}

.index_bar1 .bottom a:hover:before{

	height: 100%;

}

.index_bar1 .bottom .bb h6{

	border: 1px solid #fff;

	color: #fff;

	position: absolute;

	right: 15px;

	top: 15px;

	width: 18px;

	height: 18px;

	text-align: center;

	line-height: 18px;

	font-size: 1.3rem;

	opacity: 0.6;

	-webkit-transition: all 0.3s linear;

	transition: all 0.3s linear;

}

.index_bar1 .bottom .bb h6:hover{

	opacity: 1;

}

.index_bar1 .bottom p{

	color: #fff;

	font-size: 1.5rem;

	position: relative;

	z-index: 2;

	overflow: hidden;

	text-overflow: ellipsis;

	white-space: nowrap;

}

.index_bar1 .bottom h2{

	color: #333;

	font-size: 1.5rem;

	position: absolute;

	left: 50%;

	top: 50%;

	-webkit-transform: translate(-50%,-50%);

	transform: translate(-50%,-50%);

}

.index_bar1 .bottom h2 i{

	color: #333;

	font-size: 1.5rem;

	display: inline-block;

	margin-left: 10px;

	-webkit-transform: rotate(180deg);

	transform: rotate(180deg);

}

.index_bar1 .bottom a:hover h2,.index_bar1 .bottom a:hover i{

	color: #fff;

}
.index_bar4::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.7;
}
.index_bar4 {
	position: relative;
}
.index_bar4 .contain{

	overflow: hidden;

	display: flex;

	align-items: center;

	justify-content: space-between;
	position: relative;
	z-index: 6;
}

.index_bar4 .ll{

	width: 45%;

}

.index_bar4 .ll img{

	width: 100%;

	display: block;

}

.index_bar4 .rr{

	width: 45%;

}

.index_bar4 .rr .index_title h2{
	justify-content: flex-start;

}

.index_bar4 dl dd{

	color:#fff;

	margin: 2rem 0;

	display: flex;

	font-size:1.6rem;

	font-family: "title2";

	}
.index_bar4 dl dd p{
	font-size:1.6rem;
	color:#fff;
	font-family: "title2";
}
.index_bar4 dl dd img{

	width: 24px;

	height: 24px;

	margin-right: 10px;

	margin-top: -2px;

	display: block;

	float: left;

}
.index_bar4 dl dd:hover{

	text-decoration: underline;

}
.index_bar5{
	padding: 13% 0;
	position: relative;

}

.index_bar5 .index_title h2{
	color: #fff;
}
.index_bar5 .index_title p{
	color: #fff;
	font-size: 1.8rem;
	margin-top: 3rem;
	line-height: 1.8;
}
.footer {

	position:relative;

	z-index:3;

	background: #333;

	padding: 4rem 0 0;

}

.footer .box{

	display: flex;

	align-items: center;

	flex-wrap: wrap;

	justify-content: space-between;

}

.footer dl dd{

	color:#fff;

	margin:2rem;

	font-size:1.5rem;

	font-family: "title2";

	transition: all 0.3s linear;

	}

.footer dl dd:hover{

	color: rgba(255,255,255,0.7);

}

.ewm p{

	text-align: center;

	color: rgba(255,255,255,0.8);

	font-size: 1.4rem;

}

.ewm img{

	display: block;

	width: 12rem;

	margin:0 auto 1rem;

}

.footer .rr{

	border-left: 1px solid rgba(255,255,255,0.3);

	border-right: 1px solid rgba(255,255,255,0.3);

	padding: 0 8%;

	box-sizing: border-box;
	width: 70%;

}

.footer .rr p{

	color:#fff;

	margin: 1.6rem 0;

	display: flex;

	font-size:1.5rem;

	font-family: "title2";

	}

.footer .rr p img{

	width: 22px;

	height: 22px;

	margin-right: 10px;

	margin-top: -1px;

	display: block;

	float: left;

}

.footer .rr p:hover{

	text-decoration: underline;

}

.footer .copy{

	background: #1a1a1a;

	margin-top: 4rem;

}

.footer .copy .w_all2{

	display: flex;

	justify-content: center;

	margin: 0 auto;

	padding: 2rem 0;

}

.footer .copy p{

	text-align: center;

	color: rgba(255,255,255,0.7);

	font-size: 1.3rem;

	}



.all_back{

	position:fixed;

	right:2%;

	bottom:10.5%;

	cursor:pointer;

	width: 50px;

	height: 50px;

	background: #fff;

	border: 1px solid #ddd;

	border-radius: 50%;

	display: none;

	}

.all_back i{

	color:#111;

	font-size:2rem;

	line-height: 50px;

	text-align: center;

	display:block;

	-webkit-transform:rotate(-90deg);

	transform:rotate(-90deg);

	}

.all_back:hover:before{

	opacity:1;

	top:-15px;}

.all_box{

	padding: 6% 0;

	position: relative;

}

.ban{

	position: relative;

	height:65vh;

}

.ban::before{

	content: "";

	position: absolute;

	left: 0;

	top: 0;

	width: 100%;

	height: 100%;

	background: #191d24;

	opacity: 0;

}

.navs{

	position: absolute;

	right: 0;

	top: -70px;

	display: flex;

	align-items: center;

	letter-spacing: 1px;

}

.navs a{

	font-size: 1.24rem;

	padding-right: 15px;

	margin-right: 15px;

	position: relative;

	color: #aaa;

	-webkit-transition: all 0.3s linear;

	transition: all 0.3s linear;

}

.navs a::before{

	content: "";

	position: absolute;

	right: 0;

	top: 50%;

	-webkit-transform: translateY(-50%);

	transform: translateY(-50%);

	width: 1px;

	height: 70%;

	background: #ccc;

}

.navs p{

	font-size: 1.24rem;

	color: #333;

	max-width: 100px;

	overflow: hidden;

	white-space: nowrap;

	text-overflow: ellipsis;

}

.navs a:hover{

	color: #333;

}

.title{

	text-align: left;

	margin-bottom: 3%;

	color: #1a1a1a;

	letter-spacing: 1px;

	font-size: 3.6rem;

	font-family: "title2";

	font-weight: bold;

}

.all_box .a1{

	position: relative;

}

.all_box .contain{

	position: relative;

}

.about .a1::before{

	content: "";

	position: absolute;

	left: 0;

	bottom: 0;

	width: 100%;

	height: 60%;

	background: #ab1f22;

}

.about .left{

	float: left;

	width: 50%;

	position: relative;

	z-index: 2;

}

.about .left img{

	width: 100%;

}

.about .right{

	float:right;

	width: 50%;

	padding: 5%;

	box-sizing: border-box;

	background: #f5f6f8;

	position: relative;

	z-index: 2;

}

.about .right h2{

	font-size: 2.6rem;

	color: #333;

	margin-bottom: 3%;

	color: #ab1f22;

	font-weight: bold;

}

.about .right  p{

	font-size: 1.46rem;

	margin: 2rem 0;

	line-height: 2;

	width: 75%;

	color: #666;

	text-align: justify;

}
.about .a2::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .8;
}
.about .a2 .title2{
	color: #fff;
	position: relative;
	z-index: 3;
}
.about .a2 ul{

	display: flex;

	justify-content: center;
	position: relative;
	z-index: 3;
}

.about .a2 ul li{

	margin:3rem 5rem;

	text-align: center;

}

.about .a2 ul li img{

	height: 5rem;

	margin: auto;

	display: block;

	background: #e0c596;

	padding: 15px;

	border-radius: 50%;

	transition: all 0.4s linear;

}

.about .a2 ul li:hover img{

	transform: rotateY(180deg);

}

.about .a2 ul li p{

	margin-top: 2rem;

	font-size: 1.7rem;
	color: #fff;
}

.title2{

	font-size: 2.6rem;

	color: #333;

	position: relative;

	padding-bottom: 15px;

	margin: 20px 0;

	font-family: "title2";

	text-align: center;

}

.title2::before{

	content: "";

	position: absolute;

	left: 50%;

	transform: translateX(-50%);

	bottom: 0;

	width: 40px;

	height: 3px;

	background: #e0c596;

}

.pro {

	overflow: hidden;

	padding: 5% 0;

	position: relative;
	

}
.probox{
	background: #eee;
}
.pro .left{

	float: left;
	padding: 3rem 4rem;
	box-sizing: border-box;
	width: max-content;
	background: #ab1f22;
	max-width: 21%;
}

.pro dl{

	margin-bottom: 2.5rem;

}

.pro dl dt{

	font-size: 1.7rem;

	margin-bottom: 2rem;

	color: #fff;

	font-family: "title2";

}

.pro dl dd{

	display: block;

	font-size: 1.4rem;

	margin: 1.3rem 0;

	cursor: pointer;

	color: rgba(255,255,255,0.7);

	-webkit-transition: all 0.4s ease-in-out;

	transition: all 0.4s ease-in-out;

	position: relative;

	display: none;

	padding-left: 16px;

}

.pro dl dd::before{

	content: '';

	width: 5px;

	height: 5px;

	border-radius: 50%;

	border: 1px solid #fff;

	margin-right: 10px;

	position: absolute;

	left: 0;

	top: 5px;

}

.pro dl.active dt{

	color: #e0c78f;

	font-weight: bold;

}

.pro dl.active dd{

	display: block;

}

.pro dl dd:hover{

	color: #fff;

}

.pro dl dd.active{

	color: #fff;

}

.pro dl dd.active::before{

	background: #fff;

	border-color: #fff;

}

.pro ul{

	width: 78%;

	float: right;

	display: flex;

	flex-wrap: wrap;

}

.pro ul a{

	width: 30.3%;

	margin: 1.5%;

	overflow: hidden;

	box-shadow: 0 6px 10px rgba(0, 0, 0, .08);

	position: relative;

	background: #fff;

	padding:2rem 1rem 1rem;

	box-sizing: border-box;

}
.pro ul li b{

	display: block;

	width: 100%;

	overflow: hidden;

	position: relative;

}

.pro ul li:hover .more2s{

	transform: translate(-50%,-50%) scale(1);

}

.pro ul li img{

	display: block;

	width: 100%;

	-webkit-transition: all 0.5s ease-out;

	transition: all 0.5s ease-out;

}

.pro ul li p{

	margin: 0;

	text-align: center;

	color: #333;

	padding: 10px 0;

	position: relative;

	z-index: 2;

	line-height: 1.4;

	font-size: 1.4rem;

}

.pro ul li:hover img{

	-webkit-transform: scale(1.06);

	transform: scale(1.06);

}

.pro ul li span{

	display: block;

	margin-top: 0.5rem;

	font-size: 1.6rem;

	font-weight: bold;

	color: #e1c49a;

	font-family: "title2";

}

.more2s{

	width: 80px;

	height: 80px;

	padding: 10px;

	font-size: 1.3rem;

	line-height: 1.5;

	letter-spacing: 1px;

	display: flex;

	justify-content: center;

	align-items: center;

	background: rgba(171,31,34,0.8);

	color: #fff;

	border-radius: 50%;

	position: absolute;

	left: 50%;

	top: 50%;

	z-index: 8;

	transform:translate(-50%,-50%) scale(0);

	transition: all .5s;

}

.pro ul li:hover .more2s{

	transform: translate(-50%,-50%) scale(1);

}

.o_nav {

	padding: 2% 0 0;

}

.o_nav .tops{

	display: flex;

	align-items: center;

	color: #666;

	border-bottom: 1px solid #eee;

	padding-bottom: 2%;

}

.o_nav .tops a{

	display: flex;

	align-items: center;

	color: #888;

	margin: 0 10px;

	font-size: 1.3rem;

}

.o_nav .tops a:first-of-type{

	margin-left: 0;

}

.o_nav .tops img{

	height: 14px;

	margin-right: 6px;

	margin-top: -2px;

	opacity: 0.5;

}

.o_nav .tops span{

	color: #333;

	font-size: 1.3rem;

	margin-left: 10px;

}

.o_nav ul{

	padding: 5% 0 6%;

	display: flex;

	justify-content: center;

}

.o_nav ul a{

	display: block;

	margin: 0 5%;

}

.o_nav ul li{

	text-align: center;

	color: #333;

	font-size: 1.4rem;

}

.o_nav ul li img{

	width: 50px;

	height: 50px;

	padding: 5px;

	margin: auto;

	border-radius: 50%;

	background: #eee;

	margin-bottom: 10px;

}

.o_nav ul li img:last-of-type{

	display: none;

}

.o_nav ul li:hover{

	color: #ab1f22;

	transition: all 0.3s linear;

}

.o_nav ul li:hover img{

	background: #ab1f22;

}

.o_nav ul li:hover img:first-of-type,.o_nav ul li.active img:first-of-type{

	display: none;

}

.o_nav ul li:hover img:last-of-type,.o_nav ul li.active img:last-of-type{

	display: block;

}

.o_nav ul li.active{

	color: #e0c596;

}

.o_nav ul li.active img{

	background: #e0c596;

}

.f-cb{

	display: flex;

	justify-content: space-between;

}

.proinfo-a .left{

	width: 50%;

	display: flex;

	justify-content: space-between;

}

.proinfo-a .simg{

	overflow: hidden;

	position: relative;

}

.proinfo-a .gallery-thumbs {

	width: 105px;

	height: calc(100% - 100px);

	margin: 12px 0;

	box-sizing: border-box;

	overflow: hidden;

}

.proinfo-a .gallery-thumbs .swiper-slide {

	width: 105px;

	height: 105px !important;

	background-size: cover;

	background-position: center;

	box-sizing:border-box;

}

.proinfo-a .gallery-thumbs .swiper-slide.active {

    border: 1px solid #ab1f22;

}

.proinfo-a .simg .swiper-button-prev2,

.proinfo-a .simg .swiper-button-next2{

	left: 0;

	bottom: 0;

	z-index: 10;

	cursor: pointer;

	position: absolute

}

.proinfo-a .swiper-button-prev1{

	top: 0;

}

.proinfo-a .swiper-button-prev1 i{

	-webkit-transform: rotate(180deg);

	transform: rotate(180deg);

}

.proinfo-a .simg i{

	color: #333;

	display: block;

	font-size: 2rem;

	text-align: center;

	background: rgba(0,0,0,0.1);

	padding: 7px 0;

	-webkit-transition: all 0.3s linear;

	transition: all 0.3s linear;

	cursor: pointer;

}

.proinfo-a .simg i:hover{

	background: rgba(0,0,0,0.05);

}

.proinfo-a .bimg{

	width: calc(100% - 120px);

	position: relative;

}

.proinfo-a .bimg::before{

	content: '';

	position: absolute;

	left: 0;

	top: 0;

	width: 100%;

	height: 100%;

	background: #111;

	opacity: 0.03;

	z-index: 3;

}

.proinfo-a .gallery-top {

	overflow: hidden;

}

.proinfo-a .gallery-top .swiper-slide{

	background: #fff;

}

.proinfo-a .gallery-top .swiper-slide img{

	width: 100%;

	padding: 2rem 0;

	box-sizing: border-box;

}

.proinfo-a .gallery-top .swiper-pagination-bullet{

	background: #ccc !important;

	opacity: 1;

}

.proinfo-a .gallery-top .swiper-pagination-bullet.swiper-pagination-bullet-active{

	background: #ab1f22 !important;

}

.proinfo-a .right{

	width: 45%;

}

.proinfo-a .right .title4 h3{

	color: #ab1f22;

	text-align: left;

	border-bottom: 1px solid #eee;

	padding-bottom: 2rem;

	font-size: 3rem;

	font-weight: bold;

}

.proinfo-a .right h2{

	color: #1a1a1a;

	font-size: 2.2rem;

	display: block;

	margin: 1rem 0;

}

.proinfo-a .txt{

	margin: 3rem 0;

}

.proinfo-a .txt p{

	margin: 1rem 0;

	font-size: 1.6rem;

	line-height: 1.8;

	position: relative;

	padding-left: 15px;

}

.proinfo-a .txt p:before{

	content: '';

	position: absolute;

	left: 0;

	top: 10px;

	width: 6px;

	height: 6px;

	background: #e0c596;

	transform: rotate(45deg);

}

.proinfo-a .xj{

	width: 120px;

	background: #0088d2;

	display: flex;

	align-items: center;

	justify-content: center;

	color: #fff;

	padding: 10px 0;

	border-radius: 30px;

	font-size: 1.4rem;

	margin-top: 6%;

	transition: all 0.3s linear;

}

.proinfo-a .xj img{

	width: 18px;

	margin-right: 6px;

	margin-top: -1px;

}

.proinfo-a .xj:hover{

	background: #ab1f22;

}

.pro_bar2{

	background: #f3f3f3;

}

.pro_bar2 h3{

	font-size: 2rem;

	font-family: "title2";

	font-weight: normal;

	margin: 3rem 0 1.5rem;

	position: relative;

	padding-left: 22px;

	color: #333;

}

.pro_bar2 h3::before{

	content: '';

	position: absolute;

	left: 0;

	top: 9px;

	width: 8px;

	height: 8px;

	transform: rotate(45deg);

	background: #e0c596;

	border-radius: 2px;

}

.pro_bar2 h3:first-of-type{

	margin-top: 0;

}

.pro_bar2 p{

	font-size: 1.6rem;

	line-height: 2;

	margin: 5px 0;

	padding-left: 22px;

}

.pro_bar2 p img{

	width: 100%;

}

.pro_bar2 table{

	width: 100%;

	padding-left: 22px;

	box-sizing: border-box;

}

.pro_bar2 table tr td{

	padding: 12px 0;

	font-size: 1.6rem;

	color: #666;

}

.pro_bar3{

	padding-top: 6%;

	margin: 0;
	background: #ab1f22;
}

.pro_bar3 h3{

	text-align: center;

	font-size: 3rem;

	color: #fff;

	letter-spacing: 1px;

	font-family: "title2";

}

.pro_bar3 ul{

	margin: 2.5% auto 0;

	float: none;

	width: 100%;

	display: flex;

	justify-content: center;

}

.pro_bar3 ul a{

	width: 22%;
	border-radius: 10px;
	overflow: hidden;
}

.pro_bar3 ul li::before{

	content: '';

	position: absolute;

	left: 0;

	top: 0;

	width: 100%;

	height: 100%;

	background: #111;

	opacity: 0.03;

	z-index: 3;

}

.cases ul {

	display: flex;

	flex-wrap: wrap;

}

.cases ul li{

	width: 47%;

	margin-bottom: 3%;

	margin-right: 3%;

}

.cases ul li a{

	display: block;

	width: 100%;

	padding: 0;

	box-shadow: none;

}

.cases ul li:nth-of-type(2n){

	margin-right: 3%;

}

.cases ul li b{

	display: block;

	width: 100%;

}

.cases ul li b img{

	display: block;

	width: 100%;

}

.cases ul li .txt{

	background: #fff;

	padding:3% 5%;

	width: 80%;

	box-sizing: border-box;

	margin-top: -8%;

	position: relative;

	z-index: 2;

}

.cases ul li h2{

	font-size: 1.8rem;

}

.casesd {

	display: flex;

	justify-content: space-between;

}

.casesd .left{

	background: #ab1f22;

	padding: 3rem 5%;

	height: 100%;

}

.casesd .a1{

	width: 80%;

}

.casesd .a1 .title{

	font-size: 3rem;

	margin-bottom: 3rem;

	color: #ab1f22;

}

.casesd p{

	margin: 2rem 0;

	font-size: 1.6rem;

	line-height: 2;

}

.casesd p strong{

	color: #333;

}

.casesd p img{

	display: block;

	width: 100%;

	margin: 2rem 0;

}

.pages{

	text-align: center;

	margin-top: 3%;

}

.pages a{

	display: inline-block;

	font-size: 1.3rem;

	width: 30px;

	height: 30px;

	line-height: 30px;

	border-radius: 50px;

	margin: 8px;

	padding: 4px;

	background: #fff;

	cursor: pointer;

	-webkit-transition: all 0.3s linear;

	transition: all 0.3s linear;

}

.pages a.pre{

	width: 80px;

	background: none !important;

	-webkit-transform: rotate(180deg);

	transform: rotate(180deg);

}

.pages a.next{

	width: 80px;

	background: none !important;

	-webkit-transform: translateY(5px);

	transform: translateY(5px);

}

.pages a img{

	font-size: 1.6rem;

}

.pages a:hover,.pages a.active{

	background: #e0c596;

	color: #fff;

}

.pages a:hover i{

	color: #fff;

}

.xq{

	width:100%;

	height:100%;

	position:fixed;

	z-index:999999;

	background:#eee;

	background:rgba(0,0,0,0.7);

	left:0;

	top:0;

	display:none;

	overflow:hidden;

	filter: alpha(opacity=90);

	}

.xq .contain{

	padding: 5%;

    background: #fff;

	overflow: hidden;

	position: absolute;

	left: 50%;

	top: 50%;

	width: 75%;

	box-sizing: border-box;

	-webkit-transform: translate(-50%,-50%);

	transform: translate(-50%,-50%);

	}

.xq .close{

	width:36px;

	height:36px;

	position:fixed;

	right:5%;

	top:3%;

	z-index:7000;

	opacity:0;

	}

.xq .close:after{

	content:"";

	width:36px;

	height:2px;

	background:#fff;

	position:absolute;

	left:0;

	top:20px;

	-webkit-transform:rotate(45deg);

	transform:rotate(45deg);

	}

.xq .close:before{

	content:"";

	width:36px;

	height:2px;

	background:#fff;

	position:absolute;

	left:0;

	top:20px;

	-webkit-transform:rotate(-45deg);

	transform:rotate(-45deg);

	}

.xq .close{

	background:none}

.xq .contain .left{

	float: left;

	width: 50%;

}

.xq .contain .left img{

	display: block;

	width: 100%;

}

.xq .contain .right{

	float: right;

	width: 45%;

}

.xq .contain .x_top{

	border-bottom: 1px solid #ddd;

	padding-bottom: 3%;

	margin-bottom: 5%;

}

.xq .contain .x_top span{

	margin-right: 50px;

	font-size: 1.4rem;

	color: #333;

}

.xq .contain .x_top span.active{

	font-weight: bold;

}

.xq .contain h3{

	font-size: 1.8rem;

	color: #e0c596;

	font-family: "title2";

	margin-bottom: 3%;

	}

.xq .contain p{

	font-size:1.24rem;

	margin:10px 0;

	text-align: left;

	}

.xq .x_bar{

	display: none;

}

.xq .x_bar:first-of-type{

	display: block;

}
.p_seach .title {
	text-align: center;
	font-size: 1.6rem;
}
.p_seach .title strong{
	font-size: 1.6rem;
	color: #ab1f22;
}
html[lang="en"] *{
	letter-spacing: 0 !important;
} 
html[lang="en"] .s_menu dd{
	text-align: left;
}
html[lang="en"] .banner .txt h2{
	padding: 0 18%;
}
html[lang="en"] .footer .rr {
    max-width: 70%;
}
.p_seach{
	background: #eee
}