html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input {
  margin: 0;
  padding: 0;
  border: none;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-text-size-adjust: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  font-family: arial, sans-serif;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body,
button,
input,
select,
textarea {
  font-size: 14px;
  font-family: verdana, Microsoft YaHei, Tahoma, sans-serif;
}
html {
  overflow: hidden;
}
.welcome {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.welcome .loadpic {
  margin-top: 150px;
}
.welcome .loadpic .title {
  width: 178px;
  height: 158px;
  margin: 0 auto;
  margin-bottom: 40px;
  background: url(../img/wlogo.jpg) no-repeat left top;
  background-size: 100% auto;
}
.welcome .loadpic .label {
  width: 850px;
  height: 28px;
  margin: 0 auto;
  background: url(../img/label.jpg) no-repeat left top;
  margin-bottom: 40px;
}
.welcome .loadpic .progress {
  position: relative;
  width: 200px;
  margin: 0px auto;
}
.welcome .loadpic .progress h2 {
  text-align: center;
  font-size: 24px;
  color: #c3c3c3;
  margin-bottom: 10px;
  font-family: Arial;
}
.welcome .loadpic .progress .progress-an {
  width: 0%;
  height: 4px;
  background: #3f91dd;
}
.welcome.hidden {
  display: none;
}
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
}
.header .logo {
  position: absolute;
  top: 35px;
  left: 32px;
  width: 422px;
  height: 51px;
}
.header .logo img {
  position: absolute;
  top: 0;
  left: 0;
}
.header .logo .logo1 {
  position: relative;
  -webkit-transition: all 1s;
          transition: all 1s;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  opacity: 1;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  z-index: 10;
}
.header .logo .logo2 {
  position: relative;
  -webkit-transition: all 1s;
          transition: all 1s;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  z-index: 9;
}
.header .logo.active .logo1 {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  z-index: 9;
}
.header .logo.active .logo2 {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  opacity: 1;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  z-index: 10;
}
.header .nav {
  position: fixed;
  top: 0;
  right: -280px;
  bottom: 0;
  width: 350px;
}
.header .nav .btn_control {
  position: absolute;
  left: 0px;
  top: 35px;
  width: 34px;
  height: 34px;
  -webkit-transition: all .5s;
          transition: all .5s;
  border-radius: 5px;
}
.header .nav .btn_control.close {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
  background: url(../img/nav_close.png) no-repeat center center;
}
.header .nav .btn_control.open {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  background: url(../img/nav_open.png) no-repeat center center;
}
.header .nav .btn_control:hover {
  box-shadow: 0 0 5px #333;
}
.header .nav .list {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 280px;
  height: 100%;
}
.header .nav .list .mask {
  position: absolute;
  z-index: 998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .9;
  background-color: #317cc0;
  filter: alpha(opacity=90);
}
.header .nav .list ul {
  position: relative;
  z-index: 999;
  margin-top: 20%;
}
.header .nav .list ul li {
  font-size: 18px;
  line-height: 66px;
  overflow: hidden;
  height: 66px;
  -webkit-transition: all 1.5s;
          transition: all 1.5s;
  text-align: center;
}
.header .nav .list ul li a {
  display: block;
  -webkit-transition: all .5s;
          transition: all .5s;
  text-decoration: none;
  color: #fff;
}
.header .nav .list ul li:hover,
.header .nav .list ul li.on {
  background: #5a96cd;
}
.header .nav .list ul li:hover a,
.header .nav .list ul li.on a {
  -webkit-transform: translateY(-66px);
      -ms-transform: translateY(-66px);
          transform: translateY(-66px);
}
.footer {
  font-size: 12px;
  line-height: 1.8em;
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  left: 200px;
  width: 100%;
  color: #cfcfcf;
}
.container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.section {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.section .box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s;
          transition: all 1s;
  -webkit-transform: skewX(-30deg) rotateX(-45deg);
          transform: skewX(-30deg) rotateX(-45deg);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  border: 1px solid #ddd;
}
.section .box:before,
.section .box:after {
  content: " ";
  display: table;
}
.section .box:after {
  clear: both;
}
.section.active .box {
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}
.home {
  position: relative;
}
.home .home-nav {
  position: absolute;
  z-index: 999;
  top: 35%;
  right: 50%;
  margin-right: 20px;
}
.home .home-nav i {
  display: block;
  width: 16px;
  height: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  background: url(../img/homenav.png) no-repeat left bottom;
}
.home .home-nav i.on {
  background-position: left -18px;
}
.home .home-nav i.even {
  background-position: left -36px;
}
.home .home-nav i.even.on {
  background-position: left 0px;
}
.home .home-left {
  position: relative;
  float: left;
  overflow: hidden;
  width: 50%;
  height: 100%;
}
.home .home-left .slidepannel {
  width: 100%;
  height: 100%;
}
.home .home-left .slidepannel.slidepannel-1 {
  background: url(../img/home-1.jpg) no-repeat center center;
  background-size: 100% auto;
}
.home .home-left .slidepannel.slidepannel-2 {
  background: url(../img/home-2.jpg) no-repeat center center;
  background-size: 100% auto;
}
.home .home-left .slidepannel.slidepannel-3 {
  background: url(../img/home-3.jpg) no-repeat center center;
  background-size: 100% auto;
}
.home .home-right {
  float: right;
  overflow: hidden;
  width: 50%;
  height: 100%;
}
.home .home-right .slidepannel {
  width: 100%;
  height: 100%;
  background-size: 100% auto;
}
.home .home-right .slidepannel.slidepannel-1 {
  background: url(../img/home-4.jpg) no-repeat center center;
  background-size: 100% auto;
}
.home .home-right .slidepannel.slidepannel-2 {
  background: url(../img/home-5.jpg) no-repeat center center;
  background-size: 100% auto;
}
.home .home-right .slidepannel.slidepannel-3 {
  background: url(../img/home-6.jpg) no-repeat center center;
  background-size: 100% auto;
}
.home .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.home .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
.service .caption {
  padding-top: 70px;
}
.service .caption .en {
  width: 319px;
  height: 30px;
  margin: 0 auto;
  background: url(../img/whatcanwedo.png) no-repeat 0 0;
}
.service .caption .ch {
  width: 142px;
  height: 23px;
  margin: 0 auto;
  margin-top: 22px;
  background: url(../img/whatcanwedo2.png) no-repeat 0 0;
}
.service .servitems {
  position: relative;
  overflow: hidden;
  width: 1100px;
  height: 200px;
  margin: 0 auto;
}
.service .servitems .item {
  padding: 30px 0;
}
.service .servitems .item .pic {
  display: block;
  height: 60px;
  margin-bottom: 10px;
}
.service .servitems .item .intro {
  line-height: 1.8em;
  display: block;
  text-align: center;
  color: #666;
}
.service .servitems .item .name {
  line-height: 1.8em;
  display: block;
  text-align: center;
  color: #317cc0;
}
.service .servitems .item.item1 .pic {
  background: url(../img/ico1.png) no-repeat center bottom;
}
.service .servitems .item.item2 .pic {
  background: url(../img/ico2.png) no-repeat center bottom;
}
.service .servitems .item.item3 .pic {
  background: url(../img/ico3.png) no-repeat center bottom;
}
.service .servitems .item.item4 .pic {
  background: url(../img/ico4.png) no-repeat center bottom;
}
.service .servitems .item.item5 .pic {
  background: url(../img/ico5.png) no-repeat center bottom;
}
.service .servitems .prev,
.service .servitems .next {
  position: absolute;
  z-index: 999;
  top: 50%;
  zoom: 1;
  width: 28px;
  height: 50px;
  margin-top: -25px;
}
.service .servitems .prev {
  left: 0;
  background: url(../img/prev.png) no-repeat center center;
}
.service .servitems .next {
  right: 0;
  background: url(../img/next.png) no-repeat center center;
}
.service .advertising {
  position: relative;
  z-index: 9;
  width: 1080px;
  height: 370px;
  margin: 0 auto;
  margin-bottom: 40px;
  background: url(../img/servicead.png) no-repeat center top;
}
.service .tonext {
  font-size: 28px;
  line-height: 68px;
  display: block;
  width: 325px;
  height: 68px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  color: #317cc0;
  border: 1px solid #317cc0;
  border-radius: 30px;
  background: url(../img/servertonext.png) no-repeat center center;
}
.service .tonext:hover {
  background-color: #317cc0;
  background-image: url(../img/servertonext1.png);
}
.service .san {
  position: absolute;
  top: 160px;
  left: 50%;
  width: 64px;
  height: 547px;
  margin-left: -32px;
  background: url(../img/ico6.png) no-repeat;
}
.cases .caption {
  margin-bottom: 68px;
  padding-top: 165px;
}
.cases .caption .en {
  width: 117px;
  height: 36px;
  margin: 0 auto;
  background: url(../img/casetit.png) no-repeat 0 0;
}
.cases .caption .ch {
  width: 103px;
  height: 26px;
  margin: 0 auto;
  margin-top: 22px;
  background: url(../img/casetit2.png) no-repeat 0 0;
}
.cases .caseitems {
  width: 1000px;
  height: 340px;
  margin: 0 auto;
}
.cases .caseitems .item {
  width: 340px;
  margin-right: 20px;
  border-bottom: 1px solid #cfcfcf;
}
.cases .caseitems .item .pic {
  display: block;
  height: 200px;
}
.cases .caseitems .item .pic img {
  display: block;
  width: 100%;
  height: 100%;
}
.cases .caseitems .item .info {
  padding: 10px 20px;
}
.cases .caseitems .item .info .type {
  font-size: 12px;
  line-height: 28px;
  display: block;
  height: 28px;
  color: #b1b1b1;
}
.cases .caseitems .item .info .name {
  font-size: 16px;
  line-height: 28px;
  display: block;
  height: 28px;
  text-decoration: none;
  color: #666;
}
.cases .caseitems .item .info .intro {
  font-size: 12px;
  line-height: 28px;
  display: block;
  height: 28px;
  color: #b1b1b1;
}
.cases .caseitems .item:hover {
  border-bottom: 0;
  box-shadow: 0 0 16px #ddd;
}
.cases .scrollbar {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  text-align: right;
  border: 0;
  border-top: 1px dotted #ccc;
}
.cases .scrollbar .pagenum {
  position: absolute;
  top: -12px;
}
.cases .scrollbar .pagenum:before,
.cases .scrollbar .pagenum:after {
  content: " ";
  display: table;
}
.cases .scrollbar .pagenum:after {
  clear: both;
}
.cases .scrollbar .pagenum .bullets {
  float: left;
  height: 23px;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
.cases .scrollbar .btn_scroll {
  position: absolute;
  z-index: 2;
  top: -12px;
  left: 0;
  width: 100px;
  height: 23px;
  cursor: pointer;
  background: url(../img/but.png) no-repeat;
}
.cases .scrollbar .more {
  display: inline-block;
  width: 56px;
  height: 16px;
  margin-top: 30px;
  -webkit-animation: doudong .4s infinite linear ;
          animation: doudong .4s infinite linear ;
  vertical-align: middle;
  text-decoration: none;
  background: url(../img/ico7.png) no-repeat 0 0;
}
.customer {
  position: relative;
}
.customer .customerwrap {
  position: relative;
  overflow: hidden;
  width: 1700px;
  margin: 0 auto;
  margin-top: 120px;
  padding-bottom: 200px;
}
.customer .cooperation {
  position: absolute;
  z-index: 99;
  top: -100%;
  left: 0px;
  float: left;
  width: 375px;
  height: 572px;
  -webkit-transition: top .5s linear .3s;
          transition: top .5s linear .3s;
  opacity: .9;
  background: #4588c6;
}
.customer .cooperation .row1 {
  width: 229px;
  height: 27px;
  margin: 0 auto;
  margin-top: 63px;
  margin-bottom: 20px;
  background: url(../img/cp1.png) no-repeat 0 0;
}
.customer .cooperation .row2 {
  width: 216px;
  height: 24px;
  margin: 0 auto;
  background: url(../img/cp2.png) no-repeat 0 0;
}
.customer .cooperation .row3 {
  font-family: Arial;
  font-size: 70px;
  line-height: 1.8em;
  text-align: center;
  color: #fff;
}
.customer .cooperation .row4 {
  width: 225px;
  height: 133px;
  margin: 0 auto;
  background: url(../img/cp3.png) no-repeat 0 0;
}
.customer .cooperation .row5 {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-right: 187.5px solid transparent;
  border-bottom: 50px solid #fff;
  border-left: 187.5px solid transparent;
}
.customer .itemlist {
  position: relative;
  top: 0;
  right: -100%;
  float: right;
  overflow: hidden;
  width: 1152px;
  padding: 40px 100px;
  -webkit-transition: all 0.5s ease-out 0.8s;
          transition: all 0.5s ease-out 0.8s;
  opacity: 0;
  border: 1px solid #cfcfcf;
  filter: alpha(opacity=0);
}
.customer .itemlist ul {
  overflow: hidden;
  height: 440px;
}
.customer .itemlist ul:before,
.customer .itemlist ul:after {
  content: " ";
  display: table;
}
.customer .itemlist ul:after {
  clear: both;
}
.customer .itemlist ul li {
  float: left;
  overflow: hidden;
  width: 230px;
  height: 150px;
  margin-top: -1px;
  margin-left: -1px;
  -webkit-transition: all .5s;
          transition: all .5s;
  border-top: 1px dashed #cfcfcf;
  border-left: 1px dashed #cfcfcf;
  background: url(../img/clients.png) no-repeat left top;
}
.customer .itemlist ul li:hover {
  background-color: #f2f2f2;
}
.customer .itemlist ul li.item1 {
  background-position: 0px 0px;
}
.customer .itemlist ul li.item1:hover {
  background-position: 0px -150px;
}
.customer .itemlist ul li.item2 {
  background-position: -230px 0px;
}
.customer .itemlist ul li.item2:hover {
  background-position: -230px -150px;
}
.customer .itemlist ul li.item3 {
  background-position: -460px 0px;
}
.customer .itemlist ul li.item3:hover {
  background-position: -460px -150px;
}
.customer .itemlist ul li.item4 {
  background-position: -690px 0px;
}
.customer .itemlist ul li.item4:hover {
  background-position: -690px -150px;
}
.customer .itemlist ul li.item5 {
  background-position: -920px 0px;
}
.customer .itemlist ul li.item5:hover {
  background-position: -920px -150px;
}
.customer .itemlist ul li.item6 {
  background-position: -1150px 0px;
}
.customer .itemlist ul li.item6:hover {
  background-position: -1150px -150px;
}
.customer .itemlist ul li.item7 {
  background-position: -1380px 0px;
}
.customer .itemlist ul li.item7:hover {
  background-position: -1380px -150px;
}
.customer .itemlist ul li.item8 {
  background-position: -1610px 0px;
}
.customer .itemlist ul li.item8:hover {
  background-position: -1610px -150px;
}
.customer .itemlist ul li.item9 {
  background-position: -1840px 0px;
}
.customer .itemlist ul li.item9:hover {
  background-position: -1840px -150px;
}
.customer .itemlist ul li.item10 {
  background-position: -2070px 0px;
}
.customer .itemlist ul li.item10:hover {
  background-position: -2070px -150px;
}
.customer .itemlist ul li.item11 {
  background-position: -2300px 0px;
}
.customer .itemlist ul li.item11:hover {
  background-position: -2300px -150px;
}
.customer .itemlist ul li.item12 {
  background-position: -2530px 0px;
}
.customer .itemlist ul li.item12:hover {
  background-position: -2530px -150px;
}
.customer .itemlist ul li.item13 {
  background-position: -2760px 0px;
}
.customer .itemlist ul li.item13:hover {
  background-position: -2760px -150px;
}
.customer .itemlist ul li.item14 {
  background-position: -2990px 0px;
}
.customer .itemlist ul li.item14:hover {
  background-position: -2990px -150px;
}
.customer .itemlist ul li.item15 {
  background-position: -3220px 0px;
}
.customer .itemlist ul li.item15:hover {
  background-position: -3220px -150px;
}
.customer.active .cooperation {
  top: 40px;
}
.customer.active .itemlist {
  right: 0;
  opacity: 1;
  filter: alpha(opacity=100);
}
@-webkit-keyframes doudong {
  0% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  25% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  50% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  75% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  100% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
}
@keyframes doudong {
  0% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  25% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  50% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
  75% {
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
  100% {
    -webkit-transform: rotateZ(10deg);
            transform: rotateZ(10deg);
  }
}
@-webkit-keyframes bianzhuan {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes bianzhuan {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.response {
  position: relative;
}
.response .caption {
  position: absolute;
  z-index: 999;
  top: 190px;
  right: 125px;
  width: 480px;
  height: 480px;
}
.response .caption .bian {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px dashed #ccc;
  border-radius: 50%;
  background: url(../img/rs1.png) no-repeat center center #ffffff;
}
.response .itemwrap {
  position: absolute;
  top: 238px;
  right: 510px;
  left: 35px;
  height: 385px;
  border-top: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
}
.response .itemwrap .next {
  position: absolute;
  top: 50%;
  right: 150px;
  width: 35px;
  height: 35px;
  -webkit-transition: all .5s;
          transition: all .5s;
  border: 1px solid #999;
  border-radius: 50%;
  background: url(../img/next1.png) no-repeat center center;
}
.response .itemwrap .next:hover {
  border-color: #fff;
  box-shadow: 0 0 5px #333;
}
.response .itemwrap .swiper-container {
  position: absolute;
/*  right: 240px;*/
  right: 210px;
  bottom: 0;
  width: 960px;
  height: 460px;
}
.response .itemwrap .swiper-container ul li {
  position: relative;
  bottom: -150px;
  overflow: hidden;
  width: 320px;
  height: 460px;
  -webkit-transition: all .5s;
          transition: all .5s;
}
.response .itemwrap .swiper-container ul li .item {
  overflow: hidden;
  padding: 0 10px;
}
.response .itemwrap .swiper-container ul li .pic img {
  display: block;
  width: 320px;
  height: 220px;
  -webkit-transition: all .5s;
          transition: all .5s;
  opacity: .5;
  filter: alpha(opacity=50);
}
.response .itemwrap .swiper-container ul li .intro dt {
  font-size: 16px;
  line-height: 50px;
  height: 50px;
  -webkit-transition: all 1s;
          transition: all 1s;
  text-align: center;
  margin-bottom: 50px;
}
.response .itemwrap .swiper-container ul li .intro dd {
  line-height: 25px;
  overflow: hidden;
  height: 50px;
  text-align: center;
  color: #b5b5b5;
}
.response .itemwrap .swiper-container ul li:hover {
  bottom: -85px;
}
.response .itemwrap .swiper-container ul li:hover dt {
  margin-bottom: 0px;
}
.response .itemwrap .swiper-container ul li:hover .pic img {
  opacity: 1;
  filter: alpha(opacity=100);
}
.response .itemwrap .swiper-container ul li:hover .intro dt {
  margin-bottom: 0;
}
.news .n-side {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
  background: #317bc0;
}
.news .n-side .caption {
  position: absolute;
  top: 27%;
  left: 50%;
  width: 513px;
  height: 56px;
  margin-left: -256px;
  background: url(../img/newstit.png) no-repeat 0 0;
}
.news .n-side .newslist {
  position: absolute;
  top: 39%;
  left: 50%;
  width: 332px;
  height: 350px;
  margin-left: -192px;
  color: #fff;
}
.news .n-side .newslist .hd {
  margin-bottom: 20px;
}
.news .n-side .newslist .bd {
  height: 250px;
}
.news .n-side .newslist .bd ul li {
  line-height: 40px;
  overflow: hidden;
  height: 40px;
}
.news .n-side .newslist .bd ul li:hover {
  cursor: pointer;
  color: #a9d6ff;
  background: url(../img/ico8.png) no-repeat 314px 15px;
}
.news .n-side .newslist .ft {
  position: relative;
  right: -100px;
  text-align: right;
}
.news .n-side .newslist .ft a {
  font-family: '宋体';
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  display: inline-block;
  width: 45px;
  height: 40px;
  text-align: center;
  text-decoration: none;
  color: #317bc0;
  background: #fff;
}
.news .n-main {
  float: right;
  width: 50%;
  height: 100%;
  background: #fff;
  position: relative;
}
.news .n-main .newsdetail {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 15%;
  right: 15%;
  overflow: hidden;
}
.news .n-main .newsdetail .hd {
  border-bottom: 1px solid #cfcfcf;
}
.news .n-main .newsdetail .hd .title {
  font-size: 24px;
  line-height: 30px;
  overflow: hidden;
  height: 30px;
  color: #222;
}
.news .n-main .newsdetail .hd .title-bar {
  line-height: 50px;
  overflow: hidden;
  height: 50px;
  color: #cfcfcf;
}
.news .n-main .newsdetail .bd {
  position: absolute;
  top: 100px;
  bottom: 0px;
  left: 0px;
  right: -20px;
  overflow-x: hidden;
  overflow-y: auto;
}
.news .n-main .newsdetail .bd .content {
  font-size: 16px;
  line-height: 30px;
  overflow: hidden;
}
.news .n-main .newsdetail .bd .content p {
  margin-bottom: 30px;
}
.contact .banner {
  overflow: hidden;
  height: 50%;
}
.contact .banner .banner1 {
  height: 100%;
  -webkit-transition: all 40s;
          transition: all 40s;
  background: url(../img/contactbanner.jpg) no-repeat center center;
  background-size: 100% auto ;
}
.contact .itemlist {
  height: 50%;
}
.contact .itemlist:before,
.contact .itemlist:after {
  content: " ";
  display: table;
}
.contact .itemlist:after {
  clear: both;
}
.contact .itemlist .item {
  float: left;
  width: 50%;
  padding-top: 80px;
}
.contact .itemlist .item .itembox {
  padding-left: 15%;
}
.contact .itemlist .item .title {
  font-size: 18px;
  line-height: 2em;
  display: block;
  height: 2em;
}
.contact .itemlist .item .intro {
  line-height: 2em;
  display: block;
}
.contact .itemlist .item .intro a {
  text-decoration: none;
  color: #317bc0;
}
.contact.active .banner .banner1 {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.security .caption {
  margin-top: 10%;
}
.security .caption .en {
  width: 274px;
  height: 27px;
  margin: 0 auto;
  margin-bottom: 20px;
  background: url(../img/st1.png) no-repeat center center;
}
.security .caption .ch {
  width: 96px;
  height: 24px;
  margin: 0 auto;
  margin-bottom: 20px;
  background: url(../img/st2.png) no-repeat center center;
}
.security .itemlist {
  width: 1330px;
  margin: 0 auto;
  padding-top: 86px;
  background: url(../img/sline1.png) no-repeat center top;
}
.security .itemlist ul {
  padding-top: 20px;
}
.security .itemlist ul:before,
.security .itemlist ul:after {
  content: " ";
  display: table;
}
.security .itemlist ul:after {
  clear: both;
}
.security .itemlist ul li {
  float: left;
  width: 16.5%;
}
.security .itemlist .item {
  overflow: hidden;
  padding: 0 10px;
  text-align: center;
}
.security .itemlist .item i {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.security .itemlist .item h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}
.security .itemlist .item p {
  line-height: 2em;
  color: #999;
}
.security .itemlist .item.item1 i {
  background: url(../img/sico1.png) no-repeat center center;
}
.security .itemlist .item.item2 i {
  background: url(../img/sico2.png) no-repeat center center;
}
.security .itemlist .item.item3 i {
  background: url(../img/sico3.png) no-repeat center center;
}
.security .itemlist .item.item4 i {
  background: url(../img/sico4.png) no-repeat center center;
}
.security .itemlist .item.item5 i {
  background: url(../img/sico5.png) no-repeat center center;
}
.security .itemlist .item.item6 i {
  background: url(../img/sico6.png) no-repeat center center;
}
.about .itemlist {
  width: 1115px;
  margin: 0 auto;
  margin-top: 95px;
}
.about .itemlist ul {
  overflow: hidden;
}
.about .itemlist ul:before,
.about .itemlist ul:after {
  content: " ";
  display: table;
}
.about .itemlist ul:after {
  clear: both;
}
.about .itemlist ul li {
  position: relative;
  float: left;
  height: 290px;
  margin-top: -1px;
  margin-left: -1px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.about .itemlist ul li.letter {
  width: 222px;
}
.about .itemlist ul li.letter .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .5s;
          transition: all .5s;
  opacity: 1;
  background: #fff;
}
.about .itemlist ul li.letter .title2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all .5s;
          transition: all .5s;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  opacity: 0;
  filter: alpha(opacity=0);
}
.about .itemlist ul li.letter .info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px;
  -webkit-transition: all .5s;
          transition: all .5s;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  text-align: center;
  opacity: 0;
  background: #317bc0;
  filter: alpha(opacity=0);
}
.about .itemlist ul li.letter .info h2 {
  font-size: 18px;
  line-height: 2em;
  color: #fff;
}
.about .itemlist ul li.letter .info p {
  line-height: 2em;
  color: #fff;
}
.about .itemlist ul li.letter:hover .title {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  opacity: 0;
  filter: alpha(opacity=0);
}
.about .itemlist ul li.letter:hover .title2 {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  opacity: 1;
  filter: alpha(opacity=100);
}
.about .itemlist ul li.letter:hover .info {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  opacity: 1;
  filter: alpha(opacity=100);
}
.about .itemlist ul li.letter.letter-a .title {
  background: url(../img/a.png) no-repeat center center;
}
.about .itemlist ul li.letter.letter-b .title {
  background: url(../img/b.png) no-repeat center center;
}
.about .itemlist ul li.letter.letter-o .title {
  background: url(../img/o.png) no-repeat center center;
}
.about .itemlist ul li.letter.letter-u .title {
  background: url(../img/u2.png) no-repeat center center;
}
.about .itemlist ul li.letter.letter-u .title2 {
  background: url(../img/u.png) no-repeat center center #317bc0;
}
.about .itemlist ul li.letter.letter-t .title {
  background: url(../img/t.png) no-repeat center center;
}
.about .itemlist ul li.letter.letter-s .title {
  background: url(../img/s2.png) no-repeat center center;
}
.about .itemlist ul li.letter.letter-s .title2 {
  background: url(../img/s1.png) no-repeat center center #317bc0;
}
.about .itemlist ul li.intro {
  width: 666px;
}
.about .itemlist ul li.intro .title {
  font-size: 26px;
  padding: 15px;
  color: #bcbcbc;
}
.about .itemlist ul li.intro .content {
  line-height: 2em;
  margin: 0 20px 20px 20px;
  color: #222;
}
.about .itemlist ul li.intro .pic {
  display: none;
  text-align: center;
}
@media screen and (max-width: 1860px) {
  .customer .customerwrap {
    width: 1450px;
  }
  .customer .itemlist {
    width: 920px;
  }
}
@media screen and (max-width: 1630px) {
  .customer .customerwrap {
    width: 1230px;
  }
  .customer .itemlist {
    width: 690px;
  }
  .response .itemwrap .swiper-container {
    width: 640px;
  }
}
@media screen and (max-width: 1366px) {
  .customer .customerwrap {
    width: 1000px;
  }
  .customer .itemlist {
    width: 460px;
  }
  .header .nav {
    width: 280px;
  }
  .header .nav .list {
    width: 210px;
  }
  .header .nav .list ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .service .servitems {
    width: 860px;
  }
  .customer .itemlist {
    width: 460px;
  }
  .about .itemlist {
    width: 900px;
  }
  .about .itemlist ul li.letter {
    width: 180px;
  }
  .about .itemlist ul li.intro {
    width: 540px;
  }
  .response .caption {
    display: none;
  }
  .response .itemwrap {
    width: 90%;
    border: 0;
  }
  .response .itemwrap .next {
    display: none;
  }
  .response .itemwrap .swiper-container {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 860px) {
  .service .servitems {
    width: 760px;
  }
  .cases .caseitems {
    width: 100%;
  }
  .about .itemlist {
    width: 100%;
  }
  .about .itemlist ul li.letter {
    display: none;
  }
  .about .itemlist ul li.intro {
    width: auto;
  }
  .about .itemlist ul li.intro p {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 760px) {
  .welcome .loadpic {
    width: 60%;
  }
  .welcome .loadpic .title {
    height: 60px;
  }
  .welcome .loadpic .progress .preogress-shadow {
    height: 4em;
  }
  .header {
    height: 60px;
    background-color: #fff;
    box-shadow: 0 1px 5px #ddd;
  }
  .header .logo {
    top: 0;
    left: 0;
    overflow: hidden;
    width: 120px;
    height: 100%;
  }
  .header .logo img {
    top: 12px;
    left: 12px;
    width: 280px;
  }
  .header .nav .btn_control {
    position: fixed;
    top: 12px;
    right: 10px;
    margin: 0;
    padding: 0;
  }
  .footer {
    display: none;
  }
  .container {
    top: 60px;
    bottom: 0;
  }
  .home .home-nav {
    display: none;
  }
  .home .home-left {
    display: none;
  }
  .home .home-right {
    width: 100%;
  }
  .home .home-right .slidepannel {
    background-size: auto 100%;
  }
  .service .servitems {
    width: 100%;
    background: none;
  }
  .service .servitems .prev,
  .service .servitems .next {
    padding: 10px;
  }
  .service .servitems .item {
    padding: 30px 50px;
  }
  .service .advertising {
    display: none;
  }
  .service .san {
    display: none;
  }
  .service .tonext {
    width: 80%;
    background-size: 80% auto;
  }
  .cases .caption {
    margin-bottom: 0;
    padding: 6% 0;
  }
  .cases .caseitems {
    overflow: hidden;
    width: auto;
    margin: 0 20px;
  }
  .cases .caseitems .item {
    margin: 0 auto;
  }
  .cases .scrollbar {
    display: none;
  }
  .customer .cooperation {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  .customer .cooperation .row5 {
    display: none;
  }
  .customer.active .cooperation {
    z-index: 888;
    top: 0;
    -webkit-transition: all 0.5s ease-out 2s;
            transition: all 0.5s ease-out 2s;
    opacity: 0;
  }
  .customer.active .itemlist {
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    -webkit-transition: all 0.5s ease-out 2s;
            transition: all 0.5s ease-out 2s;
    border: 0;
  }
  .customer.active .itemlist ul {
    width: auto;
    height: auto;
  }
  .customer.active .itemlist ul li {
    float: left;
    width: 38%;
    height: auto;
    margin-top: 8%;
    margin-left: 8%;
    border: 0;
    background-color: #fff;
  }
  .customer.active .itemlist ul li img {
    width: 100%;
  }
  .news .n-side {
    width: 100%;
  }
  .news .n-side .caption {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 90%;
    margin: 0 auto;
    margin-top: 15%;
    background-size: 100%;
  }
  .news .n-side .newslist {
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
  }
  .news .n-main {
    display: none;
  }
  .contact .banner {
    display: none;
    height: 35%;
  }
  .contact .itemlist {
    height: auto;
    padding-top: 10px;
  }
  .contact .itemlist .item {
    float: none;
    width: auto;
    padding: 10px;
  }
  .contact .itemlist .item .itembox {
    padding: 0;
  }
  .contact .itemlist .item .intro {
    font-size: 13px;
    line-height: 1.8em;
  }
  .security .itemlist {
    width: 100%;
    padding-top: 20px;
    background: none;
  }
  .security .itemlist ul li {
    float: none;
    width: 100%;
  }
  .security .itemlist ul li .item.item1 i,
  .security .itemlist ul li .item.item2 i,
  .security .itemlist ul li .item.item3 i,
  .security .itemlist ul li .item.item4 i,
  .security .itemlist ul li .item.item5 i,
  .security .itemlist ul li .item.item6 i {
    float: left;
    width: 20px;
    height: 20px;
    margin-left: 20px;
    background-size: 100% 100%;
  }
}
@media screen and (max-height: 920px) {
  .service .caption {
    padding-top: 100px;
  }
  .service .tonext {
    display: none;
  }
  .service .san {
    top: 200px;
  }
  .security .caption {
    margin-top: 14%;
  }
}
@media screen and (max-height: 820px) {
  .service .caption {
    margin-bottom: 20px;
    padding-top: 200px;
  }
  .service .advertising {
    display: none;
  }
  .service .servitems {
    margin-bottom: 20px;
  }
  .service .tonext {
    display: block;
  }
  .service .san {
    top: 320px;
    height: 140px;
  }
  .customer .cooperation {
    display: none;
  }
  .customer .itemlist {
    float: none;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border: 0;
    padding: 0px;
    margin: 0 auto;
  }
  .customer .itemlist ul {
    height: 449px;
  }
  .about .itemlist {
    margin-top: 100px;
  }
}
@media screen and (max-height: 760px) {
  .service .caption {
    margin-top: 12%;
    padding: 0;
  }
  .service .san {
    display: none;
  }
  .service .servitems {
    background: url(../img/ico6.png) no-repeat center top;
  }
  .cases .caption {
    padding-top: 100px;
  }
  .cases .caseitems {
    height: 220px;
  }
  .cases .scrollbar {
    text-align: center;
  }
  .cases .caseitems .item .info {
    display: none;
  }
  .about .itemlist ul li.letter {
    display: none;
  }
  .about .itemlist ul li.intro {
    height: auto;
    width: auto;
  }
  .about .itemlist ul li.intro p {
    margin-bottom: 1em;
  }
  .about .itemlist ul li.intro .pic {
    display: block;
  }
  .security .caption {
    margin-top: 10%;
  }
  .response .caption {
    top: 10%;
    right: 100px;
  }
  .response .itemwrap {
    top: 17%;
    right: 480px;
  }
}
@media screen and (max-height: 660px) {
  .service .tonext {
    display: none;
  }
  .security .itemlist .item p {
    display: block;
  }
  .header .nav .list ul li {
    line-height: 52px;
    height: 52px;
  }
  .header .nav .list ul li:hover,
  .header .nav .list ul li.on {
    background: #5a96cd;
  }
  .header .nav .list ul li:hover a,
  .header .nav .list ul li.on a {
    -webkit-transform: translateY(-52px);
        -ms-transform: translateY(-52px);
            transform: translateY(-52px);
  }
  .customer .itemlist ul {
    height: 299px;
  }
}
@media screen and (max-height: 660px) and (max-width: 1856px) {
  .customer .itemlist {
    width: 1152px;
  }
}
@media screen and (max-height: 660px) and (max-width: 1366px) {
  .customer .itemlist {
    width: 920px;
  }
}
.qiao-contact {
  position: fixed;
  z-index: 9999;
  left: 0px;
  bottom: 0px;
  width: 179px;
  height: 171px;
}
.qiao-contact a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/contact.png) no-repeat 0px 0px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.qiao-contact.effect a {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
  background-position: 0px -171px;
}
.news .n-side .newslist .bd ul li a{ color:#fff;}