html, body {
  overflow-x: hidden;
}
header {
  width: 100%;
  position: relative;
  z-index: 10;
}
header .header {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  line-height: 40px;
}
header nav {
  background-color: #0e275b;
  width: 100%;
  display: flex;
  position: relative;
}
header nav .logo {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  line-height: 60px;
  width: 11.98%;
  text-align: center;
  left: 0;
  padding: 0 5px;
}
header nav .nav {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
header nav .nav > ul {
  display: flex;
  justify-content: space-around;
  width: 90%;
}
header nav .nav > ul > li {
  position: relative;
  line-height: 60px;
  /*flex: 1;*/
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header nav .nav .lv2 {
    position: absolute;
    z-index: 1;
    background-color: #fff;
    top: 120%;
    right: 50%;
    transform: translate(50%, 0) scale(0.5);
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}
header nav .nav > ul > li:hover .lv2 {
    visibility: visible;
    opacity: 1;
    transform: translate(50%, 0) scale(1);
    top: 100%;
}
header nav .nav .lv2 p {
    line-height: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 120px;
    max-width: 200px;
    text-align: center;
    padding: 3px 10px;
}
header nav .nav .lv2 p a {
    color: #999;
    transition: all .5s;
}
header nav .nav .lv2 p a:hover {
    color: #0e275b;
}
header nav .nav > ul > li > a {
  display: block;
  color: #fff;
  position: relative;
  font-size: 16px;
  right: -300px;
}
header nav .nav > ul > li > a > .search {
  height: 28px;
  width: 28px;
  background-color: rgba(255, 255, 255, 0.9);
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
header nav .nav > ul > li > a > .search .icon-search {
  color: #0e275b;
}
header nav .nav > ul > li > .active {
  position: relative;
}
header nav .nav > ul > li > .active::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 3px solid #ffb12b;
}
header nav .nav > ul > li a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 3px solid #ffb12b;
  transition: all 0.5s;
}
header nav .nav > ul > li > a:hover:not(.s)::after {
  content: '';
  width: 100%;
}
.banner {
  width: 100%;
  position: relative;
  text-align: center;
}
.banner .banner-text {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  z-index: 999;
  text-align: left;
  display: none;
}
.banner .banner-text p:nth-child(1) {
  background-color: #576a8e;
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
}
.banner .banner-text p:nth-child(1) > .dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin: 0 10px;
  background-color: #fff;
  vertical-align: middle;
}
.banner .banner-text > h1 {
  font-size: 66px;
  font-weight: 700;
  color: #0e275b;
}
.banner .banner-text > div {
  height: 0;
  width: 70px;
  border: 1px solid #e6e9ee;
  margin-bottom: 30px;
}
.banner .banner-text > h2 {
  font-size: 32px;
  color: #fff;
  font-weight: normal;
}
.banner .banner-text > h3 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
}
.banner .banner-text > a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  margin-top: 50px;
}
.banner .banner-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper-slide {
  background: transparent;
  position: relative;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.banner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}
.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
  content: 'none';
}
.banner .swiper-button-next,
.banner .swiper-container-rtl .swiper-button-prev {
  top: 100%;
  margin: 0;
  width: 50px;
  height: 50px;
  transform: translate(20%, -100%);
  background: url('../images/index-banner-arrow.png') rgba(255, 255, 255, 0.5) no-repeat;
  background-position: -75px 15px;
}
.banner .swiper-button-prev,
.banner .swiper-container-rtl .swiper-button-next {
  top: 100%;
  left: 100%;
  margin: 0;
  width: 50px;
  height: 50px;
  transform: translate(-200%, -100%);
  background: url('../images/index-banner-arrow.png') rgba(255, 255, 255, 0.5) no-repeat;
  background-position: 15px 15px;
  border-right: 1px solid #eee;
}
.banner .custom-pagination {
  position: absolute;
  z-index: 98;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.banner .custom-pagination .nav-item {
  text-align: right;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.banner .custom-pagination .nav-item > span {
  display: none;
  margin-right: 10px;
  width: 20px;
  height: 0;
  border-bottom: 2px solid #fff;
  line-height: 0;
  vertical-align: middle;
  transition: all 0.3s;
}
.banner .custom-pagination .nav-item a {
  display: inline-block;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  vertical-align: middle;
  transition: all 0.3s;
  line-height: 28px;
}
.banner .custom-pagination .active span {
  display: inline-block;
}
.banner .custom-pagination .active a {
  font-size: 28px;
  vertical-align: middle;
  color: #fff;
  line-height: 28px;
}
.banner .swiper-container-horizontal > .swiper-pagination-bullets,
.banner .swiper-pagination-custom,
.banner .swiper-pagination-fraction {
  bottom: 45%;
  transform: translateX(-100%);
  left: 95%;
  width: auto;
}
.hot {
  width: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.hot .hot-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 75px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hot .hot-content .hotSwiper {
  flex: 1;
  height: 100%;
  overflow: hidden;
}
.hot .hot-content .swiper-slide {
  text-align: center;
  font-size: 14px;
  background: transparent;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.hot .hot-content .swiper-button-next,
.hot .hot-content .swiper-container-rtl .swiper-button-prev {
  transform: rotate(90deg);
  width: 15px;
  height: 15px;
  left: 0;
  top: 40px;
  margin: 0;
  background-size: contain;
}
.hot .hot-content .swiper-button-prev,
.hot .hot-content .swiper-container-rtl .swiper-button-next {
  transform: rotate(90deg);
  width: 15px;
  height: 15px;
  left: 0;
  top: 20px;
  margin: 0;
  background-size: contain;
}
.hot .hot-content .swiper-button-next:after,
.hot .hot-content .swiper-button-prev:after {
  content: none;
}
.hot .hot-content .hot-news {
  margin-left: 50px;
  width: 100%;
  text-align: left;
  border-left: 1px solid #cfd4de;
  line-height: 14px;
  padding-left: 30px;
}
.hot .hot-content .hot-news span {
  margin-left: 30px;
}
.hot .hot-content .hot-news span a:hover {
  color: #46599c;
}
.hot .hot-content .more a {
  color: #666;
}
.hot .hot-content .more a:hover {
  color: #46599c;
}
.about-us {
  width: 100%;
}
.about-us .about-us-content {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
}
.about-us .about-us-content .about-us-content-lt {
  width: 50%;
  display: none;
}
.about-us .about-us-content .about-us-content-lt > div {
  width: 29px;
  height: 29px;
  background: url("../images/index-icon.png") no-repeat;
}
.about-us .about-us-content .about-us-content-lt p:nth-child(2) {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  margin: 15px 0 5px 0;
}
.about-us .about-us-content .about-us-content-lt p:nth-child(3) {
  font-size: 20px;
  padding: 0 10px 10px 0;
  border-bottom: 1px solid #cacaca;
}
.about-us .about-us-content .about-us-content-lt span {
  display: block;
  width: 40px;
  height: 0;
  border-bottom: 3px solid #46599c;
  position: relative;
  top: -2px;
}
.about-us .about-us-content .about-us-content-lt p:nth-child(5) {
  color: #666;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.about-us .about-us-content .about-us-content-lt a {
  display: block;
  height: 40px;
  width: 140px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #0e275b;
  margin-top: 40px;
}
.about-us .about-us-content .about-us-content-rt {
  width: 45%;
  position: relative;
  left: 2000px;
}
.about-us .about-us-content .about-us-content-rt img {
  display: block;
  width: 100%;
}
.index-prod-center {
  width: 100%;
  background: url("../images/index-prod-bg.png");
  overflow: hidden;
  position: relative;
}
.index-prod-center .index-prod-center-content {
  max-width: 1200px;
  width: 100%;
  margin: 65px auto 35px auto;
}
.index-prod-center .index-prod-center-content .index-prod {
  width: 100%;
  position: relative;
  bottom: -500px;
}
.index-prod-center .index-prod-center-content .index-prod .prodSwiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index-prod-center .index-prod-center-content .index-prod .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.index-prod-center .index-prod-center-content .index-prod .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-prod-center .index-prod-center-content .index-prod .swiper-button-next:after,
.index-prod-center .index-prod-center-content .index-prod .swiper-button-prev:after {
  content: 'none';
}
.index-prod-center .index-prod-center-content .index-prod .swiper-button-next,
.index-prod-center .index-prod-center-content .index-prod .swiper-container-rtl .swiper-button-prev {
  visibility: visible;
  top: 100%;
  margin: 0;
  width: 45px;
  height: 45px;
  transform: translate(200%, -340%);
  background: url('../images/index-banner-arrow.png') #84580d no-repeat;
  background-position: -78px 12px;
}
.index-prod-center .index-prod-center-content .index-prod .swiper-button-prev,
.index-prod-center .index-prod-center-content .index-prod .swiper-container-rtl .swiper-button-next {
  visibility: visible;
  z-index: 999;
  top: 100%;
  left: 100%;
  margin: 0;
  width: 45px;
  height: 45px;
  transform: translate(78%, -460%);
  background: url('../images/index-banner-arrow.png') #84580d no-repeat;
  background-position: 14px 12px;
}
.index-prod-center .index-prod-center-content .index-prod .swiper-container-horizontal > .swiper-pagination-bullets,
.index-prod-center .index-prod-center-content .index-prod .swiper-pagination-custom,
.index-prod-center .index-prod-center-content .index-prod .swiper-pagination-fraction {
  display: flex;
  flex-direction: column;
  left: 100%;
  transform: translate(-100%, -100%);
  width: 20px;
  bottom: 50%;
  color: #fff;
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block {
  width: 100%;
  background-color: transparent;
  position: relative;
  overflow: visible !important;
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block > div:nth-child(1) {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  position: relative;
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block > div:nth-child(1) > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block > div:nth-child(1) > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: rgba(255, 177, 43, 0.5);
  bottom: 0;
  left: 0;
  transition: all 0.5s;
  overflow: hidden;
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block > div:nth-child(1) > a > div {
  display: none;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: all 0.5s;
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block > div:nth-child(2) {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: transparent;
  margin-top: 60px;
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block > div:nth-child(2) .round {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block > div:nth-child(2) .round > div {
  display: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #f0a92f;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block > div:nth-child(2) p {
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block:hover > div:nth-child(1) > a {
  height: 100%;
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block:hover > div:nth-child(1) > a > div {
  display: block;
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block:hover > div:nth-child(2) .round {
  background-color: #f0a92f;
}
.index-prod-center .index-prod-center-content .index-prod .index-prod-block:hover > div:nth-child(2) .round > div {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #f0a92f;
  position: absolute;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-prod-center .index-prod-footer {
  position: absolute;
  bottom: 0;
  height: 80px;
  width: 100%;
  border-top: 3px solid rgba(255, 255, 255, 0.5);
}
.index-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.index-title .index-title-icon {
  width: 29px;
  height: 29px;
  background: url("../images/index-icon.png");
}
.index-title p:nth-child(2) {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
.index-title p:nth-child(3) {
  font-size: 20px;
  color: #fff;
  padding: 0 50px 0 50px;
  border-bottom: 1px solid #fff;
}
.index-title span {
  width: 40px;
  height: 0;
  border-bottom: 3px solid #ffb12b;
  position: relative;
  top: -2px;
}
.index-title .icon1 {
  background-position: 0 -40px;
}
.index-title .icon2 {
  background-position: 0 -80px;
}
.index-title .icon3 {
  background-position: 0 -120px;
}
.index-news-title p:nth-child(2) {
  color: #000;
}
.index-news-title p:nth-child(3) {
  color: #000;
  border-bottom: 1px solid #cacaca;
}
.index-news-title span {
  border-bottom: 3px solid #0e275b;
  top: -2px;
}
.index-news-center {
  width: 100%;
}
.index-news-center .index-news-center-content {
  max-width: 1200px;
  margin: 80px auto;
}
.index-news-center .index-news-center-content .index-news {
  width: 100%;
  height: 550px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
}
.index-news-center .index-news-center-content .index-news .index-news-block {
  height: 100%;
  border: 0;
  padding: 50px 35px 50px 35px;
  transition: all 0.5s;
}
.index-news-center .index-news-center-content .index-news .index-news-block a {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.index-news-center .index-news-center-content .index-news .index-news-block a p:nth-child(1) {
  color: #fff;
}
.index-news-center .index-news-center-content .index-news .index-news-block a p:nth-child(2) {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 20px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-news-center .index-news-center-content .index-news .index-news-block a p:nth-child(3) {
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.index-news-center .index-news-center-content .index-news .index-news-block a div {
  position: absolute;
  bottom: -500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid #fff;
  width: 50%;
  transition: all 0.5s;
}
.index-news-center .index-news-center-content .index-news .index-news-block a div span:nth-child(1) {
  color: #fff;
}
.index-news-center .index-news-center-content .index-news .index-news-block a div span:nth-child(2) {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
.index-news-center .index-news-center-content .index-news .index-news-block a:hover div {
  bottom: 0;
}
.index-news-center .index-news-center-content .index-news .index-news-block:nth-child(1) {
  width: 40%;
  background: url("../images/index-news1.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  left: -1500px;
}
.index-news-center .index-news-center-content .index-news .index-news-block:nth-child(2) {
  width: 29%;
  background: url("../images/index-news2.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  left: -1500px;
}
.index-news-center .index-news-center-content .index-news .index-news-block:nth-child(3) {
  width: 29%;
  height: 49%;
  background-color: #0068bf;
  position: relative;
  left: 1000px;
}
.index-news-center .index-news-center-content .index-news .index-news-block:nth-child(3) a div {
  display: none;
}
.index-news-center .index-news-center-content .index-news .index-news-block:nth-child(4) {
  width: 29%;
  height: 49%;
  background-color: #013068;
  position: relative;
  left: 1000px;
}
.index-news-center .index-news-center-content .index-news .index-news-block:nth-child(4) a div {
  display: none;
}
.index-app {
  width: 100%;
}
.index-app .index-app-content {
  width: 100%;
  height: 390px;
  display: flex;
}
.index-app .index-app-content .index-app-block-lt {
  background: url("../images/index-app1.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  left: -1000px;
}
.index-app .index-app-content .index-app-block-rt {
  background: url("../images/index-app2.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  left: 1000px;
}
.index-app .index-app-content .index-app-block-lt,
.index-app .index-app-content .index-app-block-rt {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s linear;
}
.index-app .index-app-content .index-app-block-lt > span,
.index-app .index-app-content .index-app-block-rt > span {
  font-size: 28px;
  color: #fff;
}
.index-app .index-app-content .index-app-block-lt .circle,
.index-app .index-app-content .index-app-block-rt .circle {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  margin-top: 10px;
}
.index-app .index-app-content .index-app-block-lt .circle > div,
.index-app .index-app-content .index-app-block-rt .circle > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.index-app .index-app-content .index-app-block-lt .circle > div > .icon-arrow-right2,
.index-app .index-app-content .index-app-block-rt .circle > div > .icon-arrow-right2 {
  line-height: 43px;
}
.index-app .index-app-content .index-app-block-lt:hover .circle,
.index-app .index-app-content .index-app-block-rt:hover .circle {
  background-color: rgba(255, 177, 43, 0.5);
  animation: scale 1s infinite;
}
@keyframes scale {
  0% {
    width: 64px;
    height: 64px;
  }
  50% {
    width: 80px;
    height: 80px;
  }
  100% {
    width: 64px;
    height: 64px;
  }
}
.index-app .index-app-content .index-app-block-lt:hover .circle > div,
.index-app .index-app-content .index-app-block-rt:hover .circle > div {
  background-color: rgba(255, 177, 43, 0.8);
}
.index-app .index-app-content .index-app-block-lt:hover .circle > div > .icon-arrow-right2,
.index-app .index-app-content .index-app-block-rt:hover .circle > div > .icon-arrow-right2 {
  color: #fff;
}
.index-app .index-app-more {
  width: 100%;
  text-align: center;
  margin: 50px 0 100px 0;
}
.index-app .index-app-more > a {
  display: inline-block;
  padding: 10px 100px;
  background-color: #0e275b;
  color: #fff;
}
footer {
  width: 100%;
  background: url("../images/footer-bg.png") no-repeat;
  background-size: cover;
}
footer .footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .footer-top .footer-lt {
  width: 35%;
}
footer .footer-top .footer-lt > img {
  margin-bottom: 30px;
}
footer .footer-top .footer-lt p {
  color: #fff;
}
footer .footer-top .footer-lt p span {
  padding: 0 10px 0 0;
}
footer .footer-top .footer-mid {
  width: 45%;
  display: flex;
  justify-content: space-between;
}
footer .footer-top .footer-mid ul {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
footer .footer-top .footer-mid ul > span {
  display: block;
  width: 50px;
  height: 0;
  margin: 10px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
footer .footer-top .footer-mid ul > li {
  line-height: 28px;
}
footer .footer-top .footer-mid ul > li a {
  display: inline;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}
footer .footer-top .footer-mid ul > li a:hover {
  text-decoration: underline !important;
}
footer .footer-top .footer-rt {
  width: 30%;
  text-align: right;
}
footer .footer-top .footer-rt div {
  margin-top: 30px;
  display: inline-block;
}
footer .footer-top .footer-rt div p {
  margin-top: 5px;
  color: #fff;
  text-align: center;
}
footer .footer-bt {
  width: 100%;
  border-top: 1px solid #94a1a3;
}
footer .footer-bt .footer-bt-content {
  max-width: 1200px;
  width: 100%;
  padding: 40px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
footer .footer-bt .footer-bt-content > div:nth-child(2) > a {
  color: #fff;
}
footer .footer-bt .footer-bt-content > div:nth-child(2) > a:hover {
  text-decoration: underline !important;
}
.banner {
  width: 100%;
}
.location {
  width: 100%;
  border-bottom: 1px solid #dee5ff;
}
.location .location-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
}
.location .location-content .tab {
  display: flex;
  width: 50%;
  height: 100%;
}
.location .location-content .tab > div {
  width: 33.3333%;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  border-right: 1px solid #dee5ff;
}
.location .location-content .tab > div a {
  color: #333;
}
.location .location-content .tab > div:nth-child(1) {
  border-left: 1px solid #dee5ff;
}
.location .location-content .tab .active {
  background-color: #0e275b;
  color: #fff;
}
.location .location-content .tab .active a {
  color: #fff;
}
.location .location-content .bread a {
  color: #666;
}
.location .location-content .bread a:hover {
  color: cornflowerblue;
}
.location .location-content .bread .icon-home3 {
  color: #0e275b;
}
.inner-page-title {
  margin: 80px 0 20px 0;
  width: 100%;
  text-align: center;
}
.inner-page-title p:nth-child(1) {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}
.inner-page-title p:nth-child(2) {
  font-size: 20px;
}
.main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 100px auto;
}
.contact {
  margin-top: 50px;
  width: 100%;
}
.contact .contact-us {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.contact .contact-us .contact-us-lt {
  width: 50%;
}
.contact .contact-us .contact-us-lt .contact-map {
  width: 100%;
  height: 380px;
}
.contact .contact-us .contact-us-lt .contact-map #map {
  width: 100%;
  height: 100%;
}
.contact .contact-us .contact-us-rt {
  width: 45%;
}
.contact .contact-us .contact-us-rt p {
  font-size: 16px;
  color: #666;
  margin-top: 15px;
  margin-bottom: 30px;
}
.contact .contact-us .contact-us-rt p .icon {
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  margin-right: 15px;
  background: url('../images/contact-us-icon-sprites.png') no-repeat;
}
.contact .contact-us .contact-us-rt p .icon1 {
  background-position: 0 0;
}
.contact .contact-us .contact-us-rt p .icon2 {
  background-position: 0 -66px;
}
.contact .contact-us .contact-us-rt p .icon3 {
  background-position: 0 -134px;
}
.contact .contact-us .contact-us-rt p .icon4 {
  background-position: 0 -200px;
}
.contact .contact-us .contact-us-rt p:nth-child(1) {
  margin: 0;
  padding-bottom: 10px;
  font-size: 20px;
  color: #333;
  font-weight: 700;
  border-bottom: 1px solid #d6d6d6;
}
.contact .contact-msg {
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid #d6d6d6;
  margin-top: 30px;
}
.contact .contact-msg form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact .contact-msg form input {
  margin-bottom: 30px;
  padding-left: 30px;
  color: #666;
}
.contact .contact-msg form input::placeholder {
  color: #999;
}
.contact .contact-msg form .author,
.contact .contact-msg form .email {
  width: 49%;
  height: 60px;
  background-color: #f3f3f3;
}
.contact .contact-msg form .tel {
  width: 100%;
  height: 60px;
  background-color: #f3f3f3;
}
.contact .contact-msg form textarea {
  width: 100%;
  height: 170px;
  background-color: #f3f3f3;
  padding: 30px;
  resize: none;
}
.contact .contact-msg form textarea::placeholder {
  color: #999;
}
.contact .contact-msg form > div {
  width: 100%;
  text-align: center;
}
.contact .contact-msg form > div > button {
  width: 150px;
  height: 50px;
  margin-top: 50px;
  background-color: #0e275b;
  color: #fff;
  font-size: 16px;
}
.mb-tab {
  width: 100%;
  display: none;
  margin-top: 30px;
}
.mb-tab > div {
  flex: 1;
  color: #333;
  text-align: center;
  padding: 5px 0;
  background-color: #f0f0f0;
  border: 1px solid #999;
  border-left: 0;
}
.mb-tab > div a {
  color: #333;
}
.mb-tab > div:nth-child(1) {
  border-left: 1px solid #999;
}
.mb-tab .active {
  color: #fff;
  background-color: #0e275b;
}
.mb-tab .active a {
  color: #fff;
}
.company-profile p {
  font-size: 16px;
  text-indent: 2em;
}
.company-profile img {
  margin: 15px 0 0 0;
}
.dev-history {
  width: 100%;
  background: url('../images/dev-history-bg.jpg') no-repeat;
  background-size: cover;
  padding: 60px 0;
}
.dev-history .dev-history-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.dev-history .dev-history-content .history-brief {
  width: 100%;
  display: flex;
}
.dev-history .dev-history-content .history-brief .brief-lt {
  width: 30%;
}
.dev-history .dev-history-content .history-brief .brief-lt p {
  margin-left: 30px;
  font-size: 24px;
}
.dev-history .dev-history-content .history-brief .brief-rt {
  flex: 1;
  font-size: 16px;
  vertical-align: middle;
}
.dev-history .dev-history-content .history-brief .brief-rt .icon-star-full {
  vertical-align: middle;
}
.dev-history .dev-history-content .history-swiper {
  margin-top: 80px;
  overflow: hidden;
}
.dev-history .dev-history-content .history-swiper .historySwiper {
  width: 100%;
  height: 100%;
}
.dev-history .dev-history-content .history-swiper .swiper-slide {
  font-size: 16px;
  background: transparent;
}
.dev-history .dev-history-content .history-swiper .history-block {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ececec;
  border-top: 1px solid #ececec;
}
.dev-history .dev-history-content .history-swiper .history-block .history-block-lt {
  width: 30%;
  font-size: 16px;
}
.dev-history .dev-history-content .history-swiper .history-block .history-block-rt {
  flex: 1;
  color: #333;
  font-size: 16px;
  padding: 30px 0;
  box-sizing: content-box;
}
.cooperation {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.cooperation .coop-swiper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}
.cooperation .coop-swiper .coSwiper {
  margin-left: auto;
  margin-right: auto;
}
.cooperation .coop-swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.news-center-content {
  width: 100%;
}
.news-center-content .news-center-block {
  padding: 60px 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #d4d4d4;
  transition: all 0.5s;
}
.news-center-content .news-center-block .date {
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-center-content .news-center-block .date span:nth-child(1) {
  font-size: 40px;
  color: #999;
}
.news-center-content .news-center-block .date div {
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 1px solid #999;
}
.news-center-content .news-center-block .date span:nth-child(3) {
  margin-top: 10px;
  font-size: 16px;
  color: #999;
}
.news-center-content .news-center-block .news-img {
  width: 33%;
  height: 0;
  padding-bottom: 20%;
  position: relative;
}
.news-center-content .news-center-block .news-img img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-center-content .news-center-block .news-content {
  width: 50%;
}
.news-center-content .news-center-block .news-content > h4 {
  font-size: 20px;
  color: #000;
  padding-bottom: 20px;
}
.news-center-content .news-center-block .news-content p {
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  border-bottom: 1px dashed #c9c9c9;
  padding-bottom: 30px;
}
.news-center-content .news-center-block .news-content .more {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.news-center-content .news-center-block .news-content .more > span {
  color: #999;
}
.news-center-content .news-center-block .news-content .more > div {
  width: 26px;
  height: 15px;
  background: url('../images/news-center-arrow.png') no-repeat;
  background-position: 0 -18px;
}

.news-content1 {
  width: 84%;
}
.news-content1 > h4 {
  font-size: 20px;
  color: #000;
  padding-bottom: 20px;
}
.news-content1 p {
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  border-bottom: 1px dashed #c9c9c9;
  padding-bottom: 30px;
}
.news-content1 .more {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.news-content1 .more > span {
  color: #999;
}
.news-content1 .more > div {
  width: 26px;
  height: 15px;
  background: url('../images/news-center-arrow.png') no-repeat;
  background-position: 0 -18px;
}


.news-center-content .news-center-block:hover {
  border: 0;
  background-color: #f5f5f5;
  transform: translateX(1%);
}
.news-center-content .news-center-block:hover .date span:nth-child(1) {
  color: #0e275b;
}
.news-center-content .news-center-block:hover .date div {
  border-bottom: 1px solid #0e275b;
}
.news-center-content .news-center-block:hover .date span:nth-child(3) {
  color: #0e275b;
}
.news-center-content .news-center-block:hover .news-content > h4 {
  color: #0e275b;
}
.news-center-content .news-center-block:hover .news-content .more > span {
  color: #0e275b;
}
.news-center-content .news-center-block:hover .news-content .more > div {
  background-position: 0 0;
}
.box {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.news-detail {
  width: 100%;
  margin-top: 80px;
}
.news-detail h1 {
  font-size: 24px;
  color: #333;
  text-align: center;
  width: 100%;
}
.news-detail h2 {
  font-size: 14px;
  color: #9e9e9e;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.news-detail article {
  width: 100%;
  margin-bottom: 50px;
}
.news-detail article p {
  text-indent: 2em;
  color: #333;
}
.news-detail article img {
  display: block;
  margin: 10px auto 30px auto;
}
.news-detail .article-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #bebebe;
}
.news-detail .article-footer > div {
  padding: 20px 0 0 0;
}
.app {
  width: 100%;
  margin-top: 40px;
}
.app .app-block {
  position: relative;
  width: 100%;
  padding-right: 55px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  background-color: #f6f6f6;
  overflow: hidden;
  transition: all 0.5s;
}
.app .app-block .img {
  width: 30%;
  height: 0;
  padding-bottom: 25%;
  position: relative;
}
.app .app-block .img img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.app .app-block .app-content {
  margin-top: 30px;
  width: 65%;
}
.app .app-block .app-content .app-brief {
  padding-top: 40px;
  margin-top: 10px;
  border-top: 1px solid #d1d1d1;
}
.app .app-block .app-content .app-brief p {
  color: #666;
}
.app .app-block .link {
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: #e3e3e3;
  color: #666;
  right: 0;
  top: 0;
  line-height: 190px;
  text-align: center;
  transform: rotate(45deg) translate(0, -70%);
  transition: all 0.5s;
}
.app .app-block:hover {
  background-color: #ebeef6;
  transform: translateX(1%);
}
.app .app-block:hover .link {
  background-color: #fbfbfb;
}
.app-detail {
  width: 100%;
  margin-top: 60px;
}
.app-detail .title {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #1d2e5c;
  border-bottom: 1px solid #dee5ff;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.app-detail .app-intro-title {
  height: 30px;
  background-color: #1d2e5c;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 2px 20px 4px 20px;
  margin-bottom: 25px;
  box-sizing: content-box;
}
.app-detail .app-intro-title .ico {
  display: inline-block;
  width: 20px;
  height: 100%;
  background: url('../images/app-detail-icon-sprites.png') no-repeat;
  vertical-align: middle;
}
.app-detail .app-intro-title .ico-intro {
  background-position: 0 4px;
}
.app-detail .app-intro-title .ico-prod {
  background-position: 0 -27px;
}
.app-detail .app-intro {
  width: 100%;
  padding: 25px 20px;
  background-color: #fff;
  border: 1px dashed #e2e2e2;
}
.app-detail .app-intro p {
  color: #666;
}
.app-detail .app-prod {
  width: 100%;
  padding: 25px 20px;
}
.app-detail .app-prod-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.app-detail .app-prod-content .app-prod-block {
  width: 31%;
  display: inline-block;
  border: 1px solid transparent;
  transition: all 0.5s;
  margin-bottom: 35px;
}
.app-detail .app-prod-content .app-prod-block .block-top {
  width: 100%;
  padding-bottom: 80%;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.app-detail .app-prod-content .app-prod-block .block-top img {
  display: block;
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.app-detail .app-prod-content .app-prod-block .block-title {
  background-color: #f0f0f0;
  padding: 20px 0;
  text-align: center;
  transition: all 0.5s;
}
.app-detail .app-prod-content .app-prod-block:hover {
  border: 1px solid #1d2e5c;
  transform: translateY(-1%);
}
.app-detail .app-prod-content .app-prod-block:hover .block-title {
  background-color: #1d2e5c;
  color: #fff;
}
.app-prod-content::after {
  content: "";
  width: 31%;
  height: 0;
  display: block;
}
.prod-detail {
  width: 100%;
  display: flex;
  margin-top: 80px;
  margin-bottom: 70px;
}
.prod-detail .prod-detail-img {
  width: 45%;
  height: 0;
  padding-bottom: 40%;
  position: relative;
  overflow: hidden;
}
.prod-detail .prod-detail-img img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.prod-detail .prod-detail-article {
  flex: 1;
  background-color: #0e275b;
  padding: 50px 60px;
}
.prod-detail .prod-detail-article > div {
  width: 100%;
  color: #fff;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 40px;
  border-bottom: 1px solid #3e527c;
}
.prod-detail .prod-detail-article > div > span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ffb12b;
  position: relative;
  margin-right: 10px;
}
.prod-detail .prod-detail-article > div > span .dot {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #ffb12b;
  border-radius: 50%;
}
.prod-detail .prod-detail-article > p {
  font-size: 16px;
  color: #fff;
}
.prod-index {
  width: 100%;
}
.prod-index .prod-index-title {
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e1e6f1;
}
.prod-index .prod-index-title .dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #0e275b;
  border-radius: 50%;
  vertical-align: middle;
}
.prod-index .prod-index-title > span {
  font-size: 18px;
  color: #333;
  vertical-align: middle;
}
.prod-index .table {
  width: 100%;
}
.prod-index .table table {
  width: 100%;
}
.prod-index .table table tr td {
  width: auto;
  text-align: center;
  border: 0;
  border-bottom: 1px solid #e1e6f1;
  border-left: 1px solid #e1e6f1;
  color: #666;
}
.prod-index .table table tr td:last-child {
  border-right: 1px solid #e1e6f1;
}
.prod-index .table table tr:hover {
  background-color: #f5f5f5;
}
.prod-index .table table tr:nth-child(1) {
  background-color: #0e275b;
}
.prod-index .table table tr:nth-child(1) td {
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.prod-center {
  width: 100%;
  margin-top: 80px;
}
.prod-center .prod-center-title {
  width: 100%;
  border-bottom: 1px solid #dee5ff;
  display: flex;
  justify-content: space-between;
}
.prod-center .prod-center-title > div:nth-child(1) > span {
  font-size: 24px;
  color: #0e275b;
  font-weight: 700;
  padding-right: 15px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ffb12b;
  position: relative;
  top: -3px;
}
.prod-center .prod-center-title > div:nth-child(2) > a {
  display: inline-block;
  width: 150px;
  line-height: 40px;
  color: #333;
  background-color: #e8e8e8;
  text-align: center;
  margin-left: 40px;
}
.prod-center .prod-center-title > div:nth-child(2) .active {
  background-color: #0e275b;
  color: #fff;
}
.prod-center .prod-cate {
  width: 100%;
}
.prod-center .prod-cate .prod-cate-title {
  width: 100%;
  background-color: #f1f5fe;
  font-size: 18px;
  color: #0e275b;
  padding: 5px 15px;
  margin-top: 25px;
  margin-bottom: 30px;
}
.prod-center .prod-cate .prod-cate-content {
  width: 100%;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
  border: 1px solid transparent;
  transition: all 0.5s;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block .prod-cate-img {
  width: 21.666%;
  padding-bottom: 15%;
  position: relative;
  border: 1px solid #e2e2e2;
  transition: all 0.5s;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block .prod-cate-img img {
  position: absolute;
  display: block;
  width: 60%;
  height: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block .prod-cate-intro {
  width: 75%;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block .prod-cate-intro > h3 {
  width: 100%;
  border-bottom: 1px solid #e3ecfd;
  padding-bottom: 10px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block .prod-cate-intro .description {
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block .prod-cate-intro .feature {
  margin-top: 20px;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block .prod-cate-intro .feature span {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  padding-left: 10px;
  border-left: 3px solid #0e275b;
  margin-bottom: 15px;
  color: #333;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block .prod-cate-intro .feature p {
  color: #666;
  display: flex;
  align-items: center;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block .prod-cate-intro .feature p::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  background-color: #ffb12b;
  border-radius: 50%;
  margin-right: 10px;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block:hover {
  border: 1px solid #0e275b;
  transform: translateX(1%);
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block:hover .prod-cate-img {
  border: 1px solid transparent;
}
.prod-center .prod-cate .prod-cate-content .prod-cate-block:hover .prod-cate-img img {
  transform: translate(-50%, -50%) scale(1.1);
}
.search-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  top: 0;
  left: 0;
  display: none;
}
.search-modal form {
  width: 50%;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
}
.search-modal form input {
  flex: 1;
  height: 55px;
  border: 0;
  margin: 0;
  padding: 0 20px;
  color: #333;
}
.search-modal form input::placeholder {
  color: #999;
}
.search-modal form .submit {
  width: 55px;
  height: 55px;
  background-color: #0e275b;
  color: #fff;
}
.search-modal form .reset {
  position: absolute;
  right: 70px;
  background-color: transparent;
  outline: 0;
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
  font-size: 18px;
}

.pagination {
  display: flex !important;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination>li {
  padding: 0px 10px;
  border: 1px solid #ccc;
  margin: 0px 3px;
  color: #666;
}

.pagination .active {
  color: #fff;
  background-color: #0e275b;
}

.pagination .active a {
  color: #fff;
}

.pagination li a {
  color: #666;
}
.ovhidden_y {
  overflow-y: hidden;
}
