body{font-family: "微软雅黑","Helvetica Neue",Helvetica,Arial,sans-serif;}
p,ul,li,a{margin: 0;padding: 0;list-style-type: none;}
a:hover{text-decoration: none;}

.wrapper {
  transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
}
.navbar {
  height: 75px;
  transition: all .5s .1s;
  position: fixed;
  top: 60px;
  left: 80px;
}
.navbar-offcanvas {
  z-index: 1030;
}
.navbar-offcanvas .container-fluid {
  position: relative;
  padding: 0;
  transform: translate3d(0px, 0, 0);
  transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
}
.navbar-offcanvas .navbar-top {
  display: none;
}
@media (min-width: 992px) {
  .navbar-offcanvas .navbar-top {
    display: flex;
    margin-left: auto;
  }
}
.navbar-offcanvas .navbar-toggler {
  padding: 0;
  border: 0;
  outline: none;
  background: #202020;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
}
.navbar-offcanvas .navbar-toggler::after{
	content: "菜单";
	position: absolute;
	display: block;
	text-align: center;
	width: 42px;
	top: 45px;
    letter-spacing: 2px;
}
.navbar-offcanvas .navbar-toggler.toggled::after{
	display: none;
}
.navbar-offcanvas .navbar-toggler:hover, .navbar-offcanvas .navbar-toggler:focus {
  cursor: pointer;
}
@media (min-width: 768px) {
  .navbar-offcanvas .navbar-toggler {
    display: block;
  }
}
.navbar-offcanvas .navbar-toggler .icon-bar {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background-color: #f2f6f7;
  left: 8px;
}
.navbar-offcanvas .navbar-toggler .icon-bar + .icon-bar {
  margin-top: 4px;
}
.navbar-offcanvas .navbar-toggler .icon-bar.bar1 {
  top: 0;
  outline: 1px solid transparent;
  animation: topbar-back 500ms 0s;
  animation-fill-mode: forwards;
}
.navbar-offcanvas .navbar-toggler .icon-bar.bar2 {
  outline: 1px solid transparent;
  opacity: 1;
}
.navbar-offcanvas .navbar-toggler .icon-bar.bar3 {
  bottom: 0;
  outline: 1px solid transparent;
  animation: bottombar-back 500ms 0s;
  animation-fill-mode: forwards;
}
.navbar-offcanvas .navbar-toggler.toggled .icon-bar.bar1 {
  top: 6px;
  animation: topbar-x 500ms 0s;
  animation-fill-mode: forwards;
}
.navbar-offcanvas .navbar-toggler.toggled .icon-bar.bar2 {
  opacity: 0;
}
.navbar-offcanvas .navbar-toggler.toggled .icon-bar.bar3 {
  bottom: 6px;
  animation: bottombar-x 500ms 0s;
  animation-fill-mode: forwards;
}
.navbar-offcanvas .navbar-collapse.collapse,
.navbar-offcanvas .navbar-collapse.collapse.in,
.navbar-offcanvas .navbar-collapse.collapsing {
  display: none !important;
}
.navbar-collapse.collapse{
    padding-right: 0;
}

.nav-open .navbar-collapse {
  transform: translate3d(0px, 0, 0);
}
.nav-open .navbar > .container-fluid {
  transform: translate3d(170px, 0, 0);
}
@media (max-width: 991px) {
  .nav-open .navbar > .container-fluid {
    transform: translate3d(200px, 0, 0);
  }
}
.nav-open .wrapper {
  transform: translate3d(-150px, 0, 0);
}

body > .navbar-collapse {
  display: block !important;
  position: fixed;
  top: 0;
  left: -10px;
  width: 245px;
  height: 100%;
  padding: 60px 1rem;
  background-color: #fff;
  border-left: 1px solid #e3e3e3;
  visibility: visible;
  overflow-y: visible;
  transform: translate3d(-424px, 0, 0);
  transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  z-index: 1032;
  overflow: hidden;
}
body > .navbar-collapse .nav-image {
  margin-bottom: 40px;
}
body > .navbar-collapse .nav-image img {
  display: block;
  margin: 0 auto;
}
body > .navbar-collapse .navbar-top {
  margin: 0 !important;
  flex-direction: column;
}
@media (min-width: 992px) {
  body > .navbar-collapse .navbar-top {
    display: none;
  }
}
body > .navbar-collapse .navbar-top li {
  text-align: center;
}
body > .navbar-collapse .navbar-top li a {
  display: block;
  padding: .5rem 1rem;
  font-weight: 700;
  color: #000;
}
body > .navbar-collapse .navbar-top li a:hover, body > .navbar-collapse .navbar-top li a:focus {
  text-decoration: none;
}
body > .navbar-collapse .nav-link,
body > .navbar-collapse .dropdown-toggle {
  color: #222;
  transition: color .2s ease-out;
}
body > .navbar-collapse .nav-link:hover, body > .navbar-collapse .nav-link:focus,
body > .navbar-collapse .dropdown-toggle:hover,
body > .navbar-collapse .dropdown-toggle:focus {
  text-decoration: none;
}
body > .navbar-collapse .nav-link.disabled,
body > .navbar-collapse .dropdown-toggle.disabled {
  color: rgba(0, 0, 0, 0.35);
}
body > .navbar-collapse .nav-link.disabled:hover, body > .navbar-collapse .nav-link.disabled:focus,
body > .navbar-collapse .dropdown-toggle.disabled:hover,
body > .navbar-collapse .dropdown-toggle.disabled:focus {
  cursor: not-allowed;
}
@media (min-width: 992px) {
  body > .navbar-top {
    display: none;
  }
}
body > #overlay {
  display: none;
}

@keyframes topbar-x {
  0% {
    top: 0px;
    transform: rotate(0deg);
  }
  45% {
    top: 6px;
    transform: rotate(145deg);
  }
  75% {
    transform: rotate(130deg);
  }
  100% {
    transform: rotate(135deg);
  }
}
@keyframes topbar-back {
  0% {
    top: 6px;
    transform: rotate(135deg);
  }
  45% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    top: 0px;
    transform: rotate(0);
  }
}
@keyframes bottombar-x {
  0% {
    bottom: 0px;
    transform: rotate(0deg);
  }
  45% {
    bottom: 6px;
    transform: rotate(-145deg);
  }
  75% {
    transform: rotate(-130deg);
  }
  100% {
    transform: rotate(-135deg);
  }
}
@keyframes bottombar-back {
  0% {
    bottom: 6px;
    transform: rotate(-135deg);
  }
  45% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    bottom: 0px;
    transform: rotate(0);
  }
}
.home{
	display: block;
	width: 40px;
	height: 45px;
	background: url(../images/home.png) no-repeat center;
	margin-left: 3px;
	margin-bottom: 12px;
}
.navbar-nav,.navbar-nav > li{
	float: none;
	position: relative;
}

.logo{
	position: absolute;
	z-index: 999;
	left: 80px;
	top: 30px;
}
.slide img{
	display: none;
}
.fp-slidesNav.bottom{
	bottom: 60px;
}
.fp-controlArrow{
	display: none;
}
.navbar-nav > li{
    padding: 15px 0 10px 80px;
    margin-bottom: 5px;
}
.navbar-nav > li p{
    color: #172341;
    font-size: 15px;
}
.navbar-nav > li span{
    display: block;
    font-size: 12px;
    color: #bab9b9;
    font-family: Arial;
}
.navbar-nav > li:nth-child(1){
    padding-left: 0;
}
.navbar-nav > li:nth-child(2)::before{
    content: "\e021";
    font-family: 'Glyphicons Halflings';
}
.navbar-nav > li:nth-child(3)::before{
    content: "\e064";
    font-family: 'Glyphicons Halflings';
}
.navbar-nav > li:nth-child(4)::before{
    content: "\e005";
    font-family: 'Glyphicons Halflings';
}
.navbar-nav > li:nth-child(5)::before{
    content: "\e032";
    font-family: 'Glyphicons Halflings';
}
.navbar-nav > li:nth-child(6)::before{
    content: "\e125";
    font-family: 'Glyphicons Halflings';
}
.navbar-nav > li:nth-child(7)::before{
    content: "\e008";
    font-family: 'Glyphicons Halflings';
}
.navbar-nav > li:nth-child(8)::before{
    content: "\e062";
    font-family: 'Glyphicons Halflings';
}
.navbar-nav > li::before{
    position: absolute;
    left: 45px;
    color: #0287d2;
    font-size: 20px;
}
.navbar-nav > li.hover{
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.navbar-nav > li.hover::after{
    content: " ";
    display: block;
    width: 5px;
    background: #0287d2;
    height: 67px;
    top: -1px;
    left: 0;
    position: absolute;
}
.navbar-nav > li:hover p{
    color: #0287d2;
}

.nav_tell{
    text-align: center;
    padding: 0 30px;
    position: relative;
    margin-top: 120px;
}
.nav_tell a{
    display: none;
    width: 36px;
    height: 36px;
    background: url(../images/phone.png) no-repeat center;
    margin: 0 auto;
}
.nav_tell span{
    display: block;
    font-size: 20px;
    color: #172341;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}
.nav_tell p{
    color: #999999;
    line-height: 26px;
    margin-top: 10px;
}
.nav_tell span::before{
    content: " ";
    position: absolute;
    width: 36px;
    height: 36px;
    background: url(../images/phone.png) no-repeat center;
    left: 50%;
    margin-left: -18px;
    top: -42px;
}

.bottom li{
    width: 50px !important;
    height: 2px !important;
    margin: 0 10px !important;
}
.bottom li a span{
    width: 100% !important;
    height: 4px !important;
    background: #fff !important;
    border-radius: 0 !important;
    border: 0 !important;
}
.bottom li a.active span{
    background: #0287d2 !important;
}

.right::before,.right::after{
    content: " ";
    width: 12px;
    height: 24px;
    position: absolute;
    left: 50%;
    margin-left: -5px;
}
.right::before{
    background: url(../images/right.png) 0 0;
    top: -50px;
}
.right::after{
    background: url(../images/right.png) 0 -24px;
    bottom: -50px;
}
.right li{
    width: 30px !important;
    height: 30px !important;
    margin: 20px 0 !important;
}
.right li span{
    width: 30px !important;
    height: 30px !important;
    border: 0 !important;
    font-size: 15px;
    text-align: center;
    line-height: 30px;
}
.right li span::after{
    color: #fff;
    font-weight: bold;
}
.right li:nth-child(1) span::after{
    content: "01";
}
.right li:nth-child(2) span::after{
    content: "02";
}
.right li:nth-child(3) span::after{
    content: "03";
}
.right li:nth-child(4) span::after{
    content: "04";
}
.right li:nth-child(5) span::after{
    content: "05";
}
.right li:nth-child(6) span::after{
    content: "06";
}
.right li a.active span{
    background: #fff !important;
}
.right li a.active span::after{
    color: #0287d2;
}

.right2 li span::after{
    color: #172341;
}
.right2 li a.active span{
    background: #0287d2 !important;
}
.right2 li a.active span::after{
    color: #fff;
}
.right2::before{
    background: url(../images/right2.png) 0 0;
    top: -50px;
}
.right2::after{
    background: url(../images/right2.png) 0 -24px;
    bottom: -50px;
}

@media (max-width: 992px){
	.logo{
		width: 200px;
	}
}
@media screen and (max-width:768px){
	.logo{
		width: 120px;
		left: 20px;
		top: 10px;
	}
	.navbar{
		top: 20px;
		left: 20px;
	}
	.home{
		width: 30px;
		height: 35px;
		background-size: 30px;
	}
	.navbar-offcanvas .navbar-toggler{
		width: 30px;
		height: 30px;
	}
	.nav-open .navbar > .container-fluid {
	    transform: translate3d(220px, 0, 0);
	}
	.navbar-offcanvas .navbar-toggler .icon-bar{
		width: 14px;
	}
	.navbar-offcanvas .navbar-toggler .icon-bar + .icon-bar{
		margin-top: 3px;
	}
	.navbar-offcanvas .navbar-toggler.toggled .icon-bar.bar3{
		bottom: 5px;
	}
	.navbar-offcanvas .navbar-toggler.toggled .icon-bar.bar1{
		top: 5px;
	}
	.banner{
		height: auto !important;
	}
	.fp-slide, .fp-slidesContainer,.fp-tableCell{
		height: auto !important;
	}
	.slide img{
		display: block;
	}
    .bottom li{
        width: 30px !important;
        height: 2px !important;
        margin: 0 5px !important;
    }
    .bottom li a span{
        width: 100% !important;
        height: 2px !important;
        background: #fff !important;
        border-radius: 0 !important;
        border: 0 !important;
    }
    .bottom li a.active span{
        background: #0287d2 !important;
    }
	.fp-slidesNav.bottom{
		bottom: 10px;
	}
    .right{
        display: none;
    }
    .navbar-offcanvas .navbar-toggler::after{
        width: 34px;
        top: 35px;
        font-size: 12px;
        letter-spacing: 2px;
    }
    .navbar-nav{
        margin: 0;
    }
    body > .navbar-collapse{
        padding-top: 30px;
    }
    body > .navbar-collapse .nav-image{
        margin-bottom: 20px;
    }
    .navbar-nav > li{
        padding: 10px 0 5px 80px;
    }
    .navbar-nav > li p{
        font-size: 14px;
    }
    .navbar-nav > li span{
        font-size: 10px;
    }
    .navbar-nav > li.hover::after{
        height: 57px;
    }
    .nav_tell{
        margin-top: 50px;
    }
    .nav_tell p,.nav_tell span{
        display: none;
    }
    .nav_tell a{
        display: block;
    }
}

.floor2{
    background: url(../images/f2-1.png) center;
}
.floor2 .abright{
    background: url(../images/f2-2.jpg) center no-repeat;
    height: 100vh;
    display: none;
}
.floor2 .abtop{
    padding-top: 30%;
    display: none;
}
.floor2 .abtop i{
    font-size: 78px;
    color: #e3e3e3;
    font-style: normal;
    font-weight: 200;
    font-family: "微软雅黑";
    display: block;
    line-height: 85px;
}
.floor2 .abtop span{
    display: block;
    font-size: 30px;
    color: #172341;
}
.floor2 .abtop p{
    font-size: 15px;
    color: #888888;
    line-height: 24px;
    margin-top: 30px;
}
.atab{
    margin-top: 50px;
    display: none;
}
.atab p{
    font-size: 18px;
    color: #525869;
    margin-top: 8px;
    transition: all 0.3s;
}
.atab span{
    font-size: 16px;
    color: #b8b8b8;
    font-family: Arial;
    display: block;
    margin-top: 2px;
}
.atab a::before{
    content: " ";
    width: 63px;
    height: 63px;
    display: block;
    float: left;
    margin-right: 15px;
}
.atab1 a::before{
    background: url(../images/f2-3.png) 0 0 no-repeat;
}
.atab2 a::before{
    background: url(../images/f2-3.png) -80px 0 no-repeat;
}
.atab3 a::before{
    background: url(../images/f2-3.png) -160px 0 no-repeat;
}
.atab1,.atab2,.atab3{
    margin-bottom: 30px;
}
.atab a:hover p{
    color: #0287d2;
}
.ableft{
    background: url(../images/m1.png) no-repeat bottom right;
    height: 100vh;
}
@media (max-width: 1500px){
    .floor2 .abtop{
        padding-top: 20%;
    }
    .floor2 .abtop i{
        font-size: 50px;
    }
    .floor2 .abtop span{
        font-size: 25px;
    }
    .atab p{
        font-size: 15px;
    }
    .atab span{
        font-size: 13px;
    }
    .atab a::before{
        width: 53px;
        height: 53px;
    }
    .atab1 a::before{
        background: url(../images/f2-3.png) 0 0 no-repeat;
        background-size: 200px;
    }
    .atab2 a::before{
        background: url(../images/f2-3.png) -66px 0 no-repeat;
        background-size: 200px;
    }
    .atab3 a::before{
        background: url(../images/f2-3.png) -132px 0 no-repeat;
        background-size: 200px;
    }
}
@media (max-width: 992px){
    .floor2 .abtop{
        padding-top: 10%;
    }
}
@media (max-width: 768px){
    .floor2 .abtop{
        padding-top: 15%;
        display: block;
    }
    .floor2 .abtop i{
        font-size: 30px;
        line-height: 40px;
    }
    .floor2 .abtop span{
        font-size: 18px;
    }
    .floor2 .abtop p{
        font-size: 14px;
        margin-top: 20px;
    }
    .atab{
        margin-top: 30px;
        display: block;
    }
    .atab p{
        font-size: 15px;
    }
    .atab span{
        font-size: 13px;
    }
    .atab1, .atab2, .atab3 {
        margin-bottom: 20px;
    }
}

.floor3 .ptit{
    text-align: right;
    display: none;
}
.floor3 .ptit span{
    display: block;
    font-size: 26px;
    color: #494949;
    font-weight: 200;
}
.floor3 .ptit p{
    font-size: 25px;
    color: #999999;
}
.floor3 .ptit2{
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}
.plist{
    background: #f8f8f8;
    padding: 60px 0;
    margin-top: 50px;
    display: none;
}

.ih-item {
  position: relative;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item,
.ih-item * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ih-item a {
  color: #333;
}
.ih-item a:hover {
  text-decoration: none;
}
.ih-item img {
  width: auto;
  height: 335px;
}
.ih-item.square {
  position: relative;
  width: 100%;
  height: 335px;
}
.ih-item.square .info {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ih-item.square.effect6 {
  overflow: hidden;
}
.ih-item.square.effect6 .img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.ih-item.square.effect6 .info {
    background: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.square.effect6 .info h3 {
  text-transform: uppercase;
  color: #fff;
  background-color:#666;
  text-align: center;
  font-size: 17px;
  padding: 10px;
  margin: 245px 0 0 0;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.ih-item.square.effect6 .info p {
    width: 38px;
    height: 38px;
    background: url(../images/j1.png) no-repeat center;
    margin: 0 auto;
    margin-top: 30px;
    -webkit-transition: all 0.35s 0.1s linear;
    -moz-transition: all 0.35s 0.1s linear;
    transition: all 0.35s 0.1s linear;
}
.ih-item.square.effect6 a:hover .img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.ih-item.square.effect6 a:hover .info {
  visibility: visible;
  background: rgba(0,0,0,.5);
}
.ih-item.square.effect6.bottom_to_top .info h3 {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.ih-item.square.effect6.bottom_to_top .info p {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
.ih-item.square.effect6.bottom_to_top a:hover .info h3,
.ih-item.square.effect6.bottom_to_top a:hover .info p {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.ih-item.square.effect6.bottom_to_top a:hover .info h3{
    margin-top: 130px;
}
.pinfo{
    font-size: 15px;
    color: #888888;
    line-height: 24px;
    margin-top: 40px;
}
.ptab {
    padding: 0 5px;
}
@media (max-width: 1200px){
    .plist{
        padding: 40px 0;
        margin-top: 40px;
    }
    .ih-item.square {
        height: 310px;
    }
    .pinfo{
        margin-top: 30px;
    }
    .ih-item.square.effect6 .info h3{
        font-size: 15px;
        margin: 220px 0 0 0;
    }
}
@media (max-width: 992px){
    .floor3 .ptit span,.floor3 .ptit p{
        font-size: 18px;
    }
    .plist{
        margin-top: 30px;
    }
    .ih-item.square {
        height: 235px;
    }
    .ih-item.square.effect6 .info h3{
        font-size: 15px;
        margin: 155px 0 0 0;
    }
    .ih-item.square.effect6 .info p{
        width: 30px;
        height: 30px;
        background-size: 30px;
    }
    .ih-item.square.effect6.bottom_to_top a:hover .info h3{
        margin-top: 80px;
    }
    .pinfo{
        font-size: 14px;
        margin-top: 20px;
    }
}
@media (max-width: 768px){
    .ptab{
        margin-bottom: 10px;
    }
    .pinfo{
        display: none;
    }
    .plist{
        margin-top: 20px;
        padding: 20px 0;
    }
}

.floor4{
    background: url(../images/f4-1.jpg) no-repeat center;
}
.ntit{
    text-align: center;
    color: #fff;
    display: none;
}
.ntit span{
    display: block;
    font-size: 26px;
    font-weight: 200;
    line-height: 24px;
}
.ntit p{
    font-size: 25px;
}
.ntab{
    background: #fff;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: inset 0 1px 3px 1px rgba(0,0,0,.1);
    transition: all 0.35s ease-in-out;
    display: none;
}
.floor4 .indexlist .ntab:first-child{
    box-shadow: none;
}
.indexlist{
    margin-top: 50px;
}
.ntab .nr span{
    display: block;
    font-size: 16px;
    color: #172341;
    line-height: 40px;
    transition: all 0.35s ease-in-out;
}
.ntab .nr p{
    color: #888888;
    line-height: 24px;
}
.ntab .nr i{
    display: block;
    width: 88px;
    height: 28px;
    line-height: 26px;
    border: 1px solid #e5e5e5;
    text-align: center;
    color: #555555;
    font-size: 12px;
    font-style: normal;
    border-radius: 2px;
    margin-top: 20px;
    transition: all 0.35s ease-in-out;
}
.indexlist a:hover{
    background: url(../images/marks.png) no-repeat right top #fff;
}
.indexlist a:hover i{
    background: #0287d2;
    border-color: #0287d2;
    color: #fff;
}
.indexlist a:hover span{
    color: #0287d2;
}
@media (max-width: 992px){
    .indexlist{
        margin-top: 30px;
    }
    .ntab .nr i{
        display: none;
    }
}
@media (max-width: 768px){
    .ntab .col-xs-3{
        padding-right: 0;
    }
    .ntab .nr span{
        line-height: 28px;
        font-size: 14px;
    }
    .ntab .nr p{
        display: none;
    }
    .indexlist a:hover{
        background: url(../images/marks.png) no-repeat right top #fff;
        background-size: 60px;
    }
}

.floor5 .fcont,.floor5 .message{
    margin-top: 50px;
    display: none;
}
.floor5 .ft i{
    display: block;
    font-style: normal;
    font-size: 26px;
    color: #999999;
    font-weight: 200;
    line-height: 24px;
}
.floor5 .ft span{
    font-size: 25px;
    color: #172341;
}
.floor5 .fcont p{
    font-size: 17px;
    color: rgba(23,35,65,.85);
    line-height: 50px;
    margin-top: 30px;
}
.floor5 .message .mt{
    font-size: 25px;
    color: #172341;
    margin-bottom: 25px;
}
.floor5 .message input{
    margin-bottom: 20px;
}
.floor5 .message button{
    width: 130px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    background: #0287d2;
    border: 0;
    margin-top: 18px;
}
.floor5 .map{
    position: relative;
    top: 80px;
    display: none;
}
@media (max-width: 768px){
    .floor5 .ft i{
        font-size: 20px;
    }
    .floor5 .ft span{
        font-size: 19px;
    }
    .floor5 .fcont p{
        font-size: 14px;
        line-height: 30px;
        margin-top: 20px;
    }
    .floor5 .message .mt{
        font-size: 19px;
        margin-bottom: 15px;
    }
     .floor5 .message{
        margin-top: 30px;
     }
     .floor5 .message input{
        margin-bottom: 10px;
     }
     .floor5 .message button{
        width: 80px;
        height: 30px;
        font-size: 12px;
        margin-top: 10px;
     }
     .input_tell{
        padding-left: 0;
     }
     .floor5 .map{
        top: 50px;
     }
}

.shown{
    display: block !important;
}

.pagetop{
    text-align: center;
    padding-top: 5%;
    margin-bottom: 30px;
}
.pagetop span{
    display: block;
    font-size: 26px;
    color: #999999;
    font-weight: 200;
}
.pagetop p{
    font-size: 25px;
    color: #192440;
}
.content{
    line-height: 30px;
    color: #888888;
}
.content a{
    color:#06F;
}
.content img{
    max-width: 100% !important;
}

.main{
    margin-bottom: 70px;
}
.copy{
    line-height: 56px;
    border-top: 1px solid #e7e7e7;
    font-size: 12px;
    color: #b8b8b8;
    text-align: center;
}
.copy img{
    margin-left: 10px;
}
.message .gs{
    margin-top: 15px;
}
@media (max-width: 768px){
    .pagetop{
        margin-bottom: 20px;
        padding-top: 10%;
    }
    .pagetop span{
        font-size: 20px;
    }
    .pagetop p{
        font-size: 19px;
    }
    .main{
        margin-bottom: 50px;
    }
    .copy .gs{
        display: none;
    }
    .copy{
        line-height: 22px;
        padding: 10px 0;
    }
}

.submenu{
    text-align: center;
}
.submenu ul{
    display: inline-block;
}
.submenu ul li{
    float: left;
    margin: 0 20px;
}
.submenu ul li a{
    display: block;
    font-size: 16px;
    color: #525869;
    height: 40px;
    position: relative;
    padding: 0 10px;
}
.submenu ul li a::after{
    content: " ";
    display: block;
    width: 0;
    height: 2px;
    background: #0287d2;
    transition: all 0.35s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
}
.submenu ul li a.hover::after,.submenu ul li a:hover::after{
    width: 100%;
}

.list{
    margin-top: 50px;
}
.newlist{
    overflow: hidden;
    display: block;
    margin-bottom: 50px;
}
.newlist .newimg{
    overflow: hidden;
}
.newlist .newimg img{
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.newlist .newinfo{
    position: relative;
}
.newlist .newinfo span{
    display: block;
    font-size: 16px;
    color: #323232;
    line-height: 50px;
    margin-top: 0;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.newlist .newinfo p{
    font-size: 13px;
    color: #7A7A7A;
    line-height: 26px;
    height: 55px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.newlist .newinfo i{
    display: block;
    font-style: normal;
    font-size: 15px;
    color: #838383;
    font-weight: 200;
    position: absolute;
    top: 100px;
    width: 100%;
    line-height: 45px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.newlist .newinfo i::before{
    content: " ";
    position: absolute;
    width: 10%;
    height: 1px;
    background: rgba(0, 0, 0, .25);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    opacity: 0;
}
@media (min-width: 768px){
    .newlist:hover .newinfo span{
        margin-top: -5px;
        color: #0287d2;
    }
    .newlist:hover .newinfo p{
        margin-top: 3px;
    }
    .newlist:hover i{
        color: #454545;
    }
    .newlist:hover i::before{
        opacity: 1;
        width: calc( 100% - 53px);
    }
    .newlist:hover .newimg img{
        transform: scale(1.1, 1.1);
    }
}

/* page */
.pages {
    margin: 20px auto 20px auto;
    font-size: 14px;
}
.pages a,
.pages strong{
    display:inline-block;
    line-height:28px;
    padding:0 10px;
    border:1px solid #d9d9d9;
    background-color:#ffffff; 
    text-decoration:none;
    color:#666;
    font-family:Simsun;
    -webkit-transition: all 0.2s ease-out;transition: all 0.2s ease-out;
    margin-right:3px;
}
.pages .current{
    display:inline-block;
    line-height:28px;
    padding:0 10px;
    border:1px solid #d9d9d9;
    background-color:#ffffff; 
    text-decoration:none;
    font-family:Simsun;
    -webkit-transition: all 0.2s ease-out;transition: all 0.2s ease-out;
    margin-right:3px;
    color:#fff;
    background-color:#0287d2;
    border-color:#fff;
}
.pages a:hover{
    color:#fff !important;
    background-color:#0287d2;
    border-color:#fff;
    text-decoration:none;
}
.pages strong{
    color:#fff;
    background-color:#24557d;
    border-color:#fff;
}
.pages span{
    padding:0 10px;
    line-height:23px;
}

@media (max-width: 1200px){
    .newlist .newinfo i{
        display: none;
    }
    .newlist{
        margin-bottom: 30px;
    }
}
@media (max-width: 992px){
    .newlist .newinfo span{
        line-height: 30px;
    }
    .newlist{
        margin-bottom: 20px;
    }
}
@media (max-width: 768px){
    .list{
        margin-top: 20px;
    }
    .newlist .newinfo span{
        font-size: 15px;
        line-height: 25px;
        margin-top: 10px;
    }
    .newlist .newinfo p{
        font-size: 12px;
        line-height: 22px;
    }
}

.photo a {
    margin-bottom: 30px;
}
.photo a span{
    display: block;
    font-size: 17px;
    color: #525869;
    line-height: 40px;
    margin-top: 10px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.photo a p{
    color: #9d9c9c;
    line-height: 22px;
}
.photo a .box{
    height: 260px;
    overflow: hidden;
}
.photo a img{
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.photo a:hover img{
    transform: scale(1.1, 1.1);
}
.photo a:hover span{
    color: #0287d2;
}
@media (max-width: 1200px){
    .photo a .box{
        height: 210px;
    }
}
@media (max-width: 992px){
    .photo a .box{
        height: 160px;
    }
    .photo a p{
        font-size: 12px;
        line-height: 20px;
    }
    .abright{
        display: none !important;
    }
}
@media (max-width: 768px){
    .photo a .box{
        height: 200px;
    }
}
@media (max-width: 600px){
    .photo a .box{
        height: 150px;
    }
}
@media (max-width: 400px){
    .photo a {
        margin-bottom: 5px;
    }
    .photo a .box{
        height: 110px;
    }
    .photo a span{
        font-size: 14px;
        text-align: center;
        margin-top: 0;
    }
    .photo a p{
        display: none;
    }
}

.position{
    line-height: 50px;
    margin-top: 30px;
    text-align: right;
    color: #999;
    font-size: 12px;
}
.position a{
    color: #0287d2;
}
.showtop{
    margin-top: 20px;
    text-align: center;
    border-bottom: 1px dotted #ddd;
    margin-bottom: 20px;
}
.showtop h1{
    font-size: 22px;
}
.showtop p span{
    margin: 0 5px;
    color: #c1c1c1;
    line-height: 40px;
    font-size: 13px;
}
.showtop p span a{
    margin: 0 5px;
}
.prepage{
    line-height: 30px;
    margin-top: 50px;
}
@media (max-width: 768px){
    .position{
        display: none;
    }
    .showtop{
        margin-bottom: 10px;
    }
    .showtop h1{
        font-size: 16px;
    }
    .showtop p span{
        line-height: 30px;
    }
    .prepage{
        margin-top: 30px;
    }
}

.hotlabel{
    margin-top: 30px;
}
.hotlabel p{
    color: #0068b5;
}
.hotlabel a{
    display: block;
    float: left;
    margin-right: 10px;
    margin-top: 10px;
    padding: 0 10px;
    background: #0068b5;
    line-height: 30px;
    color: #fff;
    font-size: 12px;
}