@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -o-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

/*定义滚动条样式（高宽及背景）*/
::-webkit-scrollbar {
  width: 6px; /* 滚动条宽度， width：对应竖滚动条的宽度  height：对应横滚动条的高度*/
  background: #fff;
}

/*定义滚动条轨道（凹槽）样式*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); /* 较少使用 */
  border-radius: 6px;
}

/*定义滑块 样式*/
::-webkit-scrollbar-thumb {
  border-radius: 6px;
  height: 100px; /* 滚动条滑块长度 */
  background-color: #aaa;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0 auto;
  font: 16px/1.45 sans-serif, Arial, "Microsoft Yahei", "Helvetica Neue", Helvetica;
  color: #333;
  background: #fff;
}

html {
  min-width: 980px;
  overflow-x: auto;
}

ul, ul li, ol {
  list-style: none;
}

img {
  border: none;
  vertical-align: top;
}

a {
  color: #333;
}
a:hover {
  color: #444;
}

input, textarea, select, button {
  border: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-family: Arial, sans-serif;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

.clearfix {
  display: inline-block;
  *zoom: 1;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-wrp {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
}

.flex-item {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}

.overflow {
  height: 100%;
  overflow: hidden;
}

.bdbox {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

a, .transition {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.more {
  font-size: 14px;
  color: #333;
}
.more:hover a {
  color: #1B4294;
}

.bdlink {
  cursor: pointer;
}

.wrap {
  max-width: 1200px;
  width: 94%;
  position: relative;
  margin: 0 auto;
}

#header, #footer, .container, .location {
  width: 100%;
  margin: 0 auto;
}

/* header */
#header {
  background: #ffffff;
  z-index: 1;
  height: 112px;
  /* tpfixed */
}
#header .hdbox {
  z-index: 99;
  height: 112px;
  width: 100%;
  margin: 0px auto;
  display: block;
  background: #fff;
  /* mobile */
}
#header .hdbox .wrap {
  height: 100%;
}
#header .hdbox .logo {
  position: absolute;
  width: 88px;
  height: 60px;
  left: 0;
  top: 1px;
  bottom: 0;
  margin: auto 0;
  background: url("../images/logo.png") no-repeat center;
  background-size: 100%;
  display: block;
  z-index: 10;
  font-size: 0;
}
#header .hdbox .logo img {
  width: 100%;
}
#header .hdbox .top-menu {
  position: absolute;
  right: 0;
  top: 11px;
  height: 25px;
  z-index: 10;
  display: flex;
  align-items: center;
  font-size: 12px;
  justify-content: flex-end;
}
#header .hdbox .top-menu > div, #header .hdbox .top-menu > div a {
  display: flex;
  align-items: center;
}
#header .hdbox .top-menu div {
  margin-left: 16px;
}
#header .hdbox .top-menu .tel {
  font-size: 14px;
  line-height: 30px;
}
#header .hdbox .top-menu i {
  width: 23px;
  height: 23px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/top-icon-tel.png);
  margin-right: 6px;
  display: block;
}
#header .hdbox .top-menu .cn i {
  background-image: url(../images/top-icon-cn.png);
}
#header .hdbox .top-menu .en i {
  background-image: url(../images/top-icon-en.png);
}
#header .hdbox .nav {
  position: absolute;
  right: 0px;
  top: 36px;
  margin: auto;
  height: 64px;
}
#header .hdbox .nav li {
  float: left;
  position: relative;
  overflow: hidden;
  height: 100%;
}
#header .hdbox .nav li a {
  line-height: 64px;
  font-size: 1em;
  display: block;
  text-align: center;
  color: #333;
  padding: 0 34px;
  position: relative;
  overflow: hidden;
}
#header .hdbox .nav li a.curr span, #header .hdbox .nav li a._on span, #header .hdbox .nav li a:hover span {
  color: #ff6600;
}
#header .hdbox .nav li a.curr span:after, #header .hdbox .nav li a._on span:after, #header .hdbox .nav li a:hover span:after {
  width: 100%;
}
#header .hdbox .nav li:last-of-type a {
  padding-right: 0;
}
#header .hdbox .mobile-menu {
  display: none;
  width: 45px;
  height: 45px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/mobile_menu.png) no-repeat center;
  background-size: 30px;
  position: absolute;
  right: -10px;
  cursor: pointer;
}
#header .hdbox .mobile-menu:active {
  background-color: #ccc;
}
#header .hdbox, #header .hdbox .logo, #header .hdbox .top-menu, #header .hdbox .nav {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#header .tpfixed {
  height: 66px;
  border-bottom: 1px solid #eee;
  top: 0px;
  position: fixed;
  opacity: 0.95;
  z-index: 999;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.05);
}
#header .tpfixed .logo {
  top: -1px;
  width: 76px;
  height: 52px;
}
#header .tpfixed .top-menu {
  height: 0;
  overflow: hidden;
}
#header .tpfixed .nav {
  top: 0;
  height: 100%;
}
#header .tpfixed .nav li a {
  line-height: 66px;
}

/* container */
.container {
  overflow: hidden;
}
.container .title {
  padding-bottom: 2.2em;
  position: relative;
  text-align: center;
}
.container .title h1 {
  line-height: 1.4;
  font-size: 2.3em;
  color: #000;
  font-weight: normal;
}
.container .title h3 {
  line-height: 1.4;
  font-size: 2.4em;
  color: #000;
  font-weight: normal;
}
.container .title span {
  font-size: 1em;
  color: #999;
  margin-top: 5px;
  letter-spacing: 2px;
  display: block;
}
.container .more-btn {
  text-align: center;
}
.container .more-btn a {
  border: 2px solid #ddd;
  padding: 9px 60px;
  color: #333;
  display: inline-block;
  border-radius: 40px;
  font-size: 0.92em;
  transition: all 0.4s;
}
.container .more-btn a:hover {
  border-color: #1B4294;
  background: #1B4294;
  color: #fff;
}

.swiper-container {
  width: 100%;
}

/* footer */
#footer {
  margin-top: 20px;
  background-color: #26396F;
}
#footer .ft-bottom {
  text-align: left;
  padding: 32px 0 30px;
  min-height: 50px;
  color: #fff;
  font-size: 0.875em;
  line-height: 200%;
  text-align: center;
  position: relative;
}
#footer .ft-bottom .wrap a {
  color: #fff;
}

#backTop {
  background: url("../images/icon_gotop_on.png") no-repeat center #BFBFBF;
  background-size: 1.5em;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 2.5em;
  height: 2.5em;
  position: fixed;
  right: 1.875em;
  bottom: 1.875em;
  z-index: 100;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  cursor: pointer;
  display: none;
}
#backTop:hover {
  background-image: url("../images/icon_gotop.png");
  background-color: #666;
}

.right_nav {
  width: 50px;
  position: fixed;
  right: 6px;
  top: 50%;
  margin-top: -160px;
  z-index: 1000;
}

.right_nav a {
  cursor: pointer;
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  margin: 3px 0px;
  overflow: hidden;
  background-position: center;
  background-color: #31ACF7;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 6px;
}

.right_nav a span {
  position: absolute;
  -webkit-transition: all 0.18s ease;
  -moz-transition: all 0.18s ease;
  -o-transition: all 0.18s ease;
  transition: all 0.18s ease;
  right: 50px;
  width: 160px;
  display: block;
  opacity: 0;
  text-align: center;
  overflow: hidden;
  height: 26px;
  padding: 12px 0px;
  color: #fff;
  background: #FF9900;
  font-size: 16px;
  border-radius: 6px 0 0 6px;
}

.right_nav a.rn_qq div {
  width: 36px;
  height: 36px;
  background-image: url(../images/icon_qq2.png);
  background-size: 36px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 7px;
  position: absolute;
  animation-name: swing; /* 引用关键帧名称 */
  animation-duration: 1.8s; /* 动画持续时间 */
  animation-iteration-count: infinite; /* 动画无限次数执行 */
  animation-timing-function: linear; /* 动画速度时间函数 */
  animation-delay: 2s; /* 动画开始前的延迟 */
}

.right_nav a.rn_weixin {
  background-image: url(../images/icon_weixin_xx.png);
}

.right_nav a.rn_mobile {
  background-image: url(../images/icon_mobile_x.png);
}

.right_nav a.rn_mobile2 {
  background-image: url(../images/icon_mobile_x2.png);
}

.right_nav a.rn_weixin_x {
  background-image: url(../images/icon_weixin_x_x.png);
}

.right_nav a.rn_tel {
  background-image: url(../images/icon_tel_x.png);
}
.right_nav a.rn_tel span {
  width: 220px;
}

.right_nav a.rn_top {
  background-image: url(../images/icon_top_x.png);
  display: none;
  background-size: 80%;
}

.right_nav a:hover {
  background-color: #FF9900;
  overflow: visible;
  border-radius: 0 6px 6px 0;
}

.right_nav a:hover span {
  opacity: 1;
}

.right_nav a.rn_weixin span,
.right_nav a.rn_weixin_x span,
.right_nav a.rn_mobile span,
.right_nav a.rn_mobile2 span {
  top: -52px;
  height: 124px;
  padding: 15px 0px;
}

.right_nav a.rn_weixin img,
.right_nav a.rn_weixin_x img,
.right_nav a.rn_mobile img,
.right_nav a.rn_mobile2 img {
  width: 124px;
  height: 124px;
}

.right_nav a.rn_top:hover {
  border-radius: 6px;
}

#ajax-show {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0px;
  z-index: 300;
  font-size: 14px;
  text-align: center;
  color: #fff;
  line-height: 130%;
  background-color: rgba(255, 255, 255, 0.15);
}
#ajax-show #ajax-loading {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 82px 15px 0;
  width: 96px;
  height: 44px;
  position: fixed;
  top: 48%;
  left: 50%;
  margin: -63px 0 0 -63px;
  background: url("../images/ajax-loader.gif") no-repeat center 34px #000;
  background-size: 32px 32px;
  z-index: 301;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
  -webkit-opacity: 0.8;
}
#ajax-show #ajax-msg {
  width: 260px;
  height: 60px;
  color: #fff;
  text-align: center;
  position: fixed;
  top: 48%;
  left: 50%;
  margin: -30px 0 0 -140px;
  z-index: 301;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

@keyframes swing {
  10% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  20% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-webkit-keyframes swing {
  10% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  20% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
#banner {
  height: 320px;
  background-color: #DCDCED;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0px auto;
  padding: 0px;
  position: relative;
}

/* main */
#main {
  padding: 2% 0 2.5%;
}
#main .wrap {
  display: block;
  padding: 20px 0 0;
}
#main .wrap .title {
  margin-bottom: 1.2% !important;
  max-width: 70%;
  margin: 0 auto;
}
#main .wrap .title h1 {
  background: url(../images/tit_sub.png) no-repeat bottom center;
  padding-bottom: 17px;
}
#main .wrap .title span {
  display: none;
}

.m-content {
  line-height: 1.8;
  min-height: 420px;
  padding-bottom: 15px;
  font-size: 1em;
}
.m-content table {
  border-collapse: collapse;
  width: 100% !important;
}
.m-content table td {
  border-color: #d5d5d5 !important;
  font-size: 0.96em;
  padding: 6px 20px;
  word-wrap: break-word;
  word-break: break-all;
}
.m-content table td p {
  margin: 0 !important;
  word-wrap: break-word;
  word-break: break-all;
}
.m-content p {
  margin-top: 20px;
  font-size: 1em;
}
.m-content p:first-child {
  margin-top: 0;
}
.m-content img {
  max-width: calc(100% - 60px);
  margin: 0.5% auto;
  height: auto;
}

.products .m-content {
  float: right;
  width: 78%;
  border: 1px solid #eee;
  padding: 28px;
  box-sizing: border-box;
}

.container-about .m-content img {
  border-radius: 8px;
}

.contact {
  width: 100%;
  overflow: hidden;
  padding-bottom: 3%;
}
.contact .left {
  width: 52%;
  background-color: #eee;
  padding-bottom: 0;
  height: 396px;
}
.contact .left #aMap {
  line-height: 190%;
  width: 100%;
  height: 370px;
  margin-top: 2px;
  font-size: 13px;
  overflow: hidden;
}
.contact .left #aMap b {
  font-size: 12px;
}
.contact .left .anchorBL {
  display: none;
}
.contact .right {
  width: 44%;
  padding-top: 2.3%;
}
.contact .right h3 {
  font-size: 1.45em;
  margin-bottom: 1em;
  font-weight: normal;
}
.contact .right p {
  margin-top: 14px;
  font-size: 0.92em;
}
.contact .right a {
  margin-top: 1.3em;
  display: inline-block;
  color: #999;
}
.contact .right a:hover {
  color: #1B4294;
}
.contact .amap-logo, .contact .amap-copyright {
  display: none !important;
}

.info-list {
  min-height: 400px;
}
.info-list li {
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 18px 20px;
  overflow: hidden;
}
.info-list li .ibox {
  width: 20%;
  padding-bottom: 5.2%;
  height: 110px;
  background-color: #f6f6f6;
  float: left;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.info-list li .ibox:hover img {
  transform: scale(1.1);
}
.info-list li .ibox img {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.info-list li .content {
  padding-left: 22.2%;
  text-align: left;
}
.info-list li .content h3 {
  font-size: 1.12em;
  font-weight: normal;
  text-align: left;
  margin: 0.3em 0 0.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #111;
}
.info-list li .content span {
  font-size: 13px;
  text-align: left;
  display: block;
}
.info-list li .content p {
  margin-top: 6px;
  font-size: 0.9em;
  text-align: left;
  line-height: 170%;
  color: #787878;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.info-list li .content .dw {
  text-align: left;
  font-weight: bold;
  color: #1B4294;
  font-size: 15px;
  margin-top: 8px;
  line-height: 160%;
  margin-bottom: -5px;
  display: none;
}
.info-list li .content .dw img {
  margin-right: 3px;
  width: 17px;
  vertical-align: -2px;
}
.info-list li .content .link {
  color: #1B4294;
  margin: 10px 0 0;
  display: inline-block;
  text-align: left;
  font-size: 15px;
  border: 1px solid #eee;
  padding: 5px 18px;
  border-radius: 4px;
}
.info-list li .content a:hover {
  color: #ff5500 !important;
}

.container-pro-detail .title h1 {
  font-size: 2em;
}

.down-list {
  min-height: 400px;
  width: 100%;
}
.down-list ul {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.down-list li {
  position: relative;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 16px 18px;
  overflow: hidden;
  width: 49.1%;
  margin: 0 1.8% 20px 0;
  float: left;
  box-sizing: border-box;
}
.down-list li:nth-child(2n) {
  margin-right: 0;
}
.down-list li .ibox {
  width: 30%;
  padding-bottom: 4.2%;
  height: 110px;
  background-color: #f6f6f6;
  float: left;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.down-list li .ibox:hover img {
  transform: scale(1.1);
}
.down-list li .ibox img {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.down-list li .content {
  padding-left: 33.5%;
  text-align: left;
}
.down-list li .content h3 {
  font-size: 1.1em;
  font-weight: normal;
  text-align: left;
  margin: 0.2em 0 0.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #111;
}
.down-list li .content span {
  font-size: 13px;
  text-align: left;
  display: block;
}
.down-list li .content p {
  margin-top: 6px;
  font-size: 13px;
  text-align: left;
  line-height: 170%;
  color: #787878;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.down-list li .content .dw {
  text-align: left;
  font-weight: bold;
  color: #1B4294;
  font-size: 15px;
  margin-top: 8px;
  line-height: 160%;
  margin-bottom: -5px;
  display: none;
}
.down-list li .content .dw img {
  margin-right: 3px;
  width: 17px;
  vertical-align: -2px;
}
.down-list li .content .link {
  color: #1B4294;
  margin: 10px 0 0;
  display: inline-block;
  text-align: left;
  font-size: 13px;
  border: 1px solid #eee;
  padding: 5px 18px;
  border-radius: 4px;
}
.down-list li .content .link:hover {
  margin-right: 5px;
  font-weight: bold;
}
.down-list li .content a:hover {
  color: #ff5500 !important;
}

.container .info-detail img {
  max-width: 100%;
  width: auto;
}
.container .info-detail h1 {
  font-size: 1.9em;
}

.download-detail a {
  color: #2D65D9;
  text-decoration: underline;
}

#popup {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#popup .popup-box {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 640px;
  max-height: 360px;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 5px;
  padding: 3%;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#popup .popup-box img {
  width: 47%;
  margin: auto 5px;
  vertical-align: middle;
}
#popup .popup-box .popup-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
  background: url(../images/mobile_close.jpg) no-repeat center;
  background-size: 60%;
  display: block;
  cursor: pointer;
}

/*
*/
#main .products .category, #main .application .category {
  width: 20%;
  float: left;
}
#main .products .category > ul, #main .application .category > ul {
  margin: 0 0 20px;
}
#main .products .category > ul > li, #main .application .category > ul > li {
  margin: 0 0 8px 0;
}
#main .products .category > ul > li > a, #main .application .category > ul > li > a {
  background: url(../images/icon_ltbg.png) no-repeat 12% 20px #e9e9e9;
  padding: 13px 10px 15px 18%;
  display: block;
}
#main .products .category > ul > li > a.active, #main .products .category > ul > li > a:hover, #main .application .category > ul > li > a.active, #main .application .category > ul > li > a:hover {
  background-color: #1B4294;
  background-image: url(../images/icon_ltbg_on.png);
  color: #fff;
}
#main .products .category > ul > li ul, #main .application .category > ul > li ul {
  padding: 6px 0 6px;
}
#main .products .category > ul > li ul li, #main .application .category > ul > li ul li {
  line-height: 120%;
  border-bottom: 1px solid #eee;
}
#main .products .category > ul > li ul li a, #main .application .category > ul > li ul li a {
  font-size: 14px;
  display: block;
  padding: 10px 15px 12px 18%;
}
#main .products .category > ul > li ul li a.active, #main .application .category > ul > li ul li a.active {
  color: #1B4294;
  font-weight: bold;
}
#main .products .category > ul > li ul li a:hover, #main .application .category > ul > li ul li a:hover {
  background: #1B4294;
  color: #fff;
}
#main .products .pro-list, #main .products .info-list, #main .application .pro-list, #main .application .info-list {
  width: auto !important;
  margin-left: 22%;
}

.products .pro-list {
  width: 102.333333%;
}
.products .pro-list ul {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
}
.products .pro-list li {
  width: 31.333333%;
  float: left;
  margin: 0 2% 1.8% 0;
  border-radius: 5px;
  padding: 0;
  box-sizing: border-box;
  border-color: #eee;
  transition: all 0.4s;
}
.products .pro-list li .ibox {
  width: 100%;
  padding-bottom: 79%;
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.4s;
}
.products .pro-list li .ibox:hover {
  border-color: #1B4294;
  opacity: 0.7;
}
.products .pro-list li .ibox img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 88%;
  max-height: 88%;
  transition: all 0.3s;
}
.products .pro-list li .ibox:hover img {
  transform: scale(1.06);
}
.products .pro-list li .content {
  width: 100%;
  padding: 0;
}
.products .pro-list li .content h3 {
  text-align: center;
  margin: 0 auto;
}
.products .pro-list li .content h3 a {
  font-size: 0.8em;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
  padding: 0.8em 0;
  transition: all 0.4s;
}
.products .pro-list li .content p {
  font-size: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: none;
}
.products .pro-list li .content .link {
  display: none;
}
.products .pro-list li:hover .content h3 a {
  color: #1B4294;
}

.products .info-list ul {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
}
.products .info-list li .ibox {
  background: #fff;
}
.products .info-list li .ibox img {
  object-fit: contain;
}
.products .info-list li .content p {
  font-size: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.pro-detail {
  overflow: hidden;
  padding-bottom: 0 !important;
}
.pro-detail .imglist {
  width: 50%;
  float: left;
  background: #fff;
  position: relative;
}
.pro-detail .imglist #tsImgS {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #ddd;
}
.pro-detail .imglist #tsImgS .MagicZoom {
  width: 100% !important;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 90%;
  position: relative;
  background-color: #fff;
}
.pro-detail .imglist #tsImgS .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden !important;
}
.pro-detail .imglist .swiper-container {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #ddd;
  background-color: #fff;
}
.pro-detail .imglist .swiper-slide {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90% auto;
  padding-bottom: 90%;
  background-color: #fff;
}
.pro-detail .imglist .gallery-thumbs {
  width: 100%;
  border: none;
  margin-top: 12px;
}
.pro-detail .imglist .gallery-thumbs .swiper-slide {
  border: 1px solid #ddd;
  background-color: #fff;
  padding-bottom: 13%;
  box-sizing: border-box;
  background-size: 90%;
  cursor: pointer;
}
.pro-detail .imglist .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: #1B4294;
}
.pro-detail .right {
  width: 46.5%;
  float: right;
  overflow: hidden;
  padding-top: 2%;
}
.pro-detail .right .m-content {
  min-height: inherit;
}
.pro-detail .right .m-text {
  line-height: 2;
  font-size: 1em;
}
.pro-detail .right .desc {
  margin-top: 1.9%;
}
.pro-detail .right .desc b {
  color: #1B4294;
}
.pro-detail .right .desc div {
  margin-top: 1.9%;
}
.pro-detail .right .pro-cs {
  background: #1B4294;
  color: #fff;
  width: 170px;
  padding: 8px 18px 10px;
  margin-top: 5.6%;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.pro-detail .right .pro-cs i {
  width: 30px;
  height: 30px;
  background: url(../images/icon_r2.png) no-repeat center;
  background-size: 14px;
  position: absolute;
  right: 4px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}
.pro-detail .right .m-detail {
  display: none;
  padding-top: 4%;
}
.pro-detail .right .mc-active .m-detail {
  display: block;
}
.pro-detail .right .mc-active .pro-cs i {
  transform: rotate(90deg);
}

#main .detail-cs .m-content {
  margin-top: 30px;
  min-height: 220px;
}
#main .detail-cs .m-content table {
  border-collapse: collapse;
  border: 0px;
  width: 100% !important;
  margin-top: 30px !important;
}
#main .detail-cs .m-content table td {
  border-color: #d5d5d5 !important;
  padding: 8px 20px;
  word-wrap: break-word;
  word-break: break-all;
}
#main .detail-cs .m-content table td p {
  margin: 0 !important;
}
#main .detail-cs .m-content .pro-table tr:first-child td {
  color: #1B4294;
  font-weight: bold;
}
#main .detail-cs .m-content .pro-table tr:nth-child(n+1) td {
  vertical-align: top;
}
#main .detail-cs .m-content .pro-table tr:nth-child(n+1) td div {
  width: 50%;
  float: left;
}
#main .detail-cs .m-content .pro-table tr:nth-child(n+1) td a {
  border-left: 2px solid #ff2200;
  padding: 2px 5px 2px 10px;
  margin: 6px 0;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  background: -webkit-linear-gradient(right, white, #eeeeee);
}

#main .service-list {
  width: 100%;
  padding-bottom: 0.4%;
  min-height: 600px;
  margin-top: -20px;
}
#main .service-list li {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.5% 0;
}
#main .service-list li .service-box {
  display: block;
  padding: 10px 0;
  *zoom: 1;
}
#main .service-list li .service-box:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
#main .service-list .service-idea .service-box {
  padding-top: 0px;
  padding-bottom: 20px;
}
#main .service-list .service-idea .iBox {
  float: right;
  width: 48%;
  padding-bottom: 22%;
  overflow: hidden;
  position: relative;
}
#main .service-list .service-idea .iBox img {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  margin: auto;
}
#main .service-list .service-idea .content {
  float: left;
  width: 48%;
}
#main .service-list .service-idea .content h3 {
  font-size: 1.2em;
  position: relative;
  padding-bottom: 16px;
  color: #333;
}
#main .service-list .service-idea .content h3:after {
  height: 2px;
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  width: 90px;
  z-index: 10;
  background: #1B4294;
  content: "";
}
#main .service-list .service-idea .content p {
  margin-top: 24px;
  font-size: 1em;
  line-height: 1.9em;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
#main .service-list .service-response .service-box {
  background: url(../images/service_bg1.jpg) no-repeat center;
  background-size: cover;
  margin-bottom: 6px;
}
#main .service-list .service-response .service-box .content {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  padding: 26px 3% 22px;
  width: 60%;
  margin: 7% 30px;
  max-width: 550px;
  float: right;
  line-height: 180%;
}
#main .service-list .service-content {
  padding-top: 0px;
}
#main .service-list .service-content .service-box {
  border-bottom: 2px solid #eee;
}
#main .service-list .service-content ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  padding: 0 3% 1.5%;
  box-sizing: border-box;
}
#main .service-list .service-content li {
  flex: 1;
  text-align: center;
}
#main .service-list .service-content li i {
  width: 36%;
  padding-bottom: 36%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/icon_s1.png);
  background-size: 52%;
  display: block;
  margin: 0 auto 16px;
  border: 2px solid #1B4294;
  border-radius: 6px;
  transition: all 0.3s;
  cursor: pointer;
}
#main .service-list .service-content li i:hover {
  background-color: #1B4294;
  background-image: url(../images/icon_s1_on.png);
}
#main .service-list .service-content li.s-2 i {
  background-image: url(../images/icon_s2.png);
}
#main .service-list .service-content li.s-2 i:hover {
  background-image: url(../images/icon_s2_on.png);
}
#main .service-list .service-content li.s-3 i {
  background-image: url(../images/icon_s3.png);
}
#main .service-list .service-content li.s-3 i:hover {
  background-image: url(../images/icon_s3_on.png);
}
#main .service-list .service-content li.s-4 i {
  background-image: url(../images/icon_s4.png);
}
#main .service-list .service-content li.s-4 i:hover {
  background-image: url(../images/icon_s4_on.png);
}
#main .service-list .service-promise {
  padding-top: 0px;
}
#main .service-list .service-promise p {
  margin-top: 10px;
  font-size: 1em;
  line-height: 180%;
  color: #666;
  text-indent: 1.6em;
}

/* page */
.page {
  width: 100%;
  position: relative;
  padding: 1.25em 0 0;
  font-size: 1em;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  margin-top: 1.125em;
  line-height: 1.6em;
  color: #888;
}
.page .light {
  color: #333;
}
.page .left {
  float: inherit;
  margin-right: 10px;
}
.page a {
  width: 1.9em;
  height: 1.9em;
  text-align: center;
  display: inline-block;
  color: #555;
  margin: 0 4px;
  vertical-align: middle;
  line-height: 1.9em;
  border: 1px solid #ccc;
}
.page a.current, .page a:hover {
  background-color: #1B4294;
  border-color: #1B4294;
  color: #fff;
}

/* 0 ~ 1200 */
@media screen and (max-width: 1200px) {
  .container .title h1, .container .title h3 {
    font-size: 36px;
  }
  #banner .box {
    font-size: 3em;
  }
  #about .left h4 {
    font-size: 16px;
  }
  #about .left p {
    font-size: 14px;
  }
}
/* 1081 ~ 1200 */
@media screen and (max-width: 1200px) and (min-width: 1081px) {
  body {
    font-size: 15.5px;
  }
  #header .hdbox .nav li a {
    padding: 0 38px;
  }
  #about .left h4 {
    font-size: 18px;
  }
  #about .left p {
    font-size: 15px;
  }
}
/* * ~ 1080 */
@media screen and (max-width: 1080px) {
  .about-list li .wrap {
    padding: 40px 0 !important;
  }
  .about-list li .content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .about-list li .content a {
    padding: 8px 28px;
  }
  .contact .left {
    height: 390px;
  }
  .pro-detail {
    min-height: auto;
  }
  .pro-detail .imglist #tsImgS .MagicZoom {
    padding-bottom: 90%;
  }
  .pro-detail .imglist .swiper-slide {
    padding-bottom: 90%;
  }
}
/* 981 ~ 1080 */
@media screen and (max-width: 1080px) and (min-width: 981px) {
  body {
    font-size: 15px;
  }
  .container .title h1, .container .title h3 {
    font-size: 32px;
  }
  #header .hdbox .nav li a {
    padding: 0 32px;
  }
}
/* 0 ~ 980 */
@media screen and (max-width: 980px) {
  .container .title h1, .container .title h3 {
    font-size: 30px;
  }
  #header {
    height: 100px;
  }
  #header .hdbox:not(.tpfixed) {
    height: 100px;
  }
  #header .hdbox:not(.tpfixed) .logo {
    top: 0;
  }
  #header .hdbox:not(.tpfixed) .nav {
    height: 58px;
  }
  #header .hdbox:not(.tpfixed) .nav li a {
    line-height: 58px;
  }
  #footer .ft-bottom .wrap {
    background: none;
  }
}
/* 769 ~ 980 */
/* 769 ~ 880 */
/* 0 ~ 768 */

/*# sourceMappingURL=main.min.css.map */
