/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
:root {
  --primary-color: #4a90e2;
  --info-color: #4a90e2;
  --normal-color: #d9d9d9;
  --success-color: #52c41a;
  --error-color: #e64242;
  --warning-color: #faad14;
  --link-color: #4a90e2;
  --heading-color: rgba(255, 255, 255, 0.85);
  --text-color: rgba(255, 255, 255, 0.65);
  --text-color-secondary: rgba(255, 255, 255, 0.45);
  --disabled-color: rgba(255, 255, 255, 0.3);
  --border-color-base: rgba(0, 173, 255, 0.5);
  --line-color: #4b4f59;
  --box-shadow-base: 0 2px 8px rgba(0, 0, 0, 0.2);
  --body-background: #000;
  --component-background: #232324;
  --background-color-light: rgba(20, 20, 20, 0.04);
  --border-color-split: #303030;
  --input-bg: rgba(74, 144, 226, 0.16);
  --item-active-bg: #111d2c;
  --item-hover-bg: rgba(255, 255, 255, 0.08);
  --header-active-color: #ffffff;
  --header-color: #9c9c9c;
  --aside-background-color: #232324;
  --aside-menu-sub-color: #232324;
  --global-nav-height: 120px;
  --global-nav-ad-bar-height: 0px;
  --global-nav-collective-height: 0px;
}
:root {
  --sub-banner-height: 400px;
  --sub-banner-title-font-size: 48px;
  --inner-content-font-size: 16px;
  /* --inner-content-line-height: 1.875; */
  --inner-content-line-height: 1.8;
  --nav-height: 80px;
  --nav-link-line-height: 40px;
  --nav-link-padding-y: 20px;
  --nav-link-padding-x: 25px;
  --nav-link-font-size: 16px;
}

@media (max-width: 575px) {
  .sub-banner {
    --sub-banner-height: 148px;
  }
  .nav-scroller {
    --nav-height: 50px;
    --nav-link-line-height: 28px;
    --nav-link-padding-y: 10px;
  }
}
@media (min-width: 576px) {
  .sub-banner {
    --sub-banner-height: 150px;
  }
  .nav-scroller {
    --nav-height: 50px;
    --nav-link-line-height: 28px;
    --nav-link-padding-y: 10px;
  }
}
@media (min-width: 768px) {
  .sub-banner {
    --sub-banner-height: 180px;
  }
  .nav-scroller {
    --nav-height: 60px;
    --nav-link-line-height: 28px;
    --nav-link-padding-y: 15px;
  }
}
@media (min-width: 992px) {
  .sub-banner {
    --sub-banner-height: 240px;
  }
}
@media (min-width: 1200px) {
  .sub-banner {
    --sub-banner-height: 300px;
  }
}
@media (min-width: 1600px) {
  .sub-banner {
    --sub-banner-height: 400px;
  }
}

.ant-col {
  box-sizing: border-box;
}

.ant-col img {
  max-width: 100%;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: var(--nav-height);
  overflow-y: hidden;
  background-color: #fff;
  border: 1px solid #e9e9e9;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  margin-bottom: -3px;
}

.nav-link {
  display: block;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

.nav-scroller .nav-link {
  padding: var(--nav-link-padding-y) 0;
  margin: 0 var(--nav-link-padding-x);
  font-size: var(--nav-link-font-size);
  line-height: var(--nav-link-line-height);
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-scroller .active {
  color: #e4000b;
}

.nav-scroller .active::after {
  content: "";
  height: 3px;
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  background-color: #e4000b;
}

.shadow-sm {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2) !important;
}

.shadow-sm img {
  width: 100%;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
#Lb_pager {
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
}
#Lb_pager .pages a {
  display: inline-block;
  background: #f9fbfc;
  margin: 0 3px;
  padding: 0 15px;
  color: #333;
  cursor: pointer;
  line-height: 36px;
  height: 36px;
  border: 1px solid #5f6872;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
#Lb_pager .pages .pgnext,
#Lb_pager .pages .pgprev {
  padding: 0 18px;
  color: #fff;
  background-color: #e4000b;
  border-color: #e4000b;
}
#Lb_pager .pages .pgcurrent {
  color: #fff;
  cursor: default;
  background-color: #e4000b;
  border-color: #e4000b;
}
#Lb_pager .pages .pgempty {
  cursor: not-allowed;
}
#Lb_pager .pages a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #e4000b;
  border-color: #e4000b;
}

body {
  background-color: #f5f5f5;
  padding-top: 120px;
}
.content {
  margin: 0 auto;
  position: relative;
  min-height: 300px;
}
.footer .wrapper,
.content .wrapper {
  max-width: 1200px;
  box-sizing: border-box;
}

/* .content img {
  max-width: 100%;
} */

.inner_cont {
  line-height: var(--inner-content-line-height);
  font-size: var(--inner-content-font-size);
  color: #555;
  padding: 30px 0;
}

.content {
  line-height: var(--inner-content-line-height);
  font-size: var(--inner-content-font-size);
  color: #555;
}

.sub-banner {
  height: var(--sub-banner-height);
}

.sub-banner .wrapper {
  position: relative;
  height: 100%;
}
.sub-banner .tit {
  position: absolute;
  top: 50%;
  font-weight: 500;
  font-size: var(--sub-banner-title-font-size);
  color: #fff;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
}
/*
.ant-divider {
  border-top: 2px solid #e4000b;
} */

.ant-divider-horizontal.ant-divider-with-text {
  border-top-color: #e4000b;
}
.ant-divider-dashed {
  border-color: #e4000b;
}
.ant-divider-with-text img {
  max-width: inherit;
  position: relative;
  z-index: 1;
}

.ant-divider-inner-text {
  padding: 0 2em;
  position: relative;
}

.ant-divider-inner-text::after {
  content: "";
  position: absolute;
  background-color: #f9dfdf;
  width: 86%;
  height: 34px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.mod {
  position: relative;
  margin: 30px 0;
}
.mod .mod-hd {
  border-bottom: 4px solid #e4000b;
  height: 32px;
  position: relative;
}

.mod .mod-hd::before {
  display: table;
  content: "";
}
.mod .mod-hd::after {
  display: table;
  clear: both;
  content: "";
}
.mod .mod-hd h3 {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 1;
  color: #e4000b;
  font-size: 24px;
  font-weight: bold;
  padding-right: 32px;
  background-color: #f5f5f5;
  line-height: 32px;
  height: 32px;
}
.mod .mod-bd {
  padding: 30px 0;
}

@media (min-width: 768px) {
  .mod-vertical {
    display: flex;
  }
  .mod-vertical .mod-hd {
    width: 100px;
    border-bottom: 0 none;
    position: relative;
  }
  .mod-vertical .mod-hd h3::before,
  .mod-vertical .mod-hd h3::after {
    position: absolute;
    content: "";
    left: 0;
    width: 4px;
    background-color: #e4000b;
  }
  .mod-vertical .mod-hd h3::before {
    top: 50px;
    height: 4px;
  }
  .mod-vertical .mod-hd h3::after {
    top: 64px;
    height: 88%;
  }
  .mod-vertical .mod-hd h3 {
    width: 1em;
    font-size: 24px;
    line-height: 1.4;
    font-weight: bold;
    text-shadow: 5px 5px #e0d4d5;
    height: auto;
    left: 0;
    top: 0;
    padding: 0 0 0 24px;
    background-color: transparent;
  }

  .mod-vertical .mod-bd {
    width: 100%;
    padding: 0;
  }

  .ant-row {
    margin: 0;
  }
}

.partner-list {
  margin: 0 -10px;
}
.partner-list-item {
  float: left;
  width: 220px;
  padding: 10px;
}
.partner-list-item-wrap {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border: 1px solid #cecece;
}
.partner-list-item-wrap .img-placeholder {
  width: 100%;
  height: auto;
}
.partner-list-item-wrap .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.partner-list-item-wrap::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.partner-list-item-wrap:hover::after {
  opacity: 1;
}

.client-page .mod0 {
  margin-bottom: 40px;
}

.client-page .mod1::before {
  position: absolute;
  content: "";
  right: 0;
  top: -37px;
  width: 886px;
  height: 59px;
  background-image: url("../images/client-bg1.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}

.client-page .mod4::before {
  position: absolute;
  content: "";
  right: 0;
  top: -120px;
  width: 639px;
  height: 127px;
  background-image: url("../images/client-bg2.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}

@media only screen and (max-width: 1199px) {
  .client-page .mod1::before {
    top: -17px;
    width: 600px;
    height: 40px;
  }
  .client-page .mod4::before {
    top: -52px;
    width: 400px;
    height: 80px;
  }
}

.about-page .mod1 .txt {
  margin-right: 20px;
}

.about-page .mod2 {
  background: url("../images/about-pic4.jpg") 0 0 no-repeat;
  margin: 30px 0;
  position: relative;
  border-radius: 20px;
}

.about-page .mod2::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(199, 28, 0, 0.86);
  content: "";
  border-radius: 20px;
}

.about-page .img-wrap-middle::after,
.about-page .img-wrap-middle::before {
  position: absolute;
  content: "";
  height: 120px;
  width: 1px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.about-page .img-wrap-middle::before {
  left: 0;
}

.about-page .img-wrap-middle::after {
  right: 0;
}

.about-page .mod2 .img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-page .mod4 {
  border-top: 8px solid #e4000b;
  padding: 28px 0;
}

.about-page .mod4 .ant-row {
  margin: 0 -20px;
}

.about-page .mod4 .ant-row .ant-col {
}

.about-page .mod4 .ant-row .ant-col .img-wrap {
  margin: 0 20px 20px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02),
    0 2px 4px 0 rgba(0, 0, 0, 0.02);
}

.about-page .mod__21 .pic,
.about-page .mod__23 .pic {
  flex-shrink: 0;
  width: 280px;
}

.about-page .mod__21 .pic img,
.about-page .mod__23 .pic img {
  height: 100%;
}

.about-page .col_21 {
  margin-top: 108px;
}

.about-page .mod__21 {
  padding-bottom: 78px;
}

.about-page .mod__21 .pic {
  margin-right: 60px;
}
.about-page .mod__23 .pic {
  margin-left: 60px;
}

.about-page .mod__22 {
  margin: 40px 0;
}

.about-page .mod__61 {
  position: relative;
}

.about-page .mod__61 .bg {
  position: absolute;
  left: -278px;
  top: 40px;
  width: 360px;
  height: 600px;
  background: url("../images/about-pic65.jpg") 0 0 no-repeat;
}

.flex {
  display: flex;
  align-items: center;
}

.box .box-hd {
  margin-bottom: 20px;
  padding-left: 18px;
  position: relative;
}

.box .box-hd::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 74px;
  background-color: #e4000b;
}

.box .box-hd .title {
  color: #e4000b;
  font-size: 48px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.2;
}

.box .box-hd .sub-title {
  font-size: 18px;
  margin-top: -6px;
}

.box .box-bd {
  padding: 10px 0;
}

.box-right {
  text-align: right;
}

.box-right .box-hd {
  padding: 0 18px 0 0;
}

.box-right .box-hd::after {
  left: auto;
  right: 0;
}

.mod-divider {
  position: relative;
  padding-bottom: 20px;
}

.mod-divider > ::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56%;
  height: 1px;
  background-color: #cecece;
}

.mod-divider-right > ::before {
  left: auto;
  right: 0;
}

.about-page .footer-pic {
  height: 274px;
  background-image: url("../images/about-pic25.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.evaluate-page .mod0 {
  margin-bottom: 46px;
}

.evaluate-page .list1 {
  margin: 0 -15px;
}
.evaluate-page .list1 .ant-col {
  padding: 19px 15px;
}
.evaluate-page .list1 .ant-col .item-link {
  height: 400px;
  background: #fff;
  border: 1px solid #cecece;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.timeline .issues {
  width: calc(100% - 200px);
}

.timeline .issues li {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.timeline .issues li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(68, 68, 68, 0.65);
  display: none;
}

dl .title {
  color: #e4000b;
  position: relative;
  padding-left: 15px;
  font-weight: bold;
  margin-bottom: 6px;
}

dl .title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background-color: #e4000b;
}

.ant-card {
  font-size: inherit;
}

.timeline .issues-item-img {
  width: 100%;
  height: 100%;
  text-align: center;
}

.timeline .issues-item-img img {
  /*width: 100%;*/
  height: 100%;
  display: inline-block;
}

.timeline .meta {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px 10px 20px 20px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.timeline .meta .title {
  display: inline-block;
  color: #e4000b;
  font-size: 28px;
  font-weight: bold;
  margin-right: 10px;
  margin-bottom: -3px;
}
.timeline .meta .desc {
  font-size: 16px;
  color: #fff;
}

.timeline .prev,
.timeline .next {
  position: absolute;
  overflow: hidden;
  z-index: 2;
  width: 200px;
  height: 128px;
  line-height: 128px;
  text-align: center;
  right: 0;
  color: #ddd;
  font-size: 30px;
}
.timeline .prev:hover,
.timeline .next:hover {
  color: #e4000b;
}
.timeline .prev {
  top: 0;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(51, 51, 51, 0.8) 40%,
    #333333 100%
  );
}
.timeline .next {
  bottom: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(51, 51, 51, 0.8) 40%,
    #333333 100%
  );
}

.timeline::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background-color: rgba(50, 50, 50, 0.7);
}
.timeline .dates {
  overflow: hidden;
  position: absolute;
  width: 200px;
  right: 0;
  z-index: 2;
}
.timeline .dates li {
  width: 100%;
}
.timeline .dates li a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #ccc;
  font-size: 18px;
  line-height: 80px;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.timeline .dates li a.selected {
  color: #e4000b;
  border-color: #e4000b;
}
.timeline .dates li a:hover::after,
.timeline .dates li a.selected::after {
  left: 0;
  transition: all 0.6s;
}
.timeline .dates li a::after {
  content: "";
  transition: all 0.6s;
  background: #e4000b;
  position: absolute;
  width: 100%;
  height: 1px;
  left: -100%;
  bottom: 0;
}
.timeline .dates li a:hover {
  color: #e4000b;
  border-color: #e4000b;
}

@media only screen and (max-width: 833px) {
  .timeline .issues {
    width: 100%;
  }

  .timeline .dates li {
    opacity: 0;
  }

  .timeline .meta {
    padding: 15px;
    width: calc(100% - 60px);
  }

  .timeline .meta .title {
    font-size: 24px;
  }
  .timeline .meta .desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .timeline .prev,
  .timeline .next {
    background-image: none;
    width: 60px;
    height: 128px;
    line-height: 128px;
  }

  .timeline::after {
    width: 60px;
    background: transparent;
  }
  .timeline .dates {
    width: 60px;
  }

  .client-page .mod4::before,
  .client-page .mod1::before {
    display: none;
  }
}
.pro-page .item-wrap-center {
  text-align: center;
}
.pro-page .item-wrap .txt {
  padding: 10px 0;
  font-size: 18px;
  color: #333;
}

.pro-page .list__32 {
  margin: 16px -10px 0;
}
.pro-page .list__32 .item-wrap {
  position: relative;
  margin: 0 10px 10px;
  height: 216px;

  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.pro-page .list__32 .item-wrap img {
  display: none;
}

.pro-page .list__32 .meta-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(47, 47, 47, 0.8); */
  /* color: #fff; */
  transition: all 0.5s;
}

.pro-page .list__32 .meta-wrap .meta {
  position: absolute;
  left: 12%;
  top: 14%;
}

.pro-page .list__32 .meta-wrap .meta .title {
  height: 28px;
  padding: 0 18px;
  border-radius: 16px;
  margin-bottom: 15px;
  font-size: 16px;
}

.pro-page .list__32 .item-wrap:hover .meta-wrap {
  /* background-color: rgba(47, 47, 47, 0.9); */
}

.pro-page .list__41 {
  margin: 0 -20px;
}
.pro-page .list__41 .ant-card {
  margin: 20px;
  height: 240px;
  padding-top: 36px;
}

.pro-page .list__41 .ant-card-head {
  border-bottom: 0;
  padding-left: 80px;
}
.pro-page .list__41 .ant-card-head-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  transition: all 0.3s;
}

.pro-page .list__41 .ant-card:hover .ant-card-head-title {
  color: #e4000b;
}

.pro-page .list__41 .ant-card-body {
  padding: 0 24px 0 80px;
}
.pro-page .list__41 .desc {
  font-size: 14px;
  color: #333;
  height: 66px;
}
.pro-page .list__41 .info {
  color: #999;
}

.pro-page .list__41 .ant-btn {
  font-size: 16px;
  padding: 0;
}

.news-page .mod__11 {
  border-bottom: 4px solid #e4000b;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.news-page .mod__11 .ant-row {
  margin: 0 -20px;
}

.news-page .list2 .ant-row {
  margin: 0 -15px;
}
.news-page .list2 .ant-list-item {
  margin: 0 15px 40px;
}

.news-page .mod__11 .ant-col {
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}

.news-page .mod__11 .ant-card .ant-card-meta-title {
  color: #e4000b;
  font-size: 24px;
}

.news-page .mod__11 .ant-list .pic {
  width: 220px;
  height: 130px;
}

.news-page .mod__11 .ant-list .pic img {
  width: 100%;
  height: 100%;
}

.news-page .mod__11 .ant-list .ant-list-item-meta-title {
  font-size: 18px;
}

.news-page .mod__11 .ant-list-split .ant-list-item {
  border-bottom-color: #cecece;
}

.news-page .mod__11 .ant-list-split .ant-list-item:last-child {
  border-bottom: 1px solid #cecece;
}

.news-page .title_area h1 {
  font-size: 30px;
  font-weight: normal;
  line-height: 45px;
  text-align: center;
}

.news-page .title_area .info {
  color: rgb(153, 153, 153);
  margin-top: 21px;
  display: block;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}

.news-page .content_area {
  padding: 30px 0;
}

.card-with-pic .ant-card-cover {
  display: block;
  position: relative;
  height: auto;
  overflow: hidden;
}

.card-with-pic .ant-card-cover .placeholder-img {
  width: 100%;
}

.card-with-pic .ant-card-cover .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.card-with-pic .ant-card-meta-title,
.card-with-pic .ant-card-meta-title a {
  color: #333;
}
.card-with-pic .ant-card-meta-description,
.card-with-pic .ant-card-meta-description a {
  color: #555;
}

.card-with-pic .ant-card-meta-title a:hover,
.card-with-pic .ant-card-meta-description a:hover {
  color: #e4000b;
}

.card-with-pic .ant-card-meta-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
  overflow: hidden;
}

.card-with-pic .ant-card-meta-extra {
  color: #999;
}

.video-list {
  margin: 0 -20px;
}

.video-list li {
  padding: 0 20px;
  text-align: center;
}

.video-item {
  position: relative;
  margin-bottom: 10px;
}

.video-list .video-item {
  background-color: #fff;
  padding: 10px;
}
.video-item .video-cover {
  display: block;
  position: relative;
  height: auto;
  overflow: hidden;
}
.video-item .video-cover .placeholder-img {
  width: 100%;
}
.video-item .video-cover .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.video-item .video-play-icon {
  position: absolute;
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2040%2040%22%3E%3Ctitle%3EPlay_40x40%3C%2Ftitle%3E%3Cpath%20d%3D%22M20%20.833a19.167%2019.167%200%201%200%2019.167%2019.167%2019.167%2019.167%200%200%200-19.167-19.167z%22%20opacity%3D%22.6%22%2F%3E%3Cpath%20d%3D%22M20%202a18%2018%200%201%201-18%2018%2018.02%2018.02%200%200%201%2018-18m0-2a20%2020%200%201%200%2020%2020%2020%2020%200%200%200-20-20zm8.072%2020.9a1.671%201.671%200%200%201-.513.513l-9.99%206.357a1.671%201.671%200%200%201-2.569-1.413v-12.715a1.671%201.671%200%200%201%202.569-1.41l9.99%206.358a1.671%201.671%200%200%201%20.513%202.31z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E);
  background-position: -50px 0;
  height: 50px;
  width: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* pointer-events: none; */
  z-index: 1;
}

.video-item .video-play-text {
  margin-top: 10px;
  font-size: 16px;
}

.mod__video {
  padding: 100px 0 156px;
}

.mod__video h2 {
  font-size: 24px;
}

.video-slogan {
  margin-top: 140px;
  padding-left: 50px;
  border-left: 2px solid #c71c00;
}

.footer {
  padding: 65px 0;
  /*background: url("../images/home-bg6.jpg") no-repeat 50% 0;
 
  background-image: url(data:image/svg+xml;utf8,%3Csvg%20width%3D%2280%22%20height%3D%22120%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url%28%23prefix__clip0_43_320%29%22%20fill%3D%22rgba%2826%2C26%2C26%2C1%29%22%3E%3Cpath%20d%3D%22M40%200L0%2030v30l40-30V0zm0%2030v30l40%2030V60L40%2030zM40-30V0l40%2030V0L40-30zm0%2090L0%2090v30l40-30V60zm0%2030v30l40%2030v-30L40%2090z%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22prefix__clip0_43_320%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h80v120H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E);
  opacity: 1;
  background-size: 100%;*/
 background-color: #203d55;
  mix-blend-mode: normal;
}
.footer-bd {
  margin-bottom: 20px;
}
.footer-bd-right {
  width: 318px;
}

.qrcode-list {
  margin-right: -28px;
}

.footer .footer-nav,
.footer .social-share-wrap {
  display: none;
}

.footer-ft {
  /*margin-top: -40px;*/
  position: relative;
}

.contact-list-items {
  margin: 0 -15px;
  padding: 0;
  list-style: none;
}

.contact-list-item {
  width: 100%;
}

.contact-list-item-meta {
  min-height: 130px;
  border-bottom: 1px solid #cecece;
  padding: 0 0 12px 80px;
  margin: 0 15px 40px;
  position: relative;
}
.contact-list-item-meta-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #e4000b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 5px;
}
.contact-list-item-meta-avatar img {
  width: 34px;
  height: 34px;
}
.contact-list-item-meta-content {
}
.contact-list-item-meta-title {
  margin-bottom: 5px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  line-height: 1.5715;
}

.multiple .contact-list-item-meta-title {
  margin-bottom: -8px;
}
.contact-list-item-meta-description {
  color: rgba(0, 0, 0, 1);
  font-size: 24px;
  line-height: 1.5715;
  /* text-shadow: 0 0 1px #000; */
}

@media (max-width: 1199px) {
  .contact-list-item-meta {
    min-height: auto;
  }
  .footer-ft {
    margin-top: 0;
    position: relative;
  }
}

@media only screen and (max-width: 833px) {
  .inner_cont {
    padding: 30px 0;
  }
  .contact-list-item-meta {
    padding: 0 0 15px 46px;
    margin: 0 15px 15px;
    position: relative;
  }
  .contact-list-item-meta-avatar {
    width: 36px;
    height: 36px;
  }
  .contact-list-item-meta-avatar img {
    width: 20px;
    height: 20px;
  }

  .contact-list-item-meta-title {
    font-size: 14px;
  }
  .multiple .contact-list-item-meta-title {
    margin-bottom: -5px;
  }

  .contact-list-item-meta-description {
    font-size: 16px;
    text-shadow: none;
  }
  .news-page .mod__11 .ant-list .pic {
    display: none;
  }

  .news-page .mod__11 .ant-card .ant-card-meta-title {
    font-size: 18px;
  }
  .news-page .mod__11 .ant-list .ant-list-item-meta-title {
    font-size: 16px;
  }

  .footer {
    padding: 30px 0;
  }
  .footer-bd-left,
  .footer-bd-right {
    width: 100%;
  }
  .footer-bd-right {
    display: none;
  }
  .footer-contact h3,
  .social-share-wrap h3,
  .qrcode-title {
    margin-bottom: 10px;
  }
  .footer-bd,
  .footer-contact {
    margin-bottom: 30px;
  }
  .footer-ft {
    text-align: center;
  }
  .mod {
    margin: 15px 0;
  }
  .video-slogan {
    text-align: center;
    margin-top: 30px;
    padding-left: 0;
    border-left: 0 none;
  }
  .video-slogan img {
    width: 90%;
  }
}

#ac-localnav .ac-ln-menu-link:hover {
  color: #e4000b;
}

#ac-localnav .active .ac-ln-menu-link {
  color: rgb(0, 112, 192);font-weight: 700;
}
#ac-localnav {
  background-color: #ffffff;
}

.box_bzjs2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media only screen and (min-width: 1200px) {
  .box_bzjs {
    margin-top: -48px;
  }

  .about-page .mod__61 .extra {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 143px;
    height: 229px;
    background: url("../images/about-pic64.png") 0 0 no-repeat;
  }
}
@media only screen and (min-width: 1024px) {
  #ac-localnav {
    height: 79px;
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
  }

  #ac-localnav .ac-ln-background:after,
  #ac-localnav .ac-ln-title {
    display: none;
  }

  #ac-localnav .ac-ln-menu-items {
    display: flex;
    justify-content: center;
  }
  #ac-localnav .ac-ln-menu {
    float: none;
  }

  #ac-localnav .ac-ln-menu-tray {
    float: none;
    padding: 0;
    text-align: center;
    height: 80px;
  }

  #ac-localnav .ac-ln-menu-item {
    margin: 0 24px;
    position: relative;
    padding: 32px 0 26px;
  }

  #ac-localnav .ac-ln-menu-item.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: rgb(0, 112, 192);
  }

  #ac-localnav .ac-ln-menu-link {
    color: #333;
    font-size: 16px;
    line-height: 22px;
    opacity: 1;
  }
}

@media only screen and (max-width: 919px) {
  .sub-banner {
    height: 150px;
  }
  body {
    padding-top: 0;
  }
  .ant-divider-with-text img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .partner-list {
    padding: 0 10px;
  }
  .partner-list-item {
    float: left;
    width: 50%;
  }

  .about-page .mod1 .txt {
    margin-right: 0;
  }
}

.ant-table-thead > tr > th {
  color: rgba(255, 255, 255, 1);
  background: #e4000b;
  border-bottom: 1px solid #f0f0f0;
}

.ant-table-tbody > .row-header > td {
  background: rgb(206, 203, 203);
}

.ant-table-thead
  > tr
  > th:not(:last-child):not(.ant-table-selection-column):not(
    .ant-table-row-expand-icon-cell
  ):not([colspan])::before {
  background-color: rgb(216, 216, 216);
}

.performance-list {
  margin: 0 -5px 20px;
}

.performance-list li {
  float: left;
  width: 20%;
}

.performance-list li a {
  color: #fff;
  display: block;
  margin: 5px;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px 0;
  text-align: center;
  background-color: #e61110;
  transition: all 0.3s;
}
.performance-list li a:hover {
  background-color: #b20000;
}

.about-page .mod__51,
.about-page .mod__52 {
  margin-bottom: 58px;
}

.flex .pic {
  flex-shrink: 0;
}
.about-page .mod__51 .pic {
  margin-right: 58px;
}

.about-page .mod__52 .pic,
.about-page .mod__53 .desc {
  margin-left: 58px;
}

.li__shzr {
  padding-left: 60px;
}
.row__shzr {
  margin: 40px 0 20px;
}

.map-tab .layui-tab-title {
  text-align: center;
  font-size: 16px;
  border-bottom: 0 none;
  height: 58px;
  margin-bottom: 25px;
}

.map-tab .layui-tab-title .layui-this:after {
  display: none;
}

.map-tab .layui-tab-title li:hover,
.map-tab .layui-tab-title .layui-this {
  color: #fff;
  background-color: #e4000b;
}

.map-tab .layui-tab-title li {
  line-height: 22px;
  padding: 18px 10px;
  min-width: auto;
  width: 200px;
  color: #fff;
  background-color: rgba(228, 0, 11, 0.6);
  transition: all 0.3s;
  margin: 0 10px;
  border-radius: 6px;
}

.honor-box .mySwiper2 {
  height: 600px !important;
}

.pro-page .list__41 .text-ico {
  font-size: 32px;
  color: #e4000b;
  position: absolute;
  left: 36px;
  top: 45px;
}

@media screen and (max-width: 767px) {
  .performance-list li {
    width: 50%;
  }
  .performance-table {
    background-color: #fff;
  }

  .flex {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }

  .about-page .mod__21 .pic,
  .about-page .mod__23 .pic {
    width: auto;
    max-width: 100%;
  }
  .about-page .mod__21 .pic {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .about-page .mod__23 .pic {
    margin-left: 0;
  }

  .about-page .mod__21 .desc,
  .about-page .mod__23 .desc {
    width: 100%;
  }
  .mod-divider > ::before {
    display: none;
  }
  .about-page .mod__21 {
    padding-bottom: 20px;
  }
  .about-page .footer-pic {
    display: none;
  }

  .about-page .col_21 {
    margin-top: 0;
  }
  .about-page .mod__22 {
    margin-top: 0 !important;
  }
  .box .box-hd .title {
    font-size: 32px;
  }
  .box .box-hd .sub-title {
    font-size: 14px;
    margin-top: -6px;
  }
  .box .box-hd::after {
    height: 50px;
  }
  .box .box-hd {
    margin-bottom: 4px;
  }

  .about-page .mod__51,
  .about-page .mod__52 {
    margin-bottom: 30px;
  }

  .about-page .mod__51 .pic {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .about-page .mod__52 .pic,
  .about-page .mod__53 .desc {
    margin-left: 0;
    margin-top: 30px;
  }

  .li__shzr {
    padding-left: 0;
  }

  .li__shzr .pic {
    display: flex;
    justify-content: center;
  }

  .row__shzr .pic {
    display: flex;
    justify-content: center;
  }

  .row__shzr .txt {
    text-align: center;
    margin-bottom: 20px;
  }

  .row__shzr {
    margin-bottom: -20px;
  }
  .mod__video {
    padding: 30px 0;
  }

  .mod__video .ant-col {
    width: 100%;
  }
  .mod__video .ant-col h2 {
    text-align: center;
    font-size: 16px;
  }

  .news-page .list2 .ant-list-item {
    margin-left: 0;
    margin-right: 0;
  }
  .pro-page .list__41 .ant-card {
    margin: 0;
    height: auto;
    padding: 20px 0;
  }
  .pro-page .list__41 .desc {
    height: auto;
  }

  .pro-page .list__41 .text-ico {
    top: 30px;
  }

  .map-tab .layui-tab-title {
    margin-bottom: 0;
  }

  .map-tab .layui-tab-title li {
    padding: 10px;
    font-size: 14px;
    margin: 0 5px;
    width: 100px;
  }
}

#Lb_pager {
  width: 100%;
}
.layui-tab-bar {
  display: none;
}

.mySwiper .swiper-slide-thumb-active {
  position: relative;
}

.mySwiper .swiper-slide-thumb-active {
  border-color: #e4000b;
}
.mySwiper .swiper-slide-thumb-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #e4000b;
}
@media only screen and (max-width: 1199px) {
  .about-page .footer-pic {
    height: 174px;
    background-size: cover;
  }
}

.float-btn {
  display: block;
}

@media only screen and (max-width: 833px) {
  .float-btn {
    display: none;
  }
}

.ant-table-content {
  overflow: auto hidden;
}

.line2 {
  font-size: 30px;
  color: #333;
  text-align: center;
}

.line2 .num {
  font-size: 72px;
  font-style: italic;
  padding-left: 10px;
  font-weight: bold;
  line-height: 1.2;
}

@media only screen and (max-width: 1199px) {
  .line2 {
    font-size: 28px;
  }
  .line2 .num {
    font-size: 68px;
  }
}

@media only screen and (max-width: 991px) {
  .line2 {
    font-size: 26px;
  }
  .line2 .num {
    font-size: 66px;
    padding-left: 8px;
  }
}

@media only screen and (max-width: 919px) {
  .line2 {
    font-size: 24px;
  }
  .line2 .num {
    font-size: 64px;
    padding-left: 6px;
  }
}

@media only screen and (max-width: 833px) {
  .line2 {
    font-size: 18px;
  }
  .line2 .num {
    font-size: 48px;
    padding-left: 4px;
  }
}

.pro-down-list .ant-list-item {
  background-color: #fff;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 24px 20px;
}

.pro-down-list .ant-list-item-meta-avatar {
  padding: 0 16px;
  font-size: 36px;
  color: #e4000b;
  margin-right: 0;
}
.pro-down-list .ant-list-item-meta-content {
  flex: 1 0;
  width: 0;
  color: rgba(0, 0, 0, 0.85);
}
.pro-down-list .ant-list-item-meta-title {
  font-size: 18px;
}

.pro-down-list .ant-list-item-meta-description {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.5715;
}

@media only screen and (max-width: 833px) {
  .pro-down-list .ant-list-item {
    display: block;
    padding: 20px;
  }
  .pro-down-list .ant-list-item-meta {
    margin-bottom: 12px;
  }
}

.certificate-box {
  width: 720px;
  margin: 0 auto;
}
