@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;
}
img {
	border: none;
}
a img {
	border: none;
}
a:link {
	color: #333333;
}
a:visited {
	color: #333333;
}
a:hover {
	color: #276bf4;
	text-decoration: underline;
}
a:active {
	color: #333333;
}
p, div {
	color: #333;
	font-size: 12px;
}
strong, strong span{
	font-weight: bold;
}
: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;
}

@-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;
}
#top.fixed{
	position: fixed;
	padding: 0;
	top: 0;
	width: 100%;
  	-webkit-animation: slideInDown 1s;
    animation: slideInDown 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	z-index: 999999;
}
#top.fixed .logo{
	width: 165px;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

#top{
	padding: 10px 0;
	background: #fff;
	border-bottom: 1px solid #eaeaea;
}
.head{
	position: relative;
	height: 90px;
	padding: 10px 0;
	margin: 0 auto;
}
#top .logo{
	max-width: 195px;
    position: absolute;
    top: 50%;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transform: translate(0px, -50%);
}

#top .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) */
}

.top-center{
	display: table;
	height: 75px;
}
.nav-list{
	margin-top: 5px;
	padding: 10px 0;
    float: right;
}
.nav-list>li{
	display: inline-block;
	position:relative;
	padding:0 35px;
	}
.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 #ed6c00;
	margin:10px auto 0 auto;
	transition: all ease-out .3s;

	}
.nav-list>li>a span:after {
    content: attr(data-title);
    position: absolute;
    color: #ed6c00;
    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:#ed6c00;
	transform: translateY(-100%);
  }
.nav-list>li>a:hover div,.nav-list>li:hover>a>div, .nav-list>li>a.cur div{
	width:100%;
	}
.nav-tel{
	height: 43px;
}
.nav-tel img{
	width: 22px;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
}
.tel-tip{
	display: none;
    position: absolute;
    top: 35px;
    width: 120px;
    z-index: 999;
}
.tel-tip .hide-num{
	display:block;
	padding:5px;
	padding-left: 10px;
	color:#fff;
	font-size: 14px;
	text-align: left;
	border-radius: 0 3px 3px 3px;
	background:#1e2996;
	}

.tel-tip .arrow {
	display:block;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #1e2996;
}
.nav-tel:hover .tel-tip{
	display: block;
}
/*下拉菜单*/
.down-menu{
	display:none;
	position:absolute;
	padding-top:10px;
	left:0;
	right:0;
	margin:auto;
	z-index:999;
	}
.down-menu-list{
	padding:7px 0;
	border-top:2px solid #ed6c00;
	background:rgba(255,255,255,0.98) none repeat scroll 0 0 !important;/*实现FF背景透明，文字不透明*/
	background:#fff;
	filter:Alpha(opacity=98);/*实现IE背景透明*/
	border-radius:0 0 5px 5px;
	}
.down-menu-list a{
	display:block;
	color:#000;
	border-bottom: 1px solid #F1F1F1;
	font-size:13px;
	padding:7px 0;
	text-align:center;
	}
.down-menu-list a:hover{
	color:#fff;
	background:#ed6c00;
	text-decoration:none;
	}
.down-menu-list a:last-child{
	border-bottom:none;
	}
#banner{
	overflow: hidden;
	}
.banner-img img{
	}
@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: #ed6c00;
}

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;
}
.index-search-box{
	width: 400px;
	float: left;
}
.index-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;
}
.index-search-btn{
	position: relative;
	display: block;
    width: 60px;
    height: 55px;
    background: #fff;
	float: left;
}
.index-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: #8fc31f;
}
.xian .lan{ 
	width: 50%; 
	float: left; 
	height: 3px; 
	background: #ed6c00;
}

#about{
	padding: 40px 0;
    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: #ed6c00;
    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: #ed6c00;
    text-decoration: none;
}

.order-tracking{
	width: 300px;
	float: left;
}

.order-content{
	
}
.order-content .search-box{
	width: 100%;
    border: 1px solid #e4e4e4;
    padding: 10px;
    background: #fff;
    height: 120px;
    vertical-align: bottom;
}
.order-content .search-btn{
    width: 100%;
    height: 40px;
    background: #276bf4;
    margin-top: 10px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
}

#odd{
	padding: 50px 0;
	background: #f5f5f5;	
}
#odd{
	padding: 50px 0;
	background: #f5f5f5;	
}
.odd-list{
	padding: 50px 0 0 0;
	margin: 0 -10px;
}
.odd-list dl{
	width: 285px;
	min-height: 256px;
	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;
}
.contact-code{
	margin-top: 25px;
	text-align: center;
}
.contact-code dl{
	display: inline-block;
	margin: 0 20px;
	
}
.contact-code dl dt{
	margin-bottom: 5px;

}
.contact-code dl dt img{
	width: 110px;
}
.contact-codedl dd{
	font-size: 13px;
}
.contact-tit h2{
	color: #c00;
}
.contact-list{
	display: flex;
	margin-top: 25px;
	text-align: center;
}
.contact-list dl{
	display: inline-block;
	width: 296px;
	text-align: center;
	
}
.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;
}

#i-banner{
	height: 330px;
	background: #ed6c00;
}
.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: 35px;
}
.i-left{
	position: absolute;
	width: 250px;
	min-height: 300px;
	padding: 30px 20px;
	border-right: 1px solid #eee;
	top: 0;
	left: 0;
	bottom: 0;
}
.i-tit{
	margin-bottom: 20px;
}
.i-tit h3{
	font-size: 16px;
}
.i-left-list{
	
}
.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 #276bf4;
}
.i-right{
	width: 950px;
	padding: 30px;
	float: right;
}
.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;
}

.article-tit h1 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.detail .content p{
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 25px
}

.btn{
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 35px;
    background-color: #ed6c00;
    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;
}
.track{
	padding: 0 15px;
	margin-bottom: 40px;
}
.track-tit{
	margin-bottom: 20px;
}
.track-tit img{
	display: inline-block;
	width: 30px;
	vertical-align: middle;
}
.track-tit h2{
	display: inline-block;
	vertical-align: middle;
	padding-left: 10px;
}
.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-result{
	display: none;
	padding: 0 15px;
	margin-bottom: 10px;
}
.search-result dl{
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.search-result dl dt{
	font-size: 20px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}
.search-result dl dt p{
	font-size: 20px;
	margin-bottom: 10px;

}
.search-result dl dt p.destination{
	font-size: 14px;
	color: #666;
}
.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;
}
/*联系我们*/
.i-contact-box{
	margin-top: 10px;
	padding: 40px 0;
}

#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 #ed6c00;
	transition: opacity .2s ease;
}
.partner-list dl dd p {
	top: 45%;
	opacity: 0;
	font-size: 14px;
	text-shadow: 0 0 1px #ed6c00;
	color: #e7eefb;
	transition: all .5s ease .38s;
}
#footer{
	position:relative;
	padding:30px 0;
	background:#1d1d1d;
	border-top:2px solid #ed6c00;
	border-bottom: 1px solid #353535;
	z-index:99;
	}
.f-nav{
	float:left;
	}
.f-nav li{
	margin-right:105px;
	float:left;
	}
.f-nav li h3{
	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 #0084ff;
	text-align:center;
	margin-bottom:15px;
	}
.f-tel .txt img{
	display: inline-block;
	width:25px;
	vertical-align:middle;
	}
.f-tel .txt span{
	color:#0084ff;
	font-size:13px;
	line-height:24px;
	vertical-align: middle;
}
.f-tel .f-num{
	font-size:22px;
	text-align:center;
	color:#0084ff;
	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);
}

