@charset "UTF-8";
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

html,
body {
  font-family: PingFang-SC, PingFang-SC;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  display: block;
}

.flex {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-1 {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-10 {
  z-index: 10;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.text-center {
  text-align: center;
}

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

/* 布局 */
.layout-container {
  width: 1200px;
}

/* 顶部 */
.header {
  height: 120px;
  padding: 24px 0 22px 0;
}

.header-content {
  width: 1600px;
  margin: 0 auto;
  padding: 4px 0;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo-section {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo {
  width: 238px;
}

.menu-list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  margin-top: 22px;
}

.menu-item {
  font-size: 20px;
  color: #333333;
  line-height: 20px;
}

.menu-item.active {
  position: relative;
}

.menu-item.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -18px;
  width: 36px;
  height: 4px;
  background-color: #d7000f;
}

.mobile-menu-btn {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.m-menu {
  display: none;
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
  }
  .layout-container {
    width: 100%;
  }
  .menu-list {
    display: none;
  }
  .header {
    width: 100%;
    height: 56px;
    padding: 20px 20px 0 20px;
    position: relative;
    overflow: hidden;
  }
  .header .header-content {
    padding: 0;
  }
  .header .logo {
    width: 90px;
    height: 28px;
  }
  .mobile-menu-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: 0px;
    background-image: url("../images/jw/gd.png");
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .m-menu {
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 20px 0;
  }
  .m-menu .m-menu-header {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
  }
  .m-menu .m-menu-header .logo {
    width: 90px;
    height: 28px;
  }
  .m-menu .m-menu-header .mobile-menu-btn-close {
    position: static;
    background-image: url("../images/jw/close.png");
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
  }
  .m-menu .m-menu-list {
    padding: 30px 20px;
  }
  .m-menu .m-menu-list li {
    line-height: 38px;
  }
  .m-menu .m-menu-list li a {
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 14px;
    color: #222222;
  }
}
/* 底部 */
.footer {
  height: 180px;
  background: #454545;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 0 18px 0;
}

.footer-content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0 auto;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-info {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 76px;
}

.footer-title {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-links {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 56px;
}

.footer-links-column {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 14px;
}

.footer-info-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}

.footer-line {
  height: 110px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-line-left {
  margin: 0 60px 0 80px;
}

.footer-line-right {
  margin: 0 60px 0 70px;
}

.qr-code {
  gap: 40px;
}

.footer-qr-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 14px;
  margin-top: 10px;
}

.qr-code-box {
  width: 90px;
  height: 90px;
  background-color: #000;
}

.m-footer-logo {
  display: none;
}

@media (max-width: 768px) {
  .footer {
    background: #f5f7fa;
    height: auto;
    padding-top: 40px;
  }
  .footer .footer-logo {
    display: none;
  }
  .footer .m-footer-logo {
    width: 107px;
    height: 56px;
    display: block;
  }
  .footer .m-footer-logo img {
    width: 100%;
    height: 100%;
  }
  .footer .footer-content {
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer-content .footer-line {
    display: none;
  }
  .footer .footer-content .footer-title {
    display: none;
  }
  .footer .footer-content .footer-link {
    color: #222;
    font-size: 12px;
  }
  .footer .footer-content .footer-title {
    color: #222;
  }
  .footer .footer-content .footer-info-text {
    color: #222;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    font-size: 10px;
    line-height: 10px;
    gap: 10px;
  }
  .footer .footer-content .footer-info {
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 32px;
    width: 100%;
    margin-top: 34px;
    gap: 20px;
  }
  .footer .footer-content .footer-links {
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .footer .footer-content .footer-links-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .footer .footer-content .footer-info-address {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column-reverse;
       -moz-box-orient: vertical;
       -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .footer .footer-content .footer-info-address .footer-title {
    display: block;
    font-family: PingFang-SC, PingFang-SC;
    font-size: 10px;
    color: #222222;
    line-height: 10px;
    text-align: center;
    margin-top: 40px;
  }
  .footer .footer-content .qr-code {
    display: none;
  }
}
/* 首页 */
.home-page {
  background-image: url("../images/jw/bg.png");
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main {
  width: 1473px;
  padding-top: 100px;
  padding-bottom: 110px;
}

.content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  gap: 40px;
}

.left-side .left-side-content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.left-side .banner-panel {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.left-side .banner-panel-left {
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #454545;
  padding: 30px;
  text-align: left;
  line-height: 30px;
}
.left-side .banner-panel-left p {
  font-size: 24px;
  color: #fff;
}
.left-side .banner-panel-right {
  width: 50px;
}
.left-side .banner-panel-right-top-arrow {
  width: 50px;
  height: 60px;
  background-color: #b3b3b3;
  background-image: url("../images/jw/left.png");
  background-repeat: no-repeat;
  background-position: center;
}
.left-side .banner-panel-right-top-arrow:hover {
  background-color: #d7000f;
  cursor: pointer;
  background-image: url("../images/jw/left-h.png");
}
.left-side .banner-panel-right-down-arrow {
  width: 50px;
  height: 60px;
  background-color: #b3b3b3;
  background-image: url("../images/jw/right.png");
  background-repeat: no-repeat;
  background-position: center;
}
.left-side .banner-panel-right-down-arrow:hover {
  background-color: #d7000f;
  cursor: pointer;
  background-image: url("../images/jw/right-h.png");
}

.right-side {
  width: 787px;
}
.right-side .article-item {
  height: 154px;
  gap: 20px;
  width: 787px;
}
.right-side .article-item-content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.right-side .article-item-content .article-item-footer {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.right-side .article-title {
  font-weight: bold;
  font-size: 20px;
  color: #222222;
  line-height: 20px;
  margin-bottom: 15px;
}
.right-side .article-content {
  font-size: 16px;
  color: #666666;
  line-height: 26px;
}
.right-side .article-img {
  width: 230px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.right-side .article-time {
  font-size: 16px;
  color: #999999;
  line-height: 16px;
}
.right-side .article-link {
  font-size: 16px;
  color: #222222;
  line-height: 16px;
  padding-right: 20px;
  background-image: url("../images/jw/you.png");
  background-repeat: no-repeat;
  background-position: right;
}
.right-side .article-item:hover {
  cursor: pointer;
}
.right-side .article-item:hover .article-link {
  background-image: url("../images/jw/you_red.png");
  color: #d7000f;
}
.right-side .article-item:hover .article-title {
  color: #d7000f;
}
.right-side .article-line {
  width: 100%;
  height: 1px;
  background-color: #999999;
  margin: 28px 0;
}

.m-main {
  display: none;
}

@media (max-width: 768px) {
  .home-page {
    background-image: url("../images/jw/sy_bg.png");
    -o-background-size: 100% 400px;
       background-size: 100% 400px;
    background-repeat: no-repeat;
    background-position: top center;
  }
  .main {
    display: none;
  }
  .m-main {
    display: block;
    background-color: #fff;
    border-radius: 20px 20px 0px 0px;
    padding: 0 14px;
    margin-top: 300px;
  }
  .m-main .m-tab-container {
    height: 46px;
    padding-top: 30px;
  }
  .m-main .m-tab-container ul {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
  .m-main .m-tab-container ul li {
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    color: #222222;
    cursor: pointer;
  }
  .m-main .m-tab-container ul li.active, .m-main .m-tab-container ul li:hover {
    position: relative;
  }
  .m-main .m-tab-container ul li.active::after, .m-main .m-tab-container ul li:hover::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    margin-left: -12px;
    width: 24px;
    height: 8px;
    background-image: url("../images/jw/xuanze.png");
    background-repeat: no-repeat;
    -o-background-size: 100% auto;
       background-size: 100% auto;
  }
  .m-main .m-tab-content {
    padding-top: 12px;
  }
  .m-main .m-tab-content .m-tab-content-item {
    display: none;
  }
  .m-main .m-tab-content .m-tab-content-item.active {
    display: block;
  }
  .m-main .m-tab-content .m-tab-content-item-li {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 23px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  .m-main .m-tab-content .m-tab-content-item-li .m-tab-content-item-li-content {
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .m-main .m-tab-content .m-tab-content-item-li .m-tab-content-item-li-content .m-tab-content-item-li-content-title {
    font-family: PingFang-SC, PingFang-SC;
    font-size: 16px;
    color: #222222;
  }
  .m-main .m-tab-content .m-tab-content-item-li .m-tab-content-item-li-content .m-tab-content-item-li-content-time {
    font-family: PingFang-SC, PingFang-SC;
    font-size: 11px;
    color: #999999;
    margin-top: 24px;
    line-height: 11px;
  }
  .m-main .m-tab-content .m-tab-content-item-li .m-tab-content-item-li-img {
    width: 116px;
    height: 78px;
  }
  .m-main .m-tab-content .m-tab-content-item-li .m-tab-content-item-li-img img {
    width: 100%;
    height: 100%;
  }
  .m-main .m-tab-content-item-load-more {
    width: 106px;
    height: 30px;
    border: 1px solid #eeeeee;
    line-height: 30px;
    font-family: PingFang-SC, PingFang-SC;
    font-size: 12px;
    color: #222222;
    text-align: center;
    margin: 40px auto;
  }
}
/* 关于我们 */
.hero-section {
  position: relative;
  background-image: url("../images/jw/banner_bg.png");
  -o-background-size: 100% 100%;
     background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 220px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 18px;
  color: #222222;
}

.hero-title {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 36px;
  color: #222222;
  line-height: 36px;
}

.tab-navigation {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  height: 78px;
  line-height: 78px;
  gap: 80px;
}
.tab-navigation .tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  height: 80px;
  font-size: 18px;
  color: #222;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}
.tab-navigation .tab-btn.active {
  position: relative;
}
.tab-navigation .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -18px;
  width: 36px;
  height: 4px;
  background-color: #d7000f;
}
.tab-navigation .tab-btn:hover {
  color: #e53e3e;
}

.tab-content {
  background-image: url("../images/jw/gywm_bg.png");
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 120px;
}
.tab-content .tab-pane {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
  margin: 0 auto;
}
.tab-content .tab-pane.active {
  display: block;
  -webkit-animation: fadeInUp 0.5s ease;
     -moz-animation: fadeInUp 0.5s ease;
       -o-animation: fadeInUp 0.5s ease;
          animation: fadeInUp 0.5s ease;
}
.tab-content .overview-content {
  width: 1000px;
  margin: 0 auto;
}
.tab-content .tab-title {
  margin: 0px auto 60px auto;
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 32px;
  color: #222222;
  line-height: 32px;
  text-align: center;
}
.tab-content .company-description {
  margin-top: 40px;
  font-family: PingFang-SC, PingFang-SC;
  font-size: 16px;
  color: #222222;
  line-height: 24px;
  text-align: left;
}
.tab-content .company-description p {
  margin-top: 32px;
  text-indent: 2em;
}
.tab-content .year-grid {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}
.tab-content .year-grid .year-button {
  width: 120px;
  height: 60px;
  text-align: center;
  display: inline-block;
  line-height: 60px;
  background-color: #f5f5f5;
  color: #222;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: PingFang-SC, PingFang-SC;
  font-size: 18px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 4px 0px #edf1f8;
}
.tab-content .year-grid .year-button:hover {
  background-color: #d7000f;
  color: white;
  -webkit-transform: translateY(-2px);
     -moz-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
       -o-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: #d7000f;
}
.tab-content .year-grid .year-button-active {
  background-color: #d7000f;
  color: white;
  font-weight: 600;
  border-color: #d7000f;
}
.tab-content .year-grid .year-button-active:hover {
  background-color: #d7000f;
}
.tab-content .timeline-events {
  background: -webkit-linear-gradient(top, #f5f6f9 0%, #ffffff 100%);
  background: -moz-linear-gradient(top, #f5f6f9 0%, #ffffff 100%);
  background: -o-linear-gradient(top, #f5f6f9 0%, #ffffff 100%);
  background: linear-gradient(180deg, #f5f6f9 0%, #ffffff 100%);
  box-shadow: 0px 2px 4px 0px #edf1f8;
  border: 2px solid #ffffff;
  padding: 40px;
}
.tab-content .timeline-events .timeline-event .date-badge {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 18px;
  color: #666;
  margin-bottom: 16px;
}
.tab-content .timeline-events .timeline-event .event-content {
  margin-bottom: 40px;
  font-family: PingFang-SC, PingFang-SC;
  font-size: 16px;
  color: #666666;
}
.tab-content .timeline-events .timeline-event.timeline-event-active .date-badge {
  color: #d7000f;
}
.tab-content .timeline-events .timeline-event.timeline-event-active .event-content {
  color: #222;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translateY(20px);
         transform: translateY(20px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}

@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    -o-transform: translateY(20px);
       transform: translateY(20px);
  }
  to {
    opacity: 1;
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
       -moz-transform: translateY(20px);
         -o-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}
.tab-title-en {
  display: none;
}

@media (max-width: 768px) {
  .hero-section {
    background-image: none;
    height: auto;
    margin-top: 58px;
    padding-bottom: 10px;
  }
  .hero-section .hero-content {
    width: 100%;
  }
  .hero-section .hero-content .tab-navigation {
    height: auto;
    line-height: 1;
    gap: 20px;
  }
  .hero-section .hero-content .tab-navigation .tab-btn {
    height: auto;
    white-space: nowrap;
  }
  .hero-section .hero-content .tab-navigation .tab-btn.active {
    color: #d7000f;
  }
  .hero-section .hero-content .tab-navigation .tab-btn.active:after {
    bottom: -10px;
  }
  .hero-section .hero-title {
    display: none;
  }
  .news-page,
  .about-page,
  .culture-page {
    background-image: url("../images/jw/gywm_bg-m.png");
    background-repeat: no-repeat;
    -o-background-size: 100% 174px;
       background-size: 100% 174px;
  }
  .about-page .tab-content {
    background-image: none;
    padding: 40px 20px 20px 20px;
  }
  .about-page .tab-content .overview-content {
    width: 100%;
  }
  .about-page .tab-content .co-event-title {
    display: none;
  }
  .about-page .tab-content .tab-title {
    margin-bottom: 0;
  }
  .about-page .tab-content .tab-title-en {
    display: block;
    font-family: PingFang-SC, PingFang-SC;
    font-size: 18px;
    color: #bdbdbd;
    line-height: 18px;
    text-align: left;
    margin-top: 8px;
  }
  .about-page .tab-content .tab-content-divider {
    height: 1px;
    width: 100%;
    background-color: #eee;
    margin: 20px 0;
  }
  .about-page .tab-content .year-grid {
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about-page .tab-content .year-grid .year-button {
    width: 68px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }
  .about-page .tab-title {
    text-align: left;
  }
}
/* 旗下项目 */
.hero-section-projects {
  position: relative;
  background-image: url("../images/jw/project_banner.png");
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 300px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.projects-section {
  padding-top: 118px;
  padding-bottom: 120px;
  background-image: url("../images/jw/project_bg.png");
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.projects-section .projects-container {
  margin: 0 auto;
}
.projects-section .projects-grid {
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.projects-section .projects-grid .project-card {
  padding: 18px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.projects-section .projects-grid .project-card:hover {
  -webkit-transform: translateY(-5px);
     -moz-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
       -o-transform: translateY(-5px);
          transform: translateY(-5px);
}
.projects-section .projects-grid .project-card .project-image-container {
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
}
.projects-section .projects-grid .project-card .project-image-container img {
  width: 100%;
}
.projects-section .projects-grid .project-card .project-content {
  padding-top: 20px;
  padding-bottom: 6px;
}
.projects-section .projects-grid .project-card .project-content .project-title {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 20px;
  color: #222222;
  line-height: 20px;
}
.projects-section .projects-grid .project-card .project-content .project-description {
  font-family: PingFang-SC, PingFang-SC;
  font-size: 16px;
  color: #666666;
  line-height: 16px;
  margin-top: 12px;
}
.projects-section .projects-grid .project-card .project-content .project-address {
  font-family: PingFang-SC, PingFang-SC;
  font-size: 16px;
  color: #666666;
  line-height: 16px;
  margin-top: 10px;
}
.projects-section .projects-grid .project-card .project-content .project-footer {
  margin-top: 20px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.projects-section .projects-grid .project-card .project-content .project-footer .project-phone {
  font-family: PingFang-SC, PingFang-SC;
  font-size: 16px;
  color: #666666;
  line-height: 16px;
}
.projects-section .projects-grid .project-card .project-content .project-footer .phone-number {
  color: #d7000f;
}
.projects-section .projects-grid .project-card .project-content .project-footer .project-button {
  width: 64px;
  height: 16px;
  font-family: PingFang-SC, PingFang-SC;
  font-size: 16px;
  color: #d7000f;
  line-height: 16px;
  text-align: right;
  cursor: pointer;
}

.m-projects-section-title {
  display: none;
}

@media (max-width: 768px) {
  .projects-page {
    background-image: url("../images/jw/project-banner-m.png");
    -o-background-size: 100% 200px;
       background-size: 100% 200px;
    background-repeat: no-repeat;
  }
  .projects-page .projects-section {
    padding-top: 0;
    padding-bottom: 20px;
    background-color: #fff;
    margin-top: 122px;
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;
    background-image: none;
  }
  .projects-page .m-projects-section-title {
    display: block;
    padding-top: 20px;
  }
  .projects-page .m-projects-section-title .m-projects-section-title-text {
    font-family: PingFang-SC, PingFang-SC;
    font-weight: 800;
    font-size: 18px;
    color: #222222;
    line-height: 18px;
    text-align: center;
    font-style: normal;
  }
  .projects-page .m-projects-section-title .m-projects-section-title-text-en {
    font-family: PingFang-SC, PingFang-SC;
    font-size: 12px;
    color: #d0d0d0;
    line-height: 12px;
    text-align: center;
    font-style: normal;
    text-transform: uppercase;
    margin-top: 6px;
    margin-bottom: 30px;
  }
  .hero-section-projects {
    display: none;
  }
  .projects-section .projects-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .projects-section .projects-grid .project-card {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .projects-section .projects-grid .project-card .project-image-container {
    width: 160px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
  }
  .projects-section .projects-grid .project-card .project-image-container img {
    width: 100%;
    height: 100%;
  }
  .projects-section .projects-grid .project-card .project-content {
    padding-top: 0;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .projects-section .projects-grid .project-card .project-content .project-address {
    display: none;
  }
  .projects-section .projects-grid .project-card .project-content .project-phone {
    display: none;
  }
  .projects-section .projects-grid .project-card .project-content .project-button {
    width: 64px !important;
    height: 24px !important;
    line-height: 24px !important;
    background: rgba(215, 0, 15, 0.07);
    border-radius: 4px;
    font-size: 12px !important;
    text-align: center !important;
  }
}
/* 新闻资讯 */
.news-content .featured-container {
  padding: 20px 0 20px 0;
  height: 244px;
}
.news-content .featured-news {
  margin: 0 auto;
  background: -webkit-linear-gradient(top, #f5f6f9 0%, #ffffff 100%);
  background: -moz-linear-gradient(top, #f5f6f9 0%, #ffffff 100%);
  background: -o-linear-gradient(top, #f5f6f9 0%, #ffffff 100%);
  background: linear-gradient(180deg, #f5f6f9 0%, #ffffff 100%);
  box-shadow: 0px 2px 4px 0px #edf1f8;
  border: 2px solid #ffffff;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.news-content .featured-news .featured-image {
  height: 200px;
  width: 300px;
}
.news-content .featured-news .featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-content .featured-news .featured-content {
  padding-left: 30px;
  padding-right: 88px;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.news-content .featured-news .featured-content .featured-date-day {
  font-family: PingFang-SC, PingFang-SC;
  font-size: 32px;
  color: #222222;
  line-height: 56px;
}
.news-content .featured-news .featured-content .featured-date-year {
  font-family: PingFang-SC, PingFang-SC;
  font-size: 24px;
  color: #222222;
  line-height: 24px;
  margin-top: 6px;
}
.news-content .featured-news .featured-content .featured-title {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 20px;
  color: #222222;
  line-height: 24px;
  margin-top: 12px;
}
.news-content .featured-news .featured-content .featured-button {
  width: 64px;
  height: 16px;
  font-family: PingFang-SC, PingFang-SC;
  font-weight: 500;
  font-size: 16px;
  color: #d7000f;
  line-height: 16px;
  text-align: left;
  font-style: normal;
  margin-top: 30px;
}
.news-content .news-list-container {
  background: #fafafa;
}
.news-content .news-list-container .news-list {
  margin: 0 auto;
  padding: 40px 0 120px 0;
}
.news-content .news-list-container .news-list .news-card {
  height: 116px;
  border: 2px solid transparent;
  padding: 28px 120px 30px 24px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
.news-content .news-list-container .news-list .news-card:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  box-shadow: inset 0px 1px 0px 0px #eeeeee;
}
.news-content .news-list-container .news-list .news-card .news-date {
  margin-right: 30px;
}
.news-content .news-list-container .news-list .news-card .news-date .news-date-day {
  font-family: PingFang-SC, PingFang-SC;
  font-size: 32px;
  color: #999;
  line-height: 32px;
}
.news-content .news-list-container .news-list .news-card .news-date .news-date-year {
  font-family: PingFang-SC, PingFang-SC;
  font-size: 16px;
  color: #999;
  line-height: 16px;
  margin-top: 10px;
}
.news-content .news-list-container .news-list .news-card .news-content .news-title {
  font-family: PingFang-SC, PingFang-SC;
  font-size: 20px;
  color: #222222;
  line-height: 20px;
}
.news-content .news-list-container .news-list .news-card .news-content .news-excerpt {
  font-family: PingFang-SC, PingFang-SC;
  font-size: 16px;
  color: #999;
  line-height: 16px;
  margin-top: 16px;
}
.news-content .news-list-container .news-list .news-card .news-arrow {
  display: none;
}
.news-content .news-list-container .news-list .news-card:hover {
  background: -webkit-linear-gradient(top, #f5f6f9 0%, #ffffff 100%);
  background: -moz-linear-gradient(top, #f5f6f9 0%, #ffffff 100%);
  background: -o-linear-gradient(top, #f5f6f9 0%, #ffffff 100%);
  background: linear-gradient(180deg, #f5f6f9 0%, #ffffff 100%);
  box-shadow: 0px 2px 4px 0px #edf1f8;
  border: 2px solid #ffffff;
  cursor: pointer;
}
.news-content .news-list-container .news-list .news-card:hover:after {
  display: none;
}
.news-content .news-list-container .news-list .news-card:hover .news-date .news-date-day {
  color: #222;
}
.news-content .news-list-container .news-list .news-card:hover .news-date .news-date-year {
  color: #222;
}
.news-content .news-list-container .news-list .news-card:hover .news-content .news-title {
  color: #d7000f;
}
.news-content .news-list-container .news-list .news-card:hover .news-content .news-excerpt {
  color: #222;
}
.news-content .news-list-container .news-list .news-card:hover .news-arrow {
  display: block;
  position: absolute;
  right: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url("../images/jw/left-btn.png");
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .news-page .news-list {
    padding-bottom: 20px !important;
  }
  .news-page .featured-container {
    padding: 20px;
    height: auto;
  }
  .news-page .featured-container .featured-news {
    display: block;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
  }
  .news-page .featured-container .featured-news .featured-image {
    width: 100%;
    height: 196px;
  }
  .news-page .featured-container .featured-news .featured-date {
    display: none;
  }
  .news-page .featured-container .featured-news .featured-button {
    display: none;
  }
  .news-page .featured-container .featured-news .featured-content {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 0 20px;
  }
  .news-page .featured-container .featured-news .featured-title {
    color: #fff;
    margin-top: 0;
    width: 100%;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .news-page .news-card {
    padding: 20px 20px 20px 20px !important;
    height: auto !important;
  }
  .news-page .news-card .news-date {
    margin-right: 16px !important;
  }
  .news-page .news-card .news-date-day,
  .news-page .news-card .news-title {
    font-size: 16px !important;
    line-height: 16px !important;
  }
  .news-page .news-card .news-excerpt {
    font-size: 12px !important;
    margin-top: 8px !important;
  }
  .news-page .news-card .news-date-year {
    font-size: 11px !important;
    margin-top: 6px !important;
  }
  .news-page .news-card:hover {
    box-shadow: none !important;
    border-color: transparent !important;
    background: transparent !important;
  }
  .news-page .news-card:hover:after {
    display: block !important;
  }
  .news-page .news-card .news-arrow {
    display: none !important;
  }
}
/* 企业文化 */
.culture-page .culture-title {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: 400;
  font-size: 48px;
  color: #d7000f;
  line-height: 48px;
}
.culture-page .culture-title-box {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.culture-page .culture-box {
  padding: 120px 0;
  overflow: hidden;
}
.culture-page .culture .culture-container {
  margin: 0 auto;
}
.culture-page .culture .culture-container .culture-layout {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 118px;
}
.culture-page .culture .culture-container .culture-layout .red-text {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 16px;
  color: #d7000f;
  line-height: 16px;
}
.culture-page .culture .culture-container .culture-layout .culture-content {
  margin-top: 60px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.culture-page .vision {
  background-image: url("../images/jw/qyyj_bg.png");
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.culture-page .vision .vision-container {
  width: 800px;
  margin: 0 auto;
}
.culture-page .vision .vision-container .vision-content-title {
  margin: 80px 0 32px 0;
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 16px;
  color: #222222;
  line-height: 16px;
}
.culture-page .vision .vision-container .vision-content-text {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  line-height: 24px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.culture-page .concept .concept-container {
  margin: 0 auto;
}
.culture-page .concept .concept-container .concept-layout {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 106px;
}
.culture-page .concept .concept-container .concept-layout .concept-img {
  width: 342px;
  height: 380px;
  margin-top: 20px;
}
.culture-page .concept .concept-container .concept-layout .concept-content .concept-red {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 16px;
  color: #d7000f;
  line-height: 16px;
  text-align: right;
  margin-top: 60px;
  margin-bottom: 32px;
}
.culture-page .concept .concept-container .concept-layout .concept-content .concept-content-text {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.culture-page .concept .concept-container .concept-layout .concept-content .concept-content-text .concept-content-text-item {
  text-align: right;
  font-family: PingFang-SC, PingFang-SC;
  font-weight: 400;
  font-size: 16px;
  color: #222222;
}
.culture-page .co-logo {
  background: #fafafa;
}
.culture-page .co-logo .co-logo-container {
  margin: 0 auto;
}
.culture-page .co-logo .co-logo-container .co-logo-layout {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 279px;
}
.culture-page .co-logo .co-logo-container .co-logo-content-title {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  text-align: left;
  margin: 60px 0 32px 0;
}
.culture-page .co-logo .co-logo-container .co-logo-content-text {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 16px;
  color: #222222;
  text-align: left;
}
.culture-page .slogan {
  background-image: url("../images/jw/xxkh_bg.png");
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.culture-page .slogan .slogan-content-title {
  margin: 60px 0 32px 0;
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 16px;
  color: #222222;
}
.culture-page .slogan .slogan-content-text {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  font-family: PingFang-SC, PingFang-SC;
  font-weight: 400;
  font-size: 16px;
  color: #222222;
}
.culture-page .slogan .slogan-content-text p span {
  font-weight: 700;
}
.culture-page .slogan .slogan-content-description {
  margin-bottom: 26px;
}
.culture-page .service .service-container {
  margin: 0 auto;
}
.culture-page .service .service-container .service-layout {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 220px;
  position: relative;
}
.culture-page .service .service-container .service-layout .service-content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  font-family: PingFang-SC, PingFang-SC;
  font-weight: 400;
  font-size: 16px;
  color: #222222;
}
.culture-page .service .service-container .service-layout .service-content-title {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: bold;
  font-size: 16px;
  color: #d7000f;
  text-align: left;
  margin-top: 60px;
  margin-bottom: 32px;
}

.culture-title-item {
  color: #222222;
  font-weight: bold;
}

.culture-title-en {
  display: none;
}

.m-co-logo-img {
  display: none;
}

@media (max-width: 768px) {
  .culture-page .culture-navigation {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
  }
  .culture-page .culture-box {
    padding: 32px 20px;
  }
  .culture-page .culture-divider {
    height: 1px;
    width: 100%;
    background-color: #eee;
    margin: 20px 0;
  }
  .culture-page .culture-title-box {
    gap: 0;
  }
  .culture-page .culture-title-box .culture-title {
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 18px;
    color: #222222;
    line-height: 18px;
    text-align: center;
  }
  .culture-page .culture-title-box .culture-title-en {
    display: block;
    font-family: PingFang-SC, PingFang-SC;
    font-size: 18px;
    color: #bdbdbd;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 30px;
  }
  .culture-page .culture .culture-container .culture-layout {
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    position: relative;
  }
  .culture-page .culture .culture-container .culture-layout .culture-img {
    width: 108px;
    height: 120px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .culture-page .culture .culture-container .culture-layout .culture-title-box {
    padding-right: 155px;
    gap: 0;
    margin-bottom: 30px;
  }
  .culture-page .culture .culture-container .culture-layout .culture-title-box .culture-title-slogan {
    font-size: 13px;
  }
  .culture-page .culture .culture-container .culture-layout .culture-title-box .display-text {
    display: block;
  }
  .culture-page .culture .culture-container .culture-layout .culture-title-box .red-text {
    display: block;
    white-space: nowrap;
    font-size: 13px;
  }
  .culture-page .culture .culture-container .culture-layout .culture-title {
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 18px;
    color: #222222;
    line-height: 18px;
    text-align: left;
  }
  .culture-page .culture .culture-container .culture-layout .culture-title-en {
    display: block;
    font-family: PingFang-SC, PingFang-SC;
    font-size: 18px;
    color: #bdbdbd;
    line-height: 18px;
    text-align: left;
    text-transform: uppercase;
    margin-top: 8px;
  }
  .culture-page .culture .culture-container .culture-layout .culture-content {
    margin-top: 0;
    gap: 20px;
    font-size: 13px;
  }
  .culture-page .culture .culture-container .culture-layout .culture-content .culture-title-item-li {
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #ffffff;
    padding: 16px;
  }
  .culture-page .culture .culture-container .culture-layout .culture-content .culture-title-item-li .culture-title-item {
    display: block;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
  }
  .culture-page .vision {
    background-image: none;
    padding-top: 8px;
    padding-left: 0;
    padding-right: 0;
  }
  .culture-page .vision .vision-container {
    width: 100%;
  }
  .culture-page .vision .vision-container .culture-title-box {
    gap: 0;
  }
  .culture-page .vision .vision-container .culture-title-box .culture-title {
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 18px;
    color: #222222;
    line-height: 18px;
    text-align: center;
  }
  .culture-page .vision .vision-container .culture-title-box .culture-title-en {
    display: block;
    font-family: PingFang-SC, PingFang-SC;
    font-size: 18px;
    color: #bdbdbd;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 30px;
  }
  .culture-page .vision .vision-container .vision-content {
    padding: 40px 20px;
    background-image: url("../images/jw/qyyj_bg.png");
    -o-background-size: cover;
       background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
  }
  .culture-page .vision .vision-container .vision-content .vision-content-title {
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 13px;
    color: #d7000f;
    line-height: 13px;
    text-align: left;
    font-style: normal;
    margin: 0 0 20px 0;
  }
  .culture-page .vision .vision-container .vision-content .vision-content-text {
    gap: 20px;
    font-size: 13px;
  }
  .culture-page .vision .vision-container .vision-content .vision-content-text br {
    display: none;
  }
  .culture-page .concept .concept-img {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
    width: 108px !important;
    height: 120px !important;
  }
  .culture-page .concept .concept-layout {
    position: relative;
    gap: 0 !important;
  }
  .culture-page .concept .concept-content .concept-title-box {
    padding-right: 165px;
  }
  .culture-page .concept .concept-content .concept-title-box .culture-title {
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 18px;
    color: #222222;
    line-height: 18px;
    text-align: left;
  }
  .culture-page .concept .concept-content .concept-title-box .culture-title-en {
    display: block;
    font-family: PingFang-SC, PingFang-SC;
    font-size: 18px;
    color: #bdbdbd;
    line-height: 18px;
    text-align: left;
    text-transform: uppercase;
    margin-top: 8px;
  }
  .culture-page .concept .concept-content .concept-title-box .concept-red {
    text-align: left !important;
    margin-top: 20px !important;
  }
  .culture-page .concept .concept-content .concept-content-text,
  .culture-page .concept .concept-content .concept-content-text-item {
    text-align: left !important;
  }
  .culture-page .concept .concept-content .concept-content-text p,
  .culture-page .concept .concept-content .concept-content-text-item p {
    display: inline !important;
  }
  .culture-page .co-logo .co-logo-container .co-logo-layout {
    gap: 0 !important;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .culture-page .co-logo .co-logo-container .co-logo-layout .co-logo-content-title {
    text-align: center;
    font-weight: 500;
    margin: 10px 0 30px 0;
  }
  .culture-page .co-logo .co-logo-container .co-logo-layout .co-logo-content-text {
    margin-top: 26px;
    font-weight: 500;
  }
  .culture-page .co-logo .co-logo-container .co-logo-layout .co-logo-content-text br {
    display: none !important;
  }
  .culture-page .co-logo .co-logo-container .co-logo-layout .co-logo-img {
    display: none;
  }
  .culture-page .co-logo .co-logo-container .co-logo-layout .m-co-logo-img {
    display: block;
    border-radius: 4px;
    overflow: hidden;
  }
  .culture-page .slogan {
    background-image: none;
    padding-left: 0;
    padding-right: 0;
  }
  .culture-page .slogan .slogan-content {
    background-image: url("../images/jw/xxkh_bg.png");
    background-repeat: no-repeat;
    -o-background-size: cover;
       background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: left !important;
    padding-left: 20px;
    padding-right: 20px;
  }
  .culture-page .slogan .slogan-content .slogan-content-title {
    margin: 0 0 20px 0 !important;
    color: #d7000f;
  }
  .culture-page .slogan .slogan-content-text {
    gap: 20px;
  }
  .culture-page .service .service-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 108px !important;
    height: 120px !important;
  }
  .culture-page .service .service-container .service-layout {
    gap: 0 !important;
    position: relative;
  }
  .culture-page .service .service-container .service-layout .service-title-box {
    padding-right: 165px;
  }
  .culture-page .service .service-container .service-layout .culture-title {
    font-family: PingFang-SC, PingFang-SC;
    font-weight: bold;
    font-size: 18px;
    color: #222222;
    line-height: 18px;
    text-align: left;
  }
  .culture-page .service .service-container .service-layout .culture-title-en {
    display: block;
    font-family: PingFang-SC, PingFang-SC;
    font-size: 18px;
    color: #bdbdbd;
    line-height: 18px;
    text-align: left;
    text-transform: uppercase;
    margin-top: 8px;
  }
  .culture-page .service .service-container .service-layout .service-content-title {
    text-align: left !important;
    margin-top: 20px !important;
  }
}
.home-img {
  width: 646px;
  height: 458px;
  object-fit: fill;
}

@media (max-width: 1680px) and (min-width: 768px) {
  .header-content,
  .main {
    width: 1200px;
  }
  .left-side-content .home-img {
    width: 520px;
    height: 370px;
  }
  .right-side .article-item {
    width: auto;
    height: 125px;
  }
}