@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 {
  max-height: 720px;
  width: 100%;
  padding: 0;
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#banner .ibbg {
  width: 100%;
  max-width: 1442px;
  margin: 0 auto;
}
#banner .swiper-container {
  position: absolute !important;
  left: 0;
  top: 0;
  z-index: 2;
  height: 100%;
}
#banner .swiper-container-horizontal > .swiper-pagination-bullets, #banner .swiper-pagination-custom, #banner .swiper-pagination-fraction {
  bottom: 20px;
}
#banner .swiper-pagination-bullet {
  width: 50px;
  height: 5px;
  display: inline-block;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}
#banner .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ff6600;
}
#banner .swiper-slide {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
}
#banner .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
}
#banner:hover .swiper-button-prev, #banner:hover .swiper-button-next {
  opacity: 0.5;
}
#banner .swiper-button-prev, #banner .swiper-button-next {
  background-color: #333;
  margin-top: -35px;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-shadow: inset 0 0 3px #000;
  -moz-box-shadow: inset 0 0 3px #000;
  box-shadow: inset 0 0 3px #000;
}
#banner .swiper-button-prev:hover, #banner .swiper-button-next:hover {
  opacity: 0.8;
}
#banner .swiper-button-prev {
  left: 0;
  border-radius: 0 8px 8px 0;
}
#banner .swiper-button-next {
  right: 0;
  border-radius: 8px 0 0 8px;
}

.container {
  padding: 2.2% 0 2.5%;
}
.container .wrap {
  padding: 20px 0;
}
.container .title {
  flex-direction: column;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}

/* about */
#about {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  padding-bottom: 3.2%;
}
#about .title {
  padding-bottom: 3.2%;
}
#about .left {
  width: 58%;
}
#about .left h4 {
  font-size: 1.4em;
  font-weight: normal;
  margin-bottom: 0.84em;
  margin-top: 3%;
}
#about .left p {
  font-size: 1em;
  line-height: 2em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
#about .left a {
  border: 2px solid #ddd;
  padding: 9px 60px;
  color: #333;
  margin-top: 5%;
  display: inline-block;
  border-radius: 40px;
  font-size: 0.92em;
  transition: all 0.4s;
}
#about .left a:hover {
  border-color: #1B4294;
  background: #1B4294;
  color: #fff;
}
#about .right {
  width: 36%;
  margin-top: 0;
}
#about .right .ibox {
  width: 100%;
  padding-bottom: 98%;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
#about .right .ibox img {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  margin: auto;
  object-fit: contain;
}

.i-swiper .swiper-container {
  padding: 1px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.i-swiper .swiper-pagination {
  bottom: -0.5%;
  z-index: 10;
  text-align: center;
  width: 100%;
}
.i-swiper .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  display: inline-block;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.8;
  margin: 0 3px;
}
.i-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #1B4294;
}

/* prodducts */
#products {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  background: url(../images/home-product-bg.jpg) no-repeat top center;
  background-size: cover;
  padding-bottom: 2.4%;
}
#products .title h3 {
  color: #fff;
}
#products .title span {
  color: #8592B2;
}
#products .swiper-pagination {
  display: none;
}
#products .swiper-button-prev, #products .swiper-button-next {
  display: none;
  margin-top: -4%;
  opacity: 0.2;
  width: 3.6em;
  height: 4.1em;
  -webkit-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 3em;
  border-radius: 3px;
}
#products .swiper-button-prev:hover, #products .swiper-button-next:hover {
  background-color: #eee;
  opacity: 1 !important;
  background-size: 2.6em;
}
#products:hover .swiper-button-prev, #products:hover .swiper-button-next {
  opacity: 0.7;
}
#products .swiper-button-prev {
  left: -10%;
  background-image: url("../images/icon_left.png");
}
#products .swiper-button-next {
  right: -10%;
  background-image: url("../images/icon_right.png");
}
#products ul {
  margin: 1.4% 0 10px 0;
  width: 100%;
  padding-bottom: 0.5%;
  display: flex;
  justify-content: space-between;
}
#products ul li {
  position: relative;
  overflow: hidden;
  width: 30.83333%;
}
#products ul li .iBox {
  background: rgba(255, 255, 255, 0.9);
  padding: 6px;
  box-sizing: border-box;
  border-radius: 1px;
  overflow: hidden;
}
#products ul li .iBox a {
  width: 100%;
  padding-bottom: 77.777777%;
  overflow: hidden;
  position: relative;
  display: block;
  text-align: center;
  background-color: #eee;
}
#products ul li .iBox a:hover img {
  transform: scale(1.1);
}
#products ul li .iBox img {
  position: absolute;
  height: 100%;
  max-width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  transition: all 0.3s;
}
#products ul li .content {
  width: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#products ul li .content a {
  display: block;
  padding: 16px 10%;
  color: #fff;
}
#products ul li .content h4 {
  font-size: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: center;
  font-weight: normal;
}
#products .more-btn {
  margin-bottom: 30px;
}
#products .more-btn a {
  background: #fff;
}
#products .more-btn a:hover {
  background: #ddd;
  border-color: #ddd;
  color: #1B4294;
}

/* download */
#download {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  padding-top: 2.3%;
  padding-bottom: 1.9%;
}
#download .list-box {
  width: 100%;
  min-height: 200px;
  padding: 1.6% 0 3.14%;
  overflow: hidden;
}
#download .list-box li {
  width: calc(50% - 12px);
  list-style: none;
  margin: 0 24px 24px 0;
  float: left;
  display: block;
}
#download .list-box li:nth-child(2n) {
  margin-right: 0;
}
#download .list-box li .content {
  display: flex;
  justify-content: space-between;
  border: 1px solid #ddd;
  padding: 18px;
  box-sizing: border-box;
}
#download .list-box li .iBox {
  width: 120px;
  height: 100px;
  margin-right: 22px;
  overflow: hidden;
}
#download .list-box li .iBox a {
  width: 100%;
  padding-bottom: 83.33333%;
  overflow: hidden;
  position: relative;
  display: block;
  text-align: center;
  background-color: #eee;
}
#download .list-box li .iBox a:hover img {
  transform: scale(1.1);
}
#download .list-box li .iBox img {
  position: absolute;
  height: 100%;
  max-width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  transition: all 0.3s;
}
#download .list-box li a {
  width: 0;
  flex-grow: 1;
  display: block;
  padding: 6px 0 0;
  box-sizing: border-box;
}
#download .list-box li a:hover {
  color: #1B4294;
  padding-left: 5px;
}
#download .list-box li h4 {
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 1.3em;
  font-size: 16px;
}
#download .list-box li p {
  color: #999;
  font-size: 14px;
  width: 100%;
  display: block;
  overflow: hidden;
  margin-top: 12px;
  line-height: 170%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* application */
#application {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
#application ul {
  margin: 0;
  width: 100%;
  padding-bottom: 1.5%;
}
#application ul li {
  float: left;
  position: relative;
  overflow: hidden;
  width: 29%;
}
#application ul li .iBox {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.4s;
}
#application ul li .iBox a {
  width: 100%;
  padding-bottom: 70%;
  overflow: hidden;
  position: relative;
  display: block;
  text-align: center;
}
#application ul li .iBox a:hover img {
  transform: scale(1.1);
}
#application ul li .iBox img {
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  transition: all 0.3s;
  object-fit: contain;
}
#application ul li .content {
  width: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#application ul li .content a {
  display: block;
  padding: 16px 20%;
}
#application ul li .content a:hover {
  color: #1B4294;
}
#application ul li .content h4 {
  font-size: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: center;
  font-weight: normal;
}

/* customer */
#customer {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 0;
}
#customer .wrap {
  margin-top: 0px;
}
#customer ul {
  margin: 0;
  width: 102%;
}
#customer ul li {
  float: left;
  position: relative;
  overflow: hidden;
  width: 14.64%;
  margin: 0 2% 2% 0;
  box-sizing: border-box;
  cursor: pointer;
  border: 1px solid #e6e6e6;
  transition: all 0.4s;
  padding-bottom: 8%;
  background-color: #fff;
}
#customer ul li:hover {
  border-color: #1B4294;
}
#customer ul li:hover .iBox img {
  margin-top: -25px;
}
#customer ul li:hover .content {
  bottom: 0px;
}
#customer ul li .iBox {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  display: block;
  text-align: center;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
#customer ul li .iBox img {
  height: 100%;
  transition: all 0.4s;
}
#customer ul li .content {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: -25px;
  background-color: #1B4294;
  padding: 2px 0;
  z-index: 20;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#customer ul li .content h4 {
  font-size: 0.9em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: center;
  font-weight: normal;
  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;
  }
  #about .left p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
  }
}
/* 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;
  }
}
/* 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;
  }
  #banner .box {
    font-size: 2.5em;
  }
}
/* 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 */
@media screen and (max-width: 980px) and (min-width: 769px) {
  body {
    font-size: 14.5px;
  }
  .more {
    font-size: 12px;
  }
  #header .hdbox .nav li a {
    padding: 0 32px;
  }
}
@media screen and (max-width: 880px) {
  .container .title h3 {
    font-size: 26px;
  }
  .container .title span {
    font-size: 0.86em;
  }
}
/* 769 ~ 880 */
@media screen and (max-width: 880px) and (min-width: 769px) {
  #header .hdbox .nav li a {
    padding: 0 32px;
    font-size: 15px;
  }
  #banner .box {
    font-size: 2.4em;
  }
  .container .more-btn {
    padding: 9px 40px;
  }
}
/* 0 ~ 768 */
/* 0 ~ 420 */

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