@charset "utf-8";
html, body {
	position: relative;
	height: 100%;
}
* {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-family: Roboto,Helvetica,Tahoma,Arial,"Microsoft YaHei";
	font-weight: normal;
	text-decoration: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline:none;

}
img {
	border: none;
}
a img {
	border: none;
}
a:link {
	color: #333333;
}
a:visited {
	color: #333333;
}
a:hover {
	color:#b39b77;
	text-decoration: underline;
}
a:active {
	color: #333333;
}
p, div {
	color: #333;
	font-size: 12px;
}
strong, strong span{
	font-weight: bold;
}
.warehouse-table{
	width: 100%;
}
table {
    font-family: verdana,arial,sans-serif;
    font-size:11px;
    color:#333333;
    border-width: 1px;
    border-color: #e0e0e0;
    border-collapse: collapse;
	margin-bottom: 20px;
}
table tr {
    transition: all .3s;
    -webkit-transition: all .3s;
}
table tbody tr:hover, table thead tr, table[lay-even] tr:nth-child(even){
	background-color: #f2f2f2;
}
table td, table th{
	border-width: 1px;
    border-style: solid;
    border-color: #e6e6e6;
}
table td, table th {
    padding: 9px 15px;
    min-height: 20px;
    line-height: 20px;
    font-size: 14px;
	text-align: left;
}
table td p{
	font-size: 14px !important;
	margin-bottom: 5px !important;
}
table td,table th{
	font-size: 14px;
}
:after, :before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.contact-list:after, .container:after, .partner-list:after, .inner-content:after, .footer-content:after, .problem-list:after, .i-contact:after, .i-banner-container:after {
	content: "";
	display: table;
	clear: both;
}
.not-animated {
	opacity:0;
}
@-webkit-keyframes caption-top {
 0% {
-webkit-transform:translate(0, -40px);
opacity: 0;
}
 100% {
-webkit-transform:translate(0, 0);
opacity: 1;
}
}
@keyframes caption-top {
 0% {
transform:translate(0, -40px);
opacity: 0;
}
 100% {
transform:translate(0, 0);
opacity: 1;
}
}

@keyframes caption-down {
	0% {
		opacity:0;
		-webkit-transform:translate3d(0, -100%, 0);
		transform:translate3d(0, -100%, 0)
	}
	100% {
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}
 @-webkit-keyframes caption-down {
	0% {
		opacity:0;
		-webkit-transform:translate3d(0, -100%, 0);
		transform:translate3d(0, -100%, 0)
	}
	100% {
		opacity:1;
		-webkit-transform:none;
		transform:none
	}
}

.container{
	width: 1200px;
	margin: 0 auto;
}
#welcome{
	padding: 10px 0;
	background: #333;
}
#welcome p{
	color: #fff;
	font-size: 13px;
}


#top {
    width: 100%;
    background: #fff;
}
.head{
	position: relative;
	height: 90px;
	padding: 10px 0;
	margin: 0 auto;
}

.fixed{
	position: fixed;
	height: 90px;
	box-shadow: 0 0 5px #bdbdbd;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
  	-webkit-animation: caption-down .5s;
    animation: caption-down .5s;
}
.logo{
	max-width: 170px;
    position: absolute;
    top: 50%;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transform: translate(0px, -50%);
}

.logo img{
	display: block;
	width: 100%;
	image-rendering: -moz-crisp-edges; /* Firefox */
	image-rendering: -o-crisp-edges; /* Opera */      
	image-rendering: -webkit-optimize-contrast; /*Webkit (non-standard naming) */ 
	image-rendering: crisp-edges; 
	-ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
.nav-list{
	margin-top: 5px;
	padding: 10px 0;
    float: left;
    margin-left: 200px;
}
.nav-list>li{
	display: inline-block;
	position:relative;
	padding:0 10px;
	}
.nav-list>li>a{
	position:relative;
	display:inline-block;
	line-height:40px;
	overflow:hidden;
	}
.nav-list>li>a:hover{
	text-decoration:none;
	}
.nav-list>li>a span{
	display:block;
	color:#000;
	padding:0 3px;
	font-size:15px;
	transition: all ease-out .3s;
	}
.nav-list>li>a div{
	width:0;
	border-bottom:1px solid #f00;
	margin:10px auto 0 auto;
	transition: all ease-out .3s;

	}
.nav-list>li>a span:after {
    content: attr(data-title);
    position: absolute;
    color: #b39b77;
    left: 0;
	right:0;
	text-align:center;
    transform: translateY(100%);
    width: 100%;
}

.nav-list>li>a:hover span,.nav-list>li:hover span,.nav-list>li>a.cur span{
	color:#f00;
	transform: translateY(-100%);
  }
.nav-list>li>a:hover div,.nav-list>li:hover>a>div, .nav-list>li>a.cur div{
	width:100%;
	}/*下拉菜单*/
.down-menu{
	display:none;
	position:absolute;
	padding-top:5px;
	left:0;
	right:0;
	margin:auto;
	z-index:999;
	}
.down-menu-list{
	padding:7px 0;
	background: rgba(179, 159, 119, 0.7) none repeat scroll 0 0 !important;/*实现FF背景透明，文字不透明*/
	background: #b39b77;
	filter:Alpha(opacity=98);/*实现IE背景透明*/
	border-radius:0 0 5px 5px;
	}
.down-menu-list a{
	display:block;
	color:#fff;
	border-bottom: 1px solid #a78b61;
	font-size:13px;
	padding:7px 0;
	text-align:center;
	}
.down-menu-list a:hover{
	color:#fff;
	background:#bf8a3b;
	text-decoration:none;
	}
.down-menu-list a:last-child{
	border-bottom:none;
	}
.account{
	width: 355px;
	margin-top: 15px;
	float: right;
}
.account li{
	float: left;
	margin: 0 10px;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 20px;
	background: #4e5bf5;
}
.account li a{
	color: #fff;
}
	
#banner{
	height: 550px;
	overflow: hidden;
	}

@media (max-width:1200px) {
.banner-img img{
	width: 100%;
	}
	
}
.swiper-container {
	width: 100%;
	height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
/*  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
*/  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-slide img{
	display: block;
	}
.swiper-button-next, .swiper-button-prev {
	display: none;
}
.swiper-banner:hover .swiper-button-next, .swiper-banner:hover .swiper-button-prev {
	display: block;
}
.swiper-button-prev {
	left: 30px !important;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E") !important;
}
.swiper-button-next {
	right: 30px !important;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E") !important;
}
.swiper-button-next, .swiper-button-prev {
	width: 18px !important;
	height: 29px !important;
	background-size: 18px 29px !important;
}
#banner:hover .swiper-button-next, #banner:hover .swiper-button-prev {
	display: block;
}
.swiper-button-prev:hover {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23276bf4'%2F%3E%3C%2Fsvg%3E") !important;
}
.swiper-button-next:hover {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23276bf4'%2F%3E%3C%2Fsvg%3E") !important;
}
.phone-banner{
	display: none !important;
}

.banner-paper {
	position: absolute;
	height: 3px;
	line-height: 0;
	bottom: 35px !important;
	left: 0;
	right: 0;
	text-align: center;
}
.banner-paper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	position: relative;
	line-height: 3px;
	border-radius: 10px;
	background: #fff;
	margin: 0 5px !important;
	opacity: 1;
}
.banner-paper .swiper-pagination-bullet:before {
	position: absolute;
	width: 10px;
	height: 10px;
	content: '';
	left: 0;
	top: -10px;
}
.banner-paper .swiper-pagination-bullet-active {
    border: solid 2px #ff0000;
    border-radius: 50%;
    background: none;
}

.slide-full{
    width: 100%;
    height: 100%;
	top: 0;
    position: absolute;
    z-index: 10;
    background: rgba(0, 50, 152, 0.4);
}
.table-box{
	display: table;
    width: 100%;
    height: 100%;
}
.table-cell{
	display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}
.w-banner-text{
    position: relative;
    z-index: 992;
    word-break: break-all;
    padding: 0 10px;
}
.w-text-01, .w-text-02{
	display: block;
	color: #fff;
}
.w-text-01{
	margin-bottom: 5px;
	font-size: 60px;
	font-weight: bold;
}
.w-text-02{
	font-size: 38px;
}

#business{
	padding: 30px 0;
	background: #b39b77;
}
input::-webkit-input-placeholder{
    color:#bbb;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#bbb;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#bbb;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
    color:#bbb;
}
.search-box{
	width: 400px;
	float: left;
}
.search-box input{
	display: block;
    width: 300px;
    padding-left: 10px;
    border: none;
    border-radius: 0;
    height: 55px;
	font-size:15px;
    outline: none;
	background: #fff;
	float: left;
}
.search-btn{
	position: relative;
	display: block;
    width: 60px;
    height: 55px;
    background: #fff;
	float: left;
}
.search-btn img {
	position: absolute;
    display: block;
    width: 35px;
    margin: 0 auto;
	transform: translate(0px, -50%);
	top: 50%;
	bottom: 0;
	left: 0;
	right: 0;
}
.service{
	width: 800px;
	float: right;
}
.service-list{
	display: flex;
	align-content: center;
}
.service-list dl{
	display: flex;
	height: 55px;
	align-items: center;
	padding-left: 35px;
}
.service-list dl dt img{
	display: block;
	width: 50px;
}
.service-list dl dd{
	padding-left: 20px;
	font-size: 18px;
	color: #fff;
}
.index-tit{
	text-align: center;
}
.f-tit h2{
	color: #fff;
}
.index-tit h2{
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}
.index-tit p{
	margin-top: 20px;
	padding: 0 40px;
	line-height: 24px;
	font-size: 14px;
	color: #555;
}
.f-tit p{
	color: #f5f5f5;
}
.xian{
    width: 50px;
    height: 3px;
	margin: 0 auto;
}

.xian .hong{
	width: 50%;
	float: left;
	height: 3px;
	background: #b39b77;
}
.xian .lan{ 
	width: 50%; 
	float: left; 
	height: 3px; 
	background: #ec271e;
}
#about{
	padding: 40px 0;
	background-size: cover;
    box-sizing: border-box;
}
.about-bd{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}
.about-pic{
	width: 660px;
}
.about-pic img{
	width: 100%;
}
.about-content{
	width: 525px;
	padding-left: 15px;
}
.about-content p{
	font-size: 15px;
	line-height: 24px;
}
.more a{
	display: inline-block;
    color: #fff !important;
    background-color: #b39b77;
    border-width: 0px;
    border-radius: 5px;
    padding: 10px 20px 8px 20px;
    margin: 15px 0;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;	
}
.more a:hover{
    color: #fff;
    background-color: #b39b77;
    text-decoration: none;
}
#odd{
	padding: 50px 0;
	background: #f5f5f5;	
}
.odd-list{
	padding: 50px 0 0 0;
	margin: 0 -10px;
}
.odd-list dl{
	width: 285px;
	margin: 0 10px;
	padding: 30px 25px 25px;
	webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
	background: #fff;
	float: left;
}
.odd-list dl:hover{
	background: #fff;
	box-shadow: 0px 6px 15px 0px rgba(59, 59, 59, 0.21);
}
.odd-list dl dt{
	position: relative;
	margin: 0 auto;
	margin-bottom: 27px;
	overflow: hidden;
}
.odd-list dl dt img{
	display: block;
    width: 70px;
	margin: 0 auto;
}

.odd-list dl dd{
	text-align: center;
}
.odd-list dl dd h2{
	font-size: 18px;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
	text-shadow: 0 1px 0 #fff;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.odd-list dl dd p{
	font-size: 14px;
    color: #929292;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
	text-shadow: 0 1px 0 #fff;
    margin-bottom: 0;
}
#news{
	padding: 40px 0;
	background: #fff;
}
.news-bd{
	margin: 0 -10px;
	margin-top: 40px;
}
.news-bd li{
	width: 386px;
	margin: 0 10px;
	padding: 20px 0 15px 0;
	background: #f1f1f1;
	border: 1px solid #ececec;
	float: left;
}
.news-bd li h2{
	text-align: center;
	margin-bottom: 20px;
}
.news-bd li .news-img{
	height: 150px;
	overflow: hidden;
}
.news-bd li .news-img img{
	width: 100%;
}
.news-list{
	padding: 15px 15px 5px 25px;
}
.news-list dl{
	padding-bottom: 5px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ccc;
}
.news-list a{
    position: relative;
    display: flex;
    justify-content: space-between;
	font-size: 13px;
	color: #777;  
	text-shadow: 0 1px 0 #fff;
}
.news-list a:before {
    background: #007aff;
}
.news-list a:before {
    position: absolute;
    content: '';
    top: 7px;
    left: -12px;
    border-radius: 50%;
    width: 6px;
    height: 6px;
}
#contact{
	padding: 45px 0;
	background: #f5f5f5;
}
.catact-code{
	margin: 45px 0 25px 0;
	text-align: center;
}
.catact-code dl{
	display: inline-block;
	margin: 0 20px;
	
}
.catact-code dl dt{
	margin-bottom: 5px;

}
.catact-code dl dt img{
	width: 110px;
}
.catact-code dl dd{
	font-size: 13px;
}

.contact-tit h2{
	color: #c00;
}
.contact-list{
	margin-top: 25px;
}
.contact-list dl{
	width: 300px;
	text-align: center;
	float: left;
	
}
.contact-list dl dt{
	margin-bottom: 10px;
	text-align: center;
}
.contact-list dl dt img{
	width: 50px;
}
.contact-list dl dd h3{
	color: #777;
	font-size: 16px;
	margin-bottom: 10px;
}
.contact-list dl dd p{
	font-size: 18px;
	padding: 0 10px;
	color: #000;
}
.contact-list dl dd p.address{
	font-size: 14px;
}
#partner{
	padding: 50px 0 50px 0;
}
.partner-tit{
	margin-bottom: 40px;
}
.partner-tit h2{
	font-size: 20px;
	text-align: center;
}
.partner-list {
	margin-top: 40px;
}

.partner-list dl {
	position: relative;
	text-align: center;
	width: 240px;
	min-height: 80px;
	border: 1px solid #f7f7f7;
	margin-left: -1px;
	margin-bottom: -1px;
	float: left;
	-webkit-transition: all .8s ease-in-out 0s;
	-moz-transition: all .6s ease-in-out 0s;
	transition: all .6s ease-in-out 0s;
	overflow: hidden;
}
.partner-list dl dt {
	width: 100%;
	height: 100%;
	transition: all .8s;
}

.partner-list dl dt img {
	display: block;
	width: 218px;
	margin: 0 auto;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;	
}
.partner-list dl:hover{
	cursor: pointer;
}
.partner-list dl:hover dt img{
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	-o-filter: grayscale(0);
	filter: grayscale(0);
	filter: none;	
}
.partner-list dl dd {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 10px 0;
	overflow: hidden;
	color: #fff;
	transition: all 1.28s ease;
}

.partner-list dl dd h3 {
	margin: 0 0 6px 0;
	width: 100%;
	opacity: 0;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	display: block;
	text-shadow: 0 0 1px #c1a67c;
	transition: opacity .2s ease;
}
.partner-list dl dd p {
	top: 45%;
	opacity: 0;
	font-size: 14px;
	text-shadow: 0 0 1px #c1a67c;
	color: #e7eefb;
	transition: all .5s ease .38s;
}
#i-banner{
	height: 330px;
	background: #c1a67c;
}
.i-banner-container{
	position: relative;
	max-width: 1100px;
	height: 330px;
	margin: 0 auto;
	overflow: hidden;
}
.i-banner-txt{
	position: absolute;
	left: 0;
	top: 0;
	height: 330px;
    -webkit-animation: caption-left 1.2s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    animation: caption-left 1.2s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
}
.i-banner-txt h3{
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #fff;
}
.i-banner-txt p{
	font-size: 16px;
	color: #fff;
}
.i-banner-txt .table-cell{
	text-align: left;
}
.i-banner-img{
	position: absolute;
	right: 0;
	bottom: 0;
    -webkit-animation: caption-right 1.2s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    animation: caption-right 1.2s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
}
.i-banner-img img{
	display: block;
	width: 410px;
}
#inner{
	padding: 40px 0;
	background: #f3f3f3;
}

.i-bread-nav{
	
}
.i-bread-nav p span{
	font-family: serif;
}
.i-bread-nav img{
	display: inline-block;
	width: 25px;
    vertical-align: middle;

}
.i-bread-nav p{
	display: inline-block;
	font-size: 14px;
	padding-left: 3px;
	text-shadow: 0 1px 0 #fff;
    vertical-align: middle;
}
.inner-content{
	position: relative;
	margin-top: 40px;
	background: #fff;
	box-shadow: 0 0 5px #e0e0e0;
}
.track-content{
	padding: 0 0 0 10px;
}
.weights, .quantity{
	margin-bottom: 20px;
    font-size: 16px;
	display: inline-block;
    margin-right: 20px;
}
.layui-btn{
	display: inline-block;
    background-color: #FFB800;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    border: none;
    border-radius: 2px;
    cursor: pointer;
	height: 25px;
    line-height: 25px;
    padding: 0 10px;
    font-size: 12px;
}
.layui-btn-danger{

    background-color: #FF5722;

}
.i-left{
	position: absolute;
	width: 260px;
	min-height: 300px;
	padding: 30px 15px;
	border-right: 1px solid #eee;
	top: 0;
	left: 0;
	bottom: 0;
}
.i-tit{
	margin-bottom: 20px;
}
.i-tit h3{
	font-size: 16px;
}
.i-line{
    width: 28px;
    height: 2px;
    background: #b39b77;
	border-radius: 2px;
	margin: 10px 0;
}

.i-left-list a{
	display: block;
	font-size: 14px;
	padding-bottom: 15px;
	padding-left: 5px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
}
.i-left-list a:hover{
	text-decoration: none;
	border-bottom: 1px solid #b39b77;
}
.i-right{
	width: 920px;
	padding: 30px 20px 30px 0px;
	float: right;
}
.i-right h1 {
    font-size: 24px;
    text-align: center;
}
.i-right p{
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 25px
}
.i-detail{
	padding-top: 40px;
    text-align: justify;
}
.i-detail h1{
	font-size: 24px;
	text-align: center;
}

.i-detail-con{
	padding-top: 30px;
}
.i-detail-con p{
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 15px;
}
.i-detail-con img{
	max-width: 900px;
}
.problem-background{
	padding: 0 0 0 15px;
	background: #f3f3f3;
}
.problem{
	padding: 0 0 0 15px;
}
.problem dl{
	padding: 15px;
	background: #fff;
	margin-bottom: 15px;
}
.problem dl dt{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #eee;
}
.problem dl dt span, .problem dl dt h3{
	display: inline;
	padding-right: 5px;
}
.problem dl dt span{
	font-size: 20px;
	color: #164fc3;
	font-weight: bold;
}
.problem dl dt h3{
	font-size: 16px;
	color: #000;
	text-shadow: 0 1px 0 #fff;
}

.problem dl dd{
	font-size: 14px;
	color: #676767;
	line-height: 22px;
	text-shadow: 0 1px 0 #fff;
}
.i-news{
	
}
.i-news dl{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px dashed #eee;
	overflow: hidden;
}
.i-news dl dt, .i-news dl dd{
	display: inline-block;
}
.i-news dl dt{
	font-size: 14px;
	float: left;
}
.i-news dl dd{
	font-size: 12px;
	line-height: 20px;
	float: right;
}


.track{
	padding: 0 15px;
	margin-bottom: 40px;
}
.track-tit{
	margin-bottom: 20px;
}
.track-tit img{
	display: inline-block;
	width: 30px;
	vertical-align: middle;
	image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}
.track-tit h2{
	display: inline-block;
	vertical-align: middle;
	padding-left: 10px;
}
.track-box{
	
}
.btn{
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 35px;
    background-color: #b39b77;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 15px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.btn:hover{
	opacity: .8;
    filter: alpha(opacity=80);
    color: #fff;
}
.mofang-textarea{
	display: block;
	width: 100%;
    min-height: 100px;
    height: auto;
    line-height: 20px;
    padding: 6px 10px;
    resize: vertical;
	border: 1px solid #e6e6e6 !important;
    background-color: #fff;
    border-radius: 2px;
	margin-bottom: 20px;
}
.mofang-textarea {
    outline: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
}
.search-box-track{
	display: none;
}
.search-result{
	padding: 0 15px;
	margin-bottom: 10px;
}
.search-tit {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.search-tit h2{
	font-size: 20px;
}
.search-tit p{
	font-size: 16px;
	margin-top: 10px;
	margin-bottom: 0;
}
.timeline{
	padding-left: 5px;
}
.timeline-item{
	position: relative;
    padding-bottom: 15px;
}
.timeline-item:first-child .timeline-icon:after{
	border: 1px solid #fd600a;
}
.timeline-item:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    z-index: 0;
    width: 1px;
    height: 100%;
}
.timeline-item:before{
    background-color: #e6e6e6;
}

.timeline-item:last-child:before{
	width: 0;
}

.timeline-icon{
    position: absolute;
    left: -5px;
    top: 0;
    z-index: 10;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: #fff;
    color: #5FB878;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}
.timeline-icon:after{
    content: '';
    position: absolute;
    width: 16px;
    left: 0;
    height: 16px;
    border-radius: 100%;
    border: 1px solid #276bf4;
    margin: 0 auto;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
}
.timeline-icon em {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #276bf4;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translate(0 ,-50%);
}
.timeline-item:first-child .timeline-icon em{
	background: #fd600a;
}
.timeline-content {
    padding-left: 25px;
}
.timeline-content h3{
	position: relative;
	font-size: 18px;
    margin-bottom: 10px;
}
.timeline-content p{
	font-size: 14px;
}
.timeline-item:first-child h3, .timeline-item:first-child .timeline-content p{
	color: #fd600a;
}

.search-box-warehouse{
	display: none;
}
/*联系我们*/
.i-contact-box{
	padding: 40px 0;
}
.i-contact{
	padding: 20px;
	}
.i-contact{
	
}
.i-contact h3{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}
.i-contact-list{
	margin-bottom: 25px;
}
.i-contact-list dl{
	margin-bottom: 10px;
}
.i-contact-list dl dt, .i-contact-list dl dd{
	display: inline-block;
}
.i-contact-list dl dt img{
	width: 25px;
	vertical-align: middle;
}
.i-contact-list dl dt span{
	font-size: 14px;
	padding-left: 5px;
	vertical-align: middle;
}
.i-contact-list dl dd{
	font-size: 16px;
	vertical-align: text-top;
}
.i-map{
	padding: 0 20px 20px 20px;
	text-align: center;
}
.i-map img{
	width: 100%;
}
#footer{
	position:relative;
	padding:30px 0;
	background:#1d1d1d;
	border-top:2px solid #b39b77;
	border-bottom: 1px solid #353535;
	z-index:99;
	}
.f-nav{
	float:left;
	}
.f-nav li{
	margin-right:65px;
	float:left;
	}
.f-nav li h3, .f-nav li h3 a{
	font-size:16px;
	color:#a4a4a4;
	margin-bottom:20px;
	}
.f-nav li a{
	display:block;
	font-size:13px;
	color:#F5F5F5;
	margin-bottom:10px;
	}
.f-code{
	padding-left:50px;
	border-left:1px solid #565656;
	float:left;
	}
.f-code img{
	display:block;
	width:130px;
	margin-bottom:5px;
	}
.f-code p{
	font-size:13px;
	text-align:center;
	color:#A5A5A5;
	}
.f-tel{
	width:200px;
	margin-left:60px;
	float:left;
	}
.f-tel .b-logo{
	width:60px;
	margin:0 auto;
	}
.f-tel .b-logo img{
	display:block;
	width:60px;
	}

.f-tel .txt{
	padding:5px 15px;
	border:1px solid #b39b77;
	text-align:center;
	margin-bottom:15px;
	}
.f-tel .txt img{
	display: inline-block;
	width:25px;
	vertical-align:middle;
	}
.f-tel .txt span{
	color:#b39b77;
	font-size:13px;
	line-height:24px;
	vertical-align: middle;
}
.f-tel .f-num{
	font-size:22px;
	text-align:center;
	color:#b39b77;
	font-weight:bold;
	}
#copy{
	position:relative;
	padding:8px 0;
	background:#000;
	z-index:99;
	}
#copy p{
	font-size:12px;
	margin-bottom:5px;
	text-align:center;
	}
#copy a,#copy p{
	color:#8A8A8A;
	}
@-webkit-keyframes moFadeInUp {
	0% {
	opacity:0;
	-webkit-transform:translate3d(0, 100%, 0);
	transform:translate3d(0, 100%, 0)
	}
	to {
	opacity:1;
	-webkit-transform:none;
	transform:none
	}
}
@keyframes moFadeInUp {
	0% {
	opacity:0;
	-webkit-transform:translate3d(0, 100%, 0);
	transform:translate3d(0, 100%, 0)
	}
	to {
	opacity:1;
	-webkit-transform:none;
	transform:none
	}
}
@-webkit-keyframes caption-right {
	 0% {
	-webkit-transform:translate(2000px, 0);
	transform:translate(2000px, 0);
	opacity: 0;
	}
	 100% {
	-webkit-transform:translate(0, 0);
	transform:translate(0, 0);
	opacity: 1;
	}
}
@keyframes caption-right {
	0% {
		transform:translate(2000px, 0);
		opacity: 0;
	}
	100% {
		transform:translate(0, 0);
		opacity: 1;
	}
}
@keyframes caption-left {
	 0% {
		transform:translate(-2000px, 0);
		opacity: 0;
		}
	 100% {
		transform:translate(0, 0);
		opacity: 1;
		}
}
 @-webkit-keyframes caption-left {
	 0% {
		-webkit-transform:translate(-2000px, 0);
		transform:translate(-2000px, 0);
		opacity: 0;
		}
	 100% {
		-webkit-transform:translate(0, 0);
		transform:translate(0, 0);
		opacity: 1;
		}
}
 @-webkit-keyframes rollIn {
0% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform:translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes rollIn {
0% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
-ms-transform:translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform:translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
}
100% {
opacity:1;
-webkit-transform:none;
-ms-transform:none;
transform:none
}
}
.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}
.swiper-slide-active .banner-text .w-text-01{
    -webkit-animation: caption-left 1.2s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    animation: caption-left 1.2s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
}
.swiper-slide-active .banner-text .w-text-02{
    -webkit-animation: caption-right 1.2s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
    animation: caption-right 1.2s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
}

