@charset "UTF-8";
/*----------------------------------------------------

=====================================================================*/
/* mixin
----------------------------------------*/
/*global area*/
/*----------------------------------------------------*/
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: inherit;
  }
}
[data-background] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 500ms all ease;
  transition: 500ms all ease;
}
a:hover, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

p {
  margin: 0;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 87.5rem;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul li {
  list-style: none;
}

/*---------------------------------------------------- */
/*Header area*/
/*----------------------------------------------------*/
.zjny-header {
  position: fixed;
  background: rgba(255, 255, 255, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.zjny-header.active {
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(0.625rem);
          backdrop-filter: blur(0.625rem);
}
.zjny-header .header-container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-header .header-container {
    padding: 0 4vw;
  }
}
.zjny-header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5625rem 0;
}
@media screen and (max-width: 768px) {
  .zjny-header .header-content {
    padding: 3vw 0;
  }
}
.zjny-header .header-content .logo-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.zjny-header .header-logo {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.zjny-header .header-logo a {
  display: block;
}
.zjny-header .header-logo a img {
  height: 3.125rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .zjny-header .header-logo a img {
    height: 8vw;
  }
}
.zjny-header .header-nav.desktop-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .zjny-header .header-nav.desktop-nav {
    display: none;
  }
}
.zjny-header .header-nav.desktop-nav .header_nav_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item {
  position: relative;
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item.menu-item-has-children.submenu-hover > a {
  color: #9F1E34;
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item.menu-item-has-children.submenu-hover > a::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item.menu-item-has-children > a {
  position: relative;
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item.menu-item-has-children > a::before {
  content: "";
  position: absolute;
  right: -0.9375rem;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.125rem solid #2D2D2D;
  border-bottom: 0.125rem solid #2D2D2D;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: #9F1E34;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item > a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #212121;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item > a:hover {
  color: #9F1E34;
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: -1.5625rem;
  min-width: 7.5rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.625rem 0;
  border-radius: 0 0 0.5rem 0.5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0.625rem);
          transform: translateY(0.625rem);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100;
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.15);
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item.menu-item-has-children .sub-menu .menu-item a {
  padding: 0.3125rem 1.25rem;
  font-size: 0.875rem;
  text-align: center;
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item.menu-item-has-children .sub-menu .menu-item a:hover {
  color: #9F1E34;
}
.zjny-header .header-nav.desktop-nav .header_nav_box .menu-item.menu-item-has-children.submenu-hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.zjny-header .header-nav.mobile-nav {
  position: absolute;
  top: 14vw;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0.5vw 2vw rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5vw 2vw rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2vw);
          transform: translateY(-2vw);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}
.zjny-header .header-nav.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.zjny-header .header-nav.mobile-nav .mobile-nav-content {
  padding: 4vw;
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box {
  margin: 0;
  padding: 0;
  list-style: none;
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box .menu-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box .menu-item:last-child {
  border-bottom: none;
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box .menu-item > a {
  display: block;
  padding: 3vw 0;
  font-size: 3.6vw;
  font-weight: 500;
  color: #2D2D2D;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box .menu-item > a:hover {
  color: #9F1E34;
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box .menu-item.menu-item-has-children {
  position: relative;
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box .menu-item.menu-item-has-children::after {
  content: "+";
  position: absolute;
  top: -1.5vw;
  right: 0;
  font-size: 5.6vw;
  color: #2D2D2D;
  padding: 3vw 3vw;
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box .menu-item.menu-item-has-children .sub-menu {
  padding-left: 0;
  display: none;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.05);
  margin-top: 2vw;
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box .menu-item.menu-item-has-children .sub-menu .menu-item {
  border-bottom: none;
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box .menu-item.menu-item-has-children .sub-menu .menu-item a {
  padding: 2vw 5vw;
  font-size: 3.2vw;
  color: #5B6770;
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box .menu-item.menu-item-has-children.submenu-open::after {
  content: "-";
}
.zjny-header .header-nav.mobile-nav .mobile_nav_box .menu-item.menu-item-has-children.submenu-open .sub-menu {
  max-height: 50vw;
}
.zjny-header .header-actions {
  display: none;
}
@media screen and (max-width: 768px) {
  .zjny-header .header-actions {
    gap: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.zjny-header .header-actions .language-switcher .language-text {
  font-size: 1rem;
  font-weight: 500;
  color: #2D2D2D;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .zjny-header .header-actions .language-switcher .language-text {
    font-size: 3.6vw;
  }
}
.zjny-header .header-actions .language-switcher .language-text:hover {
  color: #9F1E34;
}
.zjny-header .header-actions .contact-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .zjny-header .header-actions .contact-icons {
    gap: 2.5vw;
  }
}
.zjny-header .header-actions .contact-icons .contact-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .zjny-header .header-actions .contact-icons .contact-icon {
    width: 7vw;
    height: 7vw;
  }
}
.zjny-header .header-actions .contact-icons .contact-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.zjny-header .header-actions .mobile-menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 7vw;
  height: 7vw;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 0.8vw;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .zjny-header .header-actions .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.zjny-header .header-actions .mobile-menu-toggle .hamburger-line {
  width: 4vw;
  height: 0.4vw;
  border-radius: 0.2vw;
  background: #2D2D2D;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.zjny-header .header-actions .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(0.9vw, 0.9vw);
          transform: rotate(45deg) translate(0.9vw, 0.9vw);
}
.zjny-header .header-actions .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.zjny-header .header-actions .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(0.8vw, -0.9vw);
          transform: rotate(-45deg) translate(0.8vw, -0.9vw);
}
.zjny-header .header-actions .mobile-menu-toggle:hover .hamburger-line {
  background: #9F1E34;
}

.home .zjny-header {
  background: transparent;
}
.home .zjny-header.active {
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(0.625rem);
          backdrop-filter: blur(0.625rem);
}

body.mobile-menu-open {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  body.mobile-menu-open {
    overflow: auto;
  }
}

/*---------------------------------------------------- */
/*Footer area*/
/*----------------------------------------------------*/
.zjny-footer {
  padding: 5rem 0;
  background: #F0F0F0;
}
@media screen and (max-width: 768px) {
  .zjny-footer {
    padding: 8vw 0;
  }
}
.zjny-footer .footer-container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-footer .footer-container {
    padding: 0 4vw;
  }
}
.zjny-footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .zjny-footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .zjny-footer .footer-content .logo {
    text-align: center;
  }
}
.zjny-footer .footer-content .logo img {
  width: 18.75rem;
}
@media screen and (max-width: 768px) {
  .zjny-footer .footer-content .logo img {
    width: 35vw;
  }
}
@media screen and (max-width: 768px) {
  .zjny-footer .footer-content .navbox {
    display: none;
  }
}
.zjny-footer .footer-content .navbox .nav-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .zjny-footer .footer-content .navbox .nav-ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.zjny-footer .footer-content .navbox .nav-ul .nav-li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.zjny-footer .footer-content .navbox .nav-ul .nav-li .title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #000;
  position: relative;
  line-height: 1.5rem;
}
.zjny-footer .footer-content .navbox .nav-ul .nav-li .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1.5625rem;
  width: 0.25rem;
  height: 1.5rem;
  background: #9F1E34;
}
.zjny-footer .footer-content .navbox .nav-ul .nav-li .nav {
  margin-top: 1.25rem;
}
.zjny-footer .footer-content .navbox .nav-ul .nav-li .nav a {
  width: 100%;
  display: block;
  color: #000;
  font-weight: 350;
  font-size: 1rem;
  line-height: 2.1875rem;
}
.zjny-footer .footer-content .navbox .nav-ul .nav-li .nav a:hover {
  text-decoration: underline;
}
.zjny-footer .footer-bottom {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .zjny-footer .footer-bottom {
    margin-top: 7vw;
  }
}
.zjny-footer .footer-bottom .copyright-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13.75rem;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .zjny-footer .footer-bottom .copyright-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.6vw;
    font-size: 3vw;
    text-align: center;
  }
}

.floating-buttons {
  position: fixed;
  bottom: 1.875rem;
  right: 1.875rem;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .floating-buttons {
    bottom: 6vw;
    right: 6vw;
    gap: 3vw;
  }
}
.floating-buttons .floating-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .floating-buttons .floating-btn {
    width: 11.2vw;
    height: 11.2vw;
  }
}
.floating-buttons .floating-btn:hover {
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
  -webkit-box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.2);
}
.floating-buttons .floating-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .floating-buttons .floating-btn svg {
    width: 4.8vw;
    height: 4.8vw;
  }
}
.floating-buttons .floating-btn:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.floating-buttons .whatsapp-btn {
  background-color: #25D366;
  color: white;
}
.floating-buttons .whatsapp-btn:hover {
  background-color: #128C7E;
}
.floating-buttons .back-to-top-btn {
  background-color: #999;
  color: white;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.floating-buttons .back-to-top-btn:hover {
  background-color: #666;
}
.floating-buttons .back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

/*---------------------------------------------------- */
/*Responsive area*/
/*----------------------------------------------------*/
/*---------------------------------------------------- */
/*Elementor Addons area*/
/*----------------------------------------------------*/
.zjny-page-about-us-module-01 {
  padding: 5rem 1.25rem 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-01 {
    padding: 10vw 4vw 0;
  }
}
.zjny-page-about-us-module-01 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-01 .content-header {
    margin-bottom: 7vw;
  }
}
.zjny-page-about-us-module-01 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-01 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-about-us-module-01 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-01 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-about-us-module-01 .content-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
  border-bottom: 0.0625rem solid #9F1E34;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-01 .content-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6vw;
    margin-bottom: 10vw;
  }
}
.zjny-page-about-us-module-01 .content-body .left-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-01 .content-body .left-content {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.zjny-page-about-us-module-01 .content-body .left-content .title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-01 .content-body .left-content .title {
    font-size: 4.4vw;
  }
}
.zjny-page-about-us-module-01 .content-body .left-content .name {
  margin-top: 0.9375rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-01 .content-body .left-content .name {
    font-size: 4.4vw;
    margin-top: 2vw;
  }
}
.zjny-page-about-us-module-01 .content-body .left-content .content {
  margin-top: 1.5625rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-01 .content-body .left-content .content {
    font-size: 3.6vw;
    margin-top: 4.5vw;
  }
}
.zjny-page-about-us-module-01 .content-body .left-content .desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-01 .content-body .left-content .desc {
    font-size: 3.6vw;
    margin-top: 4vw;
  }
}
.zjny-page-about-us-module-01 .content-body .right-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-01 .content-body .right-image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.zjny-page-about-us-module-01 .content-body .right-image img {
  width: 100%;
}

.zjny-page-about-us-module-02 {
  padding: 6.25rem 0 0;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-02 {
    padding: 10vw 4vw 0;
  }
}
.zjny-page-about-us-module-02 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-02 .content-header {
    margin-bottom: 7vw;
  }
}
.zjny-page-about-us-module-02 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-02 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-about-us-module-02 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-02 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-about-us-module-02 .content-body {
  border-bottom: 0.0625rem solid #9F1E34;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-02 .content-body {
    padding-bottom: 10vw;
  }
}
.zjny-page-about-us-module-02 .content-body .content {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 700;
}

.zjny-page-about-us-module-03 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-03 {
    padding: 10vw 4vw;
  }
}
.zjny-page-about-us-module-03 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-03 .content-header {
    margin-bottom: 5vw;
  }
}
.zjny-page-about-us-module-03 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-03 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-about-us-module-03 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-03 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-about-us-module-03 .content-body .content {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-03 .content-body .content {
    font-size: 4vw;
  }
}
.zjny-page-about-us-module-03 .content-body .list-ul {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-03 .content-body .list-ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
  }
}
.zjny-page-about-us-module-03 .content-body .list-ul .list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-03 .content-body .list-ul .list {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.zjny-page-about-us-module-03 .content-body .list-ul .list .num {
  font-size: 3.75rem;
  font-weight: 700;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-03 .content-body .list-ul .list .num {
    font-size: 8vw;
  }
}
.zjny-page-about-us-module-03 .content-body .list-ul .list .con {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-03 .content-body .list-ul .list .con {
    font-size: 4vw;
    margin-top: 2vw;
  }
}

.zjny-page-about-us-module-04 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-04 {
    padding: 10vw 4vw;
  }
}
.zjny-page-about-us-module-04 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-04 .content-header {
    margin-bottom: 7vw;
  }
}
.zjny-page-about-us-module-04 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-04 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-about-us-module-04 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-04 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-about-us-module-04 .content-body .pic {
  text-align: center;
}
.zjny-page-about-us-module-04 .content-body .pic img {
  max-width: 100%;
}
.zjny-page-about-us-module-04 .content-body .content {
  margin: 3.125rem auto 0;
  max-width: 75rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-04 .content-body .content {
    margin-top: 7vw;
  }
}
.zjny-page-about-us-module-04 .content-body .content .name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #9F1E34;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-04 .content-body .content .name {
    font-size: 4vw;
  }
}
.zjny-page-about-us-module-04 .content-body .content .con {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-04 .content-body .content .con {
    font-size: 3.6vw;
    margin-top: 4vw;
  }
}
.zjny-page-about-us-module-04 .content-body .pic-list {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-04 .content-body .pic-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2vw;
    margin-top: 8vw;
  }
}
.zjny-page-about-us-module-04 .content-body .pic-list .pic-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-04 .content-body .pic-list .pic-item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.zjny-page-about-us-module-04 .content-body .pic-list .pic-item:first-child {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-04 .content-body .pic-list .pic-item:first-child {
    margin-top: 0;
  }
}
.zjny-page-about-us-module-04 .content-body .pic-list .pic-item:last-child {
  margin-top: 18.75rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-04 .content-body .pic-list .pic-item:last-child {
    margin-top: 0;
  }
}
.zjny-page-about-us-module-04 .content-body .pic-list .pic-item img {
  width: 100%;
}

.zjny-page-about-us-module-05 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-05 {
    padding: 10vw 4vw;
  }
}
.zjny-page-about-us-module-05 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-05 .content-header {
    margin-bottom: 7vw;
  }
}
.zjny-page-about-us-module-05 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-05 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-about-us-module-05 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-05 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-about-us-module-05 .content-body {
  max-width: 75rem;
  margin: 0 auto;
}
.zjny-page-about-us-module-05 .content-body .list-ul .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-05 .content-body .list-ul .list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
  }
}
.zjny-page-about-us-module-05 .content-body .list-ul .list-item:last-child {
  margin-bottom: 0;
}
.zjny-page-about-us-module-05 .content-body .list-ul .list-item .pic {
  max-width: 25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-05 .content-body .list-ul .list-item .pic {
    max-width: 100%;
    text-align: center;
  }
}
.zjny-page-about-us-module-05 .content-body .list-ul .list-item .pic img {
  width: 100%;
}
.zjny-page-about-us-module-05 .content-body .list-ul .list-item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-05 .content-body .list-ul .list-item .content {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.zjny-page-about-us-module-05 .content-body .list-ul .list-item .content .name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #9F1E34;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-05 .content-body .list-ul .list-item .content .name {
    font-size: 5.6vw;
  }
}
.zjny-page-about-us-module-05 .content-body .list-ul .list-item .content .desc {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .zjny-page-about-us-module-05 .content-body .list-ul .list-item .content .desc {
    font-size: 3.6vw;
    margin-top: 4vw;
  }
}

.zjny-page-contact-us-module-01 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-contact-us-module-01 {
    padding: 10vw 4vw;
  }
}
.zjny-page-contact-us-module-01 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-contact-us-module-01 .content-header {
    margin-bottom: 10vw;
  }
}
.zjny-page-contact-us-module-01 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-contact-us-module-01 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-contact-us-module-01 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-contact-us-module-01 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-contact-us-module-01 .content-body {
  max-width: 62.5rem;
  margin: 0 auto;
}
.zjny-page-contact-us-module-01 .content-body .list-ul .list {
  margin-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-contact-us-module-01 .content-body .list-ul .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 4vw;
    gap: 6vw;
  }
}
.zjny-page-contact-us-module-01 .content-body .list-ul .list .pic {
  max-width: 9.375rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-contact-us-module-01 .content-body .list-ul .list .pic {
    max-width: 30vw;
  }
}
.zjny-page-contact-us-module-01 .content-body .list-ul .list .pic img {
  width: 100%;
}
.zjny-page-contact-us-module-01 .content-body .list-ul .list .content .title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #9F1E34;
}
@media screen and (max-width: 768px) {
  .zjny-page-contact-us-module-01 .content-body .list-ul .list .content .title {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
.zjny-page-contact-us-module-01 .content-body .list-ul .list .content ul, .zjny-page-contact-us-module-01 .content-body .list-ul .list .content li {
  padding: 0;
  margin: 0;
}
.zjny-page-contact-us-module-01 .content-body .list-ul .list .content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.25rem;
  gap: 0.9375rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-contact-us-module-01 .content-body .list-ul .list .content ul li {
    font-size: 3.8vw;
    margin-bottom: 4vw;
    gap: 4vw;
  }
}
.zjny-page-contact-us-module-01 .content-body .list-ul .list .content ul li .icon {
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-contact-us-module-01 .content-body .list-ul .list .content ul li .icon {
    width: 4vw;
    height: 4vw;
  }
}
.zjny-page-contact-us-module-01 .content-body .list-ul .list .content ul li .icon img {
  max-width: 100%;
  max-height: 100%;
}

.zjny-page-recent-achievements-module-01 {
  padding: 6.25rem 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-01 {
    padding: 10vw 4vw 0;
  }
}
.zjny-page-recent-achievements-module-01 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-01 .content-header {
    margin-bottom: 10vw;
  }
}
.zjny-page-recent-achievements-module-01 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-01 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-recent-achievements-module-01 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-01 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-recent-achievements-module-01 .content-body {
  max-width: 75rem;
  margin: 0 auto;
}
.zjny-page-recent-achievements-module-01 .content-body .list-ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-01 .content-body .list-ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 6vw;
  }
}
.zjny-page-recent-achievements-module-01 .content-body .list-ul .list-item .pic img {
  width: 100%;
}
.zjny-page-recent-achievements-module-01 .content-body .list-ul .list-item .title {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-01 .content-body .list-ul .list-item .title {
    font-size: 3.6vw;
    margin-top: 4vw;
  }
}

.zjny-page-recent-achievements-module-02 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-02 {
    padding: 10vw 4vw;
  }
}
.zjny-page-recent-achievements-module-02 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-02 .content-header {
    margin-bottom: 10vw;
  }
}
.zjny-page-recent-achievements-module-02 .content-header .header-sub-title {
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-02 .content-header .header-sub-title {
    font-size: 3.4vw;
  }
}
.zjny-page-recent-achievements-module-02 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-02 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-recent-achievements-module-02 .content-body {
  max-width: 75rem;
  margin: 0 auto;
}
.zjny-page-recent-achievements-module-02 .content-body .list-ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-02 .content-body .list-ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 6vw;
  }
}
.zjny-page-recent-achievements-module-02 .content-body .list-ul .list-item .pic img {
  width: 100%;
}
.zjny-page-recent-achievements-module-02 .content-body .list-ul .list-item .title {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .zjny-page-recent-achievements-module-02 .content-body .list-ul .list-item .title {
    font-size: 3.6vw;
    margin-top: 4vw;
  }
}

.zjny-page-smart-agriculture-module-01 {
  padding: 6.25rem 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-01 {
    padding: 10vw 4vw 0;
  }
}
.zjny-page-smart-agriculture-module-01 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-01 .content-header {
    margin-bottom: 10vw;
  }
}
.zjny-page-smart-agriculture-module-01 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-01 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-smart-agriculture-module-01 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-01 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-smart-agriculture-module-01 .content-body {
  max-width: 75rem;
  margin: 0 auto;
}
.zjny-page-smart-agriculture-module-01 .content-body .pic {
  text-align: center;
}
.zjny-page-smart-agriculture-module-01 .content-body .pic img {
  max-width: 100%;
}
.zjny-page-smart-agriculture-module-01 .content-body .list-ul {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-01 .content-body .list-ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 6vw;
  }
}
.zjny-page-smart-agriculture-module-01 .content-body .list-ul .list-item {
  border: 0.0625rem solid #9F1E34;
  text-align: center;
  padding: 5.625rem 1.25rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-01 .content-body .list-ul .list-item {
    padding: 6vw 4vw;
  }
}
.zjny-page-smart-agriculture-module-01 .content-body .list-ul .list-item:hover {
  background: #9F1E34;
}
.zjny-page-smart-agriculture-module-01 .content-body .list-ul .list-item:hover .title {
  color: #fff;
}
.zjny-page-smart-agriculture-module-01 .content-body .list-ul .list-item:hover .desc {
  color: #fff;
}
.zjny-page-smart-agriculture-module-01 .content-body .list-ul .list-item .title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #9F1E34;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-01 .content-body .list-ul .list-item .title {
    font-size: 4.4vw;
  }
}
.zjny-page-smart-agriculture-module-01 .content-body .list-ul .list-item .desc {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-01 .content-body .list-ul .list-item .desc {
    font-size: 3.6vw;
    margin-top: 4vw;
  }
}

.zjny-page-smart-agriculture-module-02 {
  padding: 6.25rem 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-02 {
    padding: 10vw 4vw 0;
  }
}
.zjny-page-smart-agriculture-module-02 .content-header {
  border-top: 0.0625rem solid #9F1E34;
  padding-top: 6.25rem;
  text-align: center;
  color: #9F1E34;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-02 .content-header {
    margin-bottom: 6vw;
    padding-top: 10vw;
  }
}
.zjny-page-smart-agriculture-module-02 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-02 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-smart-agriculture-module-02 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-02 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-smart-agriculture-module-02 .content-body .sub-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-02 .content-body .sub-title {
    font-size: 4.4vw;
  }
}
.zjny-page-smart-agriculture-module-02 .content-body .list-ul {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-02 .content-body .list-ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 6vw;
  }
}
.zjny-page-smart-agriculture-module-02 .content-body .list-ul .list-item {
  text-align: center;
}
.zjny-page-smart-agriculture-module-02 .content-body .list-ul .list-item .num {
  font-size: 3.75rem;
  font-weight: 700;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-02 .content-body .list-ul .list-item .num {
    font-size: 8vw;
  }
}
.zjny-page-smart-agriculture-module-02 .content-body .list-ul .list-item .title {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-02 .content-body .list-ul .list-item .title {
    font-size: 4.4vw;
  }
}
.zjny-page-smart-agriculture-module-02 .content-body .list-ul .list-item .desc {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.625rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-02 .content-body .list-ul .list-item .desc {
    font-size: 3.6vw;
    margin-top: 2vw;
  }
}

.zjny-page-smart-agriculture-module-03 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 {
    padding: 10vw 4vw;
  }
}
.zjny-page-smart-agriculture-module-03 .content-header {
  border-top: 0.0625rem solid #9F1E34;
  padding-top: 6.25rem;
  text-align: center;
  color: #9F1E34;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-header {
    margin-bottom: 6vw;
    padding-top: 10vw;
  }
}
.zjny-page-smart-agriculture-module-03 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-smart-agriculture-module-03 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body {
    margin-top: 8vw;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .swiper-box {
  overflow: hidden;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0.625rem 0;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .swiper-box {
    padding: 2vw 0;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .swiper-box .achievement-swiper .swiper-slide {
  position: relative;
  border-top: 0.125rem solid #9F1E34;
  padding-right: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .swiper-box .achievement-swiper .swiper-slide {
    padding-right: 0;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .swiper-box .achievement-swiper .swiper-slide:last-child {
  border-top: 0.125rem dashed #9F1E34;
}
.zjny-page-smart-agriculture-module-03 .content-body .swiper-box .achievement-swiper .swiper-slide .round {
  position: absolute;
  top: -0.375rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #9F1E34;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .swiper-box .achievement-swiper .swiper-slide .round {
    width: 2vw;
    height: 2vw;
    top: -1vw;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .swiper-box .achievement-swiper .swiper-slide .year {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #9F1E34;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .swiper-box .achievement-swiper .swiper-slide .year {
    font-size: 4.4vw;
    margin-top: 6vw;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .swiper-box .achievement-swiper .swiper-slide .desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .swiper-box .achievement-swiper .swiper-slide .desc {
    font-size: 3.6vw;
    margin-top: 4vw;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .swiper-box .swiper-pagination {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .swiper-box .swiper-pagination {
    gap: 1vw;
    margin-top: 6vw;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .swiper-box .swiper-pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background: #9F1E34;
  display: inline-block;
  border-radius: 50%;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .swiper-box .swiper-pagination .swiper-pagination-bullet {
    width: 2vw;
    height: 2vw;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .swiper-box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.zjny-page-smart-agriculture-module-03 .content-body .pic-ul {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .pic-ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 8vw;
    gap: 2vw;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .pic-ul .pic-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .pic-ul .pic-item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .pic-ul .pic-item:nth-child(2) {
  margin-top: 14vw;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .pic-ul .pic-item:nth-child(2) {
    margin-top: 0;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .pic-ul .pic-item:nth-child(3) {
  margin-top: 6vw;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .pic-ul .pic-item:nth-child(3) {
    margin-top: 0;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .pic-ul .pic-item:nth-child(4) {
  margin-top: 2vw;
}
@media screen and (max-width: 768px) {
  .zjny-page-smart-agriculture-module-03 .content-body .pic-ul .pic-item:nth-child(4) {
    margin-top: 0;
  }
}
.zjny-page-smart-agriculture-module-03 .content-body .pic-ul .pic-item img {
  width: 100%;
}

.zjny-page-urban-water-conservancy-module-01 {
  padding: 6.25rem 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-01 {
    padding: 10vw 4vw 0;
  }
}
.zjny-page-urban-water-conservancy-module-01 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-01 .content-header {
    margin-bottom: 10vw;
  }
}
.zjny-page-urban-water-conservancy-module-01 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-01 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-urban-water-conservancy-module-01 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-01 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-urban-water-conservancy-module-01 .content-body .pic {
  text-align: center;
}
.zjny-page-urban-water-conservancy-module-01 .content-body .pic img {
  max-width: 100%;
  border: 0.0625rem solid #9F1E34;
}
.zjny-page-urban-water-conservancy-module-01 .content-body .pic .title {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}
.zjny-page-urban-water-conservancy-module-01 .content-body .list-ul {
  max-width: 50rem;
  margin: 6.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-01 .content-body .list-ul {
    margin: 10vw auto 0;
    grid-gap: 4vw;
  }
}
.zjny-page-urban-water-conservancy-module-01 .content-body .list-ul .list-item {
  text-align: center;
  padding: 5.625rem 2.5rem;
  border: 0.0625rem solid #9F1E34;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-01 .content-body .list-ul .list-item {
    padding: 8vw 4vw;
  }
}
.zjny-page-urban-water-conservancy-module-01 .content-body .list-ul .list-item:hover {
  background-color: #9F1E34;
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
}
.zjny-page-urban-water-conservancy-module-01 .content-body .list-ul .list-item:hover .title {
  color: #fff;
}
.zjny-page-urban-water-conservancy-module-01 .content-body .list-ul .list-item:hover .desc {
  color: #fff;
}
.zjny-page-urban-water-conservancy-module-01 .content-body .list-ul .list-item .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: #9F1E34;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-01 .content-body .list-ul .list-item .title {
    font-size: 4.4vw;
    margin-bottom: 4vw;
  }
}
.zjny-page-urban-water-conservancy-module-01 .content-body .list-ul .list-item .desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-01 .content-body .list-ul .list-item .desc {
    font-size: 3.6vw;
  }
}

.zjny-page-urban-water-conservancy-module-02 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 {
    padding: 10vw 4vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-header {
  border-top: 0.0625rem solid #9F1E34;
  padding-top: 6.25rem;
  text-align: center;
  color: #9F1E34;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-header {
    margin-bottom: 6vw;
    padding-top: 10vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body {
  margin: 5rem auto 0;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body {
    margin-top: 8vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .sub-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .sub-title {
    font-size: 4.4vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .list-ul {
  max-width: 75rem;
  margin: 5rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .list-ul {
    margin-top: 8vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .list-ul .list-item {
  text-align: center;
}
.zjny-page-urban-water-conservancy-module-02 .content-body .list-ul .list-item .num {
  font-size: 3.75rem;
  font-weight: 700;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .list-ul .list-item .num {
    font-size: 8vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .list-ul .list-item .title {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .list-ul .list-item .title {
    font-size: 4.4vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .list-ul .list-item .desc {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.625rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .list-ul .list-item .desc {
    font-size: 3.6vw;
    margin-top: 2vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .pic {
  max-width: 75rem;
  margin: 5rem auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .pic {
    margin: 8vw 0;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .pic img {
  width: 100%;
}
.zjny-page-urban-water-conservancy-module-02 .content-body .pic .title {
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .pic .title {
    font-size: 3.6vw;
    margin-top: 4vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .pic-ul {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .pic-ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 8vw;
    gap: 2vw;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .pic-ul .pic-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .pic-ul .pic-item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .pic-ul .pic-item:nth-child(1) {
  margin-top: 2vw;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .pic-ul .pic-item:nth-child(1) {
    margin-top: 0;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .pic-ul .pic-item:nth-child(2) {
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .pic-ul .pic-item:nth-child(2) {
    margin-top: 0;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .pic-ul .pic-item:nth-child(3) {
  margin-top: 8vw;
}
@media screen and (max-width: 768px) {
  .zjny-page-urban-water-conservancy-module-02 .content-body .pic-ul .pic-item:nth-child(3) {
    margin-top: 0;
  }
}
.zjny-page-urban-water-conservancy-module-02 .content-body .pic-ul .pic-item img {
  width: 100%;
}

.zjny-page-coastal-ecology-module-01 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-coastal-ecology-module-01 {
    padding: 10vw 4vw;
  }
}
.zjny-page-coastal-ecology-module-01 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-coastal-ecology-module-01 .content-header {
    margin-bottom: 10vw;
  }
}
.zjny-page-coastal-ecology-module-01 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-coastal-ecology-module-01 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-coastal-ecology-module-01 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-coastal-ecology-module-01 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-coastal-ecology-module-01 .content-body {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-coastal-ecology-module-01 .content-body {
    font-size: 4.4vw;
  }
}

.zjny-page-milestone-literature-module-01 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-milestone-literature-module-01 {
    padding: 10vw 4vw;
  }
}
.zjny-page-milestone-literature-module-01 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-milestone-literature-module-01 .content-header {
    margin-bottom: 10vw;
  }
}
.zjny-page-milestone-literature-module-01 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-page-milestone-literature-module-01 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-page-milestone-literature-module-01 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-milestone-literature-module-01 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-page-milestone-literature-module-01 .content-body .list-ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-page-milestone-literature-module-01 .content-body .list-ul {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 6vw;
  }
}
.zjny-page-milestone-literature-module-01 .content-body .list-ul .list-item .list-content {
  text-align: center;
}
.zjny-page-milestone-literature-module-01 .content-body .list-ul .list-item .list-content .pic {
  margin: 0 auto;
  width: 18.75rem;
  height: 25rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .zjny-page-milestone-literature-module-01 .content-body .list-ul .list-item .list-content .pic {
    width: 50vw;
    height: 60vw;
  }
}
.zjny-page-milestone-literature-module-01 .content-body .list-ul .list-item .list-content .pic img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.zjny-page-milestone-literature-module-01 .content-body .list-ul .list-item .list-content .entit {
  margin-top: 0.9375rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .zjny-page-milestone-literature-module-01 .content-body .list-ul .list-item .list-content .entit {
    font-size: 3.6vw;
    margin-top: 2.5vw;
  }
}
.zjny-page-milestone-literature-module-01 .content-body .list-ul .list-item .list-content .chtit {
  margin-top: 0.9375rem;
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-page-milestone-literature-module-01 .content-body .list-ul .list-item .list-content .chtit {
    font-size: 3.6vw;
    margin-top: 2.5vw;
  }
}
.zjny-page-milestone-literature-module-01 .content-body .list-ul .list-item .list-content .morebtn {
  display: block;
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #9F1E34;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .zjny-page-milestone-literature-module-01 .content-body .list-ul .list-item .list-content .morebtn {
    font-size: 3.6vw;
    margin-top: 4vw;
  }
}

.zoom-anim-dialog {
  background: white;
  max-width: 90%;
  padding: 2.5rem;
  text-align: center;
  margin: 40px auto;
  position: relative;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .zoom-anim-dialog {
    padding: 4vw;
    margin: 4vw auto;
  }
}
.zoom-anim-dialog img {
  max-width: 100%;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .zoom-anim-dialog img {
    margin-bottom: 4vw;
  }
}
.zoom-anim-dialog .entit {
  margin-top: 0.9375rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .zoom-anim-dialog .entit {
    font-size: 3.6vw;
    margin-top: 2.5vw;
  }
}
.zoom-anim-dialog .chtit {
  margin-top: 0.9375rem;
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zoom-anim-dialog .chtit {
    font-size: 3.6vw;
    margin-top: 2.5vw;
  }
}

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

.zjny-home-screen-01 {
  overflow: hidden;
  position: relative;
}
.zjny-home-screen-01 .swiper {
  position: relative;
}
.zjny-home-screen-01 .swiper .swiper-slide .pic {
  height: 100%;
}
.zjny-home-screen-01 .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.zjny-home-screen-01 .swiper .swiper-pagination {
  position: absolute;
  bottom: 3.125rem;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-01 .swiper .swiper-pagination {
    gap: 1vw;
    bottom: 5vw;
  }
}
.zjny-home-screen-01 .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.1875rem;
  background: RGBA(255, 255, 255, 1);
  display: inline-block;
  border-radius: 0.1875rem;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-01 .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 2vw;
    height: 0.5vw;
  }
}
.zjny-home-screen-01 .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 2.5rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-01 .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 6vw;
  }
}

.zjny-home-screen-02 {
  background: #F8F8F8;
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-02 {
    padding: 10vw 4vw;
  }
}
.zjny-home-screen-02 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-02 .content-header {
    margin-bottom: 7vw;
  }
}
.zjny-home-screen-02 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-02 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-home-screen-02 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-02 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-home-screen-02 .content-body {
  max-width: 62.5rem;
  margin: 0 auto;
}
.zjny-home-screen-02 .content-body .title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-02 .content-body .title {
    font-size: 4.4vw;
  }
}
.zjny-home-screen-02 .content-body .name {
  margin-top: 0.9375rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-02 .content-body .name {
    font-size: 4.4vw;
    margin-top: 2vw;
  }
}
.zjny-home-screen-02 .content-body .content {
  margin-top: 2.8125rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-02 .content-body .content {
    font-size: 3.6vw;
    margin-top: 4.5vw;
  }
}
.zjny-home-screen-02 .content-body .desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-02 .content-body .desc {
    font-size: 3.6vw;
    margin-top: 4vw;
  }
}

.zjny-home-screen-03 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-03 {
    padding: 10vw 4vw;
  }
}
.zjny-home-screen-03 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-03 .content-header {
    margin-bottom: 7vw;
  }
}
.zjny-home-screen-03 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-03 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-home-screen-03 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-03 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-home-screen-03 .content-body {
  max-width: 75rem;
  margin: 0 auto;
}
.zjny-home-screen-03 .content-body .list-ul .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-03 .content-body .list-ul .list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
  }
}
.zjny-home-screen-03 .content-body .list-ul .list-item:last-child {
  margin-bottom: 0;
}
.zjny-home-screen-03 .content-body .list-ul .list-item .pic {
  max-width: 25rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-03 .content-body .list-ul .list-item .pic {
    max-width: 100%;
    text-align: center;
  }
}
.zjny-home-screen-03 .content-body .list-ul .list-item .pic img {
  width: 100%;
}
.zjny-home-screen-03 .content-body .list-ul .list-item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-03 .content-body .list-ul .list-item .content {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.zjny-home-screen-03 .content-body .list-ul .list-item .content .name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #9F1E34;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-03 .content-body .list-ul .list-item .content .name {
    font-size: 5.6vw;
  }
}
.zjny-home-screen-03 .content-body .list-ul .list-item .content .desc {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-03 .content-body .list-ul .list-item .content .desc {
    font-size: 3.6vw;
    margin-top: 4vw;
  }
}

.zjny-home-screen-04 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-04 {
    padding: 10vw 4vw;
  }
}
.zjny-home-screen-04 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-04 .content-header {
    margin-bottom: 7vw;
  }
}
.zjny-home-screen-04 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-04 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-home-screen-04 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-04 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-home-screen-04 .content-body {
  margin: 5rem auto 0;
  max-width: 62.5rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-04 .content-body {
    margin: 8vw 0 0;
  }
}
.zjny-home-screen-04 .content-body .list-ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-04 .content-body .list-ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 6vw;
  }
}
.zjny-home-screen-04 .content-body .list-ul .list-item a {
  text-decoration: none;
  display: block;
  border: 0.0625rem solid #9F1E34;
  border-radius: 0.3125rem;
}
.zjny-home-screen-04 .content-body .list-ul .list-item a:hover {
  background: #9F1E34;
}
.zjny-home-screen-04 .content-body .list-ul .list-item a:hover .content {
  color: #fff;
}
.zjny-home-screen-04 .content-body .list-ul .list-item a .pic {
  height: 37.5rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-04 .content-body .list-ul .list-item a .pic {
    height: 70vw;
  }
}
.zjny-home-screen-04 .content-body .list-ul .list-item a .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.zjny-home-screen-04 .content-body .list-ul .list-item a .content {
  text-align: center;
  color: #9F1E34;
  padding: 2.5rem 1.5625rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-04 .content-body .list-ul .list-item a .content {
    padding: 6vw 4vw;
  }
}
.zjny-home-screen-04 .content-body .list-ul .list-item a .content .title {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-04 .content-body .list-ul .list-item a .content .title {
    font-size: 4vw;
  }
}
.zjny-home-screen-04 .content-body .list-ul .list-item a .content .desc {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-04 .content-body .list-ul .list-item a .content .desc {
    font-size: 3.6vw;
    margin-top: 2vw;
  }
}

.zjny-home-screen-05 {
  padding: 0 1.25rem 6.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-05 {
    padding: 0 4vw 10vw;
  }
}
.zjny-home-screen-05 .content-header {
  text-align: center;
  color: #9F1E34;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-05 .content-header {
    margin-bottom: 7vw;
  }
}
.zjny-home-screen-05 .content-header .header-sub-title {
  font-size: 1rem;
  font-weight: 400;
  font-family: "宋体";
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-05 .content-header .header-sub-title {
    font-size: 3.6vw;
  }
}
.zjny-home-screen-05 .content-header .header-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-05 .content-header .header-title {
    font-size: 5.6vw;
    margin-top: 2.8vw;
  }
}
.zjny-home-screen-05 .content-body {
  margin: 5rem auto 0;
  max-width: 62.5rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-05 .content-body {
    margin: 8vw 0 0;
  }
}
.zjny-home-screen-05 .content-body .list-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-05 .content-body .list-ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6vw;
  }
}
.zjny-home-screen-05 .content-body .list-ul .list .title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #9F1E34;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-05 .content-body .list-ul .list .title {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
.zjny-home-screen-05 .content-body .list-ul .list ul, .zjny-home-screen-05 .content-body .list-ul .list li {
  padding: 0;
  margin: 0;
}
.zjny-home-screen-05 .content-body .list-ul .list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.25rem;
  gap: 0.9375rem;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-05 .content-body .list-ul .list ul li {
    font-size: 3.6vw;
    margin-bottom: 4vw;
    gap: 4vw;
  }
}
.zjny-home-screen-05 .content-body .list-ul .list ul li .icon {
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (max-width: 768px) {
  .zjny-home-screen-05 .content-body .list-ul .list ul li .icon {
    width: 4vw;
    height: 4vw;
  }
}
.zjny-home-screen-05 .content-body .list-ul .list ul li .icon img {
  max-width: 100%;
  max-height: 100%;
}

/*---------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 4vw;
  }
}

.banner {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .banner {
    margin-top: 3.125rem;
  }
}
.banner .banner-image img {
  width: 100%;
}

.pagination {
  margin-top: 3.125rem;
  text-align: center;
}
.pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.3125rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .pagination .page-numbers {
    width: 8vw;
    height: 8vw;
    margin: 0 1vw;
    font-size: 28px;
    font-size: 2.8vw;
    border-radius: 0.8vw;
  }
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background: #128690;
  border-color: #128690;
  color: #fff;
}

.post-type-archive-product .zjny-global-page-banner {
  background-color: #F0F3F6;
}
.post-type-archive-product .zjny-global-page-banner .banner-content .c1 {
  color: #128690;
}
.post-type-archive-product .zjny-global-page-banner .banner-content .c2 {
  color: #5B6770;
}