/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

html,
body,
figure,
dl,
dd,
img,
form,
div,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
button,
input,
textarea,
a,
span,
em {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #999999;
  font-size: 14px;
}

a {
  color: #2888ff;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

ul li {
  list-style-type: none;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.wrap:after,
.wrap:before,
.container:after,
.container:before {
  content: "";
  display: table;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

/* 文字换行溢出处理 */
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  lines: 1;
}

.text-ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 分页 */
.list-page {
  width: 100%;
  text-align: center;
  padding: 15px 15px;
}

.mws-panel-content {
  background: #eee;
}

.pagination {
  margin: 0 !important;
  padding: 10px 10px;
  /* background: #fff; */
  text-align: center;
  align-items: center;
  justify-content: center;
}

.pagination li {
  border: 1px solid #e6e6e6;
  padding: 3px 12px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 2px;
  background: #fff;
}

.pagination .active {
  background-color: #46A3FF;
  color: #fff;
}

.pagination .disabled {
  color: #aaa;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 80px 0 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 18px;
  letter-spacing: 1px;
  margin: 20px;
  color: #999999;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}

.section-footer {
  text-align: center;
}

.section-footer .btn-primary {
  position: relative;
  height: 48px;
  line-height: 48px;
  background: #1267ff;
  border-radius: 30px;
  padding: 0 30px;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-color: #1267ff;
  /* padding: 0 50px 0 32px; */
}

.section-footer i {
  margin-left: 8px;
}

.page-main {
  width: 100%;
  height: auto;
  padding-top: 80px;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  /* padding: 20px 0; */
  width: 100%;
  height: 80px;
  background: #fff;
  box-shadow: 0 3px 8px rgb(0 0 0 / 10%);
}

.header-content {
  width: 100%;
  height: 100%;
}

.header.header-scrolled {
  background: #fff;
  /* padding: 15px 0; */
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000821;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
  min-width: 120px;
}

@media (max-width: 992px) {
  .header .logo span {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000821;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
  }

  .header {
    height: 60px;
  }

  .page-main {
    padding-top: 60px;
  }

  section {
    padding: 60px 0 60px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  height: 100%;
  padding: 0;
  flex: 1;
  display: flex;
}

.navbar ul {
  height: 100%;
  margin: 0;
  padding-left: 40px;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding: 10px 0 10px 15px;*/
  padding: 15px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #000821;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #2888ff;
}

/* .navbar a:hover{
   content: "";
   width: 64px;
   height: 5px;
   background: #fff;
   position: absolute;
   bottom: 0;
   left: 37%;
   margin-left: -17px;
} */
.navbar .nav-active {
  width: 50px;
  height: 5px;
  background: #000821;
  position: absolute;
  bottom: -13px;
  left: 37%;
  margin-left: -17px;
}

.navbar .getstarted {
  background: #2888ff;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #5969f3;
}

.fwrx {
  font-size: 16px;
  line-height: 0;
  color: #000821;
  padding: 15px;
  text-align: right;
  min-width: 200px;
  margin-left: auto;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #2888ff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  margin-left: auto;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul,
  .nav-active,
  .fwrx {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2888ff;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #2888ff;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* banner */
.banner {
  width: 100%;
  height: 500px;
  background-color: #ccc;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.swiper,
.swiper-wrapper,
.swiper-slide,
.swiper-slide img {
  width: 100%;
  height: 100%;
}

/* 自定义swiper按钮样式 */
.swiper-pagination-bullet {
  width: 40px !important;
  height: 6px !important;
  border-radius: 0 !important;
  margin-right: 10px;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

.swiper-pagination-bullets {
  bottom: 10px !important;
}

@media (max-width: 992px) {
  .banner {
    height: 300px;
  }

  .swiper img {
    height: 300px;
  }

  .swiper-pagination-bullet {
    width: 20px !important;
    height: 4px !important;
    border-radius: 0 !important;
    margin-right: 10px;
    cursor: pointer;
  }
}

@media (max-width: 576px) {
  .banner {
    height: 200px;
  }

  .swiper img {
    height: 200px;
  }

  .swiper-pagination-bullet {
    width: 20px !important;
    height: 4px !important;
    border-radius: 0 !important;
    margin-right: 10px;
    cursor: pointer;
  }
}

.rmcp {
  padding-top: 0px;
}

/* 产品 */
.case-item {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e7eaee;
}

.case-item .desc {
  width: 100%;
  height: 100px;
  padding: 0 8px;
  box-sizing: border-box;
}

.case-item .pro-name {
  width: 100%;
  height: 50px;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1c20;
}

.case-item .brief {
  /* width: 100%; */
  max-width: 365px;
  height: 50px;
  line-height: 25px;
  font-size: 16px;
  text-align: center;
  color: #666;
  overflow: hidden;
}

.case-item .cover {
  display: block;
  max-height: 250px;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 5px;
}

.case-item .cover img {
  width: 100%;
  height: 100%;
}

.case-item .cover .name {
  display: block;
  height: 95px;
  line-height: 95px;
  text-align: center;
  font-size: 24px;
  color: #1a1c20;
}

.case-item .name {
  display: block;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 24px;
  color: #1a1c20;
}

.case-item:hover {
  box-shadow: 0 4px 24px 0 rgb(0 0 0 / 13%);
}

.case-item:hover .cover img {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}

/* 案例展示 */
.anzs {
  padding-top: 0px;
}

/* 优势 */
.youshi {
  padding-top: 0px;
}

.youshi .ys-item {
  width: 100%;
  height: 400px;
  background: #fff;
  box-shadow: 0 8px 129px 21px rgb(59 76 154 / 5%);
  border-radius: 10px;
  padding-top: 50px;
  box-sizing: border-box;
  margin-bottom: 20px;
  transition: 0.3s;
}

.youshi .ys-item-logo>img {
  width: 100px;
  height: 100px;
  display: block;
  text-align: center;
  margin: 0 auto;
}

.youshi .ys-item-title>span {
  display: block;
  margin-top: 32px;
  font-size: 22px;
  font-weight: bold;
  color: #364468;
  text-align: center;
}

.youshi .ys-item-content {
  width: 90%;
  margin: 0 auto;
}

.youshi .ys-item-content>span {
  display: block;
  margin-top: 20px;
  font-size: 18px;
  color: #818894;
  line-height: 30px;
  text-align: center;
}

.youshi .ys-item:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

/* 帮扶 */
.bf {
  padding-top: 0px;
}

.bf .item {
  position: relative;
  float: left;
  width: 100%;
  height: 300px;
  text-align: center;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 12px 0 43px rgb(76 76 76 / 14%);
}

.bf .item h2 {
  height: 90px;
  padding-top: 22px;
  font-size: 20px;
  color: #fff;
}

.bf .item1 h2,
.bf .item1 li i {
  background: linear-gradient(to right, #40cce7, #299cf8);
}

.bf .item2 h2,
.bf .item2 li i {
  background: linear-gradient(to right, #40cce7, #3cd3ad);
}

.bf .item3 h2,
.bf .item3 li i {
  background: linear-gradient(to right, #f45c43, #eb3349);
}

.bf .item4 h2,
.bf .item4 li i {
  background: linear-gradient(to right, #ff7e7e, #ffae00);
}

.bf .item .icon {
  display: block;
  width: 68px;
  height: 68px;
  margin: -34px auto 20px;
  line-height: 68px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 12px 0 43px rgb(76 76 76 / 14%);
}

.bf .item .icon i {
  font-size: 38px;
}

.bf .item1 i,
h3 {
  color: #299cf8;
}

.bf .item2 i,
h3 {
  color: #3cd3ad;
}

.bf .item3 i,
h3 {
  color: #eb3349;
}

.bf .item4 i,
h3 {
  color: #ffae00;
}

.bf .item h3 {
  padding-bottom: 15px;
  font-size: 18px;
}

.bf .item li {
  position: relative;
  padding-left: 12px;
  margin: 0 15px;
  font-size: 14px;
  line-height: 24px;
  color: #666;
  text-align: left;
}

.bf .item li i {
  position: absolute;
  top: 8px;
  left: 0;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 12px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  background-color: #f6f9ff;
  padding: 40px;
}

.about h3 {
  font-size: 14px;
  font-weight: 700;
  color: #2888ff;
  text-transform: uppercase;
  margin-top: 10px;
}

.about h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
}

.about p {
  margin: 15px 0 30px 0;
  line-height: 24px;
  font-size: 16px;
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #2888ff;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.about .btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}

/* 联系我们 */
.contact .row p {
  font-size: 18px;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  /* background: #f6f9ff; */
  color: #fff;
  background: #32333b;
  padding: 0 0 30px 0;
  font-size: 14px;
}

.footer .footer-newsletter {
  padding: 50px 0;
  background: #f6f9ff;
  border-top: 1px solid #e1ecff;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #012970;
}

.footer .footer-newsletter form {
  margin-top: 20px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e1ecff;
}

.footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
}

.footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 3px;
  background: #2888ff;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter form input[type=submit]:hover {
  background: #5969f3;
}

.footer .footer-top {
  background: white url(../img/footer-bg.png) no-repeat right top;
  background-size: contain;
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}

.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #012970;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #012970;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  color: #013289;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: #2888ff;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #fff;
}

.footer .copyright a {
  color: #fff;
}

.footer .links {
  text-align: center;
  padding-top: 30px;
  color: #fff;
}

.footer .links a {
  color: #fff;
}

.footer .copyright_news {
  text-align: center;
  padding-top: 30px;
  color: #fff;
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

@media (max-width: 578px) {
  .contact .info-box {
    padding: 8px;
  }

  .pricing .btn-buy {
    padding: 8px 32px 10px 36px;
  }

  .features .feature-icons .content .icon-box {
    flex-wrap: wrap;
  }
}

/* 产品中心 */
.page-header {
  padding: 0px;
  width: 100%;
  height: 200px;
  color: #fff;
  overflow: hidden;
  position: relative;
  background: url('https://img.jiumao.cc/xsjd/05/09/bcba6e2022050921431959969.jpg') no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
  text-align: center;
}

.page-header .title {
  font-size: 32px;
  color: #fff;
  text-align: center;
  padding-top: 40px;
}

.page-header .desc {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}

/* 新闻中心 */
.page-header {
  padding: 0px;
  width: 100%;
  height: 200px;
  color: #fff;
  overflow: hidden;
  position: relative;
  background: url('https://img.jiumao.cc/xsjd/05/09/5935f72022050921575441187.png') no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
  text-align: center;
}

.page-header .title {
  font-size: 32px;
  color: #fff;
  text-align: center;
  padding-top: 40px;
}

.page-header .desc {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}

.news-list-page .container {
  max-width: 1350px;
}

.news-list-page {
  padding: 0;
  background: #f2f2f2;
}

.news-tab-wrap {
  padding: 45px 0 35px;
}

.news-tab-wrap li {
  display: inline-block;
  margin-right: 10px;
}

.news-tab-wrap li a {
  display: block;
  width: 150px;
  height: 50px;
  font-size: 14px;
  color: #666;
  line-height: 50px;
  text-align: center;
  background: #fff;
  border-radius: 25px;
  transition: all .4s ease-in-out;
}

.news-tab-wrap li.on a,
.news-tab-wrap li a:hover {
  color: #fff;
  background: #333;
}

.news-list .item-list {
  margin-left: -1.5%;
  min-height: 300px;
}

.news-list li {
  position: relative;
  float: left;
  width: 48.5%;
  margin: 0 0 1.5% 1.5%;
  background: #fff;
}

.news-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all .6s;
}

.news-list li:hover:after {
  box-shadow: 0 15px 15px rgba(0, 0, 0, .1);
  transform: scale(1.025);
}

.news-list-one li a {
  padding: 35px 70px;
  z-index: 1;
  position: relative;
  display: block;
  color: #333;
}

.news-list-one li a:hover {
  color: #717ff5;
  text-decoration: none;
}

.news-list-one .date-wrap {
  position: relative;
  float: left;
  width: 115px;
  height: 155px;
  border-right: 1px solid #e7e7e7;
}

.news-list-one .date-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.news-list-one .date-wrap .day {
  font: 48px/1 'gotham-medium';
}

.news-list-one .date-wrap .line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 15px 0;
  background: #e7e7e7;
}

.news-list-one .date-wrap .days {
  font: 14px/1 'Gotham-Book';
}

.news-list-one .text-wrap {
  margin-left: 175px;
}

.news-list-one .text-wrap .title {
  height: 43px;
  line-height: 44px;
  font-weight: bold;
  font-size: 18px;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.news-list-one .text-wrap .descrition {
  height: 48px;
  margin: 15px 0 40px;
  font-size: 14px;
  color: #666;
  line-height: 24px;
  overflow: hidden;
}

.news-list .text-wrap .more .icon {
  display: inline-block;
  width: 0;
  height: 10px;
  background: url(../images/more-icon2.png) no-repeat center center;
  transition: all .4s;
  opacity: 0;
}

.news-list .text-wrap .more strong {
  font-size: 14px;
  font-weight: normal;
  color: #666;
  transition: all .4s;
}

@media(min-width:1366px) {
  .news-list-one li:hover .text-wrap .more .icon {
    margin-right: 10px;
  }

  .news-list li:hover .text-wrap .more .icon {
    width: 21px;
    opacity: 1;
  }
}

@media (max-width:1400px) {
  .news-list-page .container {
    max-width: none;
    width: 100%;
    padding: 0 4.5%;
  }
}

@media (max-width:991px) {
  .news-tab-wrap {
    padding: 20px 0;
    overflow: hidden;
  }

  .news-tab-wrap ul {
    white-space: nowrap;
    overflow: auto;
  }

  .news-tab-wrap li {
    display: inline-block;
  }

  .news-tab-wrap li a {
    width: auto;
    height: auto;
    line-height: 1.3;
    background: transparent;
    border-radius: 0;
  }

  .news-tab-wrap li a {
    display: block;
    padding: 5px 0;
    color: #666;
    border-bottom: 3px solid transparent;
  }

  .news-tab-wrap li.on a {
    font-weight: bold;
    color: #444;
    border-bottom: 3px solid #444;
  }

  .news-tab-wrap li.on a {
    background: transparent;
  }

  .news-list .item-list {
    margin-left: 0;
  }

  .news-list li {
    width: 100%;
    margin: 0 0 1.5% 0;
  }
}

@media (max-width:768px) {
  .news-list li {
    margin: 0 0 5% 0;
  }

  .news-list-one li a,
  .news-list-two li a {
    padding: 15px 20px;
  }

  .news-list-one .date-wrap {
    width: 70px;
    height: auto;
    margin-bottom: 15px;
    border-right: 0 none;
  }

  .news-list-one .date-inner {
    position: relative;
    transform: none;
  }

  .news-list-one .date-wrap .day {
    margin-bottom: 10px;
    font: 40px/1 'gotham-medium';
  }

  .news-list-one .date-wrap .line {
    display: none;
  }

  .news-list-one .text-wrap {
    margin-left: 8px;
  }

  .news-list-one .text-wrap .title {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .news-list-one .text-wrap .descrition {
    margin: 5px 0 10px;
  }

  .news-list-one .text-wrap .more {
    display: block;
    padding-top: 10px;
    border-top: 1px solid #e7e7e7;
  }
}

/* 新闻详情 */
.inner-main-container {
  background: #f2f2f2;
}

@media (max-width: 768px) {
  .normal-info-page .container {
    width: 100%;
    padding: 0px;
  }
}

@media (max-width: 991px) {
  .container {
    width: 91%;
  }
}

.normal-inner-banner,
.fullwindow-banner {
  position: relative;
  width: 100%;
  height: 100%;
}

.inner-main-container img {
  display: block;
  width: 100%;
  height: 200px;
  vertical-align: middle;
}

@media (max-width: 1400px) {
  .normal-inner-banner img {
    height: 200px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .normal-inner-banner img {
    width: 100%;
    height: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .news_index_banner {
    height: 150px;
  }

}

.normal-inner-banner .normal-banner-inner-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: linear-gradient(to right, rgba(30, 95, 116, .7) 0%, rgba(23, 9, 49, .7) 100%);
}

.normal-inner-banner.left-text-banner .normal-banner-inner {
  color: #fff;
  text-align: left;
  position: absolute;
  /* top: 30%; */
  width: 100%;
  transform: translateY(-50%);
}

.inner-banner-title {
  padding-top: 25px;
  font-weight: bold;
  font-size: 32px;
  color: #fff;
  text-align: center;
  transform: translateY(60px);
}

@media (max-width: 1400px) {
  .inner-banner-title {
    padding-top: 25px;
  }
}

@media (max-width: 992px) {
  .inner-banner-title {
    padding-top: 25px;
    font-size: 22px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .inner-banner-title {
    width: 80%;
    padding-top: 25px;
    margin: 0 auto;
    font-size: 22px;
  }
}

.normal-info-container {
  z-index: 1;
  position: relative;
  margin-top: -5vh;
  padding: 55px 90px;
  background: #fff;
}

@media (max-width: 768px) {
  .normal-info-container {
    padding: 35px 20px;
    margin-top: 0px;
  }
}

.normal-info-container .news-info-title {
  padding-bottom: 23px;
  margin-bottom: 20px;
  font: 14px/1 'Gotham-Book', 'Microsoft Yahei';
  color: #999;
  border-bottom: 1px solid #e5e5e5;
}

.normal-info-container article {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
}

.normal-info-container .prev-next-wrap {
  padding-top: 23px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  border-top: 1px solid #e5e5e5;
}

.normal-info-container .prev-next-wrap .prev {
  margin-bottom: 10px;
}

.normal-info-container .prev-next-wrap .prev {
  margin-bottom: 10px;
}

.normal-info-container .prev-next-wrap a {
  color: #666;
}

/* 关于我们 */
.page-header {
  padding: 0px;
  width: 100%;
  height: 200px;
  color: #fff;
  overflow: hidden;
  position: relative;
  background: url('https://img.jiumao.cc/xsjd/2022/05/13/1652432783627e1f8f8d7e5.jpg') no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
  text-align: center;
}

.page-header .title {
  font-size: 32px;
  color: #fff;
  text-align: center;
  padding-top: 40px;
}

.page-header .desc {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}

.company-intro {
  width: 100%;
  height: auto;
  background: #f5f5fa;
  padding: 100px 0;
  box-sizing: border-box;
}

.company-intro h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.company-intro p {
  text-indent: 2em;
  margin: 15px 0 30px 0;
  color: #888;
  font-size: 16px;
  line-height: 24px;
}

.company-intro img {
  width: 100%;
  height: 360px;
}

.company-about {
  padding-top: 60px;
  box-sizing: border-box;
}

.company-about .section-header p {
  color: #000;
}

.company-about .contact {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 10px 15px 1px rgb(66 71 75 / 15%);
  border-radius: 3px;
  padding: 30px;
  box-sizing: border-box;
}

.company-about .name {
  font-weight: 700;
  color: #000;
  font-size: 20px;
}

.company-about .c-item {
  font-size: 16px;
  color: #333;
  margin-top: 30px;
}

.company-about .c-item i {
  background: url('../images/location.png') no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.company-about .item1 i {
  background-position: 0 -2px;
}

.company-about .item2 i {
  background-position: -20px -3px;
}

.company-about .item3 i {
  background-position: -40px -3px;
}

.company-about .contact-footer {
  width: 100%;
  height: auto;
}

.company-about .cooperation {
  color: #fff;
  font-size: 18px;
  background: #40a9ff;
  width: 140px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  margin-top: 30px;
  transition: all .2s;
  cursor: pointer;
}

.company-about .map {
  width: 100%;
  max-height: 450px;
  float: left;
  background-color: #ccc;
}

@media (max-width: 992px) {
  .company-intro img {
    width: 100%;
    height: auto;
  }

  .company-about .contact-footer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .company-about .map {
    max-height: 200px;
  }

  .page-header .title {
    font-size: 28px;
    color: #fff;
    text-align: center;
    padding-top: 40px;
  }

  .page-header .desc {
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-top: 25px;
  }
}

/* 咨询中心 */
.zxzx a {
  color: #999;
  font-size: 16px;
  text-decoration: none;
  line-height: 35px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-5 {
  margin-top: 50px;
}

.mt-10 {
  margin-top: 100px;
}