@charset "utf-8";
/*reset*/
html{
	font-family: '微软雅黑','microsoft yahei';
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
	color: #555;
}
body,p,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset,legend,input,textarea,button,select {margin:0;padding:0;}
th,td{border-spacing:0;}
img,filedset,ifrmae{border:0;}
img{max-width: 100%;vertical-align: top;}
ul,ol,li{
	list-style: none;
}
a{
	text-decoration: none;
	color:#666;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{
	display: block;
}
audio,canvas,progress,video{
	display: inline-block;
	vertical-align: baseline;
}

/*动画*/
p:hover{  transition: all 0.3s ease 0s;}
a:hover{ transition: all 0.3s ease 0s;}
/*animate*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-fast {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    -ms-transform: scale(1.0);
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -ms-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    -ms-transform: scale(1.0);
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);*/
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);*/
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);*/
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);*/
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);*/
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    /*-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);*/
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    /*visibility: visible;*/
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }

  to {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
     opacity: 1;
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
     opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
     opacity: 1;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
     opacity: 1;
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
     opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
     opacity: 1;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
/*common*/
.tranY10,.tranYZ10,.tranX10,.more:before,.tranS{
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition:all 0.6s;
}
.tranS:hover{
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
}
.tranY10:hover{
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
.tranYZ10:hover{
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -o-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}
.tranX10:hover{
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.pwrap{
	width:80%;
  min-width: 1140px;
	padding:0 30px;
	margin:0 auto;
}
.clearfix{*+height:1%;*zoom:1;}
.clearfix:after{
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
.animate-box{
	opacity: 0;
}
.ptit{
   color:#ee831b;
   position: relative; 
   display: inline-block;
   padding-bottom: 50px;
}
.ptit p{
  font-size: 28px;
}
.ptit span{
  font-size: 12px;
  text-transform:uppercase;
}
.ptit .line{
  position: absolute;
  height: 1px;
  width: 300%;
  background-color:#ee831b; 
  left: -200%;
}
.pat{
  padding:50px 0;
  text-align: center;
}
.pat p{
  color:#333;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.pat span{
  color:#777;
  display: block;
}
.p-line{
  position: relative;
  padding-top: 62px;
}
.p-line:before{
  position: absolute;
  content: "";
  top:0;
  left: 0;
  right: 0;
  margin:auto;
  width: 100px;
  height: 2px;
  background-color:#ee831b; 
}
.pbanner{
  position: relative;
  color:#fff;
  width: 100%;
  overflow:hidden;
  height: 280px;
  padding-top: 100px;
  background-size: cover;
  background-repeat: no-repeat;
}
.pbanner img{
  width: 100%;
}
.pbt{
  position: absolute;
  left:50%;
  top:50%;
  text-align: center;
  width: 400px;
  margin-left: -200px;
  color: #666;
}
.pbt p{
  font-size: 35px;
  margin-bottom: 20px;
}
.pbt span{
  display: block;
  font-size: 14px;
  text-transform:uppercase;
}
/*分页*/
.paging{
  text-align: center;
  margin:10px;
}
.paging ul li{
  display: inline-block;
  font-size: 15px;
  border:1px solid #cccbcb;
  padding:4px 10px;
}
.paging ul li.active{
  border:1px solid #f0831c;
}
/*header*/
.header .pwrap{
  position: relative;
}
.header{
  height: 100px;
  background-color: #fff;
  position: fixed;
  width: 100%;
  top:0;
  left: 0;
  z-index: 999;
  box-shadow: 2px 0px 5px #eee;
}
.logo{
  width: 130px;
  position: absolute;
  top:0;
  left: 0;
}
.logo a{
  display: block;
  width: 100%;
  line-height: 100px;
}
.logo img{
  width: 100%;
  vertical-align: middle;
}
.hfr{
  padding: 0 245px 0 130px;
  height: 100%;
}
.hfr .nav{
  float: right;
}
.nav ul li{
  display: inline-block;
  font-size: 0px;
  position: relative;
  height: 100%;
  text-align: right;
}
.nav ul li.active{
  border-bottom:3px solid #f3901c;
}
.nav ul li a{
  font-size: 17px;
  display: block;
  padding:0px 20px;
  position: relative;
  margin:0px 7px;
  border-radius: 5px;
  line-height: 97px;
}
.search{position: absolute;right:0; top: 34px;}
.search .sou{
  display:inline-block;
  height: 21px;
  padding:6px 10px;
  padding-right: 20px;
  font-size: 12px;
  line-height: 1.5;
  background-color:#f9f9f9;
  border:1px solid #e4eaec;
  -webkit-appearance:none;
  border-radius: 20px;
  outline: 0;
  color:#666;
}
.search span{
  display: inline-block;
  margin-left: 10px;
  cursor:pointer;
}
.search em{
  font-size: 13px;
  font-style: normal;
}
.search em.active{
  color: red;
}
.search button{
  margin-left:10px;
  border:none;
  background: 0 0;
  outline: none;
  width: 20px;
  vertical-align: middle;
  cursor: pointer;
}
/*手机版导航*/
.btn-nav {
  position: absolute;
  top:30px;
  right:10px;
  background: transparent;
  border: none;
  padding: 6px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  cursor: pointer;
  z-index: 99999;
  display: none;
  cursor: pointer;
}

.btn-nav:focus {
  outline: 0;
}

.icon-bar {
  display: block;
  margin: 6px 0;
  width: 35px;
  height: 2px;
  background-color:#ee821c;
}

.btn-nav:hover .icon-bar {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background-color:#d61718;
}
.nav-content {
  position: fixed;
  top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  background:rgba(0, 0, 0, 0.79);;
  display: block;
  height: 100%;
  z-index: 10;
}
.nav-list {
  list-style: none;
  padding: 0;
  position: relative;
  top: 8%;
  text-align: center;
}
.item-anchor:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: transparent;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.item-anchor:hover,
.item-anchor:focus {
  color: #FCA311;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor:hover:after,
.item-anchor:focus:after{
  width: 100%;
  background: #FCA311;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.nav-item {
  margin: 10px auto;
  text-align: center;
}
.nav-item a{
  color:#fff;
}
.animate-nav {
  display: block;
  margin: 0 auto;
}

.animated-nav:hover .icon-bar,
.animated:focus .icon-bar{
  background-color: #FCA311;
}

.animated-nav:focus {
  cursor: pointer;
  z-index: 9999;
}
.middle {
  margin: 0 auto;
}

.icon-bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
  z-index: 999999;
}

.animated-nav .icon-bar {
  z-index: 999999;
  background-color: #FCA311;
}

.animated-nav .top {
  -webkit-transform: translateY(5px) rotateZ(45deg);
  -moz-transform: translateY(5px) rotateZ(45deg);
  -ms-transform: translateY(5px) rotateZ(45deg);
  -o-transform: translateY(5px) rotateZ(45deg);
  transform: translateY(5px) rotateZ(45deg);
}

.animated-nav .bottom {
  -webkit-transform: translateY(-11px) rotateZ(-45deg);
  -moz-transform: translateY(-11px) rotateZ(-45deg);
  -ms-transform: translateY(-11px) rotateZ(-45deg);
  -o-transform: translateY(-11px) rotateZ(-45deg);
  transform: translateY(-11px) rotateZ(-45deg);
}
.ove{
  overflow: hidden;
}
.animated-nav .middle {
  width: 0;
}

@keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-webkit-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-moz-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-o-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

.showNav {
  -webkit-animation: showNav 1s ease forwards;
  -moz-animation: showNav 1s ease forwards;
  -o-animation: showNav 1s ease forwards;
  animation: showNav 1s ease forwards;
}

@keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-webkit-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-moz-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-o-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

.hideNav {
  -webkit-animation: hideNav 1s ease forwards;
  -moz-animation: hideNav 1s ease forwards;
  -o-animation: hideNav 1s ease forwards;
  animation: hideNav 1s ease forwards;
}
.hidden{
  display: none;
}
/*footer*/
.footer1{
  text-align: center;
  padding:20px;
  background-color: #fff;
  color:#777;
}
/*footer*/
.footer{
  background-color: #30303b;
  color:#74747c;
  text-align: center;
  padding:20px 15px;
}
@media (max-width:1200px){
  .pwrap{
    min-width:500px;
    width: 90%;
    padding:0 18px;
  }
  .footer{
    font-size:15px; 
  }
  .pat{
    padding:30px 0;
  }
  .nav ul li a{
    padding:0 15px;
    margin:0px;
  }
  .search .sou{
    width: 100px;
  }
  
}
@media (max-width:1080px){
  .btn-nav{
    display: block;
  }
  .nav{
    display: none;
  }
  .search{
    right: 80px;
  }
  .pbanner{
    padding-top: 70px;
  }
}
@media (max-width:768px){
  .header{
    height: 80px;
  }
  .logo a{
    line-height: 80px;
  }
  .btn-nav{
    top: 20px;
  }
  .search{
    top: 24px;
  }
  .logo{
    width: 100px;
  }
  .footer{
    font-size:13px; 
  }
    .pat p{
      font-size: 24px;
    }
    .pbanner{
      height: 300px;
      overflow: hidden;
      text-align: center;
    }
    .pbanner img{
      height: 100%;
      max-width:initial;
      width: auto;
    }
    .pbt p{
      font-size: 30px;
    }

}
@media (max-width:640px){
  .pwrap{
    width: 90%;
    min-width:280px;
    padding:0 15px;
  }
  .footer{
    font-size:12px; 
  }
  .p-line{
    padding-top: 30px;
  }
  .pat p{
      font-size: 20px;
      margin-bottom:10px;
    }
    .pat {
    padding: 15px 0;
    }
    .pat span{
      font-size: 13px;
    }
    .search .sou{
      height: 15px;
    }
    .logo{
      left: 15px;
    }
    .header{
      height: 70px;
    }
    .logo a{
      line-height:70px;
    }
    .btn-nav{
      top: 15px;
    }
    .search{
      top: 20px;
    }
    .search input,.search button{display: none;}
    .pbt p{
      font-size: 25px;
    }
    .paging ul li{
      font-size: 13px;
    }
}
@media (max-width:414px){
    .pat p{
      font-size: 18px;
    }
    .pbt p{
      font-size: 20px;
    }
}
@media (max-width:375px){
    .search{
      display: none;
    }
}