﻿/* normalize reset */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}
html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}
header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
  display: block;
}
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::after,
*::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  content: '';
  position: absolute;
}
body {
  position: relative;
}
a:active,
a:hover,
:focus,
[hidefocus],
summary {
  outline: none;
}
::-moz-focus-inner {
  border-color: transparent;
}
/*for mozilla*/
.glyphicon {
  cursor: default;
}
a,
a .glyphicon,
a.glyphicon,
label {
  cursor: pointer;
}
del,
ins,
u,
s,
a,
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: bold;
}
h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
}
i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}
sup,
sub {
  font-size: 83%;
}
pre,
code,
kbd,
samp {
  font-family: inherit;
}
li {
  list-style: none;
}
svg:not(:root) {
  overflow: hidden;
}
textarea {
  overflow: auto;
  resize: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* sizing */
/* background */
/* text */
/* radius */
/* arrow */
/* buttons */
/* opacity background */
/* @media screen */
/* clear float */
.clear {
  height: 0;
  clear: both;
  overflow: hidden;
}
/* float */
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
/* modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* cursor hand */
.grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
.grabbing {
  cursor: -webkit-grabbing !important;
  cursor: -moz-grabbing !important;
  cursor: grabbing !important;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.clear {
  height: 0;
  overflow: hidden;
  clear: both;
}
/* header start */
header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 160px;
  height: 100%;
  background-color: #323232;
  border-right: 8px solid #282828;
}
header h1 {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
header h1 a {
  display: block;
  width: 160px;
  height: 80px;
  position: relative;
  background-color: #fff;
}
header h1 a span,
header h1 a i {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
header h1 a span {
  background-image: url(../images/public/logo1.jpg);
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
header h1 a i {
  background-image: url(../images/public/logo2.jpg);
  opacity: 0;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
html.ie8 header h1 a i {
  display: none;
}
header h1 a:hover span {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  opacity: 0;
}
html.ie8 header h1 a:hover span {
  display: none;
}
header h1 a:hover i {
  opacity: 1;
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}
html.ie8 header h1 a:hover i {
  display: block;
}
header nav {
  position: relative;
  z-index: 9999;
}
header nav ul {
  margin: 0 auto 15px;
  padding-top: 17px;
}
header nav ul li {
  margin: 7px 0;
}
@media (max-width:1367px) {
  header nav ul li {
    margin: 3px 0;
  }
}
html.ie8 header nav ul li {
  margin: 0;
}
header nav ul li a {
  font-size: 18px;
  padding: 10px 0;
  display: block;
  color: #e6e6e6;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  font-weight: bold;
}
header nav ul li a:after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-width: 4px 0 4px 4px;
  border-style: solid;
  border-color: transparent transparent transparent #24aa38;
  top: 50%;
  margin-top: -4px;
  opacity: 0;
  left: 40px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html.ie8 header nav ul li a:after {
  display: none;
}
header nav ul li a:hover,
header nav ul li a.on {
  color: #24aa38;
}
header nav ul li a:hover:after,
header nav ul li a.on:after {
  opacity: 1;
  left: 45px;
}
html.ie8 header nav ul li a:hover:after,
html.ie8 header nav ul li a.on:after {
  display: block;
}
header .bottom {
  border-top: 1px solid #282828;
  border-bottom: 1px solid #434242;
  position: relative;
  z-index: 9999;
}
header .bottom a,
header .bottom span {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  border-top: 1px solid #434242;
  border-bottom: 1px solid #282828;
  display: block;
  width: 100%;
  height: 42px;
  background-image: url(../images/public/nav-btm.png);
}
header .bottom a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  /*&.a3 {
                @media @media-lg-desktop { display: none; }
            }*/
}
header .bottom a.a1 {
  background-position: 0 0;
}
header .bottom a.a2 {
  background-position: 0 -42px;
}
header .bottom a:hover,
header .bottom a.on {
  background-color: #24aa38;
}
header .bottom .a3 {
  background-color: #2b2b2b;
  background-position: 0 -84px;
}
header .header-menu {
  position: absolute;
  top: 0;
  left: 160px;
  width: 620px;
  height: 100%;
  display: none;
  z-index: 9999;
}
header .header-menu .top {
  position: absolute;
}
header .header-menu .menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 80px 0 30px;
  background: url(../images/public/menu-bg.png) repeat center center;
}
header .header-menu .menu-content .border-right {
  border-right: 1px #5c5c5c dashed;
}
header .header-menu .menu-content ul {
  width: 154px;
  float: left;
  margin: 30px 0 30px;
}
@media (max-width:1367px) {
  header .header-menu .menu-content ul {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
html.ie8 header .header-menu .menu-content ul {
  margin-top: 5px;
  margin-bottom: 5px;
}
header .header-menu .menu-content ul li {
  text-align: left;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  padding-left: 50px;
}
@media (max-width:1367px) {
  header .header-menu .menu-content ul li {
    height: 25px;
    line-height: 25px;
  }
}
html.ie8 header .header-menu .menu-content ul li {
  height: 25px;
  line-height: 25px;
}
header .header-menu .menu-content ul li.first {
  font-size: 18px;
}
header .header-menu .menu-content ul li a {
  color: #fff;
  display: block;
}
header .header-menu .menu-content ul li a:hover {
  color: #24aa38;
}
header .header-menu .menu-content ul li a.green {
  color: #24aa38;
}
header .header-menu .menu-content ul li a.green:hover {
  text-decoration: underline;
}
header .header-menu .menu-content ul.h1 {
  height: 200px;
}
@media (max-width:1367px) {
  header .header-menu .menu-content ul.h1 {
    height: 160px;
  }
}
html.ie8 header .header-menu .menu-content ul.h1 {
  height: 160px;
}
header .header-menu .menu-content ul.h2 {
  height: 150px;
}
@media (max-width:1367px) {
  header .header-menu .menu-content ul.h2 {
    height: 110px;
  }
}
html.ie8 header .header-menu .menu-content ul.h2 {
  height: 110px;
}
header .header-menu .menu-content ul.h3 {
  height: 235px;
}
header .header-menu .menu-content ul.last li {
  padding-left: 20px;
}
/* header end */
/* footer start */
footer {
  width: 100%;
  height: 30px;
  background-color: #282828;
  left: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999;
}
footer .share {
  width: auto;
  height: 30px;
  float: left;
  margin-right: 25px;
}
footer .share a {
  float: left;
  width: 23px;
  height: 100%;
  background-color: #4f4f4f;
  margin: 0 0 0 25px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
footer .share a span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/public/icon-share.png);
  background-repeat: no-repeat;
}
footer .share a:hover {
  background-color: #24aa38;
}
footer .share a.a1 span {
  background-position: -23px 0;
}
footer .share a.a2 span {
  background-position: -67px 0;
}
footer .share a.a3 span {
  background-position: -112px 0;
}
footer p {
  color: #4f4f4f;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
}
footer p a {
  color: #4f4f4f;
  margin: 0 5px;
}
footer p a:hover {
  color: #24aa38;
}
footer p span {
  float: right;
  margin-right: 10px;
}
/* footer end */
/* main content start*/
.main-content {
  width: 100%;
  height: 100%;
  padding-left: 160px;
  overflow-x: hidden;/*去掉后动态中的二级栏目会出问题*/
  content: '';
  position:relative;
}

.main-content #ss{
	position:absolute;
	right:330px;
	top:40px;
	width:21px;
	height:21px;
	background:#f6f6f6 url(../images/public/ss-bg.png) no-repeat;
	z-index:999999;
	cursor:pointer;
	filter:alpha(opacity:100);opacity:1;
}
.main-content #ss-con{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:70px;
	background:#fff;
	box-shadow:0px 0px 2px 2px #ddd;
	opacity:0;
	filter:alpha(opacity:0);
	z-index:1;
}
.main-content #ss-con input.tex{
	position:absolute;
	top:10px;
	right:350px;
	background:#fff;
	border:none;
	width:300px;
	height:40px;
	border-bottom:1px solid #eee;
	z-index:9999;
	font-size:16px;
	color:#ccc;
	font-family:"微软雅黑";
	padding-left:5px;
}
.main-content #ss-con input.sub{
	position:absolute;
	top:20px;
	right:330px;
	background:url(../images/public/ss-bg.png) no-repeat;
	border:none;
	width:21px;
	height:30px;
	z-index:9999;
	text-indent:-9999px;
	cursor:pointer;
	border-bottom:1px solid #eee;
}

.main-content1 {
  width: 100%;
  height: 100%;
  padding-left: 160px;
  overflow-x: hidden;
  content: '';
}
.main-content.page-long {
  height: auto;
}
/* main content end*/
/* banner */
.banner {
  width: 100%;
  position: relative;
}
.banner .group {
  width: 100%;
}
.banner .group img {
  width: 100%;
}
.banner .owl-controls {
  position: absolute;
  right: 20px;
  width: 10px;
  top: 45%;
}
.banner .owl-controls .owl-nav {
  display: none;
}
.banner .owl-controls .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid #fff;
  margin: 8px 0;
}
.banner .owl-controls .owl-dots .owl-dot.active {
  background-color: #fff;
}
/* carousel */
.carou {
  display: none;
}
.carou.on {
  display: block;
}
/* submenu */
.sub-menu {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #e2e2e2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  padding-left: 160px;
  background: url(../images/public/sub-menu-bg.png) no-repeat 97% 40px;
  background-color: #f6f6f6;
}
.sub-menu a {
  display: inline-block;
  width: 94px;
  height: 57px;
  text-align: center;
  line-height: 57px;
  margin: 22px 10px 0;
  color: #000;
  position: relative;
  overflow: hidden;
}
.sub-menu a:before {
  width: 94px;
  height: 9px;
  top: -10px;
  left: 0;
  background: no-repeat center center url(../images/about/sub-menu-top.png);
  opacity: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
html.ie8 .sub-menu a:before {
  display: none;
}
.sub-menu a:after {
  width: 94px;
  height: 31px;
  bottom: -10px;
  left: 0;
  background: no-repeat center center url(../images/about/sub-menu-btm.png);
  opacity: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
html.ie8 .sub-menu a:after {
  display: none;
}
.sub-menu a:hover:before,
.sub-menu a.active:before {
  opacity: 1;
  top: 0;
}
html.ie8 .sub-menu a:hover:before,
html.ie8 .sub-menu a.active:before {
  display: block;
}
.sub-menu a:hover:after,
.sub-menu a.active:after {
  opacity: 1;
  bottom: 0;
}
html.ie8 .sub-menu a:hover:after,
html.ie8 .sub-menu a.active:after {
  display: block;
}
/* share page */
.share-page {
  width: 100%;
  height: 90px;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  background-color: #fff;
}
.share-page .share-intro {
  width: 600px;
  height: 100%;
  margin: 0 auto;
}
.share-page .share-intro a {
  float: left;
  width: 16.66666667%;
  height: 100%;
  background-image: url(../images/public/icon-share-foot.png);
  background-repeat: no-repeat;
  -webkit-transition: 0.4s all ease-in;
  transition: 0.4s all ease-in;
}
.share-page .share-intro a.a1 {
  background-position: 38px 0;
}
.share-page .share-intro a.a2 {
  background-position: -60px 0;
}
.share-page .share-intro a.a3 {
  background-position: -160px 0;
}
.share-page .share-intro a.a4 {
  background-position: -255px 0;
}
.share-page .share-intro a.a5 {
  background-position: -354px 0;
}
.share-page .share-intro a.a6 {
  background-position: -452px 0;
}
.share-page .share-intro a:hover.a1 {
  background-position: 38px -91px;
}
.share-page .share-intro a:hover.a2 {
  background-position: -60px -91px;
}
.share-page .share-intro a:hover.a3 {
  background-position: -160px -91px;
}
.share-page .share-intro a:hover.a4 {
  background-position: -255px -91px;
}
.share-page .share-intro a:hover.a5 {
  background-position: -354px -91px;
}
.share-page .share-intro a:hover.a6 {
  background-position: -452px -91px;
}
.foot {
  color: #b3b3b3;
  height: 85px;
  line-height: 85px;
  font-size: 12px;
  background-color: #fff;
}
.foot a {
  color: #b3b3b3;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.foot a:hover {
  color: #878787;
}
.foot ul {
  float: left;
  margin-left: 10px;
}
.foot ul li {
  float: left;
  margin-right: 20px;
  position: relative;
}
.foot ul li:after {
  position: absolute;
  height: 10px;
  width: 1px;
  background-color: #b3b3b3;
  top: 50%;
  margin-top: -5px;
  right: -10px;
}
.foot ul li:first-child,
.foot ul li:last-child {
  margin-right: 5px;
}
.foot ul li:first-child:after,
.foot ul li:last-child:after {
  display: none;
}
.foot p {
  float: right;
  margin-right: 10px;
}
/* title content */
.title-content {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 5px;
  margin-bottom: 28px;
}
.title-content h2 {
  float: left;
  color: #666666;
  font-weight:normal;line-height:42px;font-size:26px;
}

#table_bj{line-height:28px;font-size:16px !important;;}
#table_bj span{font-size:16px !important; line-height:38px;}
#table_bj p{line-height:38px;}
#table_bj div{line-height:38px;}

.title-content h2 small {
  font-size: 12px;
  display: block;
  color: #b7b7b7;
  font-weight: normal;
  margin-top: 5px;
}
.title-content .tab-right {
  float: right;
}
.title-content .tab-right a {
  height: 30px;
  line-height: 30px;
  border-radius: 2px;
  float: left;
  margin-left: 3px;
}
.title-content .tab-right a.prev {
  width: 30px;
  background: url(../images/public/arrow.png) left center no-repeat;
  background-color: #666666;
}
.title-content .tab-right a.next {
  width: 30px;
  background: url(../images/public/arrow.png) right center no-repeat;
  background-color: #666666;
}
.title-content .tab-right a.all {
  background: url(../images/public/fenlei.png) 7px center no-repeat;
  color: #fff;
  font-size: 12px;
  background-color: #24aa38;
  width: 83px;
  text-align: center;
  padding-left: 12px;
}
.title-content .tab-right a.on {
  background-color: #24aa38;
}
/* detail right */
.detail-right {
  position: fixed;
  width: 320px;
  height: 100%;
  top: 0;
  z-index: 999;
  right: -320px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  background-color: #f6f6f6;
  border-left: 1px solid #e2e2e2;
  padding-left: 25px;
  padding-top: 110px;
}
.detail-right h4 {
  color: #010101;
  font-size: 16px;
  margin-bottom: 10px;
}
.detail-right ul li {
  color: #666666;
  line-height: 24px;
  font-size: 12px;
}
.detail-right ul li a {
  color: #666666;
}
.detail-right .more {
  color: #666666;
  line-height: 24px;
  font-size: 12px;
  margin: 20px 0 10px;
  display: block;
}
.detail-right .wechat {
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 20px;
}
.detail-right .wechat a {
  display: inline-block;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  background-color: #fff;
  margin: 20px 0;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.detail-right .wechat a:hover {
  background-color: #28b800;
}
.detail-right .wechat img {
  width: auto;
}
.detail-right .open {
  position: absolute;
  width: 33px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -16.5px;
  margin-top: -100px;
  left: -33px;
  border-radius: 2px;
  margin-left: 0;
  background: url(../images/public/open1.png) no-repeat left center;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.detail-right.on {
  right: 0;
}
.detail-right.on .open {
  width: 17px;
  left: -17px;
  background-image: url(../images/public/open2.png);
}
@media (max-width:1367px) {
  .detail-right {
    padding-top: 20px;
  }
}
html.ie8 .detail-right {
  padding-top: 20px;
}
.section {
  overflow: hidden;
}
.main-lg-page {
  height: 100%;
}
.main-lg-page .section {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  height: 100%;
}
.main-lg-page .section .lg-page {
  position: absolute;
}
#menu {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -100px;
}
#menu li {
  margin: 14px 0;
  position: relative;
  height: 22px;
}
#menu li a {
  width: 100%;
  height: 22px;
  display: block;
  position: absolute;
  filter: none;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozM0ZBMzRDOUYyQjMxMUUzOUJDM0I3NTI1MzQyRkIwQSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozM0ZBMzRDQUYyQjMxMUUzOUJDM0I3NTI1MzQyRkIwQSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMzRkEzNEM3RjJCMzExRTM5QkMzQjc1MjUzNDJGQjBBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjMzRkEzNEM4RjJCMzExRTM5QkMzQjc1MjUzNDJGQjBBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YBV7vQAAABBJREFUeNpi/P//PwNAgAEACQEC/2m8kPAAAAAASUVORK5CYII=');
  right: -5px;
  top: 50%;
  margin-top: -11px;
}
#menu li a i {
  background-color: #666666;
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 10px;
  right: 10px;
  top: 50%;
  margin-top: -5px;
}
#menu li span {
  width: auto;
  height: 22px;
  padding: 0 30px 0 20px;
  float: right;
  background-color: #fff;
  border: 1px solid #24aa38;
  color: #24aa38;
  display: block;
  border-radius: 15px;
  font-size: 12px;
  top: 50%;
  line-height: 21px;
  padding-left: 10px;
  opacity: 0;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
html.ie8 #menu li span {
  display: none;
}
#menu li.active a i {
  background-color: #24aa38;
}
#menu li.active span {
  opacity: 1;
}
html.ie8 #menu li.active span {
  display: block;
}
#menu li:hover span {
  opacity: 1;
}
html.ie8 #menu li:hover span {
  display: block;
}
.page-btn {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 50px;
}
.page-btn li {
  display: inline-block;
  font-size: 12px;
  color: #666;
}
.page-btn li a {
  color: #666;
  margin: 0 5px;
  display: block;
  border: 1px solid transparent;
  padding: 5px 10px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.page-btn li a.btn:hover,
.page-btn li a.btn.on {
  background-color: #f4f4f4;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  color: #24aa38;
}
.bar-rt {
  position: fixed;
  right: 0px;
  bottom: 0;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: none;
  z-index:99999999999999999999999;
}
.bar-rt a {
  display: block;
}

.mCSB_container {
  margin-right: 0;
}
.zindex10 {
  z-index: 50;
}
.zindex20 {
  z-index: 40;
}
.zindex30 {
  z-index: 30;
}
.zindex40 {
  z-index: 20;
}
.zindex50 {
  z-index: 10;
}
.home-content {
  overflow: hidden;
  position: relative;
  /* switch arrow */
}
.home-content .scene {
  width: auto;
  height: 100%;
  position: absolute;
  left: 160px;
}
.home-content .scene .carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-content .item {
  width: auto;
  height: 100%;
  float: left;
  opacity: 0;
  -webkit-transition: 0.6s all ease;
  transition: 0.6s all ease;
  position: relative;
  -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.25);
  /* scroll style */
}
html.ie8 .home-content .item {
  width: 20%;
}
html.ie8 .home-content .item {
  border-right: 1px solid #a2a2a2;
}
.home-content .item .content {
  width: 100%;
}
.home-content .item .slogen {
  width: 100%;
  height: auto;
  display: block;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  border-bottom: 3px solid #24aa38;
  position: relative;
  background-color: #24aa38;
}
.home-content .item .slogen:after {
  position: absolute;
  content: '';
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  width: 12px;
  height: 12px;
  background-color: #24aa38;
  left: 50%;
  margin-left: -6px;
  bottom: -8px;
  border-radius: 12px;
}
.home-content .item .slogen img {
  width: 100%;
  border: 0;
}
.home-content .item .slogen:hover:after {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.home-content .item .title {
  font-size: 20px;
  text-align: center;
  margin: 40px auto;
}
.home-content .item .title a {
  display: block;
  position: relative;
  padding: 20px 0;
  color: #000;
}
.home-content .item .title a:after {
  position: absolute;
  width: 28px;
  height: 5px;
  background-color: #24aa38;
  content: '';
  left: 50%;
  margin-left: -14px;
  bottom: 0px;
  opacity: 0;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html.ie8 .home-content .item .title a:after {
  display: none;
}
.home-content .item .title a:hover:after {
  opacity: 1;
  bottom: 10px;
}
html.ie8 .home-content .item .title a:hover:after {
  display: block;
}
.home-content .item .group {
  padding: 0 10%;
  clear: both;
  margin-bottom: 45px;
  position: relative;
}
.home-content .item .group span {
  float: left;
  width: 66px;
  height: 66px;
  overflow: hidden;
  margin-right: 20px;
}
.home-content .item .group span img {
  width: 100%;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.home-content .item .group h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.home-content .item .group h3 a {
  color: #000000;
}
.home-content .item .group p {
  font-size: 12px;
}
.home-content .item .group p a {
  color: #868686;
}
.home-content .item .group:after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/home/icon-plus.jpg);
  right: 10%;
  top: 7px;
}
.home-content .item.item1 {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.home-content .item.item1 .group a:hover {
  text-decoration: underline;
}
.home-content .item.item1 .group:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.home-content .item.item2 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.home-content .item.item2 .contact {
  width: 100%;
  text-align: center;
  background: none;
}
.home-content .item.item2 .contact a {
  display: inline-block;
}
.home-content .item.item2 .contact a span {
  width: 70px;
  height: 70px;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.home-content .item.item2 .contact a i {
  font-size: 14px;
  color: #a2a2a2;
}
.home-content .item.item2 .contact a i small {
  font-size: 12px;
  display: block;
}
.home-content .item.item2 .contact a.a1 span {
  background-image: url(../images/home/icon-item21.png);
}
.home-content .item.item2 .contact a.a2 {
  margin: 0 10%;
}
.home-content .item.item2 .contact a.a2 span {
  background-image: url(../images/home/icon-item22.png);
}
.home-content .item.item2 .contact a.a3 span {
  background-image: url(../images/home/icon-item23.png);
}
.home-content .item.item2 .contact a:hover i {
  color: #24aa38;
}
.home-content .item.item2 .contact a:hover.a1 span {
  background-image: url(../images/home/icon-item211.png);
}
.home-content .item.item2 .contact a:hover.a2 {
  margin: 0 10%;
}
.home-content .item.item2 .contact a:hover.a2 span {
  background-image: url(../images/home/icon-item222.png);
}
.home-content .item.item2 .contact a:hover.a3 span {
  background-image: url(../images/home/icon-item233.png);
}
.home-content .item.item2 .intro {
  padding: 0 10%;
}
.home-content .item.item2 .intro h3 {
  margin: 40px auto 0;
  clear: both;
}
.home-content .item.item2 .intro h3 img {
  float: left;
}
.home-content .item.item2 .intro h3 a {
  float: right;
  font-size: 12px;
  color: #868686;
  font-weight: normal;
}
.home-content .item.item2 .intro .endcy {
  margin-top: 40px;
}
.home-content .item.item2 .intro .endcy span {
  float: left;
  width: 66px;
  height: 66px;
  overflow: hidden;
  margin-right: 20px;
}
.home-content .item.item2 .intro .endcy span img {
   width: 100%;
  
	transition: all ease .3s;
	-webkit-transition: all ease .3s;
	-moz-transition:all ease .3s;
	-o-transition:all ease .3s;
	-ms-transition:all ease .3s;
}

.home-content .item.item2 .intro .endcy span:hover img{
	stransform:scale(1.2);
	-webkit-transform:scale(1.2);
	-moz-transform:scale(1.2);
	-ms-transform:scale(1.2);
	-o-transform:scale(1.2);
}
.home-content .item.item2 .intro .endcy p {
  font-size: 12px;
  line-height:22px;height:22px;overflow:hidden;
}

.home-content .item .title2 {
  font-size: 20px;
  text-align: center;
  margin: 40px auto 0;
}
.home-content .item .title2 a {
  display: block;
  position: relative;
  padding: 20px 0;
  color:#000;
}
.home-content .item .title2 a:after {
  position: absolute;
  width: 28px;
  height: 5px;
  background-color: #24aa38;
  content: '';
  left: 50%;
  margin-left: -14px;
  bottom: 0px;
  opacity: 0;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html.ie8 .home-content .item .title2 a:after {
  display: none;
}
.home-content .item .title2 a:hover:after {
  opacity: 1;
  bottom: 10px;
}
html.ie8 .home-content .item .title2 a:hover:after {
  display: block;
}

.home-content .item.item2 .intro .endcy p a {
  color: #868686;
}
.home-content .item.item2 .intro .endcy p a:hover {
  text-decoration: underline;
}
.home-content .item.item2 .intro .boffin {
  margin-top: 5px;
  margin-bottom: 50px;
}
.home-content .item.item2 .intro .boffin p {
  font-size: 12px;
  line-height: 20px;
}
.home-content .item.item2 .intro .boffin p span {
  width: 170px;
  display: inline-block;
  margin-right: 5px;
}
.home-content .item.item2 .intro .boffin p a {
  color: #868686;
}
.home-content .item.item2 .intro .boffin p a:hover {
  text-decoration: underline;
}
.home-content .item.item3 {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.home-content .item.item3 .group span {
  position: relative;
  background-color: #d5d5d5;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.home-content .item.item3 .group span:after {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff #fff transparent transparent;
  border-width: 18px 0px 0px 18px;
}
.home-content .item.item3 .group span a {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  display: block;
}
.home-content .item.item3 .group:hover span {
  background-color: #24aa38;
}
.home-content .item.item3 .group:hover span a {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.home-content .item.item4 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  z-index: 10;
}
.home-content .item.item4 .pano {
  margin-bottom: 10px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  margin-bottom: 20px;
}
.home-content .item.item4 .pano a {
  display: inline-block;
  position: relative;
  width: 50%;
  height: auto;
}
.home-content .item.item4 .pano a span {
  display: block;
  width: 100%;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  height: 58px;
  margin-bottom: 15px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.home-content .item.item4 .pano a span.p1 {
  background-image: url(../images/home/icon-item41.jpg);
}
.home-content .item.item4 .pano a span.p2 {
  background-image: url(../images/home/icon-item42.jpg);
}
.home-content .item.item4 .pano a span.p3 {
  background-image: url(../images/home/icon-item43.jpg);
}
.home-content .item.item4 .pano a span.p4 {
  background-image: url(../images/home/icon-item44.jpg);
}
.home-content .item.item4 .pano a span.p5 {
  background-image: url(../images/home/icon-item45.jpg);
}
.home-content .item.item4 .pano a span.p6 {
  background-image: url(../images/home/icon-item46.jpg);
}
.home-content .item.item4 .pano a i {
  display: block;
  color: #a2a2a2;
  font-size: 14px;
  font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
}
.home-content .item.item4 .pano a:hover i {
  color: #24aa38;
}
.home-content .item.item4 .pano a:hover span.p1 {
  background-image: url(../images/home/icon-item411.jpg);
}
.home-content .item.item4 .pano a:hover span.p2 {
  background-image: url(../images/home/icon-item422.jpg);
}
.home-content .item.item4 .pano a:hover span.p3 {
  background-image: url(../images/home/icon-item433.jpg);
}
.home-content .item.item4 .pano a:hover span.p4 {
  background-image: url(../images/home/icon-item444.jpg);
}
.home-content .item.item4 .pano a:hover span.p5 {
  background-image: url(../images/home/icon-item455.jpg);
}
.home-content .item.item4 .pano a:hover span.p6 {
  background-image: url(../images/home/icon-item466.jpg);
}
.home-content .item.item4 .pano.last {
  margin-bottom: 50px;
}
.home-content .item.item5 {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}
.home-content .item.item5 .content {
  position: relative;
}
.home-content .item.item5 .content > img {
  width: 100%;
}
.home-content .item.item5 .content .about {
  position: absolute;
  top: 5%;
  left: 10%;
}
.home-content .item.item5 .content .about img {
  max-width: 100%;
}
.home-content .item.item5 .content .about p {
  font-size: 14px;
  color: #000;
}
.home-content .item.item5 .content .service {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -10px;
}
.home-content .item.item5 .content .service img {
  margin-left: 80px;
}
.home-content .item.item5 .content .service h3 {
  color: #24aa38;
  font-size: 18px;
  margin: 30px 0 5px 185px;
}
.home-content .item.item5 .content .service p {
  font-size: 12px;
  color: #9c9c9c;
  margin: 0 0 0 185px;
}
.home-content .item.item5 .content .service a {
  display: block;
  margin: 5px 0 0 185px;
  width: 41px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/home/more.png);
}
.home-content .item.item5 .content .colum {
  position: absolute;
  width: 180px;
  height: 260px;
  top: 50%;
  left: 0;
  margin-top: 100px;
}
.home-content .item.item5 .content .colum a {
  display: block;
  border-left: 2px solid #24aa38;
  border-right: 2px solid #24aa38;
  width: 66px;
  height: 40px;
  position: absolute;
}
.home-content .item.item5 .content .colum a:before,
.home-content .item.item5 .content .colum a:after {
  position: absolute;
  content: '';
  left: -2px;
}
.home-content .item.item5 .content .colum a:before {
  width: 0;
  height: 0;
  border-width: 0 33px 18px;
  border-style: solid;
  border-color: transparent transparent #24aa38;
  top: -18px;
}
.home-content .item.item5 .content .colum a:after {
  width: 0;
  height: 0;
  border-width: 18px 33px 0;
  border-style: solid;
  border-color: #24aa38 transparent transparent;
  bottom: -18px;
}
.home-content .item.item5 .content .colum a span {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  background-color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 40px;
  color: #24aa38;
}
.home-content .item.item5 .content .colum a span:before,
.home-content .item.item5 .content .colum a span:after {
  position: absolute;
  content: '';
  z-index: 20;
  left: 0;
}
.home-content .item.item5 .content .colum a span:before {
  width: 0;
  height: 0;
  border-width: 0 31px 17px;
  border-style: solid;
  border-color: transparent transparent #ffffff;
  top: -16px;
}
.home-content .item.item5 .content .colum a span:after {
  width: 0;
  height: 0;
  border-width: 17px 31px 0;
  border-style: solid;
  border-color: #ffffff transparent transparent;
  bottom: -16px;
}
.home-content .item.item5 .content .colum a:hover span {
  color: #fff;
  background-color: #24aa38;
}
.home-content .item.item5 .content .colum a:hover span:before {
  width: 0;
  height: 0;
  border-width: 0 31px 19px;
  border-style: solid;
  border-color: transparent transparent #24aa38;
}
.home-content .item.item5 .content .colum a:hover span:after {
  width: 0;
  height: 0;
  border-width: 19px 31px 0;
  border-style: solid;
  border-color: #24aa38 transparent transparent;
}
.home-content .item.item5 .content .colum a.a1 {
  left: 80px;
  top: 16px;
}
.home-content .item.item5 .content .colum a.a2 {
  left: 46px;
  top: 76px;
}
.home-content .item.item5 .content .colum a.a3 {
  right: 0px;
  top: 76px;
}
.home-content .item.item5 .content .colum a.a4 {
  left: 12px;
  top: 136px;
}
.home-content .item.item5 .content .colum a.a5 {
  left: 46px;
  bottom: 24px;
}
.home-content .item.item5 .content .colum:before {
  position: absolute;
  content: '';
  width: 2px;
  height: 16px;
  top: -16px;
  left: 112px;
  background-color: #24aa38;
}
.home-content .item.item5 .content .colum:after {
  position: absolute;
  content: '';
  width: 2px;
  height: 16px;
  top: 172px;
  left: 6px;
  -webkit-transform: rotate(57deg);
  transform: rotate(57deg);
  background-color: #24aa38;
}
.home-content .item .mCSB_container {
  margin: 0 !important;
}
.home-content .item .mCS-light-thin > .mCSB_scrollTools .mCSB_draggerRail {
  background: none;
}
.home-content .item .mCustomScrollBox > .mCSB_scrollTools {
  width: 8px;
  opacity: 0;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html.ie8 .home-content .item .mCustomScrollBox > .mCSB_scrollTools {
  display: block;
  opacity: 1;
}
.home-content .item .mCSB_scrollTools .mCSB_dragger {
  background-color: rgba(134, 134, 134, 0.35);
  border-radius: 8px;
  height: 75%;
}
html.ie8 .home-content .item .mCSB_scrollTools .mCSB_dragger {
  background-color: #868686;
}
.home-content .item:hover .mCustomScrollBox .mCSB_scrollTools {
  opacity: 1;
}
html.ie8 .home-content .item:hover .mCustomScrollBox .mCSB_scrollTools {
  display: block !important;
}
.home-content .item:hover .mCSB_scrollTools .mCSB_dragger {
  opacity: 1;
}
.home-content .arrow {
  position: absolute;
  right: -140px;
  top: 50%;
  z-index: 9998;
  margin-top: -35px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  -webkit-transition: 0.3s all cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s;
  transition: 0.3s all cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s;
}
.home-content .arrow a {
  display: inline-block;
  width: 70px;
  height: 70px;
  background-image: url(../images/home/arrow.png);
  background-repeat: no-repeat;
  background-color: rgba(58, 58, 58, 0.7);
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
html.ie8 .home-content .arrow a {
  background-color: #868686;
}
.home-content .arrow a.prev {
  background-position: left center;
}
.home-content .arrow a.next {
  background-position: right center;
}
.home-content .arrow a.on {
  background-color: rgba(36, 170, 56, 0.8);
}
html.ie8 .home-content .arrow a.on {
  background-color: #24aa38;
}
.home-content.on .arrow {
  right: 0;
}
.home-content.on .item {
  opacity: 1;
}
.preload {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
}
.preload .loading {
  position: absolute;
  width: 596px;
  height: 282px;
  top: 50%;
  left: 50%;
  margin: -141px 0 0 -298px;
  text-align: center;
}
.preload .loading img {
  display: inline-block;
}
.preload .loading img.tp {
  position: relative;
  z-index: 20;
}
.preload .loading img.btm {
  margin-top: -114px;
}
.about {
  overflow: hidden;
}
.about .kefu {
  position: fixed;
  bottom: 0;
  right: 0;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.about .scene1 {
  background-image: url(../images/about/bg1.jpg);
}
.about .scene1 .page1 {
  width: 100%;
  height: 442px;
  top: 50%;
  margin-top: -221px;
  text-align: center;
}
.about .scene1 .page1 h2 {
  font-size: 45px;
  color: #000;
  margin-bottom: 18px;
  font-weight: normal;
}
.about .scene1 .page1 h3 {
  font-size: 26px;
  color: #000;
  margin: 18px 0;
  font-weight: normal;
}
.about .scene1 .page1 p {
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}
.about .scene1 .page1 .tab {
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  opacity: 0;
  -webkit-transition: 0.4s all ease-in 0.5s;
  transition: 0.4s all ease-in 0.5s;
}
.about .scene1 .page1 .tab a {
  display: inline-block;
  width: 127px;
  height: 35px;
  background-color: #666666;
  color: #fff;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  line-height: 35px;
  margin: 82px 24px 0;
}
.about .scene1 .page1 .tab a:hover,
.about .scene1 .page1 .tab a.on {
  background-color: #24aa38;
}
.about .scene1 .page1 .carousel {
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
  position: relative;
  width: 100%;
  height: 360px;
}
.about .scene1 .page1 .carousel .carou {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.about .scene1.on .page1 .carousel {
  opacity: 1;
}
.about .scene1.on .page1 .tab {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.about .scene2 {
  background-image: url(../images/about/bg2.jpg);
}
.about .scene2 .page2 {
  position: absolute;
  width: 930px;
  height: 664px;
  top: 50%;
  left: 50%;
  margin: -332px 0 0 -465px;
  margin-top: -272px;
}
.about .scene2 .page2 .pl {
  width: 78px;
  height: 659px;
  background: url(../images/about/review-slogen.png) no-repeat center center;
  float: left;
  opacity: 0;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.about .scene2 .page2 .pr {
  width: 754px;
  height: 652px;
  padding-top: 5px;
  float: right;
  -webkit-transition: 0.6s all ease 1.2s;
  transition: 0.6s all ease 1.2s;
  background: no-repeat 95px -1000px;
}
.about .scene2 .page2 .pr .group {
  margin-bottom: 13px;
  width: 754px;
  position: relative;
  opacity: 0;
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.about .scene2 .page2 .pr .group:before,
.about .scene2 .page2 .pr .group:after {
  content: " ";
  height: 0;
  overflow: hidden;
  position: static !important;
}
.about .scene2 .page2 .pr .group:after {
  clear: both;
  display: table;
}
.about .scene2 .page2 .pr .group span {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 28px;
  margin-top: -21px;
}
.about .scene2 .page2 .pr .group span i {
  font-size: 18px;
}
.about .scene2 .page2 .pr .group p {
  width: 630px;
  float: right;
  border: 1px solid #e6f0eb;
  position: relative;
  background-color: #c8dad5;
  padding: 17px;
  font-size: 12px;
  border-radius: 10px;
  line-height: 22px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.about .scene2 .page2 .pr .group p:before {
  width: 0;
  height: 0;
  border-width: 8px 8px 8px 0;
  border-style: solid;
  border-color: transparent #e6f0eb transparent transparent;
  left: -8px;
  top: 50%;
  margin-top: -8px;
}
.about .scene2 .page2 .pr .group p:after {
  width: 0;
  height: 0;
  border-width: 8px 8px 8px 0;
  border-style: solid;
  border-color: transparent #c8dad5 transparent transparent;
  left: -7px;
  top: 50%;
  margin-top: -8px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.about .scene2 .page2 .pr .group p:hover {
  background-color: #24aa38;
  color: #fff;
}
.about .scene2 .page2 .pr .group p:hover:after {
  border-color: transparent #24aa38 transparent transparent;
}
.about .scene2 .page2 .pr .group.g1 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.about .scene2 .page2 .pr .group.g2 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.about .scene2 .page2 .pr .group.g3 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.about .scene2 .page2 .pr .group.g4 {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.about .scene2 .page2 .pr .group.g5 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.about .scene2 .page2 .pr .group.g6 {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.about .scene2 .page2 .pr .group.g7 {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.about .scene2 .page2 .pr .group.g8 {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.about .scene2 .page2 .pr .group.g9 {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.about .scene2 .page2 .pr .mCSB_container {
  margin: 0 !important;
}
.about .scene2 .page2 .pr .mCS-light-thin > .mCSB_scrollTools .mCSB_draggerRail {
  background: none;
}
.about .scene2 .page2 .pr .mCustomScrollBox > .mCSB_scrollTools {
  width: 8px;
  opacity: 0;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html.ie8 .about .scene2 .page2 .pr .mCustomScrollBox > .mCSB_scrollTools {
  display: none;
}
.about .scene2 .page2 .pr .mCSB_scrollTools .mCSB_dragger {
  background-color: rgba(134, 134, 134, 0.35);
  border-radius: 8px;
  height: 75%;
}
html.ie8 .about .scene2 .page2 .pr .mCSB_scrollTools .mCSB_dragger {
  background-color: #868686;
}
@media (max-width:1367px) {
  .about .scene2 .page2 {
    height: 500px;
    margin-top: -210px;
  }
  .about .scene2 .page2 .pl {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .about .scene2 .page2 .pr {
    height: 490px;
  }
}
html.ie8 .about .scene2 .page2 {
  height: 500px;
  margin-top: -180px;
}
html.ie8 .about .scene2 .page2 .pl {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-position: top center;
}
html.ie8 .about .scene2 .page2 .pr {
  height: 460px;
}
.about .scene2.on .page2 .pl {
  opacity: 1;
}
.about .scene2.on .page2 .pr {
  background: url(../images/about/time-line.png) no-repeat 95px 0;
}
@media (max-width:1367px) {
  .about .scene2.on .page2 .pr {
    background-position: 95px -20px;
  }
}
html.ie8 .about .scene2.on .page2 .pr {
  background-position: 95px -20px;
}
.about .scene2.on .page2 .pr .group {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.about .scene3 {
  background-image: url(../images/about/bg3.jpg);
}
.about .scene3 .page3 {
  position: absolute;
  width: 1000px;
  height: 524px;
  top: 50%;
  left: 50%;
  margin: -262px 0 0 -500px;
  margin-top: -222px;
}
.about .scene3 .page3 .zizhi1 {
  text-align: center;
}
.about .scene3 .page3 .zizhi1 h2 {
  font-size: 45px;
  color: #000;
  margin-bottom: 18px;
  font-weight: normal;
}
.about .scene3 .page3 .zizhi1 h3 {
  font-size: 26px;
  color: #000;
  margin: 18px 0;
  font-weight: normal;
}
.about .scene3 .page3 .zizhi1 h4 {
  text-align: center;
  margin: 55px auto 35px;
}
.about .scene3 .page3 .zizhi1 h4 img {
  width: auto;
  display: inline-block;
}
.about .scene3 .page3 .zizhi1 p {
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}
.about .scene3 .page3 .zizhi2 {
  padding-top: 40px;
  opacity: 0;
}
.about .scene3 .page3 .zizhi2 a {
  position: absolute;
  filter: none;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozM0ZBMzRDOUYyQjMxMUUzOUJDM0I3NTI1MzQyRkIwQSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozM0ZBMzRDQUYyQjMxMUUzOUJDM0I3NTI1MzQyRkIwQSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMzRkEzNEM3RjJCMzExRTM5QkMzQjc1MjUzNDJGQjBBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjMzRkEzNEM4RjJCMzExRTM5QkMzQjc1MjUzNDJGQjBBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YBV7vQAAABBJREFUeNpi/P//PwNAgAEACQEC/2m8kPAAAAAASUVORK5CYII=');
}
.about .scene3 .page3 .zizhi2 a.a1 {
  width: 198px;
  height: 143px;
  top: 51px;
  left: 0px;
}
.about .scene3 .page3 .zizhi2 a.a2 {
  width: 196px;
  height: 270px;
  top: 49px;
  left: 219px;
}
.about .scene3 .page3 .zizhi2 a.a3 {
  width: 328px;
  height: 423px;
  top: 55px;
  left: 444px;
}
.about .scene3 .page3 .zizhi2 a.a4 {
  width: 196px;
  height: 263px;
  top: 215px;
  left: 2px;
}
.about .scene3 .page3 .zizhi2 a.a5 {
  width: 195px;
  height: 134px;
  top: 346px;
  left: 220px;
}
.about .scene3 .page3 .zizhi2 a.a6 {
  width: 201px;
  height: 130px;
  top: 51px;
  left: 795px;
}
.about .scene3 .page3 .zizhi2 a.a7 {
  width: 210px;
  height: 294px;
  top: 184px;
  left: 790px;
}
.about .scene3 .page3 .zizhi2 a:before {
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  border-top: 5px solid #24aa38;
  border-bottom: 5px solid #24aa38;
}
.about .scene3 .page3 .zizhi2 a:after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-left: 5px solid #24aa38;
  border-right: 5px solid #24aa38;
}
.about .scene3 .page3 .zizhi2 a:before,
.about .scene3 .page3 .zizhi2 a:after {
  opacity: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
html.ie8 .about .scene3 .page3 .zizhi2 a:before,
html.ie8 .about .scene3 .page3 .zizhi2 a:after {
  display: none;
}
.about .scene3 .page3 .zizhi2 a:hover:before,
.about .scene3 .page3 .zizhi2 a:hover:after {
  opacity: 1;
}
html.ie8 .about .scene3 .page3 .zizhi2 a:hover:before,
html.ie8 .about .scene3 .page3 .zizhi2 a:hover:after {
  display: block;
}
.about .scene3 .page3 .owl-prev,
.about .scene3 .page3 .owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  background-image: url(../images/about/arrow.png);
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
html.ie8 .about .scene3 .page3 .owl-prev,
html.ie8 .about .scene3 .page3 .owl-next {
  display: none;
}
.about .scene3 .page3 .owl-prev {
  left: 0;
  background-position: left center;
}
.about .scene3 .page3 .owl-next {
  right: 0;
  background-position: right center;
}
.about .scene3 .page3:hover .owl-prev,
.about .scene3 .page3:hover .owl-next {
  opacity: 1;
}
html.ie8 .about .scene3 .page3:hover .owl-prev,
html.ie8 .about .scene3 .page3:hover .owl-next {
  display: block;
}
.about .scene3 .page3 .an {
  -webkit-transform: translate(0, 40px);
  transform: translate(0, 40px);
  opacity: 0;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.about .scene3 .page3 .an.an1 {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.about .scene3 .page3 .an.an2 {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.about .scene3 .page3 .an.an3 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.about .scene3 .page3 .an.an4 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.about .scene3 .page3 .an.an5 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.about .scene3 .page3 .an.an6 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.about .scene3 .page3 .an.an7 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.about .scene3 .page3 .an.an8 {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.about .scene3.on .page3 .an {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.about .scene3.on .page3 .zizhi2 {
  opacity: 1;
}
.about .scene4 {
  background-image: url(../images/about/bg4.jpg);
}
.about .scene4 .page4 {
  position: absolute;
  width: 936px;
  height: 494px;
  top: 50%;
  left: 50%;
  margin: -247px 0 0 -468px;
  margin-top: -210px;
}
.about .scene4 .page4 .tl {
  width: 410px;
  height: 100%;
  float: left;
  -webkit-transform: translate(-300px, 0);
  transform: translate(-300px, 0);
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.about .scene4 .page4 .tl h2 {
  font-size: 45px;
  color: #000;
  margin: 128px 0 24px;
}
.about .scene4 .page4 .tl h2 span {
  color: #24aa38;
}
.about .scene4 .page4 .tl p {
  font-size: 16px;
  color: #000;
}
.about .scene4 .page4 .tl p span {
  font-size: 30px;
}
.about .scene4 .page4 .tl p.nobig {
  margin-top: 10px;
}
.about .scene4 .page4 .tr {
  float: left;
  width: 526px;
  height: 494px;
  background: url(../images/about/tr.png) no-repeat center center;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transform: scale(0.99);
  transform: scale(0.99);
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out 0.4s;
  transition: 0.6s all ease-in-out 0.4s;
}
.about .scene4.on .page4 .tl {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.about .scene4.on .page4 .tr {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.about .scene5 {
  background-image: url(../images/about/bg5.jpg);
}
.about .scene5 .page5 {
  position: absolute;
  width: 976px;
  height: 629px;
  top: 50%;
  left: 50%;
  margin: -314.5px 0 0 -488px;
}
.about .scene5 .page5 .tl {
  width: 540px;
  height: 100%;
  float: left;
  background: url(../images/about/tl4.png) no-repeat center center;
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.about .scene5 .page5 .tr {
  float: right;
  width: 402px;
  height: 573px;
  margin-top: 20px;
}
.about .scene5 .page5 .tr .tr-top {
  width: 100%;
  height: 103px;
  background: url(../images/about/tr-top.png);
  margin-bottom: 10px;
  font-size: 45px;
  color: #fff;
  line-height: 103px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(0, -20px);
  transform: translate(0, -20px);
  -webkit-transition: 0.6s all ease-in-out 0.6s;
  transition: 0.6s all ease-in-out 0.6s;
}
.about .scene5 .page5 .tr .tr-btm {
  width: 100%;
  height: 464px;
  background: url(../images/about/tr-btm.png);
  padding: 32px 0 0 0;
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  -webkit-transition: 0.6s all ease-in-out 0.6s;
  transition: 0.6s all ease-in-out 0.6s;
}
.about .scene5 .page5 .tr .tr-btm p {
  color: #fff;
  font-size: 16px;
  margin-left: 32px;
}
.about .scene5 .page5 .tr .tr-btm p span {
  font-size: 30px;
}
.about .scene5 .page5 .tr .tr-btm p.three {
  margin-top: 10px;
}
.about .scene5 .page5 .tr .tr-btm p.img {
  margin-bottom: 16px;
}
.about .scene5 .page5 .tr .tr-btm p.img img {
  margin: 0 23px 0 0;
}
.about .scene5 .page5 .tr .tr-btm a {
  width: 232px;
  height: 44px;
  display: block;
  margin: 70px auto 0;
  text-align: center;
  line-height: 44px;
  position: relative;
  color: #fff;
  font-size: 14px;
}
.about .scene5 .page5 .tr .tr-btm a:before {
  width: 100%;
  height: 18px;
  border: 1px solid #fff;
  border-bottom: 0;
  top: 0;
  left: 0;
}
.about .scene5 .page5 .tr .tr-btm a:after {
  width: 100%;
  height: 10px;
  border: 1px solid #fff;
  border-top: 0;
  bottom: 0;
  left: 0;
}
.about .scene5.on .page5 .tl {
  opacity: 1;
}
.about .scene5.on .page5 .tr .tr-top,
.about .scene5.on .page5 .tr .tr-btm {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.allsc {
  overflow: hidden;
}
.allsc .title {
  text-align: center;
  width: 100%;
}
.allsc .title span {
  font-size: 50px;
}
.allsc .title b {
  font-size: 30px;
  display: block;
  font-weight: normal;
  margin-top: 5px;
  text-transform: uppercase;
  color: #999999;
}
.allsc .title u {
  font-size: 34px;
  display: block;
  font-weight: normal;
  margin-top: 10px;
}
.allsc #menu li a i {
  background-color: #fff;
  border: 1px solid #24aa38;
}
.allsc #menu li.active a i {
  background-color: #24aa38;
}
.allsc .scene1 {
  background-image: url(../images/720/bg1.png);
  background-color: #e6e6e6;
}
.allsc .scene1 .page1 {
  width: 100%;
  height: 100%;
  display: table;
}
.allsc .scene1 .page1 .ct {
  display: table-cell;
  vertical-align: middle;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 0.8s all ease-in-out;
  transition: 0.8s all ease-in-out;
}
.allsc .scene1 .page1 .ct img {
  width: 100%;
}
.allsc .scene1 .page1 .title {
  top: 50%;
  left: 0;
  margin-top: -80px;
  position: absolute;
}
.allsc .scene1 .page1 .title span {
  opacity: 0;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
  -webkit-transition: 0.5s all ease 0.8s;
  transition: 0.5s all ease 0.8s;
}
.allsc .scene1 .page1 .title u {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  -webkit-transition: 0.5s all ease 0.8s;
  transition: 0.5s all ease 0.8s;
}
.allsc .scene1.on .page1 .ct {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.allsc .scene1.on .page1 .title span,
.allsc .scene1.on .page1 .title u {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.allsc .scene2 {
  background-image: url(../images/720/bg2.jpg);
  background-color: #53ba5a;
}
.allsc .scene2 .page2 {
  width: 100%;
  height: 100%;
}
.allsc .scene2 .page2 .ct {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.allsc .scene2 .page2 .ct img {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.allsc .scene2 .page2 .title {
  color: #fff;
  padding-top: 140px;
}
@media (max-width:1367px) {
  .allsc .scene2 .page2 .title {
    padding-top: 40px;
  }
}
html.ie8 .allsc .scene2 .page2 .title {
  padding-top: 20px;
}
.allsc .scene2 .page2 .title span {
  opacity: 0;
  -webkit-transform: translate(-100px, 0);
  transform: translate(-100px, 0);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.allsc .scene2 .page2 .title u {
  opacity: 0;
  -webkit-transform: translate(100px, 0);
  transform: translate(100px, 0);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.allsc .scene2 .page2 p {
  text-align: center;
  color: #fff;
  margin-top: 75px;
  font-size: 22px;
  line-height: 40px;
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out 0.4s;
  transition: 0.6s all ease-in-out 0.4s;
}
@media (max-width:1367px) {
  .allsc .scene2 .page2 p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 45px;
  }
}
html.ie8 .allsc .scene2 .page2 p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 45px;
}
.allsc .scene2.on .page2 .ct,
.allsc .scene2.on .page2 .title span,
.allsc .scene2.on .page2 .title u,
.allsc .scene2.on .page2 p {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.allsc .scene3 {
  background-color: #fff;
}
.allsc .scene3 .page3 {
  width: 100%;
  height: 100%;
  display: table;
}
.allsc .scene3 .page3 .ct {
  display: table-cell;
  vertical-align: middle;
}
.allsc .scene3 .page3 .apply {
  width: 100%;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #d0d0d0;
  border-top: 1px solid #d0d0d0;
  margin-top: 40px;
  opacity: 0;
  -webkit-transform: translate(0, 600px);
  transform: translate(0, 600px);
  -webkit-transition: 0.8s all ease-in-out;
  transition: 0.8s all ease-in-out;
}
.allsc .scene3 .page3 .apply .group {
  display: inline-block;
  width: 25%;
  background-color: #fff;
  float: left;
}
.allsc .scene3 .page3 .apply .group > span {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.allsc .scene3 .page3 .apply .group > span:before {
  width: 100%;
  height: 100%;
  filter: none;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBRTFGODA3REYxNTExMUUzQTY2QzlGODcwRDZGOEQ0NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBRTFGODA3RUYxNTExMUUzQTY2QzlGODcwRDZGOEQ0NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFFMUY4MDdCRjE1MTExRTNBNjZDOUY4NzBENkY4RDQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkFFMUY4MDdDRjE1MTExRTNBNjZDOUY4NzBENkY4RDQ2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+qHf1jAAAAA9JREFUeNpiYGBgWAwQYAAAqACksWVCrgAAAABJRU5ErkJggg==');
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 10;
}
html.ie8 .allsc .scene3 .page3 .apply .group > span:before {
  display: none;
}
.allsc .scene3 .page3 .apply .group > span img {
  width: 100%;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.allsc .scene3 .page3 .apply .group p {
  font-size: 12px;
  color: #000;
  height: 88px;
  font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  line-height: normal;
  margin: 0 0 20px;
  padding: 20px 10px 0;
}
.allsc .scene3 .page3 .apply .group p span {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}
.allsc .scene3 .page3 .apply .group:hover > span img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.allsc .scene3 .page3 .apply .group:hover > span:before {
  opacity: 1;
}
html.ie8 .allsc .scene3 .page3 .apply .group:hover > span:before {
  display: block;
}
.allsc .scene3 .page3 .title {
  opacity: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.allsc .scene3.on .page3 .title,
.allsc .scene3.on .page3 .apply {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.allsc .scene4 {
  background-image: url(../images/720/bg4.jpg);
}
.allsc .scene4 .page4 {
  width: 100%;
  height: 100%;
  display: table;
}
.allsc .scene4 .page4 .ct {
  display: table-cell;
  vertical-align: middle;
}
.allsc .scene4 .page4 .advantage {
  width: 900px;
  margin: 80px auto 0;
  overflow: hidden;
}
.allsc .scene4 .page4 .advantage .group {
  width: 300px;
  height: 296px;
  position: relative;
  float: left;
}
.allsc .scene4 .page4 .advantage .group:before {
  width: 284px;
  height: 1px;
  background-color: #d6d6d6;
  left: 0;
  bottom: 0;
}
.allsc .scene4 .page4 .advantage .group:after {
  width: 1px;
  height: 284px;
  background-color: #d6d6d6;
  right: 0;
  top: 0;
}
.allsc .scene4 .page4 .advantage .group span {
  background: no-repeat center center;
  display: block;
  width: 42px;
  height: 34px;
  margin: 20px auto;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.allsc .scene4 .page4 .advantage .group h4 {
  font-size: 20px;
  margin-bottom: 45px;
  text-align: center;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.allsc .scene4 .page4 .advantage .group p {
  padding: 0 65px;
  font-size: 12px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  text-align: justify;
}
.allsc .scene4 .page4 .advantage .group.g1 span {
  background-image: url(../images/720/i1.png);
}
.allsc .scene4 .page4 .advantage .group.g2:before {
  width: 266px;
  left: 50%;
  margin-left: -133px;
}
.allsc .scene4 .page4 .advantage .group.g2 span {
  background-image: url(../images/720/i2.png);
}
.allsc .scene4 .page4 .advantage .group.g3:after {
  display: none;
}
.allsc .scene4 .page4 .advantage .group.g3:before {
  left: auto;
  right: 0;
}
.allsc .scene4 .page4 .advantage .group.g3 span {
  background-image: url(../images/720/i3.png);
}
.allsc .scene4 .page4 .advantage .group.g4:before {
  display: none;
}
.allsc .scene4 .page4 .advantage .group.g4:after {
  top: auto;
  bottom: 0;
}
.allsc .scene4 .page4 .advantage .group.g4 span {
  background-image: url(../images/720/i4.png);
}
.allsc .scene4 .page4 .advantage .group.g5:before {
  display: none;
}
.allsc .scene4 .page4 .advantage .group.g5:after {
  top: auto;
  bottom: 0;
}
.allsc .scene4 .page4 .advantage .group.g5 span {
  background-image: url(../images/720/i5.png);
}
.allsc .scene4 .page4 .advantage .group.g6:after,
.allsc .scene4 .page4 .advantage .group.g6:before {
  display: none;
}
.allsc .scene4 .page4 .advantage .group.g6 span {
  background-image: url(../images/720/i6.png);
}
.allsc .scene4 .page4 .advantage .group.g6 p {
  text-align: center;
}
.allsc .scene4 .page4 .advantage .group:hover h4 {
  color: #24aa38;
}
.allsc .scene4 .page4 .advantage .group:hover p {
  color: #24aa38;
}
.allsc .scene4 .page4 .advantage .group:hover.g1 span {
  background-image: url(../images/720/i11.png);
}
.allsc .scene4 .page4 .advantage .group:hover.g2 span {
  background-image: url(../images/720/i22.png);
}
.allsc .scene4 .page4 .advantage .group:hover.g3 span {
  background-image: url(../images/720/i33.png);
}
.allsc .scene4 .page4 .advantage .group:hover.g4 span {
  background-image: url(../images/720/i44.png);
}
.allsc .scene4 .page4 .advantage .group:hover.g5 span {
  background-image: url(../images/720/i55.png);
}
.allsc .scene4 .page4 .advantage .group:hover.g6 span {
  background-image: url(../images/720/i66.png);
}
@media (max-width:1367px) {
  .allsc .scene4 .page4 .advantage {
    margin-top: 40px;
  }
  .allsc .scene4 .page4 .advantage .group {
    height: 220px;
  }
  .allsc .scene4 .page4 .advantage .group span {
    margin: 10px auto;
  }
  .allsc .scene4 .page4 .advantage .group h4 {
    margin-bottom: 10px;
  }
}
html.ie8 .allsc .scene4 .page4 .advantage {
  margin-top: 40px;
}
html.ie8 .allsc .scene4 .page4 .advantage .group {
  height: 220px;
}
html.ie8 .allsc .scene4 .page4 .advantage .group span {
  margin: 10px auto;
}
html.ie8 .allsc .scene4 .page4 .advantage .group h4 {
  margin-bottom: 10px;
}
.allsc .scene4 .page4 .title {
  opacity: 0;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.allsc .scene4 .page4 .group.g1,
.allsc .scene4 .page4 .group.g4,
.allsc .scene4 .page4 .group.g3,
.allsc .scene4 .page4 .group.g6 {
  -webkit-transition: 0.8s all ease-in-out;
  transition: 0.8s all ease-in-out;
  opacity: 0;
  -webkit-transform: translate(0, -600px);
  transform: translate(0, -600px);
}
.allsc .scene4 .page4 .group.g2,
.allsc .scene4 .page4 .group.g5 {
  -webkit-transition: 0.8s all ease-in-out;
  transition: 0.8s all ease-in-out;
  opacity: 0;
  -webkit-transform: translate(0, 600px);
  transform: translate(0, 600px);
}
.allsc .scene4 .page4 .group:before,
.allsc .scene4 .page4 .group:after {
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out 1s;
  transition: 0.4s all ease-in-out 1s;
}
.allsc .scene4.on .page4 .title,
.allsc .scene4.on .page4 .group {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.allsc .scene4.on .page4 .title:before,
.allsc .scene4.on .page4 .group:before,
.allsc .scene4.on .page4 .title:after,
.allsc .scene4.on .page4 .group:after {
  opacity: 1;
}
.allsc .scene5 {
  background-image: url(../images/720/bg5.jpg);
}
.allsc .scene5 .page5 {
  display: table;
  width: 100%;
  height: 100%;
}
.allsc .scene5 .page5 .ct {
  display: table-cell;
  vertical-align: middle;
}
.allsc .scene5 .page5 .ct .btm-intro {
  position: relative;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out 0.4s;
  transition: 0.4s all ease-in-out 0.4s;
}
.allsc .scene5 .page5 .ct .btm-intro > p {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  display: none;
}
.allsc .scene5 .page5 .ct .btm-intro > p.on {
  display: block;
}
.allsc .scene5 .page5 .title {
  text-align: center;
  color: #fff;
  -webkit-transform: translate(0, -100px);
  transform: translate(0, -100px);
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out 0.4s;
  transition: 0.4s all ease-in-out 0.4s;
}
.allsc .scene5 .page5 .advantage-intro {
  position: relative;
  width: 800px;
  height: 200px;
  margin: 90px auto;
}
@media (max-width:1367px) {
  .allsc .scene5 .page5 .advantage-intro {
    margin: 50px auto;
  }
}
html.ie8 .allsc .scene5 .page5 .advantage-intro {
  margin: 50px auto;
}
.allsc .scene5 .page5 .group {
  width: 200px;
  height: 200px;
  text-align: center;
}
.allsc .scene5 .page5 .group span {
  width: 136px;
  height: 136px;
  position: relative;
  display: block;
  margin: 0 auto;
  /*b { position: absolute; .size(50%,0); .transition(.4s all ease .4s); overflow: hidden;
                        &.cl { top: 0; left: 0;
                            &:before { left: 0; top: 0; width: 136px; height: 136px; border: 3px solid #29d543; border-right: none; border-radius: 136px; }
                        }
                        &.cr { bottom: 0; right: 0;
                            &:after { right: 0; bottom: 0; width: 136px; height: 136px; border: 3px solid #29d543; border-left: none; border-radius: 136px; }
                        }
                    }*/
}
.allsc .scene5 .page5 .group span i {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/720/icon.png);
  background-repeat: no-repeat;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.allsc .scene5 .page5 .group span u {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  overflow: hidden;
}
.allsc .scene5 .page5 .group span u.cl {
  bottom: 0;
  left: 0;
}
.allsc .scene5 .page5 .group span u.cl:before {
  left: 0;
  bottom: 0;
  width: 136px;
  height: 136px;
  border: 3px solid #fff;
  border-radius: 136px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.allsc .scene5 .page5 .group span u.cr {
  top: 0;
  right: 0;
}
.allsc .scene5 .page5 .group span u.cr:after {
  right: 0;
  top: 0;
  width: 136px;
  height: 136px;
  border: 3px solid #fff;
  border-left: none;
  border-radius: 136px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.allsc .scene5 .page5 .group img {
  width: auto !important;
  display: inline-block;
}
.allsc .scene5 .page5 .group p {
  font-size: 26px;
  color: #fff;
  margin-top: 25px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.allsc .scene5 .page5 .group.g1 span i {
  background-position: 0 0px;
}
.allsc .scene5 .page5 .group.g2 span i {
  background-position: 0 -136px;
}
.allsc .scene5 .page5 .group.g3 span i {
  background-position: 0 -272px;
}
.allsc .scene5 .page5 .group.g4 span i {
  background-position: 0 -408px;
}
.allsc .scene5 .page5 .group.g5 span i {
  background-position: 0 -544px;
}
.allsc .scene5 .page5 .group:hover.g1 span i {
  background-position: -137px 0px;
}
.allsc .scene5 .page5 .group:hover.g2 span i {
  background-position: -137px -136px;
}
.allsc .scene5 .page5 .group:hover.g3 span i {
  background-position: -137px -272px;
}
.allsc .scene5 .page5 .group:hover.g4 span i {
  background-position: -137px -408px;
}
.allsc .scene5 .page5 .group:hover.g5 span i {
  background-position: -137px -544px;
}
.allsc .scene5 .page5 .group:hover span u.cl:before,
.allsc .scene5 .page5 .group:hover span u.cr:after {
  border-color: #24aa38;
}
.allsc .scene5 .page5 .group:hover span b {
  height: 100%;
}
.allsc .scene5 .page5 .group:hover p {
  color: #29d543;
}
.allsc .scene5 .page5 .owl-nav {
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out 0.4s;
  transition: 0.4s all ease-in-out 0.4s;
}
.allsc .scene5 .page5 .owl-nav div {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  width: 73px;
  height: 133px;
  position: absolute;
  top: 50%;
  margin-top: -66px;
  background-image: url(../images/720/arrow.png);
  background-repeat: no-repeat;
}
.allsc .scene5 .page5 .owl-nav div.owl-prev {
  left: -123px;
  background-position: left center;
}
.allsc .scene5 .page5 .owl-nav div.owl-next {
  right: -123px;
  background-position: right center;
}
.allsc .scene5.on .page5 .group span u {
  height: 100%;
}
.allsc .scene5.on .page5 .title,
.allsc .scene5.on .page5 .btm-intro {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.allsc .scene5.on .page5 .owl-nav {
  opacity: 1;
}
.allsc .scene6 {
  background-image: url(../images/720/bg6.jpg);
}
.allsc .scene6 .page6 {
  display: table;
  width: 100%;
  height: 100%;
}
.allsc .scene6 .page6 .share-page {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.allsc .scene6 .page6 .ct {
  display: table-cell;
  vertical-align: middle;
  padding-bottom: 90px;
}
.allsc .scene6 .page6 .title {
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.allsc .scene6 .page6 .service {
  width: 879px;
  height: 334px;
  margin: 80px auto 0;
}
@media (max-width:1367px) {
  .allsc .scene6 .page6 .service {
    margin-top: 40px;
  }
}
html.ie8 .allsc .scene6 .page6 .service {
  margin-top: 40px;
}
.allsc .scene6 .page6 .service .left {
  float: left;
  width: 408px;
  height: 286px;
  margin-top: 25px;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translate(-100px, 0);
  transform: translate(-100px, 0);
  -webkit-transition: 0.4s all ease-in-out 0.4s;
  transition: 0.4s all ease-in-out 0.4s;
}
.allsc .scene6 .page6 .service .left .group {
  width: 408px;
  height: 286px;
  text-align: center;
}
.allsc .scene6 .page6 .service .left .owl-controls {
  position: absolute;
  left: 0;
  width: 408px;
  bottom: 0;
  text-align: center;
}
.allsc .scene6 .page6 .service .left .owl-controls .owl-nav {
  display: none;
}
.allsc .scene6 .page6 .service .left .owl-controls .owl-dots .owl-dot {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 14px;
  background-color: #3e3e3e;
  margin: 8px 8px;
}
.allsc .scene6 .page6 .service .left .owl-controls .owl-dots .owl-dot.active {
  background-color: #24aa38;
}
.allsc .scene6 .page6 .service .right {
  float: right;
  width: 429px;
  height: 334px;
  background: url(../images/720/icon-service.png) left center no-repeat;
  position: relative;
  opacity: 0;
  -webkit-transform: translate(100px, 0);
  transform: translate(100px, 0);
  -webkit-transition: 0.4s all ease-in-out 0.4s;
  transition: 0.4s all ease-in-out 0.4s;
}
.allsc .scene6 .page6 .service .right p {
  font-size: 14px;
  width: 350px;
  right: 0;
  position: absolute;
  text-align: justify;
}
.allsc .scene6 .page6 .service .right p span {
  font-size: 18px;
  display: block;
}
.allsc .scene6 .page6 .service .right p.p1 {
  top: 0;
}
.allsc .scene6 .page6 .service .right p.p2 {
  top: 130px;
}
.allsc .scene6 .page6 .service .right p.p3 {
  top: 260px;
}
.allsc .scene6.on .page6 .title,
.allsc .scene6.on .page6 .share-page,
.allsc .scene6.on .page6 .left,
.allsc .scene6.on .page6 .right {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.mobile {
  overflow: hidden;
}
.mobile #menu li a i {
  background-color: transparent;
  border: 1px solid #fff;
}
.mobile #menu li.active a i,
.mobile #menu li:hover a i {
  background-color: #24aa38;
}
.mobile .scene1 {
  background-image: url(../images/mobile/bg1.jpg);
}
.mobile .scene1 .page1 {
  position: absolute;
  width: 824px;
  height: 703px;
  top: 50%;
  left: 50%;
  margin: -351.5px 0 0 -412px;
  margin-left: -520px;
}
.mobile .scene1 .page1 .cl {
  float: left;
  margin-right: 60px;
  opacity: 0;
  -webkit-transform: translate(-300px, 0);
  transform: translate(-300px, 0);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.mobile .scene1 .page1 .cr {
  float: left;
}
.mobile .scene1 .page1 .cr .href {
  text-align: left;
  margin-top: 45px;
  margin-bottom: 30px;
}
.mobile .scene1 .page1 .cr .href a {
  display: inline-block;
  text-align: center;
  margin-right: 20px;
  color: #666666;
  opacity: 0;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transition: 0.5s all ease-in-out 0.8s;
  transition: 0.5s all ease-in-out 0.8s;
}
.mobile .scene1 .page1 .cr .href a img {
  display: block;
  margin: 0 auto;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.mobile .scene1 .page1 .cr .href a:hover img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.mobile .scene1 .page1 .cr .slogen {
  opacity: 0;
  -webkit-transform: translate(300px, 0);
  transform: translate(300px, 0);
  -webkit-transition: 0.6s all ease 0.4s;
  transition: 0.6s all ease 0.4s;
}
.mobile .scene1 .page1 .cr .p1 {
  font-size: 20px;
  line-height: 40px;
  opacity: 0;
  -webkit-transform: translate(300px, 0);
  transform: translate(300px, 0);
  -webkit-transition: 0.6s all ease 0.5s;
  transition: 0.6s all ease 0.5s;
}
.mobile .scene1 .page1 .cr .p1 span {
  font-size: 38px;
  color: #ffae00;
}
.mobile .scene1 .page1 .cr .p2 {
  font-size: 18px;
  line-height: 40px;
  margin-bottom: 10px;
  opacity: 0;
  -webkit-transform: translate(300px, 0);
  transform: translate(300px, 0);
  -webkit-transition: 0.6s all ease 0.5s;
  transition: 0.6s all ease 0.5s;
}
.mobile .scene1 .page1 .cr .p2 span {
  color: #ff0002;
  font-size: 28px;
}
.mobile .scene1 .page1 .cr .btn {
  background-color: #42b653;
  padding: 5px 10px;
  color: #fff;
  display: inline-block;
  border-radius: 20px;
  font-size: 20px;
  margin-bottom: 5px;
  opacity: 0;
  -webkit-transform: translate(300px, 0);
  transform: translate(300px, 0);
  -webkit-transition: 0.6s all ease 0.6s;
  transition: 0.6s all ease 0.6s;
}
@media (max-width:1367px) {
  .mobile .scene1 .page1 {
    height: 590px;
    margin-top: -265px;
  }
  .mobile .scene1 .page1 .cr .href {
    margin-bottom: 0;
    margin-top: 0;
  }
  .mobile .scene1 .page1 .cr .p1 {
    line-height: 30px;
  }
  .mobile .scene1 .page1 .cr .p2 {
    line-height: 30px;
    margin: 0;
  }
}
html.ie8 .mobile .scene1 .page1 {
  height: 590px;
  margin-top: -265px;
}
html.ie8 .mobile .scene1 .page1 .cr .href {
  margin-bottom: 0;
  margin-top: 0;
}
html.ie8 .mobile .scene1 .page1 .cr .p1 {
  line-height: 30px;
}
html.ie8 .mobile .scene1 .page1 .cr .p2 {
  line-height: 30px;
  margin: 0;
}
.mobile .scene1.on .page1 .cl,
.mobile .scene1.on .page1 .p1,
.mobile .scene1.on .page1 .p2,
.mobile .scene1.on .page1 .btn,
.mobile .scene1.on .page1 .slogen {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.mobile .scene1.on .page1 .href a {
  opacity: 1;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.mobile .scene2 {
  background-image: url(../images/mobile/bg2.jpg);
}
.mobile .scene2 .page2 {
  position: absolute;
  width: 1001px;
  height: 630px;
  top: 50%;
  left: 50%;
  margin: -315px 0 0 -500.5px;
  margin-left: -480px;
}
.mobile .scene2 .page2 .title {
  text-align: center;
  margin-bottom: 100px;
  opacity: 0;
  -webkit-transform: translate(0, -100px);
  transform: translate(0, -100px);
  -webkit-transition: 0.4s all ease-in-out 0.8s;
  transition: 0.4s all ease-in-out 0.8s;
}
.mobile .scene2 .page2 .cl {
  width: 480px;
  height: 314px;
  float: left;
  margin-top: 30px;
  opacity: 0;
  -webkit-transform: translate(-300px, 0);
  transform: translate(-300px, 0);
  -webkit-transition: 0.6s all ease;
  transition: 0.6s all ease;
}
.mobile .scene2 .page2 .cl .p1 {
  font-size: 20px;
  color: #fff000;
  line-height: 32px;
  margin-bottom: 25px;
}
.mobile .scene2 .page2 .cl .p2 {
  color: #333333;
  font-size: 16px;
  line-height: 36px;
}
.mobile .scene2 .page2 .cr {
  float: left;
  width: 521px;
  height: 366px;
  position: relative;
}
.mobile .scene2 .page2 .cr img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.mobile .scene2 .page2 .cr img.s1 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.mobile .scene2 .page2 .cr img.s2 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.mobile .scene2 .page2 .cr img.s3 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.mobile .scene2 .page2 .cr img.s4 {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.mobile .scene2 .page2 .cr img.s5 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.mobile .scene2 .page2 a {
  width: 374px;
  height: 60px;
  left: 50%;
  margin-left: -187px;
  bottom: 0;
  display: block;
  text-align: center;
  line-height: 60px;
  position: absolute;
  color: #000000;
  font-size: 18px;
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: 0.4s all ease-in-out 0.8s;
  transition: 0.4s all ease-in-out 0.8s;
}
.mobile .scene2 .page2 a:before {
  width: 100%;
  height: 18px;
  border: 1px solid #000000;
  border-bottom: 0;
  top: 0;
  left: 0;
}
.mobile .scene2 .page2 a:after {
  width: 100%;
  height: 10px;
  border: 1px solid #000000;
  border-top: 0;
  bottom: 0;
  left: 0;
}
@media (max-width:1367px) {
  .mobile .scene2 .page2 {
    height: 590px;
    margin-top: -245px;
  }
  .mobile .scene2 .page2 .title {
    margin-bottom: 20px;
  }
  .mobile .scene2 .page2 a {
    bottom: 50px;
  }
}
html.ie8 .mobile .scene2 .page2 {
  height: 590px;
  margin-top: -245px;
}
html.ie8 .mobile .scene2 .page2 .title {
  margin-bottom: 20px;
}
html.ie8 .mobile .scene2 .page2 a {
  bottom: 50px;
}
.mobile .scene2.on .page2 .cl,
.mobile .scene2.on .page2 .cr img,
.mobile .scene2.on .page2 .title,
.mobile .scene2.on .page2 a {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.mobile .scene3 {
  background-image: url(../images/mobile/bg3.jpg);
}
.mobile .scene3 .page3 {
  position: absolute;
  width: 945px;
  height: 640px;
  top: 50%;
  left: 50%;
  margin: -320px 0 0 -472.5px;
}
.mobile .scene3 .page3 .title {
  color: #ffffff;
  text-align: center;
  font-size: 48px;
  margin-bottom: 25px;
  opacity: 0;
  -webkit-transform: translate(0, -100px);
  transform: translate(0, -100px);
  -webkit-transition: 0.4s all ease-in-out 0.8s;
  transition: 0.4s all ease-in-out 0.8s;
}
.mobile .scene3 .page3 p {
  text-align: center;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  -webkit-transform: translate(0, -100px);
  transform: translate(0, -100px);
  -webkit-transition: 0.4s all ease-in-out 0.8s;
  transition: 0.4s all ease-in-out 0.8s;
}
.mobile .scene3 .page3 p span {
  font-size: 22px;
  color: #24aa38;
}
.mobile .scene3 .page3 p.p2 {
  margin-bottom: 40px;
  margin-top: 5px;
}
.mobile .scene3 .page3 .cl {
  float: left;
  width: 427px;
  height: 398px;
  opacity: 0;
  -webkit-transform: translate(-300px, 0);
  transform: translate(-300px, 0);
  -webkit-transition: 0.6s all ease;
  transition: 0.6s all ease;
}
.mobile .scene3 .page3 .cl .m1 {
  margin-right: 25px;
  margin-left: 40px;
}
.mobile .scene3 .page3 .cr {
  float: right;
  opacity: 0;
  -webkit-transform: translate(300px, 0);
  transform: translate(300px, 0);
  -webkit-transition: 0.6s all ease;
  transition: 0.6s all ease;
}
.mobile .scene3 .page3 .btn {
  width: 374px;
  height: 60px;
  left: 50%;
  margin-left: -187px;
  bottom: 0;
  display: block;
  text-align: center;
  line-height: 60px;
  position: absolute;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: 0.4s all ease-in-out 0.8s;
  transition: 0.4s all ease-in-out 0.8s;
}
.mobile .scene3 .page3 .btn:before {
  width: 100%;
  height: 18px;
  border: 1px solid #8a8d92;
  border-bottom: 0;
  top: 0;
  left: 0;
}
.mobile .scene3 .page3 .btn:after {
  width: 100%;
  height: 10px;
  border: 1px solid #8a8d92;
  border-top: 0;
  bottom: 0;
  left: 0;
}
.mobile .scene3 .page3 .btn a {
  padding: 5px 30px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: left center;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  color:#fff;
}
.mobile .scene3 .page3 .btn a.a1 {
  background-image: url(../images/mobile/icon-phone.png);
}
.mobile .scene3 .page3 .btn a.a2 {
  background-image: url(../images/mobile/icon-qq.png);
}
.mobile .scene3 .page3 .btn a:hover {
  color: #24aa38;
}
.mobile .scene3 .page3 .btn a:hover.a1 {
  background-image: url(../images/mobile/icon-phone1.png);
}
.mobile .scene3 .page3 .btn a:hover.a2 {
  background-image: url(../images/mobile/icon-qq1.png);
}
@media (max-width:1367px) {
  .mobile .scene3 .page3 {
    height: 590px;
    margin-top: -265px;
  }
  .mobile .scene3 .page3 .title {
    margin: 0;
  }
  .mobile .scene3 .page3 p.p2 {
    margin: 0 0 10px 0;
  }
  .mobile .scene3 .page3 .btn {
    bottom: 30px;
  }
}
html.ie8 .mobile .scene3 .page3 {
  height: 590px;
  margin-top: -265px;
}
html.ie8 .mobile .scene3 .page3 .title {
  margin: 0;
}
html.ie8 .mobile .scene3 .page3 p.p2 {
  margin: 0 0 10px 0;
}
html.ie8 .mobile .scene3 .page3 .btn {
  bottom: 30px;
}
.mobile .scene3.on .page3 .cl,
.mobile .scene3.on .page3 p,
.mobile .scene3.on .page3 .cr,
.mobile .scene3.on .page3 .title,
.mobile .scene3.on .page3 .btn {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.mobile .scene4 {
  background-image: url(../images/mobile/bg4.jpg);
}
.mobile .scene4 .page4 {
  position: absolute;
  width: 1000px;
  height: 661px;
  top: 50%;
  left: 50%;
  margin: -330.5px 0 0 -500px;
  text-align: center;
}
.mobile .scene4 .page4 .title {
  font-size: 48px;
  color: #24aa38;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in;
  transition: 0.4s all ease-in;
}
.mobile .scene4 .page4 .tips {
  display: inline-block;
  position: relative;
  font-size: 34px;
  margin-top: 34px;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in;
  transition: 0.4s all ease-in;
}
.mobile .scene4 .page4 .tips:before,
.mobile .scene4 .page4 .tips:after {
  width: 37px;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  background-color: #000;
}
.mobile .scene4 .page4 .tips:before {
  left: -40px;
}
.mobile .scene4 .page4 .tips:after {
  right: -40px;
}
.mobile .scene4 .page4 .ct {
  margin-top: 30px;
  overflow: hidden;
}
.mobile .scene4 .page4 .ct .group {
  float: left;
  width: 250px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  opacity: 0;
  -webkit-transition: 0.6s all ease-in 0.4s;
  transition: 0.6s all ease-in 0.4s;
  overflow: hidden;
}
.mobile .scene4 .page4 .ct .group u {
  overflow: hidden;
  width: 250px;
  height: 270px;
  display: block;
}
.mobile .scene4 .page4 .ct .group img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.mobile .scene4 .page4 .ct .group span {
  width: 250px;
  height: 76px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background-color: #24aa38;
  display: table;
  font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.mobile .scene4 .page4 .ct .group span i {
  display: table-cell;
  vertical-align: middle;
  line-height: 20px;
  font-weight: bold;
}
.mobile .scene4 .page4 .ct .group.g1,
.mobile .scene4 .page4 .ct .group.g3 {
  -webkit-transform: translate(0, -346px);
  transform: translate(0, -346px);
}
.mobile .scene4 .page4 .ct .group.g2,
.mobile .scene4 .page4 .ct .group.g4 {
  -webkit-transform: translate(0, 346px);
  transform: translate(0, 346px);
}
.mobile .scene4 .page4 .ct .group:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.mobile .scene4 .page4 p {
  color: #666666;
  font-size: 16px;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in;
  transition: 0.4s all ease-in;
}
.mobile .scene4 .page4 .title-btm {
  font-size: 12px;
  position: relative;
  margin-top: 40px;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in;
  transition: 0.4s all ease-in;
}
.mobile .scene4 .page4 .title-btm:before {
  width: 100%;
  height: 1px;
  background-color: #d5d3d4;
  bottom: -10px;
  left: 0;
}
.mobile .scene4 .page4 .title-btm:after {
  width: 100px;
  height: 6px;
  background-color: #d5d3d4;
  bottom: -12px;
  left: 50%;
  margin-left: -50px;
}
@media (max-width:1367px) {
  .mobile .scene4 .page4 {
    height: 590px;
    margin-top: -280px;
  }
  .mobile .scene4 .page4 .tips,
  .mobile .scene4 .page4 .title-btm {
    margin: 10px 0 0 0;
  }
  .mobile .scene4 .page4 .ct {
    margin: 0;
  }
}
html.ie8 .mobile .scene4 .page4 {
  height: 590px;
  margin-top: -280px;
}
html.ie8 .mobile .scene4 .page4 .tips,
html.ie8 .mobile .scene4 .page4 .title-btm {
  margin: 10px 0 0 0;
}
html.ie8 .mobile .scene4 .page4 .ct {
  margin: 0;
}
.mobile .scene4.on .page4 .group.g1,
.mobile .scene4.on .page4 .group.g2,
.mobile .scene4.on .page4 .group.g3,
.mobile .scene4.on .page4 .group.g4 {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.mobile .scene4.on .page4 .title,
.mobile .scene4.on .page4 .tips,
.mobile .scene4.on .page4 .title-btm,
.mobile .scene4.on .page4 p {
  opacity: 1;
}
.mobile .scene5 {
  background-image: url(../images/mobile/bg5.png);
  background-color: #f1f0ed;
}
.mobile .scene5 .page5 {
  width: 100%;
  height: 100%;
  display: table;
}
.mobile .scene5 .page5 .share-page {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.mobile .scene5 .page5 .ct {
  display: table-cell;
  vertical-align: middle;
  padding-bottom: 0px;
}
.mobile .scene5 .page5 .ct .title {
  font-size: 48px;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  opacity: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.mobile .scene5 .page5 .ct .title u {
  font-size: 30px;
  font-weight: normal;
  display: block;
}
.mobile .scene5 .page5 .ct .mobile-info {
  width: 900px;
  margin: 0 auto;
  position: relative;
  -webkit-transform: translate(0, 300px);
  transform: translate(0, 300px);
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out 0.4s;
  transition: 0.6s all ease-in-out 0.4s;
  overflow:hidden;
}
.mobile .scene5 .page5 .ct .mobile-info .group {
  background: url(../images/mobile/mobile-bg.png) no-repeat top center;
}
.mobile .scene5 .page5 .ct .mobile-info .group a {
  display: block;
  width: 208px;
  height: 223px;
  padding: 47px 0 0 17px;
}
.mobile .scene5 .page5 .ct .mobile-info .group a span {
  width: 175px;
  height: 150px;
  position: relative;
  overflow: hidden;
  border: 1px solid #000;
  border-bottom: 0;
  display: table;
}
.mobile .scene5 .page5 .ct .mobile-info .group a span > img {
  position: absolute;
  top: 1px;
  left: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  width:80%;
  margin-left:-40%;
}
.mobile .scene5 .page5 .ct .mobile-info .group a span i {
  display: table-cell;
  vertical-align: middle;
  background-color: #fff;
  text-align: center;
  opacity: 0;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
html.ie8 .mobile .scene5 .page5 .ct .mobile-info .group a span i {
  display: none;
}
.mobile .scene5 .page5 .ct .mobile-info .group a span i img {
  width: auto;
  display: inline-block;
}
.mobile .scene5 .page5 .ct .mobile-info .group span {
  color: #333;
  display: block;
  margin: 15px 0 30px;
  font-size: 16px;
  padding: 0 5px;
  text-align:center;
}
.mobile .scene5 .page5 .ct .mobile-info .group small {
  color: #999;
  border-bottom: 1px solid #d9d9d9;
  font-size: 12px;
  display: block;
  padding: 0 5px 15px;
}
.mobile .scene5 .page5 .ct .mobile-info .group:hover span > img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  opacity: 0;
}
.mobile .scene5 .page5 .ct .mobile-info .group:hover span i {
  opacity: 1;
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}
html.ie8 .mobile .scene5 .page5 .ct .mobile-info .group:hover span i {
  display: table-cell;
}
.mobile .scene5 .page5 .ct .mobile-info .owl-controls {
  text-align: center;
  margin-top: 10px;
}
.mobile .scene5 .page5 .ct .mobile-info .owl-prev,
.mobile .scene5 .page5 .ct .mobile-info .owl-next {
  display: inline-block;
  width: 27px;
  height: 27px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/mobile/arrow.png);
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  margin: 0 5px;
}
.mobile .scene5 .page5 .ct .mobile-info .owl-prev {
  background-position: left center;
}
.mobile .scene5 .page5 .ct .mobile-info .owl-next {
  background-position: right center;
}
html.ie8 .mobile .scene5 .page5 .ct .mobile-info {
  height: 360px;
}
html.ie8 .mobile .scene5 .page5 .ct .mobile-info .owl-controls {
  text-align: center;
  margin-top: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.mobile .scene5.on .page5 .title,
.mobile .scene5.on .page5 .mobile-info {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.mobile .scene5.on .page5 .share-page {
  opacity: 1;
}
.build {
  overflow: hidden;
}
.build .banner {
  width: 100%;
  /*.group, .group img { width: 100%; }*/
}
.build .banner .owl-item .group {
  position: relative;
}
.build .banner .owl-item .group span,
.build .banner .owl-item .group i {
  position: absolute;
  top: 0;
  left: 0;
}
.build .banner .owl-item .g1 span {
  -webkit-transform: translate(0, -150px);
  transform: translate(0, -150px);
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out 0.5s;
  transition: 0.6s all ease-in-out 0.5s;
}
.build .banner .owl-item .g1 i {
  -webkit-transform: translate(0, 150px);
  transform: translate(0, 150px);
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out 0.5s;
  transition: 0.6s all ease-in-out 0.5s;
}
.build .banner .owl-item .g2 span {
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out 0.4s;
  transition: 0.6s all ease-in-out 0.4s;
}
.build .banner .owl-item .g2 i {
  -webkit-transform: translate(0, -100px);
  transform: translate(0, -100px);
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out 0.6s;
  transition: 0.6s all ease-in-out 0.6s;
}
.build .banner .owl-item.active .g1 span,
.build .banner .owl-item.active .g1 i {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition-delay: 0;
  transition-delay: 0;
}
.build .banner .owl-item.active .g2 span,
.build .banner .owl-item.active .g2 i {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition-delay: 0;
  transition-delay: 0;
}
.build #mouse {
  cursor: pointer;
}
.build .apply .group {
  display: inline-block;
  width: 25%;
  background-color: #fff;
  float: left;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.build .apply .group > span {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.build .apply .group > span:before {
  width: 100%;
  height: 100%;
  filter: none;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBRTFGODA3REYxNTExMUUzQTY2QzlGODcwRDZGOEQ0NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBRTFGODA3RUYxNTExMUUzQTY2QzlGODcwRDZGOEQ0NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFFMUY4MDdCRjE1MTExRTNBNjZDOUY4NzBENkY4RDQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkFFMUY4MDdDRjE1MTExRTNBNjZDOUY4NzBENkY4RDQ2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+qHf1jAAAAA9JREFUeNpiYGBgWAwQYAAAqACksWVCrgAAAABJRU5ErkJggg==');
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 10;
}
html.ie8 .build .apply .group > span:before {
  display: none;
}
.build .apply .group > span img {
  width: 100%;
}
.build .apply .group p {
  font-size: 12px;
  color: #000;
  height: 88px;
  font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  line-height: normal;
  margin: 0 0 20px;
  padding: 20px 10px 0;
}
.build .apply .group p span {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}
.build .apply .group:hover > span:before {
  opacity: 1;
}
html.ie8 .build .apply .group:hover > span:before {
  display: block;
}
.build .slogen {
  text-align: center;
  margin: 65px 0 50px;
}
.build .slogen .ct {
  text-align: center;
}
.build .slogen .ct .group {
  display: inline-block;
  margin: 0 50px 50px;
  position: relative;
}
.build .slogen .ct .group i {
  float: left;
  width: 44px;
  height: 75px;
  display: block;
  background-repeat: no-repeat;
  background-image: url(../images/build/math.png);
  background-position: 0 0;
}
.build .slogen .ct .group i.i1 {
  -webkit-transition: 0.8s all ease-in-out;
  transition: 0.8s all ease-in-out;
}
.build .slogen .ct .group i.i2 {
  -webkit-transition: 0.8s all ease-in-out 0.1s;
  transition: 0.8s all ease-in-out 0.1s;
}
.build .slogen .ct .group i.i3 {
  -webkit-transition: 0.8s all ease-in-out 0.2s;
  transition: 0.8s all ease-in-out 0.2s;
}
.build .slogen .ct .group i.i4 {
  -webkit-transition: 0.8s all ease-in-out 0.3s;
  transition: 0.8s all ease-in-out 0.3s;
}
.build .slogen .ct .group i.i5 {
  -webkit-transition: 0.8s all ease-in-out 0.4s;
  transition: 0.8s all ease-in-out 0.4s;
}
.build .slogen .ct .group i.i6 {
  -webkit-transition: 0.8s all ease-in-out 0.5s;
  transition: 0.8s all ease-in-out 0.5s;
}
.build .slogen .ct .group i.i7 {
  -webkit-transition: 0.8s all ease-in-out 0.6s;
  transition: 0.8s all ease-in-out 0.6s;
}
.build .slogen .ct .group i.i8 {
  -webkit-transition: 0.8s all ease-in-out 0.7s;
  transition: 0.8s all ease-in-out 0.7s;
}
.build .slogen .ct .group img {
  margin-left: 12px;
}
.build .slogen .ct .group.g1 {
  margin-left: 0;
}
.build .slogen .ct .group.g3 {
  margin-right: 0;
}
.build .slogen .ct .group:after {
  top: 50%;
  margin-top: -11px;
  width: 22px;
  height: 23px;
  background-image: url(../images/build/plus.png);
  right: -61px;
}
.build .slogen .ct .group.g3:after {
  display: none;
}
.build .slogen.on .group i.i1 {
  background-position: 0 -825px;
}
.build .slogen.on .group i.i2 {
  background-position: 0 -750px;
}
.build .slogen.on .group i.i3 {
  background-position: 0 -975px;
}
.build .slogen.on .group i.i4 {
  background-position: 0 -750px;
}
.build .slogen.on .group i.i5 {
  background-position: 0 -975px;
}
.build .slogen.on .group i.i6 {
  background-position: 0 -750px;
}
.build .slogen.on .group i.i7 {
  background-position: 0 -750px;
}
.build .slogen.on .group i.i8 {
  background-position: 0 -750px;
}
.build .build-zizhi {
  margin: 70px auto;
}
.build .build-zizhi h2 {
  font-size: 46px;
  color: #070002;
  text-align: center;
  font-weight: normal;
}
.build .build-zizhi h2 span {
  color: #d7d7d7;
  font-size: 18px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0;
}
.build .build-zizhi .ct {
  width: 1000px;
  height: 524px;
  margin: 0 auto;
}
.build .build-zizhi .zizhi1 {
  text-align: center;
  display: none;
}
.build .build-zizhi .zizhi1 h2 {
  font-size: 45px;
  color: #000;
  margin-bottom: 18px;
  font-weight: normal;
}
.build .build-zizhi .zizhi1 h3 {
  font-size: 26px;
  color: #000;
  margin: 18px 0;
  font-weight: normal;
}
.build .build-zizhi .zizhi1 h4 {
  text-align: center;
  margin: 55px auto 35px;
}
.build .build-zizhi .zizhi1 h4 img {
  width: auto;
  display: inline-block;
}
.build .build-zizhi .zizhi1 p {
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}
.build .build-zizhi .zizhi2 {
  padding-top: 40px;
  opacity: 1;
  position: relative;
}
.build .build-zizhi .zizhi2 a {
  position: absolute;
  filter: none;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozM0ZBMzRDOUYyQjMxMUUzOUJDM0I3NTI1MzQyRkIwQSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozM0ZBMzRDQUYyQjMxMUUzOUJDM0I3NTI1MzQyRkIwQSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMzRkEzNEM3RjJCMzExRTM5QkMzQjc1MjUzNDJGQjBBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjMzRkEzNEM4RjJCMzExRTM5QkMzQjc1MjUzNDJGQjBBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YBV7vQAAABBJREFUeNpi/P//PwNAgAEACQEC/2m8kPAAAAAASUVORK5CYII=');
}
.build .build-zizhi .zizhi2 a.a1 {
  width: 198px;
  height: 143px;
  top: 51px;
  left: 0px;
}
.build .build-zizhi .zizhi2 a.a2 {
  width: 196px;
  height: 270px;
  top: 49px;
  left: 219px;
}
.build .build-zizhi .zizhi2 a.a3 {
  width: 328px;
  height: 423px;
  top: 55px;
  left: 444px;
}
.build .build-zizhi .zizhi2 a.a4 {
  width: 196px;
  height: 263px;
  top: 215px;
  left: 2px;
}
.build .build-zizhi .zizhi2 a.a5 {
  width: 195px;
  height: 134px;
  top: 346px;
  left: 220px;
}
.build .build-zizhi .zizhi2 a.a6 {
  width: 201px;
  height: 130px;
  top: 51px;
  left: 795px;
}
.build .build-zizhi .zizhi2 a.a7 {
  width: 210px;
  height: 294px;
  top: 184px;
  left: 790px;
}
.build .build-zizhi .zizhi2 a:before {
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  border-top: 5px solid #24aa38;
  border-bottom: 5px solid #24aa38;
}
.build .build-zizhi .zizhi2 a:after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-left: 5px solid #24aa38;
  border-right: 5px solid #24aa38;
}
.build .build-zizhi .zizhi2 a:before,
.build .build-zizhi .zizhi2 a:after {
  opacity: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
html.ie8 .build .build-zizhi .zizhi2 a:before,
html.ie8 .build .build-zizhi .zizhi2 a:after {
  display: none;
}
.build .build-zizhi .zizhi2 a:hover:before,
.build .build-zizhi .zizhi2 a:hover:after {
  opacity: 1;
}
html.ie8 .build .build-zizhi .zizhi2 a:hover:before,
html.ie8 .build .build-zizhi .zizhi2 a:hover:after {
  display: block;
}
.build .build-zizhi .owl-prev,
.build .build-zizhi .owl-next {
  position: absolute;
  width: 52px;
  height: 98px;
  top: 50%;
  margin-top: -49px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  background-image: url(../images/build/arrow.png);
  background-repeat: no-repeat;
}
.build .build-zizhi .owl-prev {
  left: -100px;
  background-position: left center;
}
.build .build-zizhi .owl-next {
  right: -100px;
  background-position: right center;
}
@media (max-width:1367px) {
  .build .build-zizhi .owl-prev {
    left: 0;
    background-position: left center;
  }
  .build .build-zizhi .owl-next {
    right: 0;
    background-position: right center;
  }
}
.build .case-btn {
  position: absolute;
  width: 200px;
  height: 70px;
  top: 50%;
  left: 50%;
  margin: -35px 0 0 -100px;
  margin: 0;
  top: 64%;
  left: 71%;
  filter: none;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozM0ZBMzRDOUYyQjMxMUUzOUJDM0I3NTI1MzQyRkIwQSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozM0ZBMzRDQUYyQjMxMUUzOUJDM0I3NTI1MzQyRkIwQSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMzRkEzNEM3RjJCMzExRTM5QkMzQjc1MjUzNDJGQjBBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjMzRkEzNEM4RjJCMzExRTM5QkMzQjc1MjUzNDJGQjBBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YBV7vQAAABBJREFUeNpi/P//PwNAgAEACQEC/2m8kPAAAAAASUVORK5CYII=');
}
.build .tab-offset {
  width: 100%;
  height: 80px;
  position: relative;
}
.build .tab-btn {
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  right: 0;
  border-top: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
  line-height: 80px;
  text-align: center;
}
.build .tab-btn a {
  float: left;
  width: 25%;
  height: 100%;
  border-right: 1px solid #d0d0d0;
  background-color: #f6f6f6;
  font-size: 25px;
  color: #070002;
  position: relative;
  padding-left: 30px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.build .tab-btn a i {
  position: absolute;
  width: 34px;
  height: 38px;
  top: 50%;
  left: 50%;
  margin: -19px 0 0 -17px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: -80px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.build .tab-btn a i.i1 {
  background-image: url(../images/build/i1.png);
}
.build .tab-btn a i.i2 {
  background-image: url(../images/build/i2.png);
}
.build .tab-btn a i.i3 {
  background-image: url(../images/build/i3.png);
}
.build .tab-btn a i.i4 {
  background-image: url(../images/build/i4.png);
}
.build .tab-btn a:hover,
.build .tab-btn a.on {
  background-color: #fff;
}
.build .tab-btn a:hover i.i1,
.build .tab-btn a.on i.i1 {
  background-image: url(../images/build/i11.png);
}

.build .tab-btn a:hover i.i2,
.build .tab-btn a.on i.i2 {
  background-image: url(../images/build/i22.png);
}
.build .tab-btn a:hover i.i3,
.build .tab-btn a.on i.i3 {
  background-image: url(../images/build/i33.png);
}
.build .tab-btn a:hover i.i4,
.build .tab-btn a.on i.i4 {
  background-image: url(../images/build/i44.png);
}
.build .tab-btn a.last {
  border: 0;
}
.build .tab-btn.on {
  position: fixed;
  z-index: 9998;
  padding-left: 160px;
}
.build .partners h2 {
  font-size: 44px;
  color: #070002;
  text-align: center;
  font-weight: normal;
}
.build .partners h2 span {
  color: #d7d7d7;
  font-size: 30px;
  display: block;
  text-transform: uppercase;
}
.build .partners div {
  text-align: center;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  margin: 20px 0 100px;
}
.build .partners div a {
  display: inline-block;
  width: 20%;
  height: 64px;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  position: relative;
}
.build .partners div a:after {
  height: 64px;
  width: 1px;
  background-color: #dadada;
  left: 0;
}
.build .partners div a.a1 {
  background-image: url(../images/build/i1.jpg);
}
.build .partners div a.a2 {
  background-image: url(../images/build/i2.jpg);
}
.build .partners div a.a3 {
  background-image: url(../images/build/i3.jpg);
}
.build .partners div a.a4 {
  background-image: url(../images/build/i4.jpg);
}
.build .partners div a.a5 {
  background-image: url(../images/build/i5.jpg);
}
.build .partners div a:hover.a1 {
  background-image: url(../images/build/i11.jpg);
}
.build .partners div a:hover.a2 {
  background-image: url(../images/build/i22.jpg);
}
.build .partners div a:hover.a3 {
  background-image: url(../images/build/i33.jpg);
}
.build .partners div a:hover.a4 {
  background-image: url(../images/build/i44.jpg);
}
.build .partners div a:hover.a5 {
  background-image: url(../images/build/i55.jpg);
}
.build .perfect {
  width: 100%;
  height: 588px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/build/perfect.jpg);
}
.build .perfect .advantage-intro {
  position: relative;
  width: 800px;
  height: 200px;
  margin: 0 auto;
}
.build .perfect h2 {
  font-size: 44px;
  color: #fff;
  text-align: center;
  font-weight: normal;
  padding: 80px 0 70px;
}
.build .perfect h2 span {
  color: #7a7a7a;
  font-size: 26px;
  display: block;
  text-transform: uppercase;
}
.build .perfect .group {
  width: 200px;
  height: 200px;
  text-align: center;
}
.build .perfect .group span {
  width: 138px;
  height: 138px;
  position: relative;
  display: block;
  margin: 0 auto;
}
.build .perfect .group span i {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/build/p1.png);
  background-repeat: no-repeat;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.build .perfect .group img {
  width: auto !important;
  display: inline-block;
}
.build .perfect .group p {
  font-size: 26px;
  color: #fff;
  margin-top: 25px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.build .perfect .group.g1 span i {
  background-position: 0 0px;
}
.build .perfect .group.g2 span i {
  background-position: 0 -138px;
}
.build .perfect .group.g3 span i {
  background-position: 0 -276px;
}
.build .perfect .group.g4 span i {
  background-position: 0 -414px;
}
.build .perfect .group.g5 span i {
  background-position: 0 -552px;
}
.build .perfect .group.g6 span i {
  background-position: 0 -690px;
}
.build .perfect .group.g7 span i {
  background-position: 0 -828px;
}
.build .perfect .group:hover span i {
  background-image: url(../images/build/p2.png);
}
.build .perfect .group:hover p {
  color: #29d543;
}
.build .perfect .owl-nav div {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  width: 73px;
  height: 133px;
  position: absolute;
  top: 50%;
  margin-top: -66px;
  background-image: url(../images/720/arrow.png);
  background-repeat: no-repeat;
}
.build .perfect .owl-nav div.owl-prev {
  left: -123px;
  background-position: left center;
}
.build .perfect .owl-nav div.owl-next {
  right: -123px;
  background-position: right center;
}
.build .bar-rt {
  right: 0 !important;
  z-index: 9999;
}
.vi {
  overflow: hidden;
}
.vi #menu li a i {
  background-color: transparent;
  border: 1px solid #fff;
}
.vi #menu li.active a i,
.vi #menu li:hover a i {
  background-color: #24aa38;
}
.vi .scene1 {
  background-image: url(../images/vi/bg1.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.vi .scene1 .page1 {
  width: 100%;
  height: 100%;
  position: absolute;
}
.vi .scene1 .page1 div {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.vi .scene1 .page1 div.s1 {
  background-image: url(../images/vi/slogen.png);
  opacity: 0;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
}
.vi .scene1 .page1 div.s2 {
  background-image: url(../images/vi/s2.png);
  opacity: 0;
  -webkit-transform: translate(-50px, 0);
  transform: translate(-50px, 0);
  -webkit-transition: 0.6s all ease-in-out 0.6s;
  transition: 0.6s all ease-in-out 0.6s;
}
.vi .scene1 .page1 div.s3 {
  background-image: url(../images/vi/s3.png);
  opacity: 0;
  -webkit-transform: translate(50px, 0);
  transform: translate(50px, 0);
  -webkit-transition: 0.6s all ease-in-out 0.6s;
  transition: 0.6s all ease-in-out 0.6s;
}
.vi .scene1 .page1 div.s4 {
  background-image: url(../images/vi/s4.png);
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out 0.8s;
  transition: 0.6s all ease-in-out 0.8s;
}
.vi .scene1 .page1 div.s5 {
  background-image: url(../images/vi/s5.png);
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out 0.9s;
  transition: 0.6s all ease-in-out 0.9s;
}
.vi .scene1 .page1 div.s6 {
  background-image: url(../images/vi/s6.png);
}
.vi .scene1.on .page1 div {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.vi .scene2 {
  background-image: url(../images/vi/bg2.jpg);
}
.vi .scene2 .page2 {
  position: absolute;
  width: 900px;
  height: 650px;
  top: 50%;
  left: 50%;
  margin: -325px 0 0 -450px;
  text-align: center;
}
.vi .scene2 .page2 h2 {
  font-size: 50px;
  color: #24aa38;
  opacity: 0;
  -webkit-transform: translate(-100px, 0);
  transform: translate(-100px, 0);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.vi .scene2 .page2 h3 {
  font-size: 34px;
  margin: 15px 0 40px;
  opacity: 0;
  -webkit-transform: translate(100px, 0);
  transform: translate(100px, 0);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.vi .scene2 .page2 p {
  font-size:18px;
  line-height:1.8em;
  marign-bottom:50px;
  color: #666666;
  opacity: 0;
  -webkit-transition: 0.5s all ease-in-out 0.4s;
  transition: 0.5s all ease-in-out 0.4s;
}
.vi .scene2 .page2 p span {
  color: #000;
  font-weight: bold;
}
.vi .scene2 .page2 img {
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
@media (max-width:1367px) {
  .vi .scene2 .page2 {
    height: 590px;
    margin-top: -295px;
  }
  .vi .scene2 .page2 h2 {
    font-size: 40px;
  }
  .vi .scene2 .page2 h3 {
    font-size: 24px;
    margin: 5px 0 20px;
  }
}
html.ie8 .vi .scene2 .page2 {
  height: 590px;
  margin-top: -295px;
}
html.ie8 .vi .scene2 .page2 h2 {
  font-size: 40px;
}
html.ie8 .vi .scene2 .page2 h3 {
  font-size: 24px;
  margin: 5px 0 20px;
}
.vi .scene2.on .page2 h2,
.vi .scene2.on .page2 h3,
.vi .scene2.on .page2 p,
.vi .scene2.on .page2 img {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.vi .scene3 {
  background-image: url(../images/vi/bg3.jpg);
}
.vi .scene3 .page3 {
  position: absolute;
  width: 100%;
  height: 637px;
  top: 50%;
  left: 50%;
  margin: -318.5px 0 0 -50%;
  text-align: center;
}
.vi .scene3 .page3 h2 {
  font-size: 50px;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.vi .scene3 .page3 h2 span {
  color: #fff000;
  font-size: 18px;
  display: block;
  margin-top: 20px;
  font-weight: normal;
}
.vi .scene3 .page3 .group {
  width: 100%;
  margin-top: 50px;
  opacity: 0;
  -webkit-transform: translate(0, 300px);
  transform: translate(0, 300px);
  -webkit-transition: 0.8s all ease-in-out;
  transition: 0.8s all ease-in-out;
}
.vi .scene3 .page3 .group .switch {
  width: 930px;
  margin: 0 auto;
}
.vi .scene3 .page3 .group .item1 {
  width: 280px;
  height: 390px;
  float: left;
  text-align: center;
  position: relative;
  margin: 0 15px;
}
.vi .scene3 .page3 .group .item1 i {
  width: 280px;
  height: 165px;
  display: block;
  overflow: hidden;
}
.vi .scene3 .page3 .group .item1 i img {
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.vi .scene3 .page3 .group .item1 span {
  display: block;
  margin: -20px auto 0;
  border-radius: 20px;
  position: relative;
  width: 140px;
  height: 37px;
  line-height: 37px;
  background-color: #24aa38;
  font-size: 22px;
  color: #fff;
}
.vi .scene3 .page3 .group .item1 img {
  width: 100%;
}
.vi .scene3 .page3 .group .item1 .btm {
  background-color: #e4e4e4;
  margin-top: -20px;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.vi .scene3 .page3 .group .item1 .btm p {
  line-height: 23px;
  color: #333333;
  font-size: 14px;
}
.vi .scene3 .page3 .group .item1:before {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #e4e4e4;
  bottom: 0;
  left: 50%;
  margin-left: -5px;
}
.vi .scene3 .page3 .group .item1:after {
  width: 0;
  height: 0;
  border-width: 20px 20px 0;
  border-style: solid;
  border-color: #e4e4e4 transparent transparent;
  position: absolute;
  bottom: 36px;
  left: 50%;
  margin-left: -20px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.vi .scene3 .page3 .group .item1:hover .btm {
  background-color: #fff;
}
.vi .scene3 .page3 .group .item1:hover i img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.vi .scene3 .page3 .group .item1:hover:after {
  width: 0;
  height: 0;
  border-width: 20px 20px 0;
  border-style: solid;
  border-color: #ffffff transparent transparent;
}
.vi .scene3 .page3 .group:after {
  width: 100%;
  height: 1px;
  bottom: 69px;
  left: 0;
  background-color: #e4e4e4;
}
.vi .scene3 .page3 .group .owl-controls {
  text-align: center;
  margin-top: 20px;
}
.vi .scene3 .page3 .group .owl-prev,
.vi .scene3 .page3 .group .owl-next {
  display: inline-block;
  width: 27px;
  height: 27px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/vi/arrow.png);
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  margin: 0 5px;
}
.vi .scene3 .page3 .group .owl-prev {
  background-position: left center;
}
.vi .scene3 .page3 .group .owl-next {
  background-position: right center;
}
@media (max-width:1367px) {
  .vi .scene3 .page3 {
    height: 590px;
    margin-top: -295px;
  }
  .vi .scene3 .page3 h2 {
    font-size: 40px;
  }
  .vi .scene3 .page3 .group {
    margin-top: 30px;
  }
}
html.ie8 .vi .scene3 .page3 {
  height: 590px;
  margin-top: -295px;
}
html.ie8 .vi .scene3 .page3 h2 {
  font-size: 40px;
}
html.ie8 .vi .scene3 .page3 .group {
  margin-top: 30px;
}
.vi .scene3.on .page3 h2,
.vi .scene3.on .page3 .group {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.vi .scene4 {
  background-image: url(../images/vi/bg4.jpg);
}
.vi .scene4 .page4 {
  position: absolute;
  width: 912px;
  height: 700px;
  top: 50%;
  left: 50%;
  margin: -350px 0 0 -456px;
}
@media (max-width:1367px) {
  .vi .scene4 .page4 {
    position: absolute;
    width: 912px;
    height: 606px;
    top: 50%;
    left: 50%;
    margin: -303px 0 0 -456px;
  }
}
html.ie8 .vi .scene4 .page4 {
  position: absolute;
  width: 912px;
  height: 606px;
  top: 50%;
  left: 50%;
  margin: -303px 0 0 -456px;
}
.vi .scene4 .page4 .title {
  color: #000;
  font-size: 50px;
  text-align: center;
  margin-bottom: 15px;
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.vi .scene4 .page4 .caption {
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.vi .scene4 .page4 .caption a {
  display: inline-block;
  position: relative;
  color: #24aa38;
  font-size: 18px;
  margin: 0 10px;
}
.vi .scene4 .page4 .caption a:after {
  width: 5px;
  height: 5px;
  background-color: #24aa38;
  border-radius: 5px;
  left: 50%;
  margin-left: -2.5px;
  bottom: -8px;
}
.vi .scene4 .page4 .ct {
  width: 912px;
  margin: 45px auto 0;
  -webkit-perspective: 800px;
  perspective: 800px;
}
@media (max-width:1367px) {
  .vi .scene4 .page4 .ct {
    margin: 15px auto 0;
  }
}
html.ie8 .vi .scene4 .page4 .ct {
  margin: 15px auto 0;
}
.vi .scene4 .page4 .ct .group {
  width: 178px;
  height: auto;
  margin: 0 25px;
  opacity: 0;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition: 0.6s all ease-in-out 0.6s;
  transition: 0.6s all ease-in-out 0.6s;
}
.vi .scene4 .page4 .ct .group span {
  text-align: center;
  display: block;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.vi .scene4 .page4 .ct .group span img {
  display: inline-block;
}
.vi .scene4 .page4 .ct .group h3 {
  text-align: center;
  font-size: 24px;
  color: #333333;
  margin: 8px 0 15px;
}
.vi .scene4 .page4 .ct .group p {
  font-size: 12px;
  color: #333333;
  line-height: 24px;
  text-align: justify;
}
@media (max-width:1367px) {
  .vi .scene4 .page4 .ct .group p {
    line-height: 18px;
  }
}
html.ie8 .vi .scene4 .page4 .ct .group p {
  line-height: 18px;
}
.vi .scene4 .page4 .ct .group:hover span {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.vi .scene4 .page4 .ct .owl-controls {
  text-align: center;
  margin-top: 0;
}
html.ie8 .vi .scene4 .page4 .ct .owl-controls {
  margin-top: -20px;
}
.vi .scene4 .page4 .ct .owl-prev,
.vi .scene4 .page4 .ct .owl-next {
  display: inline-block;
  width: 27px;
  height: 27px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/mobile/arrow.png);
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  margin: 0 5px;
}
.vi .scene4 .page4 .ct .owl-prev {
  background-position: left center;
}
.vi .scene4 .page4 .ct .owl-next {
  background-position: right center;
}
.vi .scene4.on .page4 .title,
.vi .scene4.on .page4 .caption {
  opacity: 1;
}
.vi .scene4.on .page4 .ct .group {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  opacity: 1;
}
.vi .scene5 {
  background-image: url(../images/vi/bg5.jpg);
}
.vi .scene5 .page5 {
  width: 100%;
  height: 100%;
  display: table;
}
.vi .scene5 .page5 .ct {
  display: table-cell;
  vertical-align: middle;
  padding-bottom: 90px;
}
.vi .scene5 .page5 .ct .title {
  text-align: center;
  width: 100%;
  font-size: 50px;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.vi .scene5 .page5 .ct .title span {
  font-size: 30px;
  color: #999999;
  font-weight: normal;
  display: block;
  text-transform: uppercase;
}
.vi .scene5 .page5 .ct .group {
  width: 924px;
  margin: 60px auto 0;
}
.vi .scene5 .page5 .ct .group ul {
  width: 284px;
  float: left;
  margin: 0 12px;
}
.vi .scene5 .page5 .ct .group ul li {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 26px;
  height: 60px;
  line-height: 60px;
  margin-bottom: 24px;
  position: relative;
  opacity: 0;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  transition: background 0.4s ease-in-out, 0.6s transform ease-in-out 0.6s, 0.6s opacity ease-in-out 0.6s;
  -webkit-transition: background 0.4s ease-in-out, 0.6s transform ease-in-out 0.6s, 0.6s opacity ease-in-out 0.6s;
}
html.ie8 .vi .scene5 .page5 .ct .group ul li {
  background-color: #838283;
}
.vi .scene5 .page5 .ct .group ul li p {
  position: absolute;
  top: 60px;
  background-color: #fff;
  color: #666666;
  font-size: 14px;
  z-index: 9999;
  line-height: 20px;
  padding: 0 30px;
  text-align: left;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  height: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  overflow: hidden;
}
.vi .scene5 .page5 .ct .group ul li p a {
  display: block;
  margin-top: 30px;
  color: #666666;
}
.vi .scene5 .page5 .ct .group ul li p:before {
  width: 0;
  height: 0;
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #24aa38;
  left: 15px;
  top: 34px;
}
.vi .scene5 .page5 .ct .group ul li a {
  color: #fff;
  display: block;
}
.vi .scene5 .page5 .ct .group ul li:hover {
  background-color: #24aa38;
}
.vi .scene5 .page5 .ct .group ul li:hover p {
  display: block;
  height: 169px;
}
@media (max-width:1367px) {
  .vi .scene5 .page5 .ct .group {
    margin: 20px auto 0;
  }
  .vi .scene5 .page5 .ct .group ul li {
    height: 50px;
    line-height: 50px;
    margin-bottom: 15px;
  }
  .vi .scene5 .page5 .ct .group ul li p {
    top: 50px;
  }
}
html.ie8 .vi .scene5 .page5 .ct .group {
  margin: 20px auto 0;
}
html.ie8 .vi .scene5 .page5 .ct .group ul li {
  height: 50px;
  line-height: 50px;
  margin-bottom: 15px;
}
html.ie8 .vi .scene5 .page5 .ct .group ul li p {
  top: 50px;
}
.vi .scene5 .page5 .share-page {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.vi .scene5.on .page5 .title,
.vi .scene5.on .page5 .share-page {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.vi .scene5.on .page5 .group ul li {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 1;
}
.product {
  overflow: hidden;
  position: fixed;
  top: 0;
  z-index: 9998;
  display: none;
}
.product .product-info {
  width: 100%;
  height: 100%;
  background-color: #14181b;
}
.product .new-case {
  width: 40%;
  height: 49.8%;
  float: left;
  background: url(../images/product/new.png) center center no-repeat;
  background-size: cover;
  position: relative;
}

.product .new-case a{
  width: 100%;
  height: 100%;
  float: left;
  display:block;
}

.product .new-case .link {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 79px;
  height: 33px;
  text-align: center;
  line-height: 33px;
  padding-right: 10px;
  background: url(../images/product/link.png) 60px center no-repeat;
  background-color: #cfa11f;
  color: #fff;
}
.product .new-case .btm {
  position: absolute;
  right: 10px;
  bottom: 20px;
}
.product .new-case .btm span {
  background-color: #d6a628;
  float: left;
  padding: 0 10px;
  font-size: 14px;
  color: #fff;
  height: 33px;
  line-height: 33px;
}
.product .new-case .btm a {
  padding: 0 0 0 10px;
  background-color: #057aee;
  font-size: 14px;
  float: left;
  color: #fff;
  height: 33px;
  line-height: 33px;
  min-width: 160px;
}
.product .new-case .btm a i {
  float: right;
  background: url(../images/product/cloud.png) no-repeat center center;
  width: 33px;
  height: 33px;
  margin-left: 10px;
  background-color: #0380fb;
}
.product .product-group {
  width: 20%;
  height: 25%;
  background-color: #808080;
  float: left;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.product .product-group img {
  width: 100%;
  height: 100%;
}
.product .product-group .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: none;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBRTFGODA3REYxNTExMUUzQTY2QzlGODcwRDZGOEQ0NiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBRTFGODA3RUYxNTExMUUzQTY2QzlGODcwRDZGOEQ0NiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFFMUY4MDdCRjE1MTExRTNBNjZDOUY4NzBENkY4RDQ2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkFFMUY4MDdDRjE1MTExRTNBNjZDOUY4NzBENkY4RDQ2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+qHf1jAAAAA9JREFUeNpiYGBgWAwQYAAAqACksWVCrgAAAABJRU5ErkJggg==');
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.product .product-group div {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding: 20px 20px 0;
  color: #000000;
  text-align: center;
  top: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.product .product-group div span {
  display: block;
  margin-bottom: 10px;
  color: #24aa38;
  text-align: left;
}
.product .product-group div span small {
  display: block;
  color: #000000;
}
.product .product-group div p {
  text-align: left;
}
.product .product-group div a {
  display: inline-block;
  width: 90px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  position: absolute;
  bottom: 50px;
  left: 50%;
}
.product .product-group div a.a1 {
  background-color: #323232;
  margin-left: -100px;
}
.product .product-group div a.a2 {
  background: url(../images/product/link.png) 60px center no-repeat;
  background-color: #24aa38;
  padding-right: 10px;
}
@media (max-width:1367px) {
  .product .product-group div a {
    bottom: 22px;
  }
}
html.ie8 .product .product-group div {
  display: none;
}
.product .product-group:hover .bg {
  opacity: 0;
}
.product .product-group:hover div {
  top: 20px;
}
html.ie8 .product .product-group:hover div {
  display: block;
}
.product .close {
  width: 75px;
  height: 75px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/product/close.png);
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: hidden;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.product .close:hover {
  background-color: #24aa38;
}
.case {
  height: auto;
}
.case .content {
  padding-top: 80px;
  overflow:hidden;
}
.case .content:before,
.case .content:after {
  position: static;
  clear: both;
  display: table;
}
.case .case-intro {
  float: left;
  width: 25%;
  position: relative;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.case .case-intro img {
  width: 100%;
}
.case .case-intro span {
  background-color: #222;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  color: #fff;
  text-align: center;
  line-height: 100%;
  font-size: 26px;
  font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.case .case-intro span i {
  position: absolute;
  height: 180px;
  top: 50%;
  margin-top: -10px;
  width: 100%;
  left: 0;
  -webkit-transform: translate(20px, 0);
  transform: translate(20px, 0);
  -webkit-transition: 0.4s all ease 0.1s;
  transition: 0.4s all ease 0.1s;
}
.article-content  table{border:0;}
html.ie8 .case .case-intro span {
  display: none;
}
.case .case-intro:hover span {
  opacity: .95;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.case .case-intro:hover span i {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
html.ie8 .case .case-intro:hover span {
  display: block;
}
.case .share-page {
  margin-top: 0;
}
@media (max-width:1660px) {
  .case .sub-menu {
    background-image: none;
  }
}
html.ie8 .case .sub-menu {
  background-image: none;
}
.main-content.case-detail{oveflow:hidden; height:auto;}

.case-detail .case-detail-content {
  padding:110px 360px 0 60px;
}
.cases_desc{color:#666;line-height:1.6em;}
.case-detail .case-detail-content .title-content {
  padding-bottom: 10px;
}
.case-detail .case-detail-content p {
  font-size: 12px;
  color: #666666;
  text-indent: 2em;
  line-height: 20px;
}
.case-detail .case-detail-content > img {
  margin: 20px auto;
  width: 80%;
  display: block;
}
.case-detail .case-detail-content h3 {
  font-size: 16px;
  color: #666666;
  margin: 25px 0;
  line-height: 38px;
}
.case-detail .case-detail-content .share-social {
  color: #323232;
  padding-bottom: 5px;
  border-bottom: 1px solid #e2e2e2;
  text-align: right;
  margin: 60px 0 20px;
  font-size: 12px;
}
.case-detail .case-detail-content .page-tab a {
  color: #000;
  font-size: 12px;
}
.case-detail .case-detail-content .page-tab .prev {
  float: left !important;
}
.case-detail .case-detail-content .page-tab .next {
  float: right !important;
}
.case-detail .case-detail-content .page-tab .close {
  font-size: 14px;
  color: #666666;
  float: right !important;
  text-indent:-9999px;
  margin-bottom:0px;
  margin-top:30px;
}
.case-detail .case-detail-content .margin-btm {
  margin-bottom: 100px;
}
.case-detail .case-detail-content .fenlei {
  background: url(../images/case/fenlei.png) no-repeat 20px center;
  font-size: 20px;
  border-radius: 3px;
  font-weight: normal;
  background-color: #24aa38;
  color: #fff;
  display: inline-block;
  width: 160px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  padding-left: 15px;
}
.case-detail .case-detail-content .fenlei-btm {
  width: 365px;
  height: 38px;
  border-radius: 3px;
  background-color: #ededed;
  color: #000000;
  line-height: 38px;
  text-align: center;
  margin: 50px auto 0;
}
.case-detail .case-detail-content .fenlei-btm .fenlei {
  border-radius: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.case-detail .case-detail-content .cases_desc img {
  width: 100%;
}
.case-detail .foot p {
  margin-right: 95px;
}
@media (max-width:1367px) {
  .case-detail .foot {
    height: auto;
    line-height: normal;
  }
  .case-detail .foot ul {
    margin: 20px 10px 10px;
  }
  .case-detail .foot p {
    float: left;
    margin: 10px 10px 20px;
  }
}
.case-detail .share-page,
.case-detail .foot {
  padding-right: 300px;
}
.news {
  height: auto;
}
.news .news-content {
  width: 100%;
  padding: 20px 10px;
  margin-top: 80px;
}
.news .group {
  width: 20%;
  padding: 0 10px;
  float: left;
  margin-bottom: 20px;
  cursor: pointer;
}
.news .group .group-intro {
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
.news .group .top {
  position: relative;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  overflow: hidden;
}
.news .group .top img {
  width: 100%;
}
.news .group .top span {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
html.ie8 .news .group .top span {
  display: none;
}
.news .group .btm {
  background-color: #f6f6f6;
  padding: 0 10px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
  height:160px;
}
.news .group .btm h2 {
  font-size: 14px;
  font-weight: normal;
  padding: 20px 0 15px;
  color: #000;
}
.news .group .btm h2 small {
  display: block;
  color: #b7b7b7;
  font-size: 12px;
}
.news .group .btm p {
  font-size: 12px;
  color: #666666;
  padding-bottom: 25px;
}
.news .group:hover .top span {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
html.ie8 .news .group:hover .top span {
  display: block;
}
.news .group:hover .btm {
  background-color: #fff;
}
.news .group:hover .group-intro {
  -webkit-box-shadow: #d1d1d1 0px 0px 10px;
  box-shadow: #d1d1d1 0px 0px 10px;
}
.news-detail .sub-menu {
  background-image: none;
}
.news-detail .news-detail-content {
  padding:110px 360px 0 60px;
}
.news-detail .news-detail-content p {
  font-size: 12px;
  color: #666666;
  text-indent: 2em;
  line-height: 20px;
}
.news-detail .news-detail-content > img {
  margin: 20px 0;
}
.news-detail .news-detail-content h3 {
  font-size: 15px;
  color: #666666;
  margin: 25px 0;
}
.news-detail .news-detail-content .share-social {
  color: #323232;
  padding-bottom: 5px;
  border-bottom: 1px solid #e2e2e2;
  text-align: right;
  margin: 90px 0 20px;
  font-size: 12px;
}
.news-detail .news-detail-content .page-tab a {
  color: #000;
  font-size: 12px;
}
.news-detail .news-detail-content .page-tab a:hover{color:#25aa39;}
.news-detail .news-detail-content .page-tab .prev {
  float: left !important;
}
.news-detail .news-detail-content .page-tab .next {
  float: right !important;
}
.news-detail .news-detail-content .page-tab .close {
  font-size: 14px;
  color: #666666;
  float: right !important;
  text-indent:-9999px;
  margin-bottom:0px;
  margin-top:30px;
}
.news-detail .foot p {
  margin-right: 95px;
}
@media (max-width:1367px) {
  .news-detail .foot {
    height: auto;
    line-height: normal;
  }
  .news-detail .foot ul {
    margin: 20px 10px 10px;
  }
  .news-detail .foot p {
    float: left;
    margin: 10px 10px 20px;
  }
}
.news-detail .share-page,
.news-detail .foot {
  padding-right: 280px;
}
.news-detail .mCSB_scrollTools .mCSB_draggerContainer {
  display: none;
}
.contact .contact-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.contact .contact-bg .bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.contact .contact-bg .bg.bg1 {
  background-image: url(../images/contact/bg1.jpg);
}
.contact .contact-bg .bg.bg2 {
  background-image: url(../images/contact/bg2.jpg);
}
.contact .contact-bg .bg.on {
  display: block;
}
.contact .contact-intro {
  position: absolute;
  width: 1085px;
  height: 314px;
  top: 50%;
  left: 50%;
  margin: -157px 0 0 -542.5px;
  margin-left: -460px;
  overflow: hidden;
}
.contact .contact-intro .left {
  float: left;
  width: 270px;
  height: 100%;
  -webkit-transition: 0.8s all ease-in-out;
  transition: 0.8s all ease-in-out;
  -webkit-transform: translate(-300px, 0);
  transform: translate(-300px, 0);
}
.contact .contact-intro .left p {
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  margin-top: 10px;
}
.contact .contact-intro .middle {
  float: left;
  width: 510px;
  height: 100%;
  border-left: 1px dashed #b0b0b0;
  border-right: 1px dashed #b0b0b0;
  color: #fff;
  padding: 0 0 0 40px;
  -webkit-transition: 0.8s all ease-in-out;
  transition: 0.8s all ease-in-out;
  -webkit-transform: translate(0, -320px);
  transform: translate(0, -320px);
}
.contact .contact-intro .middle h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.contact .contact-intro .middle h2 span {
  color: #23e741;
}
.contact .contact-intro .middle p {
  margin-bottom: 25px;
  font-size: 12px;
}
.contact .contact-intro .middle p.last {
  font-size: 14px;
  background-color: #000;
  padding: 5px;
}
.contact .contact-intro .right {
  float: left;
  width: 265px;
  height: 100%;
  margin-left: 40px;
  -webkit-transition: 0.8s all ease-in-out;
  transition: 0.8s all ease-in-out;
  -webkit-transform: translate(300px, 0);
  transform: translate(300px, 0);
}
.contact .contact-intro .right p {
  color: #fff;
  margin-bottom: 10px;
}
.contact .contact-intro .right input {
  width: 100%;
  height: 30px;
  border: 1px solid #212a22;
  color: #fff;
  margin-bottom: 5px;
  background-color: transparent;
  padding-left: 5px;
  font-family:"微软雅黑";font-size:14px;
}
.contact .contact-intro .right textarea {
  width: 100%;
  height: 106px;
  border: 1px solid #212a22;
  color: #fff;
  resize: none;
  background-color: transparent;
  margin-bottom: 5px;
  padding: 5px;
  font-family:"微软雅黑";font-size:14px;
}
.contact .contact-intro .right button {
  width: 100%;
  height: 30px;
  border: 0;
  background-color: #0e771e;
  color: #fff;
  line-height: 30px;
  text-align: center;
}
.contact .contact-intro.on .left,
.contact .contact-intro.on .middle,
.contact .contact-intro.on .right {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.people {
  overflow: hidden;
  background: url(../images/people/bg.jpg) no-repeat center center;
  background-size: cover;
  /*ul { position: absolute; top: 50%; right: 10px; margin-top: -100px;
        li { .square(10px); border-radius: 10px; margin: 14px 0; position: relative;
            a { background-color: #666666; display: block; .square(10px); border-radius: 10px; position: relative; }
            span { .size(130px,22px); background-color: #fff; border: 1px solid #24aa38; color: #24aa38; display: block; border-radius: 15px; right: -5px; position: absolute; font-size: 12px; top: 50%; margin-top: -11px; line-height: 21px; padding-left: 10px; opacity: 0; .transition(.4s all ease);
                html.ie8 & { display: none; }
            }
            &.active {
                a { background-color: #24aa38; }
                span { opacity: 1;
                    html.ie8 & { display: block; }
                }
            }
            &:hover {
                span { opacity: 1;
                    html.ie8 & { display: block; }
                }
            }
        }
    }*/
}
.people .section {
  position: relative;
}
.people .page1 {
  position: absolute;
  width: 910px;
  height: 640px;
  top: 50%;
  left: 50%;
  margin: -320px 0 0 -455px;
  text-align: center;
  line-height:1.8em;
}
.people .page1 h3 {
  font-size: 45px;
  font-weight: normal;
}
.people .page1 div {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  margin: 20px auto;
}
.people .page1 div a {
  display: inline-block;
  position: relative;
}
.people .page1 div a i {
  width: 182px;
  height: 0;
  position: absolute;
  top: 0;
  background: url(../images/people/bg.png) no-repeat top center;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
html.ie8 .people .page1 div a i {
  display: none;
}
.people .page1 div a img {
  position: relative;
}
.people .page1 div a span {
  display: block;
  position: absolute;
  top: 200px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #666666;
  font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.people .page1 div a:hover span {
  color: #fff;
}
.people .page1 div a:hover i {
  height: 313px;
}
html.ie8 .people .page1 div a:hover i {
  display: block;
}
.people .page1 .mouse {
  display: block;
  margin: 10px auto 0;
}
@media (max-width:1367px) {
  .people .page1 {
    position: absolute;
    width: 910px;
    height: 600px;
    top: 50%;
    left: 50%;
    margin: -300px 0 0 -455px;
  }
  .people .page1 div {
    margin: 0 auto;
  }
}
html.ie8 .people .page1 {
  position: absolute;
  width: 910px;
  height: 600px;
  top: 50%;
  left: 50%;
  margin: -300px 0 0 -455px;
}
html.ie8 .people .page1 div {
  margin: 0 auto;
}
.people .page {
  position: absolute;
  width: 700px;
  /*height: 640px;*/
  top: 50%;
  left: 50%;
  margin: -320px 0 0 -350px;
}
.people .page h3 {
  font-size: 45px;
  padding-left: 100px;
  height: 93px;
  line-height: 93px;
  background-repeat: no-repeat;
  background-position: -46px -90px;
  color: #000;
  font-weight: normal;
  margin-bottom: 15px;
}
.people .page h4 {
  color: #24aa38;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 6px;
  margin-left: 15px;
}
.people .page p {
  color: #666666;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 6px;
  margin-left: 15px;
}
.people .page div a {
  text-align: center;
  color: #999999;
  font-size: 12px;
  display: inline-block;
  margin-left: 17px;
  margin-top: 8px;
}
.people .page div a span {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  display: block;
  background: url(../images/people/btn.png) no-repeat;
  width: 150px;
  height: 34px;
  margin-bottom: 5px;
}
.people .page div a.a1 span {
  background-position: left center;
}
.people .page div a.a2 span {
  background-position: right center;
}
.people .page.page2 h3 {
  background-image: url(../images/people/head1.png);
}
.people .page.page3 h3 {
  background-image: url(../images/people/head2.png);
}
.people .page.page4 h3 {
  background-image: url(../images/people/head3.png);
}
.people .page.page5 h3 {
  background-image: url(../images/people/head4.png);
}
.people .page.page6 h3 {
  background-image: url(../images/people/head5.png);
}
@media (max-width:1367px) {
  .people .page {
    position: absolute;
    width: 700px;
    /*height: 580px;*/
    top: 50%;
    left: 50%;
    margin: -290px 0 0 -350px;
  }
  .people .page h3 {
    font-size: 40px;
  }
  .people .page h4 {
    font-size: 14px;
  }
  .people .page p {
    font-size: 12px;
  }
}
html.ie8 .people .page {
  position: absolute;
  width: 700px;
  /*height: 580px;*/
  top: 50%;
  left: 50%;
  margin: -290px 0 0 -350px;
}
html.ie8 .people .page h3 {
  font-size: 40px;
}
html.ie8 .people .page h4 {
  font-size: 14px;
}
html.ie8 .people .page p {
  font-size: 12px;
  line-height: 24px;
}
.question {
  height: auto;
}
.question .sub-menu {
  background-image: none;
}
.question .content .group {
  padding: 150px 390px 0 60px;
  background-color: #fff;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
}
.question .content .group .list li {
  height: 35px;
  line-height: 35px;
  border-bottom: 1px dashed #d5d5d5;
  font-size: 13px;
  padding-left: 24px;
  position: relative;
}
.question .content .group .list li a {
  color: #666666;
}
.question .content .group .list li span {
  float: right;
}
.question .content .group .list li:before {
  width: 0;
  height: 0;
  border-width: 4px 0 4px 4px;
  border-style: solid;
  border-color: transparent transparent transparent #666666;
  left: 10px;
  top: 50%;
  margin-top: -4px;
}
.question .content .group .list li:hover a {
  color: #24aa38;
}
.question .content .group .list li:hover:before {
  width: 0;
  height: 0;
  border-width: 4px 0 4px 4px;
  border-style: solid;
  border-color: transparent transparent transparent #24aa38;
  left: 10px;
  top: 50%;
  margin-top: -4px;
}
.question .content .group.on {
  display: block;
}
.question .foot p {
  margin-right: 95px;
}
@media (max-width:1367px) {
  .question .foot {
    height: auto;
    line-height: normal;
  }
  .question .foot ul {
    margin: 20px 10px 10px;
  }
  .question .foot p {
    float: left;
    margin: 10px 10px 20px;
  }
}
html.ie8 .question .foot {
  height: auto;
  line-height: normal;
}
html.ie8 .question .foot ul {
  margin: 20px 10px 10px;
}
html.ie8 .question .foot p {
  float: left;
  margin: 10px 10px 20px;
}
.question .share-page,
.question .foot {
  padding-right: 380px;
}
/*# sourceMappingURL=site.css.map */