﻿
/* 基本框架 */
*,*::before,*::after{
  box-sizing:border-box;
}
body {
  font-family: "微软雅黑", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #828282;
  background: #fff;
  margin: 0;
}
a {
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: none
}
a:focus {
  outline: 0 solid
}
p {
  line-height: 26px;
  text-indent: 2rem;
}
h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-family: "微软雅黑", Arial, sans-serif;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.2;
}
h1{font-size: 2.5rem;}
h2{font-size: 2rem;}
h3{font-size: 1.75rem;}
h4{font-size: 1.5rem;}
h5{font-size: 1.25rem;}
h6{font-size: 1rem;}
table{
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
  border: 1px solid #dee2e6;
}
table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
table td, table th {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
}
.shadow-sm{ box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important }
.img-fluid{ max-width:100%;height:auto }
.img-thumbnail{
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}
.text-info{ color: #0dcaf0; }
.text-center{ text-align: center; }

/* 加载状态 */
.loading {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/loader.gif) center no-repeat #fff;
}

/* 页头 */
.header {
  top: 0;
  background-color: #fff !important;
  align-items: center;
  transition: .5s;
  display: flex;
  position: sticky;
  z-index: 1020;
}
.divLogo {
  float: left;
  display: block;
  overflow: hidden;
} 
.divLogo a{
  padding: 18px 0;
  overflow: hidden;
  display: block;
} 
.divLogo img{
  width:248px;
  float: left;
}
.divLogo span{
  margin-top: 23px;
  margin-left: 5px;
  color:#777;
  font-size: 16px;
  font-weight: 300;
  display:block;
  float: left;
}
@media screen and (max-width: 768px) {
  .divLogo {
    margin-left: 15px;
  } 
  .divLogo img{
    width:160px;
  }
  .divLogo span{
    margin-top: 13px;
    margin-left: 5px;
    font-size: 13px;
    font-weight: 300;
  }
}

/* 主菜单 */
.divMenu{
  margin-top: 30px;
  margin-right: -15px;
  float: right;
  display: block;
}
.divMenu ul {
  padding: 0;
  margin: 0;
}
.divMenu ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
  float: left;
}
.divMenu ul li a {
  padding: 15px;
  color: #777;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  display: block;
}
.divMenu ul li a:hover, .divMenu ul li.active > a:hover {
  color: #f8b801;
}
.divMenu ul li.active > a {
  color: #000;
}
@media screen and (max-width: 768px) {
  .divMenu {
    display: none;
  }
}

/* 主菜单 */
.divSidebar {
  width: 50%;
  top: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 5rem 5%;
  background: rgba(0, 0, 0, 0.9);
  overflow-y: auto;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  position: fixed;
  z-index: 1901;
}
.divSidebar a {
  padding: 5px 20px;
  color: rgba(255, 255, 255, 0.85);
  display: block;
}
.divSidebar ul {
  padding: 0;
  margin: 0;
}
.divSidebar ul li {
  padding: 8px 0;
  margin: 0;
  list-style: none;
}
.divSidebar ul li > ul {
  padding-left: 20px;
  display: none;
}


/* 菜单切换按钮 */
.nav-toggle {
  width: 44px;
  height: 44px;
  right: 0px;
  top: 10px !important;
  padding: 6px 0 0 0;
  margin: 0 auto;
  border-bottom: none !important;
  text-decoration: none;
  position: absolute;
  cursor: pointer;
  display: block;
  display: none;
  z-index: 2001;
}
.nav-toggle i {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 2px;
  color: #252525;
  font: bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #252525;
  transition: all .2s ease-out;
}
.nav-toggle i::before, .nav-toggle i::after {
  content: '';
  width: 25px;
  height: 2px;
  background: #252525;
  position: absolute;
  left: 0;
  transition: all .2s ease-out;
}
.nav-toggle:hover, .nav-toggle:focus, .nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}
.nav-toggle.active i::before, .nav-toggle.active i::after {
  background: #444;
}
.nav-toggle > i {
  color: #fff;
  background: #000;
}
.nav-toggle > i::before, .nav-toggle > i::after {
  background: #000;
}
.nav-toggle i::before {
  top: -7px;
}
.nav-toggle i::after {
  bottom: -7px;
}
.nav-toggle.active i {
  background: transparent;
}
.nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  background: #fff;
}
.nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
  background: #fff;
}
@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}

/* 向上箭头 */
.gototop {
  bottom: 45px;
  right: 45px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  position: fixed;
  display: none;
  z-index: 999;
}
.gototop a {
  width: 50px;
  height: 50px;
  display: table;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.gototop a i {
  height: 50px;
  display: table-cell;
  vertical-align: middle;
}
.gototop a:hover, .gototop a:active, .gototop a:focus {
  text-decoration: none;
  outline: none;
}
@media screen and (max-width: 768px) {
  .gototop {
    bottom: 3rem;
    right: 1rem;
  }
}

/* 横幅动画 */
.divBanner .owl-dots{
  position: absolute;
  height: 45px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.divBanner .owl-dots .owl-dot span{
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: rgba(255, 255, 255, 0.2);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}
.divBanner .owl-dot.active span{
  background: #f8b801;
}
.divBanner .info{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  align-items: center;
  text-align: center;
  display: flex;
  position: absolute;
}
.divBanner .info h1, .divBanner .info h2, .divBanner .info h3, .divBanner .info h4, .divBanner .info h5, .divBanner .info h6{
  color: #fff;
}
.divBanner .info h1, .divBanner .info h2, .divBanner .info h3{
  letter-spacing: 0.5rem;
}
.divBanner .info p{
  color: #fff;
}
.divBanner .info .btn {
  padding: 0.8em 2em;
  background: #f8b801;
  border: none;
  color: #fff;
  font-size: 1em;
  line-height: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 5px;
  display: inline-block;
}
.divBanner .info .btn:hover {
  background: #ffc00e;
}

/* 页脚 */
.footer {
  clear: both;
  padding: 30px 0;
  background: #444444;
  color:#dddddd;
  font-size: 14px;
  overflow: hidden;
}
.footer .copyright{
  float: left;
}
.footer .copyright .tel{
  margin-right: 10px;
  color:#f8b801;
  font:bold 1.1em Verdana;
  text-decoration: none;
}
.copyright .divRow{
  overflow: hidden;
}
.copyright .divRow>div{
  float: left;
}
.footer .online{
  clear: both;
  margin-top: 15px;
  display: block;
  overflow: hidden;
}
.footer .online a{
  width:40px;
  height:40px;
  text-align: center;
  background-color:#dddddd;
  display: block;
  border-radius:20px;
}
.footer .online a:hover{
  background-color:#fff;
}
.footer .online i {
  color:#444444;
  font-size: 20px;
  line-height:40px;
}
.footer .qrcode{
  width: 120px;
  text-align: center;
  float: right;
  overflow: hidden;
}
.footer .qrcode img{
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 20px 0;
  }
  .footer .copyright{
    text-align: center;
    float: none;
  }
  .copyright .divRow>div{
    text-align: center;
    float: none;
  }
  .footer .online a{
    margin: 0 auto;
  }
  .footer .qrcode{
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 10px;
    float: none;
  }
}

/* 首页 index:标题 */
.divTitle {
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  overflow:hidden;
}
.divTitle h2 {
  margin-bottom: 32px;
  padding-bottom: 20px;
  color: #000;
  font-size: 28px;
  position: relative;
  text-transform: capitalize;
}
.divTitle h2:before {
  left: 50%;
  bottom: -1px;
  margin-left: -25px;
  width: 50px;
  height: 2px;
  background: #f8b801;
  position: absolute;
  content: "";
}
.divTitle p {
  padding: 0 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #828282;
}
.divTitle span {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}
.divTitle a {
  color: #f8b801;
}
.divTitle a:hover {
  color: #ffc00e;
}
@media screen and (max-width: 768px) {
  .divTitle {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .divTitle h2 {
    margin-bottom: 20px;
  }
}

/* 首页 index:我们的领域 */
.divIndexQuick{
  margin-top: -40px;
  overflow: hidden;
}
.divIndexQuick>div{
  text-align: center;
}
.divIndexQuick a{
  padding-top: 40px;
  color:#808080;
  font-size:14px;
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.divIndexQuick .icon {
  margin: 0 auto;
  margin-bottom: 30px;
  width: 90px;
  height: 90px;
  background: #f8b801;
  display: table;
  text-align: center;
  border-radius: 50%;
  -webkit-transform: rotate(0) scale(1);
  -ms-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, transform 0.3s;
}
.divIndexQuick .icon i {
  display: table-cell;
  vertical-align: middle;
  height: 90px;
  font-size: 40px;
  line-height: 40px;
  color: #fff;
}
.divIndexQuick a:hover .icon{
  background-color: transparent;
  -webkit-transform: rotate(360deg) scale(1.8);
  -ms-transform: rotate(360deg) scale(1.8);
  transform: rotate(360deg) scale(1.8);
}
.divIndexQuick a:hover .icon i{
  color: #f8b801;
}
.divIndexQuick h3{
  color: #000;
  font-size:25px;
}
@media screen and (max-width: 768px) {
  .divIndexQuick{
    margin-top: -15px;
  }
  .divIndexQuick a{
    padding-top: 10px;
    font-size:16px;
  }
  .divIndexQuick .icon {
    margin-bottom: 20px;
  }
}

/* 首页 index:最新消息 */
.divNews a{
  color:#808080;
  -webkit-box-shadow:-2px 4px 5px rgba(25, 13, 15, 0.17);
  -moz-box-shadow:-2px 4px 5px rgba(25, 13, 15, 0.17);
  box-shadow:-2px 4px 5px rgba(25, 13, 15, 0.17);
	-webkit-transition:.5s all;
	-moz-transition:.5s all; 
  transition:.5s all;
  display: block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.divNews .img{
  overflow: hidden;
}
.divNews img {
  width: 100%;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.divNews a:hover{
	box-shadow:-2px 4px 50px rgba(25, 13, 15, 0.38);
} 
.divNews a:hover img{
	-webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.divNews .info {
  padding:2em 1em 1em 1em; 
  font-size:14px;
  text-align: center;
  position: relative; 
}
.divNews .info h5 {
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: 300;
}
.divNews .info h6 {
  width:34%;
  top: -18px;
  left: 33%;
  background: #f8b801;
  color: #fff;
  padding: 0.8em 0;
  font-size: 0.9em;
  font-family:Verdana;
  display: inline-block;
  position: absolute;
}
.divNews .info p{
  text-indent:2em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .divNews a{
    margin-bottom:30px;
  }
  .divNews .info {
    font-size:15px;
  }
}

/* 首页 index:作品推介 */
.divProduct{
  line-height: 0;
  overflow: hidden;
}
.divProduct .info{
  height: 270px;
  padding: 10px 20px;
  background: #f1f3f4;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
}
.divProduct .info h4{
  font-weight: 300;
}
.divProduct .info p{
  font-size: 14px;
  text-indent:2em;
  text-align: left;
}
.divProduct .info a{
  width: 110px;
  height: 40px;
  margin: 0 auto;
  margin-top: 20px;
  background: #f8b801;
  border: none;
  color: #fff;
  font-size: 15px;
  line-height: 40px;
  font-weight: 600;
  border-radius: 5px;
  display: block;
}
@media screen and (max-width: 768px) {
  .divProduct>div{
    margin-bottom: 10px;
  }
}

/* 首页 index:行业解决方案 */
.divIndexSolution{
  padding: 13px 0 10px 0;
  background:#f1f3f4;
  overflow: hidden;
}
.divIndexSolution ul{
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.divIndexSolution ul li{
  width: 12.5%;
  padding: 10px 0;
  border-right: solid 1px #ececec;
  text-align: center;
  list-style: none;
  float: left;
  display: block;
}
.divIndexSolution ul li:last-child{
  border-right: 0;
}
.divIndexSolution ul li .icon{
  width: 50px;
  margin: 0 auto;
}
.divIndexSolution i {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  color: #a8a8a8;
  border: solid 2px #a8a8a8;
  font-size: 25px;
  text-align: center;
  -webkit-border-radius: 10%;
  -moz-border-radius: 10%;
  border-radius: 10%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 25px;
  display:table-cell;
  vertical-align:middle;
}
.divIndexSolution span {
  margin-top: 5px;
  font-size: 14px;
  color: #a8a8a8;
  display: block;
}
@media screen and (max-width: 768px) {
  .divIndexSolution ul li{
    width: 25%;
    border-right: 0;
  }
}

/* 资讯详情 news_browse */
.divNewsBrowse{ 
  margin:55px 0;
}
.divNewsBrowse h2{
  margin-bottom: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  color: #363636;
  font-size: 28px;
  line-height: 150%;
  text-align: center;
  position: relative;
}
.divNewsBrowse h2:before{ 
  width: 50px;
  height: 2px;
  left: 50%;
  bottom: -1px;
  margin-left:-25px;
  background: #f8b801;
  position: absolute;
  content: "";
}
.divNewsBrowse .divDate{ 
  margin-bottom: 30px;
  text-align: center;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #a8a8a8;
}
@media screen and (max-width: 768px) {
  .divNewsBrowse{ 
    margin:20px 0;
  }
  .divNewsBrowse h2{
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 20px;
  }
  .divNewsBrowse .divDate{ 
    margin-bottom: 15px;
  }
}

/* 简介文章 info */
.divInfo{ 
  min-height:350px;
  margin-bottom:50px;
}
@media screen and (max-width: 768px) {
  .divInfo{ 
    margin-bottom:30px;
  }
}

/* 联系方式 contact */
.divContactForm .form-control {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  display: block;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.divContactForm .form-control:active, .divContactForm .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #f8b801;
}
.divContactForm textarea{
  height:250px;
  resize:none;
  font-family: "微软雅黑";
}
.btnContactSubmit{
  padding: 0.8rem 1.5rem 0.8rem 1.6rem;
  background: #f8b801;
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1rem;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.5;
}

.alert{
  padding: 15px;
  padding-right: 35px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert-success{
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-danger{
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.close{
  padding: 0;
  top: 4px;
  right: -21px;
  color: inherit;
  position: relative;
  -webkit-appearance: none;
  cursor: pointer;
  background: 0 0;
  border: 0;
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover{
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}

.divContactInfo{
  margin-top: 20px;
}
.divContactInfo ul{
  margin: 0;
  padding: 0;
  padding-left: 50px;
}
.divContactInfo li {
  margin-bottom: 30px;
  font-size: 16px;
  list-style: none;
  display: block;
  overflow: hidden;
}
.divContactInfo i {
  width: 60px;
  height: 60px; 
  color:#f8b801;
  border: 1px solid #e5e5e5;
  text-align: center;
  line-height: 58px;
  font-size: 30px;
  border-radius:50%;
  float:left;
}
.divContactInfo .info {
  margin-left: 30px;
  padding-top: 4px;
  font-family:Verdana;
  float: left;
}
.divContactInfo h6 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 2px;
  color: #393939;
}
@media screen and (max-width: 768px) {
  .divContactInfo ul{
    padding-left: 10px;
  }
  .divContactInfo .info {
    margin-left: 10px;
  }
  .divContactForm .textName {
    margin-bottom: 15px;
  }
}

/* 技术支持 support */
.divSupport{
  overflow: hidden;
}
.divSupport a{
  width: 100%;
  color: #828282;
  display: block;
  overflow: hidden;
}
.divSupport i{
  width: 40px;
  height: 40px; 
  background-color:#f8b801;
  color:#fff;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
  float:left;
  -webkit-transform: rotateY(0) scale(1);
  -ms-transform: rotateY(0) scale(1);
  transform: rotateY(0) scale(1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
.divSupport .info{
  width: 80%;
  margin-left: 15px;
  float: left;
}
.divSupport .info h4{
  margin-bottom: 10px;
}
.divSupport .info p{
  text-indent: 0;
  font-size: 0.9em;
  line-height: 1.5;
}
.divSupport a:hover .info p {
  color: #828282;
}
.divSupport a:hover i {
  -webkit-transform: rotateY(360deg) scale(1);
  -ms-transform: rotateY(360deg) scale(1);
  transform: rotateY(360deg) scale(1);
}