@charset "utf-8";
/*常用css*/
.fl {
  float: left;
  _display: inline;
}
.fr {
  float: right;
  _display: inline;
}
/*常用字体*/
.yh {
  font-family: 'Microsoft YaHei';
}
.st {
  font-family: 'SimSun';
}
.ar {
  font-family: 'Arial';
}
.roman {
  font-family: "Times New Roman";
}
.tn {
  display: block;
  font-size: 0;
  text-indent: -99999em;
  color: transparent;
}
.tt a:hover {
  text-decoration: underline;
}
.xie {
  font-style: italic;
}
.ddd {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
a {
  color: #666;
}
a:hover {
  text-decoration: none;
  color: #4489E6;
}
.btn {
  cursor: pointer;
}
body {
  font-size: 12px;
  color: #666;
  line-height: 24px;
  min-width: 1225px;
  font-family: 'Microsoft YaHei';
}
.l {
  color: #4489E6 !important;
}
.w {
  width: 1225px;
  min-width: 1225px;
  margin: 0 auto;
}
/*header*/
.header {
  height: 52px;
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 100;
  min-width: 1225px;
  background: #2C2C2C;
}
.logo {
  background: url(../images/logo.png) center no-repeat;
  width: 38px;
  height: 52px;
  text-indent: -9999px;
  margin-right: 72px;
}
[onclick] {
  cursor: pointer;
}
.nav {
  height: 52px;
  line-height: 52px;
}
.nav li {
  float: left;
  width: 115px;
}
.nav h3 {
  width: 96px;
  margin: 0 auto;
}
.nav h3 a {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #999999;
  opacity: 1;
  -webkit-transition: 1.3s;
  -moz-transition: 1.3s;
  -ms-transition: 1.3s;
  -o-transition: 1.3s;
  transition: 1.3s;
}
.nav li.on h3 a,
.nav li:hover h3 a {
  background: #474747;
  color: #fff;
}
.nav li.on h3 a {
  font-weight: bold;
}
.btn-so-icon {
  width: 52px;
  cursor: pointer;
  height: 52px;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/icon/so.png) center no-repeat;
}
.searchview {
  width: 680px;
  position: absolute;
  left: 50%;
  margin-left: -340px;
  top: 0px;
  display: none;
}
.searchview-mask {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.searchopen .searchview {
  z-index: 1000;
}
.searchopen .nav h3 a {
  opacity: 0;
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  -o-transform: scale(0.1);
  transform: scale(0.1);
}
.searchform-input {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 17px;
  line-height: 1.29412;
  letter-spacing: -0.021em;
  color: #fff;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  position: absolute;
  padding: 0 38px 0 39px;
  background: transparent;
}
.searchform {
  position: relative;
  height: 52px;
  z-index: 101;
}
.searchresults-section {
  position: relative;
  z-index: 101;
}
.searchform-submit {
  background: url(../images/icon/so.png) center no-repeat;
  width: 39px;
  height: 52px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.searchview-close {
  width: 38px;
  height: 52px;
  position: absolute;
  right: 0;
  text-align: center;
  line-height: 52px;
  color: #888888;
  font-size: 24px;
  font-family: simsun;
  top: 0;
  background: transparent;
}
.searchresults-section {
  background: #fff;
  border-radius: 0 0 15px 15px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.searchresults-section-wrapper {
  padding: 24px 5px 18px;
}
.searchresults-section-wrapper h3 {
  font-size: 12px;
  color: #6e6e73;
  line-height: 1.27;
  padding: 0 25px;
}
.searchresults-section-wrapper li {
  padding: 5px 0;
}
.searchresults-section-wrapper li a {
  padding: 3px 35px 3px 50px;
  font-size: 14px;
  display: block;
}
.searchresults-section-wrapper li a:hover {
  color: #0664FF;
  background: #efefef;
}
@-webkit-keyframes searchresults-items-show {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes searchresults-items-show {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.searchopen .searchresults-animated {
  -webkit-animation: searchresults-items-show 0.4s both;
  animation: searchresults-items-show 0.4s both;
}
.searchresults-section .searchresults-animated:nth-child(1) {
  -webkit-animation-delay: 0.22s;
  animation-delay: 0.22s;
}
.searchresults-section .searchresults-animated:nth-child(2) {
  -webkit-animation-delay: 0.24s;
  animation-delay: 0.24s;
}
.searchresults-section .searchresults-animated:nth-child(3) {
  -webkit-animation-delay: 0.26s;
  animation-delay: 0.26s;
}
.searchresults-section .searchresults-animated:nth-child(4) {
  -webkit-animation-delay: 0.28s;
  animation-delay: 0.28s;
}
.searchresults-section .searchresults-animated:nth-child(5) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.searchresults-section .searchresults-animated:nth-child(6) {
  -webkit-animation-delay: 0.32s;
  animation-delay: 0.32s;
}
.searchresults-section .searchresults-animated:nth-child(7) {
  -webkit-animation-delay: 0.34s;
  animation-delay: 0.34s;
}
.searchresults-section .searchresults-animated:nth-child(8) {
  -webkit-animation-delay: 0.36s;
  animation-delay: 0.36s;
}
.searchresults-section .searchresults-animated:nth-child(9) {
  -webkit-animation-delay: 0.38s;
  animation-delay: 0.38s;
}
.searchresults-section .searchresults-animated:nth-child(10) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.searchresults-section .searchresults-animated.searchresults-header {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.section1 {
  padding-top: 160px;
  padding-bottom: 110px;
}
.case-total-nums {
  width: 640px;
  margin: 0 auto;
  padding-bottom: 27px;
}
.case-total-nums li {
  width: 213px;
  color: #000;
  text-align: center;
  position: relative;
  float: left;
}
.case-total-nums li:nth-of-type(2) {
  position: relative;
}
.case-total-nums li:nth-of-type(2):before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: #D3D3D3;
  position: absolute;
  left: 0;
  top: 2px;
}
.case-total-nums li:nth-of-type(2):after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: #D3D3D3;
  position: absolute;
  right: 0;
  top: 2px;
}
.case-total-nums strong {
  font-size: 65px;
  font-family: BebasNeue;
}
.case-total-nums sup {
  padding-left: 10px;
  position: relative;
  top: -15px;
}
.case-total-nums p {
  font-size: 15px;
  color: #747474;
}
.slogen-row {
  clear: both;
  text-align: center;
  font-size: 40px;
  color: #000;
  line-height: 111px;
}
.slogen-sub {
  text-align: center;
  font-size: 15px;
  color: #747474;
  padding-bottom: 20px;
}
.slogen-img {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.slogen-img img {
  height: 303px;
  position: relative;
  left: -85px;
}
.section2 {
  padding-bottom: 20vh;
  color: #8E8E8E;
  font-size: 13px;
}
.section2 h2 {
  font-size: 40px;
  color: #000;
  line-height: 52px;
  margin-bottom: 20px;
  text-align: center;
}
.section2 .des {
  font-size: 12px;
  color: #8E8E8E;
  width: 960px;
  text-align: center;
  margin: 0 auto;
  line-height: 24px;
  margin-bottom: 35px;
}
.btn-txkt {
  width: 196px;
  height: 48px;
  border: 2px solid #0865FF;
  line-height: 48px;
  text-align: center;
  display: inline-block;
  border-radius: 100px;
  font-size: 15px;
  color: #0865FF;
  margin-bottom: 20px;
}
.btn-txkt:hover {
  background: #0865FF;
  color: #fff;
}
.fuwu-p4 {
  margin-top: 60px;
  text-align: center;
}
.fuwu-p4 li {
  display: inline-block;
  width: 164px;
  position: relative;
}
.fuwu-p4 img {
  position: absolute;
  left: 0;
  top: 0;
}
.fuwu-p4 .txt {
  padding-left: 66px;
  font-size: 13px;
  color: #848484;
  width: 60px;
  line-height: 20px;
  padding-top: 6px;
}
.section3 {
  background: #1F1F1F;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 60px;
}
.section3 h2 {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1.2em;
}
.section3 .sub {
  color: #9E9E9E;
}
.service-list ul {
  float: left;
  width: 100%;
}
.service-list:after {
  content: "";
  display: table;
  clear: both;
}
.service-list li {
  float: left;
  width: 49.99%;
  padding-top: 50px;
}
.service-list .img {
  float: left;
  width: 100px;
  height: 100px;
  position: relative;
  margin-right: 10px;
}
.service-list .img img {
  position: absolute;
  left: -10px;
  top: -5px;
}
.service-list .txt {
  float: left;
  position: relative;
  width: 380px;
}
.service-list .txt p {
  font-size: 15px;
  color: #9A9A9A;
}
.service-list .txt p + p {
  font-size: 12px;
  color: #6B6B6B;
  line-height: 20px;
  margin-top: 3px;
}
.service-list h3 {
  font-size: 18px;
  margin-bottom: 3px;
}
.service-list-full li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #E7E7E7;
  padding: 50px 0;
  position: relative;
}
.service-list-full h3 {
  font-weight: bold;
  color: #000;
}
.service-list-full .txt {
  width: auto;
}
.service-list-full .btn-action {
  display: inline-block;
  width: 132px;
  height: 43px;
  text-align: center;
  line-height: 43px;
  border-radius: 50px;
  position: absolute;
  right: 0;
  font-size: 13px;
  top: 50%;
  color: #fff;
  margin-top: -21px;
  background: #4489E6;
}
.service-list-full .btn-action:hover {
  background: #37AC5E;
  color: #fff;
}
.service-list-full .btn-action1 {
  background: #37AC5E;
  color: #fff;
}
.service-list-full .btn-action1:hover {
  background: #37AC5E;
  color: #fff;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.section4 {
  background: #fff;
  color: #000;
  padding-top: 100px;
  padding-bottom: 60px;
}
.section4 h2 {
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1.2em;
}
.section4 .sub {
  color: #7B7B7B;
  font-size: 18px;
}
.section4 p {
  font-size: 12px;
  color: #7B7B7B;
}
.section4 .img {
  padding: 60px 0;
  text-align: center;
}
.section4 .img img {
  max-width: 100%;
}
.footer {
  background: #333333;
  text-align: center;
  font-size: 13px;
  color: #fff;
  padding: 15px 0;
}
.mbx-row {
  padding-top: 52px;
}
.mbx {
  padding: 10px 0;
  display: none;
}
.f40 {
  font-size: 40px;
  color: #000;
}
.h20 {
  height: 20px;
  clear: both;
  line-height: 20px;
}
.page-service .title {
  margin-bottom: 12px;
  font-size: 15px;
}
.page-service .title strong {
  font-weight: normal;
  padding-right: 10px;
}
.page-service .title b {
  font-family: BebasNeue;
  font-size: 32px;
  color: #4489E6;
  padding: 0 5px;
}
.page-service .title h2 {
  line-height: 2em;
}
.page-service .title-sub {
  width: 700px;
  font-size: 12px;
  padding-bottom: 8px;
}
.btn-lc {
  display: block;
  width: 142px;
  height: 45px;
  background: #4489E6;
  line-height: 45px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.btn-lc:hover {
  color: #fff;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
#lc {
  width: 1220px;
  height: 562px;
  text-align: center;
  background: #fff;
  border-radius: 25px;
  position: relative;
  background: url(../images/step/stepbg.png) 123px 117px no-repeat #fff;
}
#lc .close {
  position: absolute;
  right: 25px;
  top: 25px;
  color: #BBBBBB;
  font-size: 45px;
  cursor: pointer;
}
#lc .step {
  width: 79px;
  position: absolute;
  text-align: center;
}
#lc .step .img {
  height: 79px;
  border-radius: 100px;
  background: url() center no-repeat #4489E6;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
#lc .step .img:hover {
  -webkit-transform: scale(1.1) rotate(360deg);
  -moz-transform: scale(1.1) rotate(360deg);
  -ms-transform: scale(1.1) rotate(360deg);
  -o-transform: scale(1.1) rotate(360deg);
  transform: scale(1.1) rotate(360deg);
}
#lc p {
  font-size: 13px;
  color: #737373;
  line-height: 20px;
  position: absolute;
  width: 120%;
  text-align: center;
  left: -10px;
  top: 85px;
}
#lc .step1 {
  left: 32px;
  top: 232px;
}
#lc .step1 .img {
  background-image: url(../images/step/1.png);
}
#lc .step2a {
  left: 349px;
  top: 114px;
}
#lc .step2a .img {
  background-image: url(../images/step/2a.png);
}
#lc .step2b {
  left: 349px;
  top: 336px;
}
#lc .step2b .img {
  background-image: url(../images/step/2b.png);
}
#lc .step3 {
  left: 660px;
  top: 116px;
}
#lc .step3 .img {
  background-image: url(../images/step/3.png);
}
#lc .step4 {
  left: 884px;
  top: 116px;
}
#lc .step4 .img {
  background-image: url(../images/step/4.png);
}
#lc .step5 {
  left: 1105px;
  top: 116px;
}
#lc .step5 .img {
  background-image: url(../images/step/5.png);
}
#lc .step6 {
  left: 1105px;
  top: 336px;
}
#lc .step6 .img {
  background-image: url(../images/step/6.png);
}
#lc .step7 {
  left: 884px;
  top: 336px;
}
#lc .step7 .img {
  background-image: url(../images/step/7.png);
}
#lc .step8 {
  left: 660px;
  top: 336px;
}
#lc .step8 .img {
  background-image: url(../images/step/8.png);
}
#lc .txts span {
  position: absolute;
  font-size: 13px;
  color: #FFFFFF;
  line-height: 14px;
}
#lc .txts .s1 {
  left: 261px;
  top: 145px;
}
#lc .txts .s2 {
  left: 261px;
  top: 368px;
}
#lc .txts .s3 {
  left: 532px;
  top: 262px;
}
#lc .txts .s4 {
  left: 794px;
  top: 146px;
}
#lc .txts .s5 {
  left: 1016px;
  top: 146px;
}
#lc .txts .s6 {
  left: 1124px;
  top: 266px;
}
#lc .txts .s7 {
  left: 1018px;
  top: 369px;
}
#lc .txts .s8 {
  left: 795px;
  top: 368px;
}
#lc img {
  display: block;
  margin: 0 auto;
}
.layui-layer-nobg {
  border-radius: 25px!important;
}
.page-tab-row {
  padding: 18px 0;
  background: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.page-tab-row a {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  height: 37px;
  line-height: 37px;
  font-size: 13px;
  color: #787878;
  margin: 0 12px;
  border-radius: 8px;
  width: 106px;
}
.page-tab-row a.on,
.page-tab-row a:hover {
  background: #3E87FF;
  color: #fff;
}
.page-case-list-box {
  padding-bottom: 20px;
}
.page-case-list-box .article-box {
  min-height: 600px;
  min-height: -webkit-calc(100vh - 340px );
}
.page-row {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  line-height: 38px;
}
.page-row ul {
  float: left;
  position: relative;
  left: 50%;
}
.page-row .pageinfo {
  float: left;
  line-height: 38px;
  font-size: 13px;
}
.page-row li {
  float: left;
  position: relative;
  right: 50%;
  margin-right: 8px;
}
.page-row a {
  display: block;
  width: 38px;
  height: 38px;
  font-size: 13px;
  text-align: center;
  line-height: 38px;
  border-radius: 4px;
  background: #fff;
  color: #666;
  border: 1px solid #E9E9E9;
}
.page-row li.thisclass a,
.page-row li a:hover {
  background: #4489E6;
  border-color: #4489E6;
  color: #fff;
}
.article-box {
  padding: 24px 0px;
 
}
.article-hd {
  color: #B3B3B3;
  padding-bottom: 15px;
  position: relative;
}
.article-hd h1 {
  color: #000;
  font-size:33px;
  margin-bottom: 5px;
  line-height: 1.6em;
  padding-bottom: 15px;font-weight: 700;
}
.article-hd .right {
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.article-hd .right span {
  padding-left: 1em;
}
.article-hd .right .fa {
  padding-right: 5px;
}
.article-hd .right .bottom span {
  padding-left: 1em;
}
.article-bd img {
  max-width: 100%;
}
.article-bd{
	line-height:2;
}
.contact-list-wrap {
  margin-top: 25px;
  background: #F4F4F4;
  padding-top: 47px;
  padding-bottom: 85px;
}
.weixin-code {
  position: absolute;
  top: 22px;
  right: 50px;
  width: 174px;
  text-align: center;
}
.weixin-code img {
  width: 174px;
}
.ceo {
  height: auto;
  overflow: hidden;
}
.ceo .left {
  width: 108px;
  float: left;
  text-align: center;
  margin-right: 21px;
}
.ceo .info {
  float: left;
}
.ceo .info h3 {
  font-size: 23px;
  color: #000;
}
.ceo .info .des {
  font-size: 12px;
  color: #9B9B9B;
  margin: 10px 0;
}
.ceo .info table {
  text-align: right;
  font-size: 13px;
  color: #6F6F6F;
}
.ceo .info th {
  text-align: right;
}
.ceo .info td {
  color: #000;
}
.ceo .info tr:nth-last-of-type(1) td {
  color: #5D5D5D;
}
.ceo .tx {
  width: 100px;
  height: 100px;
  border: 4px solid #fff;
  border-radius: 150px;
  margin-bottom: 15px;
}
.ceo .tx img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 150px;
}
.item-list {
  height: auto;
  overflow: hidden;
  margin-left: -33px;
  margin-top: 55px;
}
.item-list li {
  float: left;
  text-align: center;
  width: 180px;
  margin-right: 50px;
}
.item-list th {
  text-align: right;
}
.item-list .tx {
  width: 100px;
  height: 100px;
  border: 4px solid #fff;
  border-radius: 150px;
  margin-bottom: 15px;
  margin: 0 auto 15px;
}
.item-list .tx img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 150px;
}
.item-list h3 {
  font-size: 23px;
  color: #000;
}
.item-list .des {
  font-size: 12px;
  color: #9B9B9B;
  margin: 10px 0;
}
.item-list table {
  text-align: right;
  font-size: 13px;
  color: #6F6F6F;
}
.item-list th {
  text-align: right;
}
.item-list td {
  color: #000;
}
.contact-article {
  padding: 10vh 0;
  font-size: 15px;
  color: #636363;
}
.contact-article h1 {
  font-size: 30px;
  color: #000;
  font-weight: bold;
  line-height: 3em;
}
.contact-article h3 {
  font-size: 15px;
  font-weight: bold;
}
.ln-about .title {
  padding: 150px 0 100px;
  height: auto;
  overflow: hidden;
}
.ln-about .title .img{
	float: left;
}
.ln-about .title .txt{
	float: left;
	padding-left: 25px;
}


.ln-pics {
  height: auto;
  overflow: hidden;
}
.ln-pics ul {
  float: left;
  width: 105%;
}
.ln-pics li {
  float: left;
  width: 604px;
  margin-right: 18px;
  padding-bottom: 25px;
}
.ln-pics img {
  display: block;
  width: 100%;
  height: 360px;
  margin-bottom: 10px;
}
.ln-pics p {
  font-size: 13px;
  color: #5D5D5D;
}
.tab-inline {
  display: inline-block;
  width: 459px;
}
.product-box {
  padding: 7vh 0 10vh;
  text-align: center;
}
.product-box h1 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 1.5em;
}
.product-box .tc {
  margin-top: 5vh;
}
.product-box .tc a {
  width: 222px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  background: #4489E6;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-size: 15px;
}
.news-list {
  height: 60vh;
  padding: 30px 0px;
}
.news-list li {
  position: relative;
  font-size: 13px;
  padding: 0px;
  line-height: 35px;
}
.news-list li:hover {
  background: #efefef;
}
.news-list a.link {
  color: #5E5D5D;
  padding: 0 20px;
}
.news-list a.link:hover {
  color: #4489E6;
}
.news-list .action {
  position: absolute;
  right: 0;
  top: 0;
  color: #b3b3b3;
}
.news-list .action span {
  color: #A0A0A0;
  padding-right: 1em;
}
.news-list .action .fa {
  padding-right: 5px;
}
.sk-actions {
  padding-top: 38px;
}
.sk-actions a {
  display: block;
  height: 46px;
  line-height: 46px;
  background: #0084FF;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  text-align: center;
}
.hide{
	display: none;
}
.sk-actions a span {
  padding-left: 30px;
  display: inline-block;
  background: url(../images/icon/Task.png) 0 center no-repeat;
}
.sk-actions .a2 {
  background: #3DB459;
}
.sk-actions .a2 span {
  background-image: url(../images/icon/Store.png);
}
.sk-actions a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.bggrey {
  
}
.page-sk {
  padding: 50px 0;
}
.page-sk .w {
  border-radius: 22px;
  background: #fff;
  -webkit-box-shadow: 0 15px 21px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 15px 21px rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 21px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}
.page-sk .hd {
  line-height: 66px;
  position: absolute;
  left: 0;
  top: 0;
}
.page-sk .hd h3 {
  position: relative;
  padding-left: 50px;
}
.page-sk .hd h3:before {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  background: #DD0000;
  position: absolute;
  left: 30px;
  top: 50%;
  margin-top: -6px;
}
.page-sk .box {
  position: relative;
}
.page-sk .bd {
  padding-top: 60px;
}
.page-sk .con {
  padding: 50px 30px;
  font-size: 15px;
  color: #737373;
}
.page-sk .con th {
  text-align: right;
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 101px;
}
.page-sk .con td {
  color: #000000;
  padding-top: 10px;
  padding-bottom: 10px;
}
.page-sk .con b {
  font-weight: normal;
  /*color: #DD0000;*/
}
.page-sk .btn-copy {
  background: #DD0000;
  color: #fff;
  border-radius: 50px;
  padding: 3px 10px;
  cursor: pointer;
  font-size: 15px;
  display: none;
}
.page-sk .tr:hover .btn-copy {
  display: inline;
  color:#fff!important;
}
.page-sk .tr:hover span,.page-sk .tr:hover b{
	color:#DD0000;
}
.page-sk .box2 {
  background: url(../images/icon/bankimgbg.jpg) right center no-repeat #fff;
  height: 256px;
  position: relative;
}
.page-sk .box2:after {
  content: "";
  display: block;
  height: 4px;
  line-height: 4px;
  background: #0B0B0C;
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
}
.page-sk .box2:before {
  content: "";
  display: block;
  height: 4px;
  line-height: 4px;
  background: #DD0000;
  position: absolute;
  right: 400px;
  top: 0;
  left: 0;
}
.page-sk .box2 .bd {
  padding-top: 75px;
  padding-left: 23px;
}
.page-sk .box2 .bd th,
.page-sk .box2 .bd td {
  vertical-align: middle;
}
.page-sk .box2 .bd th {
  width: 141px;
  text-align: center;
  padding-top: 25px;
}
.page-sk .box2 .bd td {
  line-height: 1.6em;
}
.page-sk .box2 .bd h4 {
  font-weight: bold;
  font-size: 40px;
  color: #000000;
  line-height: 1.6em;
}
.page-sk .box2 .bd h4 b {
  color: #DD0000;
  font-weight: normal;
}
.page-sk .box2 .bd span.fr {
  font-size: 15px;
  line-height: 48px;
}
.page-sk .box2 .bd span.fr b {
  color: #000;
}
.page-sk .box2 .bd p {
  color: #000;
  line-height: 49px;
  font-size: 25px;
  height: 50px;
  position: relative;
  overflow: hidden;
}
.page-sk .box2 .bd .tr{
	text-align: left;
}

.page-sk .box2 .bd .tr:hover,.page-sk .box2 .bd .tr:hover b{
	color:#DD0000;
}
.page-sk .box2 .bd .tr font{
	color:#000;
}

.pro-items {
  padding-top: 50px;
  padding-bottom: 50px;
}
.pro-items .pro-item:nth-of-type(2n) {
  float: right;
}
.pro-item {
  width: 600px;
  height: 320px;
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  position: relative;
  float: left;
}
.pro-item .inner {
  padding: 20px;
}
.pro-item dl {
  position: relative;
  height: auto;
  overflow: hidden;
  margin-bottom: 15px;
}
.pro-item dt {
  width: 85px;
  height: 85px;
  float: left;
  background: url() center no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}
.pro-item dd {
  padding-left: 112px;
}
.pro-item dd h3 {
  font-size: 25px;
  color: #000;
  font-weight: bold;
  line-height: 50px;
}
.pro-item dd p {
  font-size: 16px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pro-item .txts {
  font-size: 12px;
  line-height: 28px;
  color: #737373;
}
.pro-item .nums {
  position: absolute;
  left: 20px;
  bottom: 20px;
  line-height: 41px;
  font-size: 13px;
  color: #737373;
}
.pro-item .btns-group {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.pro-item .btns-group a {
  display: inline-block;
  width: 123px;
  height: 41px;
  background: #3E87FF;
  line-height: 41px;
  border-radius: 8px;
  font-size: 15px;
  color: #fff;
  text-align: center;
  margin-left: 8px;
}

.pro-item .btns-group .a0{
background: #FF9100;
}

.pro-item .btns-group .a2{
background: #3ABC52;
}

.pro-item .btns-group a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.case-title {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.case-title h2 {
  font-size: 30px;
  color: #000;
  margin-bottom: 15px;
}
.case-title p {
  font-size: 13px;
  color: #7D7D7D;
}
.page-case-list {
  max-width: 1688px;
  margin: 0 auto;
}
.page-case-list ul:after {
  content: "";
  display: table;
  clear: both;
}
.page-case-list li {
  float: left;
  width: 25%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 16px;
}
.page-case-list li:nth-of-type(4n+1) {
  clear: left;
}
.page-case-list .imgdiv {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.page-case-list .imgdiv img {
  display: block;
  width: 100%;
}
.page-case-list .img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin-bottom: 5px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
.page-case-list .pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url() center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
.page-case-list .txt {
  text-align: center;
  padding-bottom: 15px;
  padding-top: 15px;
}
.page-case-list .txt h3 {
  font-size: 16px;
  white-space: nowrap;
  line-height: 1.1em;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  top: 0;
}
.page-case-list .txt h3 a {
  color: #333333;
}
.page-case-list .txt .label {
  position: relative;
  font-size: 12px;
  color: #999999;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  height: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-case-list li:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  z-index: 10;
}
.page-case-list li:hover .img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.page-case-list li:hover h3 {
  color: #2ecc81;
  top: 10px;
}
.page-case-list li:hover h3 a {
  color: #0865FF;
}
.page-case-list li:hover .label {
  color: transparent;
  top: -15px;
}
.case-more {
  padding-top: 40px;
  padding-bottom: 100px;
}
.case-more a {
  display: inline-block;
  width: 196px;
  height: 48px;
  text-align: center;
  background: #4489E7;
  color: #fff;
  line-height: 48px;
  border-radius: 100px;
  font-size: 15px;
}
.case-more a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.labeltitle {
  border-bottom: 2px solid #3E87FF;
  margin-top: 50px;
}
.labeltitle strong {
  display: inline-block;
  padding: 5px 15px;
  background: #3E87FF;
  font-size: 16px;
  color: #fff;
  border-radius: 5px 5px 0 0;
}
.article-box .content,
.article-box .intro {
  padding: 15px 0;
  font-size: 16px;
  color: #666;
  line-height: 1.8em;
  margin-bottom: 50px;
}
.article-box img{
	max-width: 100%;
	/*display: block;*/
	margin: 15px auto;
	height: auto!important;

}
.article-box  .imgs-row  img{
	margin: 15px;
}
.article-box .intro {
  font-size: 14px;
}

.article-hd .img-txt {
  vertical-align: top;
}
.article-hd .img-txt .img{
	float: left;
}
.article-hd .img-txt img {
  width: 230px;
}
.article-hd .img-txt {
  margin-top: 18px;
}
.article-hd .img-txt .txt {
  vertical-align: top;padding-left: 276px;
}
.article-hd .infolist {
  padding: 0px 15px 0px;
  font-size: 14px;
  color: #333;
}
.article-hd .infolist{
	line-height: 26px;
	
}

.article-hd .infolist ~ .clear{display:none}

.downurllist {
	float: left;
	width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 4px;
}
.downurllist li {
  float: left;
  margin-right: 10px;
}
.downurllist a {
  display: block;
  width: 142px;
  height: 45px;
  background: #4489E6;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border-radius: 100px;
  cursor: pointer;
}
.downurllist li:nth-of-type(1) a{
	background: #37AC5E;
}

.downurllist a:hover {
  color: #fff;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.downurllist a span {
  color: #fff;
 
}
/*footer*/
.page-tab-row .tab-row{
	height: auto;
	overflow: hidden;
}


.page-case-list-box{
	position: relative;

}
.page-case-list-box:before{
	content: "";
	display: block;
	width: 100%;
	position: absolute;
	left: 0;top: 0;
	height: 500px;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e3e3e3 ), to(#fff));
	background-image: -webkit-linear-gradient(#e3e3e3, #fff);
	background-image: -moz-linear-gradient(#e3e3e3, #fff);
	background-image: -o-linear-gradient(#e3e3e3, #fff);
	background-image: linear-gradient(#e3e3e3, #fff);
	z-index: -1;
}

.downNav{
		position: fixed;
		left: 0;
		top: 52px;
		width: 100%;
		background: #fff;
		background: #fff;
		z-index: 99;display: none;
		padding-bottom: 45px;
		-webkit-box-shadow: 0 0 15px rgba(0,0,0,.2);
		-moz-box-shadow: 0 0 15px rgba(0,0,0,.2);
		box-shadow: 0 0 15px rgba(0,0,0,.2);
	}
	.downNav li{
		float: left;
		width: 24.9999%;
	}
	.downNav dd{
		padding-top: 22px;
	}
	.downNav dl{
		padding-top: 30px;
		padding-left: 50px;
	}
	.downNav dt{
		font-size: 17px;
		color: #000000;
		line-height: 20px;
	}
	.downNav dd a{
		display: block;
		position: relative;
		padding-left: 67px;
		height: 56px;
		line-height: 56px;
		font-size: 13px;
		color: #646464;
	}
	.downNav dd a .icon{
		width: 56px;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		border-radius: 10px;
		background:url() center no-repeat dodgerblue;
		-webkit-background-size: cover;
		background-size: cover;
	}
	.downNav dd a span{
		display: block;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.downNav dd a:hover{
		color: #4489E7;
	}
	.downNav dd a .icon-more{
		background-image: url(../images/more.png);
	}



.page-tab-row .tab-row span.fr~a.on{
	margin-left: 0;
}


.footer,.footer  a{
color:#adadad;
}

.h80{
    height: 60px;
}

.btn-so-icon{
    display: none!important;
}


.btn-menu{
	display: none;
}
html{
	 min-height: 100vh;
	position: relative;
}
.footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}







.article-hd > a {
    display: inline-block;
    width: 123px;
    height: 41px;
    background: #3E87FF;
    line-height: 41px;
    border-radius: 8px;
    font-size: 15px;
    color: #fff;
    text-align: center;
    margin-left: 8px;
  position: absolute;
			right: 0;
			top: 7px;
}


.btn-weixin-icon{
	cursor: pointer;
	width: 52px;
	height: 52px;
	position: absolute;
	right: 0;top: 0;
	background:url(../images/head-top-wx.png) center no-repeat;
	
	
}

.btn-weixin-icon img{
	display: none;
	position: absolute;
	
	top: 100%;
	right: -30px;
}



@media (min-width: 1340px) {
    .btn-weixin-icon img{
    	right: 50%;
    	margin-right: -100px;
    }
}
.logo{
	margin-right: 177px
}


.section4a .page-case-list li{
	width: 33.33333%;
}

.section4a .page-case-list li:nth-of-type(4n+1){
	clear: none;
}
.section4a .page-case-list li:nth-of-type(3n+1){
	clear: left;
}








.btn-weixin-icon:hover{
	background-image: url(../images/head-top-wx2.png);
}


.btn-weixin-icon:hover img{
	display: block;
}
.btn-txkt{
	width: auto;
	padding: 0 45px;
	transition: all 0.2s;
}
.btn-txkt span{
	display: inline-block;
	position: relative;padding: 0;
	transition: padding 0.2s;
}
.btn-txkt i{
	    position: absolute;
    top: 50%;
    right: 0px;
    opacity: 0;
    margin-top: -6px;
    -webkit-transition: opacity 0.2s, right 0.2s;
    -moz-transition: opacity 0.2s, right 0.2s;
    transition: opacity 0.2s, right 0.2s;
}

.btn-txkt:hover span {
	padding: 0 17px 0 0;
}
.btn-txkt:hover i {
	top: 50%;
	right: 0;
	opacity: 1;
	-webkit-transition: opacity 0.2s, right 0.2s;
	-moz-transition: opacity 0.2s, right 0.2s;
	transition: opacity 0.2s, right 0.2s;
}

.hero-content-slider {
	text-align: center;
	padding: 0px;
	opacity: 0;
	-webkit-transition: opacity 1.3s;
	-moz-transition: opacity 1.3s;
	transition: opacity 1.3s;
}

.hero-content-slider .owl-item {
  top: 50%;
}
.hero-content-slider.owl-carousel .owl-item,
.hero-content-slider.owl-carousel  .owl-item:active,
.quote-slider.owl-carousel .owl-item,
.quote-slider.owl-carousel  .owl-item:active {
	cursor: default;
}
.hero-content-slider .owl-animated-in {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-o-animation-delay: 1s;
	-ms-animation-delay: 1s;
	animation-delay: 1s;
}
.hero-content-slider .owl-item p,
.hero-content-slider .owl-item h5,
.hero-content-slider .owl-item h1 {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
	animation-duration: 0.6s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}









