﻿@charset:"UTF-8";


.page_info{
	text-align:center;
	margin-top:30px;
}

#banner{
	width:100%;
	overflow:hidden;
}

#sequence{
	width:100%;
	height:650px;
	position:relative;
}

#sequence > .sequence-canvas {
  height: 100%;
  overflow:hidden;
  position:relative;
}
#sequence > .sequence-canvas > li {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#sequence > .sequence-canvas > li img {
  height: 96%;
}
#sequence > .sequence-canvas li > * {
  position: absolute;
  /* only cause the left and opacity properties to transition */
  -webkit-transition-property: left, opacity;
  -moz-transition-property: left, opacity;
  -ms-transition-property: left, opacity;
  -o-transition-property: left, opacity;
  transition-property: left, opacity;
}

.sequence-next,
.sequence-prev {
  color: white;
  cursor: pointer;
  display: none;
  font-weight: bold;
  padding: 10px 15px;
  position: absolute;
  top: 50%;
  z-index: 1000;
  height: 75px;
  margin-top: -47.5px;
}

.sequence-pause {
  bottom: 0;
  cursor: pointer;
  position: absolute;
  z-index: 1000;
}

.sequence-paused {
  opacity: 0.3;
}

.sequence-prev {
  left: 3%;
}

.sequence-next {
  right: 3%;
}

.sequence-prev img,
.sequence-next img {
  height: 100%;
  width: auto;
}
.sequence-next,
.sequence-prev {
  position: absolute;
  opacity: 0.6;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}

.animate-in h2 {
	font-size: 36px;
	font-family: "微软雅黑", serif;
  color: white;
  text-transform: uppercase;
}

.animate-in  h3 {
  font-family: "微软雅黑", serif;
  color: white;
}
.bigtitle {
  font-size: 36px;
  color:white;
  text-align:right;
  left:70%;
  width: 35%;
  opacity: 0;
  bottom: 10%;
  z-index: 50;
}
.sequence-next:hover,
.sequence-prev:hover {
  opacity: 1;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}
.animate-in .bigtitle {
  left:58%;
  text-align:right;
  opacity: 1;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.animate-out .bigtitle {
  left: 35%;
  text-align:right;
  opacity: 0;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.subtitle {
  color: white;
  font-size: 2em;
  text-align:right;
  left: 35%;
  width: 35%;
  opacity: 0;
  top: 95%;
}

.animate-in .subtitle {
  left: 65%;
  text-align:right;
  opacity: 1;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.animate-out .subtitle {
  left: 65%;
  text-align:right;
  opacity: 0;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}



.model {
  /* left: 30%; */
  opacity: 0;
  position: relative;
  height: auto !important;
  /* max-height: 568px !important; */
  /* width: 30%; */
  /* min-width: 225px; */
  /* prevents the model from shrinking when the browser is resized */
  /* max-width: 266px; */
}

.animate-in .model {
  left: 0;
  opacity: 1;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}

.animate-out .model {
 /*  left: 15%; */
  opacity: 0;
  -webkit-transition-duration: 0.7s;
  -moz-transition-duration: 0.7s;
  -ms-transition-duration: 0.7s;
  -o-transition-duration: 0.7s;
  transition-duration: 0.7s;
}

@media only screen and (min-width: 992px) {
  #sequence .bigtitle {
    width: 42%;
  }
}
@media only screen and (max-width: 838px) {
  #sequence {
    height: 550px;
  }
  #sequence .model {
    max-height: 530px !important;
    width: auto;
  }
}
@media only screen and (max-width: 768px) {
  #sequence {
    height: 500px;
  }
  #sequence .bigtitle {
    font-size: 2.8em;
  }
  #sequence .subtitle {
    font-size: 1.6em;
  }
  #sequence .sequence-next,
  #sequence .sequence-prev {
    height: 60px;
    margin-top: -40px;
  }
  #sequence .model {
    max-height: 480px !important;
    width: auto;
  }
}
@media only screen and (max-width: 568px) {
  #sequence .model {
    left: 50%;
    min-width: 40%;
    /*prevents the model from shrinking when the browser is resized*/
    width: 40%;
  }
  #sequence .animate-in .model {
    left: 50%;
    margin-left: -20%;
  }
  #sequence .animate-out .model {
    left: 50%;
    margin-left: -20%;
  }
  #sequence .bigtitle {
    background: #a1a1a1;
    background: rgba(0, 0, 0, 0.3);
    bottom: 0;
    left: 100%;
    padding: 4%;
    bottom: -50%;
    width: 100%;
    z-index: 10;
  }
  #sequence .animate-in .bigtitle {
    left: 0%;
  }
  #sequence .animate-out .bigtitle {
    left: -100%;
  }
  #sequence .subtitle {
    visibility: hidden;
  }
  #sequence .sequence-pagination {
    bottom: 40px;
  }
  #sequence .sequence-pagination li img {
    height: 100px;
  }
}
@media only screen and (max-width: 518px) {
  #sequence {
    height: 450px;
  }
}
@media only screen and (max-width: 468px) {
  #sequence {
    height: 415px;
  }
  #sequence .sequence-pagination {
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (max-width: 418px) {
  #sequence {
    height: 375px;
  }
}
@media only screen and (max-width: 368px) {
  #sequence {
    height: 325px;
  }
  #sequence .bigtitle {
    font-size: 2.2em;
  }
}
@media only screen and (max-width: 320px) and (orientation: portrait) {
  /*iphone portrait*/
  #sequence {
    height: 320px;
  }
  #sequence .model {
    min-width: 45%;
    width: 45%;
  }
  #sequence .animate-in .model {
    margin-left: -22.5%;
  }
  #sequence .animate-out .model {
    margin-left: -22.5%;
  }
}
@media only screen and (min-width: 321px) and (max-width: 480px) and (orientation: landscape) {
  #sequence {
    height: 260px;
  }
  #sequence .model {
    min-width: 24%;
    width: 24%;
  }
  #sequence .animate-in .model {
    left: 17.5%;
    margin-left: 0;
  }
  #sequence .animate-out .model {
    left: 17.5%;
    margin-left: 0;
  }
  #sequence .sequence-pagination {
    right: 17.5%;
  }
}


/*======================BANNER=========================*/



.cell{
	display:inline-block;
	position:relative;
	bottom:0;
}

.text{
	position:absolute;
	z-index:999;
	top:75px;
	width:100%;
	text-align:center;
	font-size:26px;
	color:#FFF;
	line-height:20px;
}
.text-en{
	font-size:10px;
}
.en-text{
	width:230px;
	left:44px;
}
.glass{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	background:black;
	z-index:99;
	opacity:0.4;
	transition:opacity 0.4s ease-out 0s;
}
.cell:hover .glass{
	opacity:0;
	transition:opacity 0.3s ease-in 0s;
}
#tpList .glass{
	display:none;
}
#tpList .cell:hover .glass,#tpList .current .glass{
	display:block;
}


/*container*/
#container{
	margin-top:130px;
}
.section{
	position:relative;
}
.content{
	position:relative;
}
.title {
    text-align: center;
    position: relative;
}
.summary,.summary p,.summary span{
	font-size:14px !important;
	line-height:29px !important;
	color:#cfa55d !important;
}

.titLine {
    width: 27%;
    height: 1px;
    display: inline-block;
    background-color: #FFF;
    position: absolute;
    bottom: 50%;
	opacity: 0.3;
}
.tll{left:0;}
.tlr{right:0;}
.tName {
    display: inline-block;
}
.title h3{
	font-size:18px;
	font-weight:bold;
	color:#b29056;
	text-transform: uppercase;
}
.title p{
	font-size:14px;
	color:#f7f7f7;
	text-transform:uppercase;
}
#news .titLine{
	background-color:#414042;
}
#news .title-cn{
	color:#414042;
}
#news .title-en{
	color:#414042;
}




div#category {
    display: inline-block;
}
#category li{
	width:220px;
	height:55px;
	text-align:center;
	line-height:55px;
	margin-bottom:10px;
	background:url(../images/categopy.png) no-repeat;
}
#category li a{
	color:#414042;
	font-size:17px;
}
#category .current{
	background-image:none;
	background-color:#620002;
}
#category .current a{
	color:#FFF;
}


div#proList {
    
	
}
#proList li {
	width:320px;
    float: left;
	text-align:center;
	margin-right:20px;
}
#proList li:last-child{
	margin-right:0;
}
.cell-pic{
	position:relative;
}

#product{
	background-image: url(../images/slant.gif);
    background-repeat: no-repeat;
    background-position-y: 100%;
	margin:50px 0;
}

.proList{
	width:720px;
	margin:0 auto;
	overflow:hidden;
}
.proList ul{
	position:relative;
	width:10000%;
}
.proList li{
	width:260px;
	border:1px solid #e5e5e5;
	/* text-align:center; */
	float:left;
	margin:0 7px;
}
.proList li img{
	margin:0 auto;
}

a.proName{
	width:100%;
	color:#454545;
	line-height:30px;
	display:block;
	background-color:#ded2ca;
}
.proName:hover{
	color:#272727;
	background-color: #CEBEB3;
}
.proList li:hover .proName{
	color:#FFF;
	background-color:#3db2c3;
}

a.pre,a.next{
	width:33px;
	height:70px;
	background:url(../images/arrow.png) no-repeat;
	display:block;
	position:absolute;
	top:40%;
	bottom:0;
}
a.pre{
	
}
a.next{
	background-position-x:-33px;
	right:0;
}



#summary{
	
}
#summary img{
	float:left;
}
.sumNews{
	
}

div#tpList {
    margin-left: 30px;
    float: left;
}
#tpList li{
	float: left;
    margin-right: 20px;
}

.pbpic{
	display:inline-block;
}
.pblpic{
	
}
.pbrpic{
	
}





#conWrap{
	
	
}
#contactInfo {
    width: 523px;
    float: right;
    background-color:#250000;
    border-top: none;
    border-left: none;
    text-align: left;
    padding: 40px 90px 40px 120px;
    line-height: 24px;
}
#contactInfo .title{
	width:50%;
	margin:0 auto 10px;
}
#mapBox {
    position: relative;
	left: -126px;
    width: 390px;
    float: left;
    top: 23px;
}
#mapBox img{
	position:absolute;
	right:0;
	border: 4px solid rgba(193, 193, 193, 0.5);
}

.news-li{
	display:inline-block;
}
.news-li:first-child{
	margin-right:30px;
}
.news-pic{
	float:left;
	width:221px;
	height:283px;
	overflow:hidden;
}
.np-scale{
	transform:scale(1);
	transition:transform 0.3s ease-in 0s;
}
.news-pic:hover .np-scale{
	transform:scale(1.1);
	transition:transform 0.3s ease-in-out 0s;
}
.news-info{
	width:216px;
	float:left;
	margin:27px 0 0 15px;
}
.news-title{
	font-size:16px;
	font-weight:500;
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
}

#sumNews h5 {
    font-size: 18px;
}
#sumDesc {
    margin-top: 10px;
    line-height: 24px;
}
.redLine {
    width: 40px;
    height: 2px;
    background-color: #a30e12;
    display: inline-block;
}
.newsTitle{
	width:100px;
}
.select .item{
	background-color: #a30e12;
    color: #FFF;
}
.select .time{
	color:#FFF;
}
.select span.time{
    color: #f7f7f7;
}
.select .xinwen{
	color:#FFF;
}
.select .newsTitle{
	
	color:#f7f7f7;
}

.item {
    padding: 10px;
    background-color: #f7f6f5;
}
.time{
	display:inline-block;
	font-size:12px;
	color:#414042;
}
.time .timeCut{
	margin:2px 0;
}
.xinwen {
    float: right;
	color:#696969;
}
.newsTitle {
	color:#565656;
    margin-bottom: 5px;
}
/* .summary{
	padding-bottom:30px;
	margin:20px 0 10px;
	border-bottom:1px solid #e6e6e6;
	
	overflow:hidden;
	line-height:19px;
}
.summary span{
	height:132px;
	overflow:hidden;
	display:inline-block;
} */
a.news-read{
	color:#50b7c7;
	text-transform:uppercase;
}

#links{
	background-color:#f5f5f5;
	position:relative;
}
.msg{
	text-align:center;
	background-color:#b29056;
	color:#FFF;
}
.msg h4{
	color:#FFF;
}
#guild{
    width: 100px;
	padding:27px 0;
	background-color: #3db2c3;
    position: absolute;
    top: -11px;
	font-size:16px;
}
#guild h4{
	font-size:18px;
}
#links ul{
	margin-left:110px;
}
.link{
	display:inline-block;
	margin:30px 20px;
}



/*about*/
.sidebar{
	width:180px;
	float:left;
	margin-top:-80px;
}
.sidebar .msg{
	padding: 20px 0;
    font-size: 16px;
    line-height: 16px;
}
.sidebar .msg h4{
	font-size: 30px;
    line-height: 30px;
    margin-bottom: 5px;
}

#column-contact .msg{
	margin-top:30px;
}
.col-details{
	border:1px solid #d0d1d2;
	padding:0 15px;
	background-color:#FFF;
}
.col-details p
{
	font-size:12px;
}
#dropdown ul{
	padding:10px 0;
}
#dropdown li{
	font-size:16px;
	margin:5px 0;
}
#dropdown li a{
	color:#7a7a7a;
}
#col-deta-info{
	padding:11px;
	line-height:15px;
	font-size:12px;
	color:#999999;
	line-height:25px;
}

#dropdown #sub-cd{
	padding:0;
}
#dropdown .scd-item{
	list-style-type:disc;
	margin-left:20px;
}
#dropdown .scd-item a{
	font-size:13px;
	color:#949494;
}

#columns {
    width: 690px;
    float: right;
	background-color:white;
	padding:0 30px 50px;
}
#subnav {
    font-size: 12px;
    color: #b2b2b2;
    margin-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
}
#subnav b{
	font-size: 14px;
    color: #666666;
}
#breadcrumb {
    float: right;
}

.mask{
	height:140px;
	overflow:hidden;
}

#pList{
	margin-top:20px;
}
#pList li{
	width:210px;
	float:left;
	margin-left:30px;
	margin-bottom:10px;
	text-overflow:ellipsis;
	overflow:hidden;
}
#pList li:nth-child(3n+1){
	margin-left:0;
}
#pList li img{
	margin:0 auto;
	min-height:140px;
}
#pList li p{
	text-align:center;
	padding:15px 0;
}
#pList li:hover p{
	background:#F1F1F1;
}

.page_list a{
	background: #d9d9d9;
    margin: 0 5px;
    padding: 2px 7px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    color: #FFF;
}
.page_list{
	text-align:center;
}
.page_list .curr{
	background:#a30e12;
}


/*news*/
#article-title{
	text-align:center;
	font-size:20px;
	color:#666666;
	margin:20px 0;
}
#article{
	font-size:12px;
	color:#999999;
	overflow:hidden;
}
#article img{
	width:100%;
}
#tList li{
	padding:20px 0 18px;
	border-bottom:1px dashed #dddddd;
}

.tTitle {
    padding-left: 16px;
    background: url(../images/guild.png) 0 center no-repeat;
    font-size: 12px;
    color: #464646;
}
.tTime {
    float: right;
    font-size: 14px;
    color: #BD1015;
}

/*contact*/
.tab{
	background:#3db2c3;
	width:100%;
	/* text-align:center; */
	font-size:14px;
	color:#FFF;
	margin-top:20px;
	line-height:20px;
}

#icontact {
	margin:60px auto 80px;
	background-image: url(../images/slant2.gif);
    background-repeat: no-repeat;
    background-position-y: 0%;
}
}
.input{
	width: 50%;
    float: left;
}
.row {
    color: #9A9A9A;
    font-size: 12px;
	margin-top: 30px;
	margin-right:30px;
	display:inline-block;
}
.form-control {
    border: 1px solid #E4E4E4;
    margin-left: 10px;
}
.rfc{
	height: 20px;
	width: 234px;
	padding:5px;
}
#area {
    display:block;
}
#area span{
	vertical-align:top;
}
#message {
    width:85%;
	padding:5px;
}
.btngroup{
	text-align:center;
}
.btn{
	border: none;
    font-size: 14px;
    padding: 7px 40px;
    cursor: pointer;
	margin:20px 30px 10px;
}





#bright{
				height:445px;
				background:url("../images/bright-bg.jpg") repeat-x;
				text-align:center;
			}
			#summary{
				text-align:center;
				margin: 55px auto 60px;
				display: inline-block;
			}
			#summary li{
				float:left;
				
			}
			.sumNews{
				display:inline-block;
				margin-top:60px;
				padding-bottom:20px;
				border-bottom:1px solid rgba(255,255,255,0.3);
			}
			.sumNews h5{
				font-size:16px;
				color:#b29056;
			}
			hr.sum-line {
				height: 1px;
				width: 80px;
				float: left;
				position: relative;
				top: 104px;
				margin: 0 20px;
				opacity:0.3;
			}
			
			.pic-bright{
				width:208px;
				height:208px;
				line-height:208px;
				background:url("../images/bright.png") no-repeat;
				color:#B29056;
			}
			.pic-bright:hover{
				background:url("../images/bright2.png") no-repeat;
				color:#250000;
			}
			.pbzpic{
				position:relative;
			}
			
			.pblpic {
				position: relative;
				height: 378px;
				width: 364px;
			}
			.pblpic img{
				bottom: 50%;
				position: absolute;
			}
			.pbzpic img{
				transform:scale(1);
				transition:transform 0.3s ease-out 0s;
			}
			.pbzpic img:hover{
				transform:scale(1.05);
				transition:transform 0.3s ease-in-out 0s;
			}
			.pbrpic {
				position: absolute;
				left: 257px;
				top: 35px;
				width:745px;
				background:url("../images/about3.png") 100% center no-repeat;
			}
			#check{
				background:url("../images/check-pro.jpg") center no-repeat;
				height:496px;
				background-size:auto 100%;
				transition:background-size 0.6s ease-out 0s;
			}
			#check:hover{
				background-size:auto 110%;
				transition:background-size 0.6s ease-in-out 0s;
			}
			#check-pro{
				background-color:#250000;
				padding:50px 0 55px;
				position:relative;
				top:-95px;
			}
			#check-pro-wrap{
				width:320px;
				margin:0 auto;
			}
			#check-pro-wrap .title{
				margin-bottom:20px;
			}
			#check-txt-en{
				text-align:center;
				padding:9px 50px;
				text-transform: uppercase;
				border: 1px solid #704d2e;
				color: #b29056;
				
			}
			#check-txt-en:hover{
				background-color:#b29056;
				color:#250000;
				
			}