/**************************************/
/*************[公用start]**************/
/**************************************/
@font-face{
	font-family:"pf";
	src:url("../fonts/PINGFANG MEDIUM_0.TTF");
}
@font-face{
	font-family:"din";
	src:url("../fonts/DINPro-Medium.otf");
}
@font-face{
	font-family:"ra";
	src:url("../fonts/Rajdhani-SemiBold.ttf");
}

*{
	font-family:"pf";

}


/*主站变灰*/
/*html {
-webkit-filter:grayscale(100%);
-moz-filter:grayscale(100%);
-ms-filter:grayscale(100%);
-o-filter:grayscale(100%);
filter:grayscale(100%);
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)
}
* {
-moz-filter: grayscale(100%); 
-ms-filter: grayscale(100%); 
-o-filter: grayscale(100%); 
filter: gray;
}*/
/*主站变灰*/

/*淘宝变灰*/
/* body, html {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    }*/

/*淘宝变灰*/

/*百度百科變灰*/


/*body.memorial>* {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1)
}
*/


/*百度百科變灰*/

body{
    overflow-x: hidden;
}

div.clear{
	clear: both;
	height: 0;
	width: 0;
}




a{
	text-decoration: none;
	color:inherit;
	cursor: pointer;
}

img{
	border:0;
	max-width: 100%;
}


div.wp{
	width: 1200px; /*主要内容区尺寸大小，每次制作前更新！！！ */
	margin:0 auto;
}

.fl{
	float: left;
}

.fr{
	float: right;
}

.tran{
	transition: all .3s ease-out 0s;
}
.tver{
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}



/*图片中心放大代码区域*/

.img-box{/*图片盒子类名*/

	overflow: hidden;
}

.img-box img{
	transition: .3s;
	width: 100%;
	max-width: 100%;
}

.img-box:hover img{
	/*图片中心放大代码*/
	  -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/*图片中心放大代码区域*/


.imgbox_a{
	position:relative;
	padding-bottom: 100%;
	overflow:hidden;
	display: block;
}

.imgbox_a>img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%!important;
	height: 100%!important;
}
.imgbox_hover>img{
	/* ueco 时间曲线*/
	/*transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s; */
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;

}
.imgbox_hover:hover>img{
	-webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
/**************************************/
/************[公用over]****************/
/**************************************/




/*header-start*/
/**************************************************************/

#header{
	padding-left: 66px;
	height: 100px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	padding-right: 135px;
	background-color: #fff;
	box-shadow: 0 4px 5px -3px rgba(0,0,0,0.15);
}
.search{
	position: absolute;
	width: 130px;
	top: 0;
	right: 0;
	z-index: 15;

}
.search>a{
	display: block;
	height:100px;
	background-color: #d7b07d;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/wen1.png);
}
.logo{
	width: 200px;
	margin-top:17px;
}

.logo a,.logo img{
	display: block;
	width: 100%;
}

.nav ul{
	margin: 0;
}

.nav>ul>li{
	float: left;
	position: relative;
}
.nav>ul>li{
	margin-right: 60px;
}
.nav>ul>li>a{
	display: block;
	height: 100px;
	line-height: 100px;
	font-size: 18px;
	color: #333;

	position: relative;
	padding: 0	10px;
}


.nav>ul>li>a::after{
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    background-color: #d7b07d;
    bottom: 0px;
    right: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.nav>ul>li.cur>a,.nav>ul>li:hover>a{
	color: #d7b07d;

}
.nav>ul>li:hover>a::after,.nav>ul>li.cur>a::after{
  width: 100%;
  right: auto;
  left: 0;
}

.nav>ul>li>ul{
	position: absolute;
	left: 50%;
	margin-left: -60px;
	width: 120px;
	top:100%;
	z-index: 600;
	background-color: #fff;
	display: none;
}
.nav>ul>li>ul>li>a{
	display: block;
	padding: 10px 5px;
	text-align: center;
	line-height: 1.6;
	font-size: 14px;
	color:#333;
	/*transition: .3s;*/
	text-align: center;
}
.nav>ul>li>ul>li>a:hover{
	background-color: #d7b07d;
	color: #fff;
}


/**************************************************************/
/*header-over*/





/*main-start*/
/**************************************************************/

#main{
    margin-top: 100px;
}

.banner{
    height: 800px;
}


.fafa .slides>li{
	height: 800px;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	overflow: hidden;
}



.banner-ww{
	position: absolute;
	width: 100%;
	left: 0;
	top: 25%;

	z-index: 30;
}

.banner-ww h1{
	margin: 0;
	font-size: 80px;
	color: #fff;
	text-align: center;
	letter-spacing:10px;
}
.banner-ww h2{
	margin: 0;
	font-size: 26px;
	color: #fff;
	text-align: center;
	margin-top: 35px;
	letter-spacing:15px;
}
.fafa .slides>li  img{
	display: none;
	width: 100%;
}

.fafa .flex-control-paging li a{
	width: 20px;
	height: 20px;
}


.fafa .flex-control-nav{
	text-align: left;
	padding: 40px 0;
	padding-left: 5%;
	bottom: 0px;

}





.banner{
	overflow: hidden;
	position: relative;
}

.banner-d{
	position: absolute;
	width: 30px;
	left: 50%;
	margin-left: -15px;
	bottom: 0;
	padding:0px 0 15px;
	z-index: 50;
}

.shu-down{
	width: 12px;
	margin: 0 auto;
}
.shu-down img{
	display: block;
	width: 100%;
}

@-webkit-keyframes sdb10 {
	0% {
		-webkit-transform: translate(0, 0);
		opacity: 0;
		filter:alpha(opacity=0);
	}
	40% {
		opacity: 1;
		filter:alpha(opacity=100);
	}
	80% {
		-webkit-transform: translate(0, 8px);
		opacity: 0;
		filter:alpha(opacity=0);
	}
	100% {
		opacity: 0;
		filter:alpha(opacity=0);
	}
}
@keyframes sdb10 {
	0% {
		transform: translate(0, 0);
		opacity: 0;
		filter:alpha(opacity=0);
	}
	40% {
		opacity: 1;
		filter:alpha(opacity=100);
	}
	80% {
		transform: translate(0, 8px);
		opacity: 0;
		filter:alpha(opacity=0);
	}
	100% {
		opacity: 0;
		filter:alpha(opacity=0);
	}
}
#shu{
  position: relative;
  width: 20px;
  height: 30px;
  border: 2px solid #FFF;
  border-radius: 50px;
  box-sizing: border-box;
  z-index: 600;
  cursor:pointer;
  margin: 0 auto 10px;
}

#shu::before {
  position: absolute;
  top: 3px;
  left: 50%;
  content: '';
  width: 2px;
  height:8px;
  margin-left: -1px;
  background-color: #FFF;
  border-radius: 2px;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}














.banner .slides>li{
	transition: transform 5s linear;
	z-index: 500;
}
.banner .slides>li.flex-active-slide{
	/*transform: scale(1.05);*/
}





.main1{
	padding: 60px 0 95px;
}
.title-00{
	border-bottom: 	1px solid #eaeaea;
}
.title-00 h1{
	margin: 0;
	font-size: 16px;
	color: #999999;
	text-transform: uppercase;
	text-align: center;
}
.title-00 h2{
	margin: 0;
	font-size: 30px;
	color: #333;
	font-weight: bold;
	text-align: center;
	padding: 7px 0 25px;
}
.title-00 .line{
	width: 60px;
	height: 3px;
	background-color: #d7b07d;
	margin: 0 auto;
}


.main1-div{
	margin-top:55px;
}

.main1-1{
	width: 684px;
	margin-left: 48px;
}

.fmain1 .imgbox_a{
	padding-bottom: 57.6%;
}

.fmain1 .flex-direction-nav a{
	width: 43px;
	height: 43px;
	top: auto;
	bottom: 0;
	margin-top: 0;
	transition: background-image .3s;
}

.fmain1 .flex-direction-nav a.flex-next{
	right: 0;
}
.fmain1 .flex-direction-nav a.flex-next:hover{
	background-image: url(../images/b-right-h.png);
}
.fmain1 .flex-direction-nav a.flex-prev{
	right: 43px;
	left: auto;
}
.fmain1 .flex-direction-nav a.flex-prev:hover{
	background-image: url(../images/b-left-h.png);
}
.main1-2{
	overflow: hidden;
}

.main1-2 dl{
	margin: 0;
}

.main1-2 dd{
	padding: 30px 0;
	border-bottom: 1px solid #f2f2f2;
}
.main1-2 dd:first-child{
	padding-top: 0;
}

.main1-2-date{
	width: 86px;
	height: 80px;
	margin-right: 15px;
	text-align: center;
	background-color: #f8f8f8;
	border-radius: 5px;
	padding-top: 7px;
}

.main1-2-date h1{
	margin: 0;
	font-size:36px;
	color: #333;
	font-family: "din";
	text-align: center;
	font-weight: bold;
	transition: color .3s;
}


.main1-2-date h2{
	margin: 0;
	font-size:14px;
	color: #999;
	text-align: center;
	margin-top: 6px;
	transition: color .3s;
}


.main1-2-con{
	overflow: hidden;
	padding-top: 13px;
}

.main1-2-con h1{
	margin: 0;
	font-size: 18px;
	color: #333;
	font-weight: bold;
	transition: color .3s;
}

.main1-2-con p{
	margin: 0;
	font-size: 16px;
	color: #999;
	margin-top: 15px;
	padding-left: 10px;
}


.main1-2 dd:hover .main1-2-date h1,
.main1-2 dd:hover .main1-2-date h2{
	color: #d7b07d;
}

.main1-2 dd:hover .main1-2-con h1{
	color: #d7b07d;
}


.main2{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top:75px;
	background-image: url(../images/main2-bg.jpg);
}
.main2 .title-00{
	border-bottom: 0;
}
.main2 .title-00 h1{
	color: #fff;
}
.main2 .title-00 h2{
	color: #fff;
}
.title-00 p{
	margin: 0;
	font-size: 16px;
	color: #fff;
	line-height: 1.5;
	text-align: center;
}
.more00{
	margin-top: 25px;
}
.more00 a{
	display: block;
	width: 39px;
	height: 39px;
	background-image: url(../images/more00.png);
	margin: 0 auto;
	background-size: 100%;
	transition: background-image .3s;
}

.more00 a:hover{
	background-image: url(../images/more00h.png);
}


.main2-dl{
	margin-top: 155px;
}

.main2-dl dl{
	margin: 0;
	display: flex;
}

.main2-dl dd{
	float: left;
	width: 20%;
	position: relative;
	height: 225px;
	transition: width .5s;
	/*height: 290px;*/
}

.main2-dl dd+dd{
	/* border-left: 1px solid #e8e2db; */
}
.main2-dl dd.cur{
	width: 40%;
}

.main2-dd{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	background-color: #f7f2eb;
	transition: background-color .3s,top .3s,background-image .3s;
	background-image: url(../images/main2-bg_0.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}


.main2-dd::before{
	position: absolute;
	left: 30px;
	top: 35px;
	width: 20px;
	height: 2px;
	content: "";
	background-color: #bebbb6;
	z-index: 10;
	transition: .5s;
}

.main2-ico{
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	transition: background-image .5s;
	
}
.main2-ico1{background-image: url(../images/main2-ico1.png);}
.main2-ico2{background-image: url(../images/main2-ico2.png);}
.main2-ico3{background-image: url(../images/main2-ico3.png);}
.main2-ico4{background-image: url(../images/main2-ico4.png);}
.main2-dd-title{
	position: absolute;
	padding: 0px 30px;
	left: 0;
	bottom: 35px;
	width: 100%;
	z-index: 15;
	transition: padding .5s,bottom .5s;
}
.main2-dd-title h1{
	margin: 0;
	font-size: 18px;
	color: #333;
	font-weight: 600;
	padding: 13px 0 8px;
	transition: .5s;
}

.main2-dd-title h2{
	margin: 0;
	font-size: 12px;
	color: #333;
	text-transform: uppercase;
	transition: .5s;
}


.main2-dl dd.cur .main2-dd{
	top: -65px;
	background-color: #d7b07d;
	
}
.main2-dl dd.cur .main2-dd1{background-image: url(../images/main2-bg_1.png);}
.main2-dl dd.cur .main2-dd2{background-image: url(../images/main2-bg_2.png);}
.main2-dl dd.cur .main2-dd3{background-image: url(../images/main2-bg_3.png);}
.main2-dl dd.cur .main2-dd4{background-image: url(../images/main2-bg_4.png);}
.main2-dl dd.cur .main2-dd::before{
	top: 40px;
	left: 50px;
	background-color: #fff;
}


.main2-dl dd.cur .main2-dd-title{
	padding: 0	50px;
	bottom: 45px;
}

.main2-dl dd.cur .main2-dd-title h1{
	font-size: 18px;
	color: #fff;
}
.main2-dl dd.cur .main2-dd-title h2{
	font-size: 12px!important;
	color: #fff;
}

.main2-dl dd.cur .main2-ico1{background-image: url(../images/main2-ico1h.png);}
.main2-dl dd.cur .main2-ico2{background-image: url(../images/main2-ico2h.png);}
.main2-dl dd.cur .main2-ico3{background-image: url(../images/main2-ico3h.png);}
.main2-dl dd.cur .main2-ico4{background-image: url(../images/main2-ico4h.png);}





/**************************************************************/
/*main-over*/





/*footer-start*/
/**************************************************************/

#footer{
	background-color: #f8f8f8;
	border-top: 4px solid #d7b07d;
}
#footer.footer-index{
	border-top: 0;

}

.footer-1-div{
	padding-top: 42px;

}

.er-wp{
	width: 280px;
	border-left: 1px solid #e8e8e8;
}

.er{
	width: 118px;
	font-size: 12px;
	color: #9f9f9f;
	text-align: center;
	margin: 0 auto;
}

.er img{
	display: block;
	width: 100%;
	margin-bottom: 11px;
}
.foo-a{
	width: 165px;
	margin-right: 70px;
	margin-top: 40px;

}
.foo-a dl{
	margin: 0;
}
.foo-a dd{
	float: left;
	width: 39px;
}
.foo-a dd+dd{
	margin-left: 24px;
}
.foo-a dd>a{
	display: block;
	height: 39px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	background-color: #efefef;
	border-radius: 10px;
}

.foo-a dd:first-child>a{background-image: url(../images/fooa1.png);}
.foo-a dd:first-child+dd>a{background-image: url(../images/fooa2.png);}
.foo-a dd:first-child+dd+dd>a{background-image: url(../images/fooa3.png);}

.foo-a dd>a:hover{
	background-color: #d7b07d;
}
.foo-a dd:first-child>a:hover{background-image: url(../images/fooa1h.png);}
.foo-a dd:first-child+dd>a:hover{background-image: url(../images/fooa2h.png);}
.foo-a dd:first-child+dd+dd>a:hover{background-image: url(../images/fooa3h.png);}


.foo-nav{
	overflow: hidden;
}

.foo-nav ul{
	margin: 0;
}
.foo-nav a:hover{
	color: #d7b07d;
}
.foo-nav li{
	float: left;
}
.foo-nav li+li{
	margin-left: 100px;
}
.foo-nav li h1{
	margin: 0;
	font-size: 16px;
	color: #333;

}
.foo-nav dl{
	margin: 0;
	padding-top: 8px;
}
.foo-nav dd{
	margin-top: 10px;
	font-size: 14px;
	color: #999;
}
.footer-1-div2{
	border-top: 1px solid #e8e8e8;
	padding: 15px 0;
	margin-top: 30px;
}

.footer-1-div2 .fl{
	font-size: 14px;
	color: #333;
	padding-left: 28px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(../images/ding.png);
	margin-top: 5px;
}
.footer-1-div2 .fr{
	font-size: 18px;
	color: #333;
	font-family: "din";
	padding-left: 28px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(../images/phone.png);
}
.footer-2{
	background-color: #f2f2f2;
	padding: 20px 0;
	text-align: center;
	font-size: 14px;
	color: #666;
}



/**************************************************************/
/*footer-over*/





/**************************************/
/********[特殊css样式要求区域]**********/
/**************************************/


#header-2{
	display: none;
	height: 75px;
	/*border-bottom:0px solid #035cac;*/
	box-shadow: 0 4px 8px -3px #000;
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	z-index: 1001;
	background-color: #fff;
	/*background-color: #0089d0;*/
}
.nav-2{
	display: none;
	background-color: #fff;
	position: relative;
	z-index:900;
}
.nav-2>ul>li{
	border-top: 1px dotted #ccc;
	position: relative;
}
.jiaspan{
	position: absolute;
	width: 30px;
	height: 30px;
	background-image: url(../images/jia2.png);
	background-repeat: no-repeat;
	background-position: center ;
	top: 5px;
	right: 14px;
}
.jiaspan.cur{
	background-image: url(../images/jia2h.png);
}
.nav-2>ul>li:first-child{
	/*border-top: 0;*/
}
.nav-2>ul>li>a{
	padding:8px 10px;
	display: block;
	font-size: 16px;
	width: 100%;
	color:#333;
	font-family: "anb";
	text-transform: uppercase;
}
.nav-2>ul>li>ul{
	padding-bottom: 10px;
	display: none;
}
.nav-2>ul>li>ul>li>a{
	padding: 6px 10px;
	display: block;
	font-size: 14px;
	padding-left: 25px;
	width: 100%;
	color:#666;
}
/*.downla-2 {
	padding: 5px 0 10px;
	display: none;
}
.downla-2 dd{
	padding-left: 30px;
}
.downla-2 dd a{
	font-size: 14px;
	display: inline-block;
	padding: 3px 0;
	width: auto;
}*/
/*.nav-2 li a:hover{
	color:#1a0d07;
}*/
.nav-2-form{
	padding: 10px;
	position: relative;
}
.nav-2-form input[type="image"]{
	position: absolute;
	right: 19px;
    top: 17px;
    width: 18px;
}
.nav-2-form .form-control{padding-right: 50px;}
.logo-2 {
   font-size: 0;
   width: 170px;
   margin-left: 15px;
   margin-top: 10px;
}
.logo-2 img{
	display: block;
	width: 100%;
}
.menu2{
	margin-right: 15px;
	height: 75px;
	font-size: 0;
}
.menu2 li{
	cursor:pointer ;
	margin-left: 15px;
	float: right;
	margin-top: 29px;
}
.menu2 li+li{
	margin-top: 21px;
}
.menu2 li img{
	/*vertical-align: middle;*/
}
.chenggao{
		display: none;
		height: 75px;
	}
#nav-2-heidi{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 800;
	background-image: url(../images/heidi.png);
	display: none;
}

/**************************************/
/********[特殊css样式要求区域]**********/
/**************************************/




.banner-2{
	height: 448px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 90px;
}

.banner-2 h1{
	margin: 0;
	font-size: 32px;
	font-family: "ra";
	color: #333;
	text-transform: uppercase;
}

.banner-2 h2{
	margin: 0;
	font-size: 30px;
	color: #333;
	font-weight: bold;
	margin-top: 10px;
}

.erji-top{
	background-repeat: repeat-x;
	background-position: left bottom;
	background-image: url(../images/erji-top.jpg);
}


.erji-nav dl{
	margin: 0;
}

.erji-nav dd{
	float: left;
	font-size: 16px;color: #333;
	height: 72px;
	line-height: 72px;
}

.erji-nav dd+dd{
	margin-left:30px;
}
.erji-nav dd.cur>a,
.erji-nav dd>a:hover{
	color: #d7b07d;
}

.mianbaoxie dl{
	margin: 0;
}

.mianbaoxie dd{
	float: left;
	font-size: 16px;
	color: #333;
	height: 72px;
	line-height: 72px;
}
.mianbaoxie{
	padding-left: 21px;
	background-repeat: no-repeat;
	background-position: 0px center;
	background-image: url(../images/mian1.png);
}
.mianbaoxie dd+dd{
	padding-left: 45px;
	background-repeat: no-repeat;
	background-position: 19px center;
	background-image: url(../images/mian2.png);
}
.mianbaoxie dd a:hover,
.mianbaoxie dd span{
	color: #d7b07d;
}


.erji-content{
	padding: 50px 0 70px;
}

.yewu-dl dl{
	margin: 0;
	margin-left: -3%;
	margin-top: -3%;
}

.yewu-dl dd{
	float: left;
	width: 47%;
	margin-left: 3%;
	margin-top: 3%;
}

.yewu-dl dd .imgbox_a{
	padding-bottom: 56.34%;
}



.yewu-dl dd .imgbox_a h1{
	margin: 0;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	padding: 80px 45px 0px;
	font-size: 18px;
	color: #fff;
	z-index: 25;
	background-repeat: repeat-x;
	background-position: left top;
	background-image: url(../images/yewu-hei.png);
	height: 122px;
}
.yewu-dl dd .imgbox_a:hover .yewu-con-wp{
	opacity: 1;
	visibility: visible;
}
.yewu-dl dd .imgbox_a:hover h1{
	bottom: -122px;
	transition: bottom .5s;
}
.yewu-con-wp{
	position: absolute;
	z-index: 50;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background-color: rgba(0,0,0,0.65);
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}

.yewu-con{
	padding: 0	45px;
}

.yewu-con h2{
	margin: 0;
	font-size: 22px;
	color: #fff;
	font-weight: bold;
	line-height: 1.8;
	height: 3.6em;
	overflow: hidden;
}

.yewu-con p{
	margin: 0;
	font-size:16px;
	color: #fff;
	line-height: 2;
	height: 6em;
	overflow: hidden;
	margin-top: 25px;
}
.aboutx{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(../images/aboutx-bg.jpg);
}
.aboutx-div{
	width: 560px;
	padding: 80px 65px;
	background-color: rgba(0,0,0,0.34);
}

.aboutx-title h1{
	margin: 0;
	font-size: 16px;
	color: #fff;
}

.aboutx-title h2{
	margin: 0;
	font-size: 30px;
	color: #fff;
	font-weight: bold;
	padding: 10px 0 22px;
}
.aboutx-title::after{
	display: block;
	width: 20px;
	height: 2px;
	content: "";
	background-color: #fff;
	opacity: 0.43;

}

.aboutx-con{
	font-size: 14px;
	color: #fff;
	line-height: 2.2;
	margin-top: 30px;
}

.team1{
	padding:75px 0 90px;
	background-color: #fff;
}


.team1-title h1{
	margin: 0;
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	color: #e0e0e0;
}

.team1-title h2{
	margin: 0;
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-top: 10px;
}


.team1-title h2 span{
	font-size: 30px;
	padding-right:15px;
}
.team1-div-wp{
	margin-top: 40px;
}

.team1-div{
	min-height: 263px;
	background-color: #fff;
	width: 48.5%;
	padding: 30px 0;
	position: relative;
}
.team1-div::before{
	position: absolute;
	top: 30px;
	bottom: 30px;
	left: 220px;
	width: 1px;
	content: "";
	background-color: #ededed;
}
.team1-ico{
	width: 220px;
	padding: 30px 20px 0;
	font-size: 20px;
	font-weight: bold;
	color: #d7b07d;
	text-align: center;
}
.team1-ico img{
	display: block;
	width:83px;
	margin: 0 auto 22px;
}

.team1-dl{
	overflow: hidden;
	padding:0 45px;
	padding-top: 20px;
}

.team1-dl dl{
	margin: 0;
}
.team1-dl dd{
	font-size: 14px;
	color: #333;
	line-height: 1.6;
	padding-left: 25px;
	background-repeat: no-repeat;
	background-position: 0 8px;
	background-image: url(../images/dd.png);
}
.team1-dl dd+dd{
	margin-top: 13px;
}



.team2{
	padding:60px 0;
	background-color: #fff;
}

.team2-dl dl{
	margin: 0;
	margin-left: -3%;
	margin-top: -3%;
}

.team2-dl dd{
	float: left;
	width: 47%;
	margin-left: 3%;
	margin-top: 3%;
}

.team2-dl dd>a{
	display: block;
	border: 1px solid #eeeded;
	padding: 40px 30px 50px 30px;
	position: relative;
}

.team2-dl dd>a::after{
	width: 0;
	position: absolute;
	content: "";
	left: 0;
	bottom: 0px;
	height: 3px;
	background-color: #d7b07d;
	transition: width .5s;
}
.team2-dl dd>a h1{
	margin: 0;
	font-size:16px;
	color: #333;
	font-weight: bold;
	transition: color .5s;
}

.team2-dl dd>a h1 span{
	display: inline-block;
	margin-right: 15px;
	font-size: 22px;
	vertical-align: middle;
}

.team2-dl dd>a h1 span::after{
	display: block;
	width: 28px;
	height: 3px;
	content: "";
	background-color: #d7b07d;
	margin-top:13px;
}

.team2-dl dd>a p{
	margin: 0;
	font-size:16px;
	color: #999;
	line-height: 1.8;
	height: 5.4em;
	overflow: hidden;
	margin-top: 15px;
}
.team2-dl dd>a p *{
    color:#999!important;
}
.team2-dl dd>a:hover::after{
	width: 100%;
}

.team2-dl dd>a:hover h1{
	color: #d7b07d;
}


.about1{
	padding: 90px 0;
	background-color: #fff;
}

.about1-1{
	width: 400px;
	margin-right: 100px;
}

.about1-1 h1{
	margin: 0;
	font-size: 18px;
	color: #d7b07d;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 3px;
}
.about1-1 h2{
	margin: 0;
	font-size:34px;
	color: #333;
	font-weight: bold;
	margin: 10px 0 65px;
}

.about1-1 p{
	margin: 0;
	font-size:20px;
	color: #333;

}
.about1-2{
	overflow: hidden;
}

.about1-2-h1{
	font-size:20px;
	color: #333;
	font-weight: bold;
}

.about1-2-p{
	font-size: 16px;
	color: #666;
	line-height: 2;
	margin-top: 20px;
}

.about1-div{
	position: relative;
}

.about1-div::before{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 420px;
	width: 1px;
	content: "";
	background-color: #ededed;
}



.about2{
	padding: 90px 0;
	background-color: #fcefe3;
}

.about2-div{
	
	position: relative;
}

.about2-1-pic{
	width: 63.857%;
}

.about2-1-pic .imgbox_a{
	padding-bottom: 51.9%;
}

.about2-1-con{
	overflow: hidden;
	padding: 87px 50px 0;
}

.about2-1-con>img{
	display: block;
	width: 34px;
}

.about2-1-con h1{
	margin: 0;
	font-size: 22px;
	color: #333;
	margin: 32px 0 25px;
}
.about2-1-con h1 a:hover{
	color: #c29457;
}
.about2-1-con h1 span{
	font-size: 24px;
	font-weight: bold;
	padding-right: 15px;
}

.about2-1-con p{
	margin: 0;
	font-size: 14px;
	color: #666;
	line-height: 2;
	height: 10em;
	overflow: hidden;
}

.about-more{
	margin-top: 50px;
}

.about-more a,
.about-more img{
	display: block;
	width: 25px;
}

.about2-box-wp{
	position: relative;
	z-index: 15;
}
.about2-box-wp .about2-box{display: none;background-color: #fff;}
.about2-box-wp .about2-box:first-child{display: block;}

.about2-dl{
	position: absolute;
	z-index: 50;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 174px;
}

.about2-dl dl{
	margin: 0;
}

.about2-dl dd{
	height: 53px;
	line-height: 53px;
	position: relative;
	padding-left: 58px;
	cursor: pointer;
}
.about2-dl dd+dd{
	margin-top: 17px;
}
.about2-dl dd::after{
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #fff;
	content: "";
	z-index: 1;
	border-top-left-radius: 53px;
	border-bottom-left-radius: 53px;
	transition: left .5s,background-color .5s;
}
.about2-dl dd::before{
	position: absolute;
	left: 10px;
	width: 0;
	height: 1px;
	background-color: #fff;
	opacity: 0.59;
	content: "";
	top: 50%;
	transition: width .5s;
	z-index: 15;
}
.about2-dl dd span{
	font-size:16px;
	color: #333;
	position: relative;
	z-index: 15;
	transition: color .5s;
}
.about2-dl dd.cur span{
	color: #fff;
}
.about2-dl dd.cur::after{
	left: -40px;
	background-color: #c29457;
}
.about2-dl dd.cur::before{
	width:30px ;
}

.wenhua1{
	padding: 100px 25px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(../images/wenhua1-bg.jpg);
	text-align: center;
	position: relative;
}
.wenhua1::after{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	content: "";
	z-index: 10;
	background-color: #000;
	opacity: 0.5;
}
.wenhua1 h1{
	margin: 0;
	font-size: 34px;
	color: #fff;
	font-weight: bold;
	position: relative;
	z-index: 15;
}

.wenhua1 h2{
	margin: 0;
	font-size: 18px;
	color: #fff;
	margin-top: 10px;
	position: relative;
	z-index: 15;
}

.wenhua1 p{
	margin: 0;
	font-size: 14px;
	color: #fff;
	line-height: 2;
	max-width: 650px;
	margin: 35px auto 0;
	position: relative;
	z-index: 15;
}

.xinwen1{
	padding:80px 0 90px;
	background-color: #f8f8f8;
}
.xinwen1-div{
	background-color: #fff;
}
.xinwen1-pic{
	width: 48.93%;
}
.xinwen1-pic .imgbox_a{
	padding-bottom: 58.1%;
}


.fxinwen .flex-direction-nav a{
	width: 43px;
	height: 43px;
	transition: background-image .5s; 
	top: auto;
	margin-top: 0;
	bottom: 0;
}

.fxinwen .flex-direction-nav .flex-prev{
	left: auto;
	right: 43px;
}
.fxinwen .flex-direction-nav .flex-prev:hover{
	background-image: url(../images/b-left-h.png);
}
.fxinwen .flex-direction-nav .flex-next{
	right: 0;
}
.fxinwen .flex-direction-nav .flex-next:hover{
	background-image: url(../images/b-right-h.png);
}


.xinwen1-con{
	overflow: hidden;
	padding: 45px 45px 0 40px;
}

.xinwen1-con h1{
	margin: 0;
	font-size: 16px;
	color: #999999;
}
.xinwen1-con h1 span{
	font-size: 44px;
	font-family: "din";
	color: #333;
	padding-right: 10px;
	display: inline-block;
	vertical-align: middle;
	padding-bottom:5px;
	font-weight: bold;
	line-height: 1;
}
.xinwen1-con h1 span::after{
	display: block;
	height:2px;
	content: "";
	background-color: #d7b07d;
	margin-top: 10px;
}

.xinwen1-con h2{
	margin: 0;
	font-size: 18px;
	color: #333;
	font-weight: bold;
	line-height: 1.6;
	height: 3.2em;
	overflow: hidden;
	margin: 20px 0;
}
.xinwen1-con h2 a:hover{
	color: #d7b07d;
}


.xinwen1-con p{
	margin: 0;
	font-size: 14px;
	color: #999999;
	line-height: 2;
	height: 4em;
	overflow: hidden;
}

.xinwen1-con .more1{
	margin-top: 25px;
}
.more1 a img{
	display: inline-block!important;
	width: 7px!important;
	margin-top: -3px;
	margin-left: 10px;
}

.more1 a{
	font-size: 14px;
	color: #333;
	text-transform: uppercase;
}
.more1 a:hover{
	color: #d7b07d;
}




.xinwen2{
	padding:30px 0 60px;
	background-color: #fff;
}


.xinwen2-dl dl{
	margin: 0;
}

.xinwen2-dl dd{
	padding: 30px 0;
	border-bottom: 1px solid #ebebeb;
	position: relative;
}

.xinwen2-dl dd::before{
	position: absolute;
	left: 0px;
	width: 0;
	height: 1px;
	bottom: -1px;
	background-color: #d7b07d;
	content: "";
	transition: width .5s;
	z-index: 15;
}
.xinwen2-pic{
	width: 400px;
	margin-left: 100px;
}

.xinwen2-pic .imgbox_a{
	padding-bottom: 58.1%;
}

.xinwen2-con{
	overflow: hidden;
	padding-top: 25px;
}
.xinwen2-con h1{
	margin: 0;
	font-family: "ra";
	font-size: 22px;
	color: #333;
}

.xinwen2-con h2{
	margin: 0;
	font-size:18px;
	color: #333;
	font-weight: bold;
	margin: 20px 0 ;
	transition: color .3s;
}

.xinwen2-con p{
	margin: 0;
	font-size: 14px;
	color: #999999;
	line-height: 2;
	height: 6em;
	overflow: hidden;
}
.xinwen2-dl dd:hover::before{
	width: 100%;
}
.xinwen2-dl dd:hover .xinwen2-con h2{
	color: #d7b07d;
}
.fenye ul{
	margin:0;
}
.fenye{
	text-align: center;
	margin-top: 75px;
}




.danpian-h1{
	font-size: 28px;
	line-height: 1.6;
	color:#333;
	text-align: center;

}

.danpian-h2{
	font-size: 14px;
	line-height: 1.6;
	color:#999;
	text-align: center;
	border-bottom: 1px solid #eee;
	padding: 10px 0 15px;

}
.bsBox,.bsBox *,#bsPanelHolder,#bsPanelHolder *{
	-webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.danpian-con{
	font-size: 14px;
	color:#666;
	line-height: 2;
	padding: 20px 0 20px;
}
.danpian-con *{
	font-size: 16px!important;
	color:#666!important;
	line-height: 2!important;
}
.danpian-con img{
	display: block;
	margin:15px auto;
}


.dan-page{
	padding-top: 10px;
	border-top: 1px solid #eee;
}

.dan-a{
	margin-top: 12px;
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dan-a a{
	font-size: 16px;
	color:#666;
}

.dan-a a:hover{
	color:#d7b07d;
}

.wenhua2{
	margin-top: 30px;
}

.wenhua2 dl{
	margin: 0;
}

.wenhua2 dd{
	float: left;
	width: 25%;
	height: 339px;
	transition: width .3s;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	cursor: pointer;
}
.wenhua2 dd+dd{
	border-left: 2px solid #fff;
}

.wenhua2 dd::after{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	content: "";
	background-color: rgba(0,0,0,0.62);
	z-index: 15;
	/*transition: background-color .3s;*/
}

.wenhua2-dd{
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
	padding: 0	50px;
}

.wenhua2-ico{
	width: 36px;
	height: 32px;
	background-repeat: no-repeat;
	background-position: center;
}

.wenhua2-ico1{background-image: url(../images/wenhua2-ico1h.png);}
.wenhua2-ico2{background-image: url(../images/wenhua2-ico2h.png);}
.wenhua2-ico3{background-image: url(../images/wenhua2-ico3h.png);}

.wenhua2-dd h1{
	margin: 0;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	margin: 10px 0 5px;
}

.wenhua2-dd h2{
	margin: 0;
	font-size: 16px;
	color: #fff;
}
.wenhua2-dd h3{
	margin: 0;
	font-size: 18px;
	color: #fff;
	margin-top: 40px;
	line-height: 1.6;
}
.wenhua2-dd p{
	margin: 0;
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin-top: 10px;
	display: none;
	height: 6.8em;
	overflow: hidden;
}

.wenhua2 dd.cur{
	width: 50%;
}
.wenhua2 dd.cur::after{
	background-color: #f8f8f8;
}
.wenhua2 dd.cur .wenhua2-ico1{background-image: url(../images/wenhua2-ico1.png);}
.wenhua2 dd.cur .wenhua2-ico2{background-image: url(../images/wenhua2-ico2.png);}
.wenhua2 dd.cur .wenhua2-ico3{background-image: url(../images/wenhua2-ico3.png);}

.wenhua2 dd.cur .wenhua2-dd h1{
	color: #333;
}
.wenhua2 dd.cur .wenhua2-dd h2{
	color: #333;
	font-weight: bold;
}

.wenhua2 dd.cur .wenhua2-dd h3{
	color: #333;
	font-weight: bold;
}

.wenhua2 dd.cur .wenhua2-dd p{
	display: block;
}


.join1{
	background-image: url(../images/join1-bg.jpg);
}

.join1.wenhua1 p{
	max-width: 1030px;
}

.join2 dl{
	margin: 0;
	margin-left: -3%;
}

.join2 dd{
	float: left;
	width: 47%;
	margin-left: 3%;
	margin-top: 3%;
	background-color: #f8f8f8;
	padding:20px;
}

.join2 dd h1{
	margin: 0;
	font-size: 22px;
	color: #333;
	font-weight: bold;
	transition: color .3s;
}
.join2-ul{
	padding: 15px 0;
}
.join2-ul ul{
	margin: 0;
	margin-left:-2%;
}

.join2-ul li{
	float: left;
	width: 31.333333%;
	margin-left: 2%;
	font-size: 16px;
	color: #999;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.join2-a a{
	display: block;
	width: 50px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../images/join2-a.jpg);
	transition: background-image .3s;
}

.join2 dd:hover h1{
	color: #d7b07d;
}

.join2 dd:hover .join2-a a{
	background-image: url(../images/join2-ah.jpg);

}


.contact1{
	padding: 75px 0 105px;
	background-color: #f8f8f8;
}

.contact1-title img{
	display: block;
	margin: 0 auto;
	width: 310px;
}

.contact1-div{
	margin-top: 50px;
}

.contact1-dl{
	width: 510px;
	margin-right: 10px;
}
.contact1-dl dl{
	margin: 0;
}
.contact1-dl dd+dd{
	margin-top: 10px;
}
.contact1-ico{
	width: 157px;
	height: 134px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #d7b07d;
}

.map-wp{
	overflow: hidden;
	height: 422px;
}
.map{
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}




.contact1-con-wp{
	height: 134px;
	background-color: #fff;
	position: relative;
	overflow: hidden;
}

.contact1-con{
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
	padding: 0 40px;
}

.contact1-con h1{
	margin: 0;
	font-size: 20px;color: #999;
	font-family: "ra";
	text-transform: uppercase;
}

.contact1-con h2{
	margin: 0;
	font-size: 16px;color: #333;
	font-weight: bold;
	line-height: 1.6;
	margin-top: 10px;
}
.contact2{
	padding: 90px 0;
	background-color: #fff;
}
.contact2-menu dl{
	margin: 0;
}

.contact2-menu dd{
	float: left;
	width: 25%;
	padding: 25px 15px;
	background-color: #f8f8f8;
	font-size: 20px;
	color: #333;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	transition: background-color .3s,color .3s;
}

.contact2-menu dd+dd{
	border-left: 1px solid #f8f8f8;
}

.contact2-menu dd.cur{
	background-color: #d7b07d;
	color: #fff;
}

.contact2-div-wp{
	border: 1px solid #eaeaea;
	border-top: 0;
	padding: 60px;
}

.contact2-list ul{
	margin: 0;
	margin-left: -3%;
	margin-top: -3%;
	font-size: 0;
	line-height: normal;
}
.contact2-list li{
	display: inline-block;
	vertical-align: top;
	width: 47%;
	margin-left: 3%;
	margin-top: 3%;
}


.contact2-title1{
	font-size:20px;
	color: #333;
	font-weight: bold;
	padding-bottom:15px ;
	border-bottom: 1px solid #eaeaea;
}

.contact2-title1 img{
	margin-top: -3px;
	margin-right: 10px;
}

.contact2-dd{
	margin-top: 25px;
}

.contact2-dd h1{
	margin: 0;
	font-size: 16px;
	color: #333;
	font-weight: bold;
}

.contact2-dl dl{
	margin: 0;
	padding-top: 4px;
}

.contact2-dl dd{
	font-size: 16px;
	color: #999;
	margin-top: 5px;
	line-height: 1.6;
}

.contact2-dd-con{
	overflow: hidden;
}

.contact2-div-wp .contact2-div{display: none;}
.contact2-div-wp .contact2-div:first-child{display: block;}

.jubao{
	background-color: #f8f8f8;
}
.jubao1-1{
	width: 434px;
	height: 628px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(../images/jubao1-1.jpg);
	padding-top: 15px;
}

.jubao1-1-item{
	padding-top: 100px;
}
.jubao1-1-item img{
	display: block;
	margin: 0 auto;
	width: 72px;
}
.jubao1-1-item h1{
	margin: 0;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 28px 0 10px;
}

.jubao1-1-item h2{
	margin: 0;
	font-size: 18px;
	color: #fff;
	text-align: center;
}
.jubao1-2{
	overflow: hidden;
	padding: 60px;
}

.jubao1-input-li{
	margin-top: 15px;
}
.jubao1-input-li span{
	height: 53px;
	line-height: 53px;
	font-size: 16px;color: #333;
	font-weight: bold;
	margin-right: 10px;
	width: 90px;
	text-align: right;
}

.jubao1-input{
	overflow: hidden;
}
.jubao1-2 input:focus,
.jubao1-2 textarea:focus{
	outline: none;
}
.jubao1-input input{
	display: block;
	width: 100%;
	height: 53px;
	border:0;
	font-size: 18px;
	color: #333;
	line-height: 1.428571;
	padding: 10px 15px;
}

.jubao1-input textarea{
	display: block;
	width: 100%;
	height: 150px;
	border:0;
	font-size: 18px;
	color: #333;
	line-height: 1.428571;
	padding: 15px;
}

.jubao1-input-yzm{
	width: 150px;
}
.jubao-yzm{
	width: 138px;
	margin-left: 8px;
	cursor: pointer;
}

.jubao-yzm img{
	display: block;
	width: 100%;
}

.jubao-kbqc{
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-left: 15px;
	cursor: pointer;
	height: 53px;
	line-height: 53px;
}
.jubao-kbqc:hover{
	color: #d7b07d;
}

.jubao1-input-btn input{
	width: 220px;
	display: block;
	height: 50px;
	border: 0;
	background-color: #d7b07d;
	color: #fff;
	font-size: 18px;
	margin: 0 auto;
}
.jubao1-input-btn input:hover{
	font-weight: bold;
}
.jubao1-input-btn{
	padding-top: 20px;
}

.shipin-pic .imgbox_a{
	padding-bottom:66.67%;
}

.shipin-pic .imgbox_a::before{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	height: 100%;
	z-index: 10;
	background-color: #000;
	opacity: 0.3;
	content: "";
}

.shipin-pic .imgbox_a::after{
	position: absolute;
	width: 60px;
	height: 60px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	background-image: url(../images/bo.png);
	background-size: 100%;
	z-index: 20;
	content: "";
}

.shipin-h1{
	font-size: 18px;
	color: #333;
	text-align: center;
	margin-top: 15px;
}

.shipin-item:hover .shipin-h1{
	color: #d7b07d;
}
.shipin-list .row{
	margin-top: -50px;
	margin-left: -25px;
	margin-right: -25px;
}
.shipin-list .col-sm-6{
	margin-top: 50px;
	padding-left: 25px;
	padding-right: 25px;
}

.danpian .join2-ul{
	padding-bottom: 0;
}

.danpian .join2 dd{
	float: none;
	width: 100%;
	margin-left: 0;
	margin-top: 0;
	padding: 40px;
}



.danpian .join2 dl{
	margin-left: 0;
	margin-top: 0;
}
.danpian .join2 dd h1,
.danpian .join2-ul li{
	text-align: center;
}

.danpian .join2 dd:hover h1{
	color: #333;
}


.bqq-div-wp {
    background-color: #f1f1f1;
    padding: 50px 0;
}

.bqq-div{
	background-color: #fff;
	padding: 55px 40px;
}

#header-cccc{
	height: 100px;
}

.bqq-div-right{
	width: 600px;
	margin-left: 45px;
}

.bqq-div-left{
	overflow: hidden;
}

.bqq-title{
	font-size: 21px;
	color:#333;
	margin-bottom: 25px;
}

.bqq-wen p{
	margin:0;
}

.bqq-wen{
	font-size: 14px;
	color:#666;
	line-height: 2;
	height: 336px;
	overflow-y: auto;
	padding-right: 25px;
}
.bqq-wen.mCS_no_scrollbar{
	padding-right: 0;
}
.bqq-page
{background-color: #fff;

	margin-top: 16px;
	background-repeat: no-repeat;
	background-position: center ;
	background-image: url(../images/bqq2.jpg);
}
.bqq-page a{
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	color:#666;
	width: 45%;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding: 0 15px;
}

.bqq-page a:hover{
	color:#d7b07d;
}

.fbqq .flex-direction-nav{
	display: block;
}

.fbqq .flex-direction-nav a{
	width: 40px;
	height: 40px;
	margin-top: -20px;
}

.fbqq .flex-direction-nav .flex-prev
{left: 20px;background-image: url(../images/bqq-left.png);}

.fbqq .flex-direction-nav .flex-next{
	right: 20px;background-image: url(../images/bqq-right.png);
}



.fbqq .flex-direction-nav .flex-prev.flex-disabled,.fbqq .flex-direction-nav .flex-next.flex-disabled{
	display: none;
}


.fbqq .slides>li>a{
	position: relative;
	overflow: hidden;
	display: block;
	padding-bottom: 66.67%;
}

.fbqq .slides>li>a img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}


.bqq-div-left .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #d7b07d!important;
}

/*.bqq-div-left .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    position: relative;
    width: 8px;
    height: 100%;
    margin-left: 7px;
    text-align: center;
    border-radius: 0;
}*/


/*.bqq-div-left .mCSB_scrollTools .mCSB_draggerRail {
    background-color: #b0b4b8;
    width: 1px;
}*/





.sanji-dl{
	padding-bottom: 40px;
}

.sanji-dl dl{
	margin: 0;
	font-size: 0;
	line-height: normal;
	text-align: center;
}

.sanji-dl dd{
	display: inline-block;
	

}
.sanji-dl dd+dd{
	margin-left: 15px;
	margin-bottom: 10px;
}
.sanji-dl dd>a{
	display: block;
	padding: 8px 35px;
	font-size: 14px;
	color: #333;
	border: 1px solid #eaeaea;
	border-radius: 999em;
	transition: .3s;
}
.sanji-dl dd>a:hover{
	color: #d7b07d;
}
.sanji-dl dd.cur>a{
	background-color: #d7b07d;
	border-color: #d7b07d;
	color: #fff!important;
}







.xiangmu_11_list dl{
	margin: 0;
	margin-left: -3%;
	margin-top: -3%;
}

.xiangmu_11_list dd{
	float: left;
	width: 47%;
	margin-left: 3%;
	margin-top: 3%;
	background-color: #f6f8fa;
}

.xiangmu_11-pic{
	width: 324px;
}

.xiangmu_11-pic .imgbox_a{
	padding-bottom: 74%;
}

.xiangmu_11-con{
	overflow: hidden;
	padding: 50px 50px 0;
}

.xiangmu_11-con h1{

	margin: 0;
	font-size: 18px;
	color: #333;
	/*font-family: "albbm";*/
	font-weight: bold;
}
.xiangmu_11-con h1 a:hover{
	color: #d7b07d;
}
.xiangmu_11-con p{
	margin: 0;
	font-size: 14px;
	color: #666;
	line-height: 2;
	height: 4em;
	overflow: hidden;
	margin: 20px 0 ;
}

.xiangmu_11-a{
	width: 25px;
}

.xiangmu_11-a a,.xiangmu_11-a img{
	display: block;
	width: 100%;
}