.page-index {
  background: url(../Images/aboutbg.jpg) no-repeat;
}

body {
  overflow: auto !important;
}
body::-webkit-scrollbar {
  width: 3px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.1254901961);
}
body::-webkit-scrollbar-thumb {
  background: #3368bd;
  border-radius: 2px;
}

.about-page {
  background-color: #fff;
  background-image: url(../Images/aboutbg.jpg);
  background-repeat: no-repeat;
  background-position: center -750px;
  padding-bottom: 80px;
  background-size: cover;
  position: relative;
}
.about-page::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 205px;
  background: linear-gradient(to bottom, #f6f8fa, rgba(246, 248, 250, 0));
}
.about-page .title {
  padding: 115px 240px 55px;
  font-size: 36px;
  position: relative;
  background: linear-gradient(90deg, #114bb0, #347fce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-page .about-content {
  padding-right: 36px;
  box-sizing: border-box;
  width: 1440px;
  margin: auto;
  font-family: MicrosoftYaHei;
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  overflow-y: auto;
}
.about-page .about-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.1254901961);
}
.about-page .about-content::-webkit-scrollbar-thumb {
  background: #3368bd;
  border-radius: 2px;
}
.about-page .video-bg {
  width: 1680px;
  height: 515px;
  margin: 150px auto 80px;
  background-color: #0077cb;
  background: url(../Images/housebg.png) no-repeat;
  background-size: 100% 100%;
  border-radius: 120px 120px 0 0;
  position: relative;
}
.about-page .video-bg::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to top, #0077cb, rgba(0, 119, 203, 0));
  pointer-events: none;
  z-index: 3;
}
.about-page .video-bg::after {
  content: "";
  position: absolute;
  top: -83px;
  left: 2px;
  display: block;
  width: 1680px;
  height: 596px;
  background: url(../Images/house.png) no-repeat;
  z-index: 2;
  background-size: 100% 100%;
  pointer-events: none;
}
.about-page .video-bg:hover .btn::after {
  animation: btnscale 3s linear infinite;
}
@keyframes btnscale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.about-page .video-bg .video-box {
  width: 100%;
  height: 100%;
  position: relative;
}
.about-page .video-bg .video-box video {
  width: 0%;
  height: 0%;
  border-radius: 120px 120px 0 0;
}
.about-page .video-bg .video-box .video-mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-page .video-bg .video-box .video-mask h4 {
  font-size: 44px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 1;
  text-shadow: 5px 8px 7px #1f6d97;
  font-weight: 700;
  animation: hmove 3s linear infinite;
}
@keyframes hmove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.about-page .video-bg .video-box .video-mask .btn {
  width: 78px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 24px;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
}
.about-page .video-bg .video-box .video-mask .btn:hover {
  border: 1px solid #114bb0;
}
.about-page .video-bg .video-box .video-mask .btn::before {
  content: "";
  border: 8px solid transparent;
  border-left: 12px solid #114bb0;
  margin-left: 8px;
}
.about-page .video-bg .video-box .video-mask .btn::after {
  content: "";
  display: block;
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: -1;
  border-radius: 40px;
}

.datas {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 240px;
  height: 400px;
  margin: 0 auto;
  position: relative;
  background: #fff;
}
.datas::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9333333333), rgba(255, 255, 255, 0));
  transform: skewX(-30deg);
  left: -240px;
  bottom: 0;
  animation: move 10s linear infinite;
  z-index: 2;
}
@keyframes move {
  0% {
    left: 0;
    opacity: 0.5;
  }
  50% {
    left: calc(100% - 300px);
    opacity: 1;
  }
  100% {
    left: 0;
    opacity: 0.5;
  }
}
.datas::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 400px;
  background: url(../Images/line.png) no-repeat;
  background-size: 100% 100%;
}
.datas .data .num {
  font-family: "numberfont";
  font-size: 50px;
  font-weight: 700;
  line-height: 36px;
  background: linear-gradient(to right, #114bb0, #347fce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.datas .data .unit {
  color: #333;
}
.datas .data .dtitle {
  color: #666;
  margin-top: 12px;
}

.foot {
  padding: 0 240px;
}

/* Section 1: Mission and Values */
.mission-values-section {
  background: #f6f8fa;
  padding: 120px 240px 110px;
}
.mission-values-section .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mission-values-section .container .values {
  width: 450px;
  height: 400px;
  border-radius: 14px;
  overflow: hidden;
  padding: 80px 40px 45px;
  border: 2px solid #fff;
  box-shadow: 10px 10px 17px rgba(189, 211, 235, 0.3333333333); /* Refine shadow */
  background-color: rgba(255, 255, 255, 0.9); /* More opaque background for text */
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-in-out;
  z-index: 2; /* Ensure content is above overlay */
  position: relative;
}
.mission-values-section .container .values h2 {
  font-size: 50px;
  margin-bottom: 32px;
}
.mission-values-section .container .values:hover {
  transform: scale(1.05) !important;
}
.mission-values-section .container .values::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg, #edf1fb, rgba(237, 241, 251, 0.9333333333), rgba(170, 200, 229, 0));
}
.mission-values-section .container .values::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(-45deg, #347fce, rgba(17, 75, 176, 0), rgba(17, 75, 176, 0));
}
.mission-values-section .container .values:first-child {
  background: url(../Images/b1.jpg) no-repeat;
  background-size: cover;
}
.mission-values-section .container .values:last-child {
  background: url(../Images/b2.jpg) no-repeat;
  background-size: cover;
}
.mission-values-section .container .values p {
  color: #333;
  font-size: 18px;
  line-height: 40px;
}

h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  background: linear-gradient(to right, #114bb0, #347fce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-bottom: 70px;
}
h2 span {
  position: absolute;
  top: -80%;
  left: 0;
  font-size: 60px;
  line-height: 60px;
  background: linear-gradient(to bottom, rgba(0, 104, 210, 0.4), rgba(0, 104, 210, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hnum {
  transition: all 0.8s ease;
  opacity: 0;
  transform: translateY(-40px);
}
.hnum.animate {
  opacity: 1;
  transform: translateY(0);
}

.mission.animate, .values.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Section 2: Three Pillars */
.three-pillars-section {
  background-image: url("../Images/b3.jpg"); /* Placeholder background image */
  background-size: 100% 100%;
  background-color: #003366; /* Dark blue background */
  color: #fff;
  padding: 170px 0;
  text-align: center;
  position: relative;
  height: 890px;
}
.three-pillars-section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to right, #114bb0, #347fce);
  opacity: 0.7;
}
.three-pillars-section h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  color: #fff;
  position: relative;
  display: inline;
}
.three-pillars-section h3 span {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  line-height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5333333333), rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.three-pillars-section .container {
  position: relative;
}
.three-pillars-section .container::before, .three-pillars-section .container::after {
  content: "";
  width: 1px;
  height: 890px;
  position: absolute;
  left: 33.3333%;
  top: -170px;
  background: rgba(255, 255, 255, 0.5333333333);
  opacity: 0.7;
}
.three-pillars-section .container::after {
  left: 66.6666%;
}
.three-pillars-section .pillars {
  display: flex;
  justify-content: space-between;
  z-index: 2;
  padding: 160px;
}
.three-pillars-section .pillars .pillar {
  width: 320px;
  height: 367px;
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  color: #fff;
  cursor: default;
}
.three-pillars-section .pillars .pillar:hover .imgbox {
  transform: scale(1.1);
}
.three-pillars-section .pillars .pillar:hover .imgbox i {
  animation: iratote 3s linear infinite;
}
@keyframes iratote {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(410deg);
  }
}
.three-pillars-section .pillars .pillar .imgbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  transition: transform 0.5s ease-out;
}
.three-pillars-section .pillars .pillar .imgbox img {
  display: block;
  width: 69px;
  height: 69px;
  -o-object-fit: contain;
     object-fit: contain;
}
.three-pillars-section .pillars .pillar .imgbox i {
  position: absolute;
  width: 152px;
  height: 152px;
  left: -18px;
  top: -18px;
  border: 1px dotted #fff;
  border-radius: 50%;
  transform: rotate(45deg);
}
.three-pillars-section .pillars .pillar .imgbox i::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: -4px;
  left: 48px;
}
.three-pillars-section .pillars .pillar h3 {
  margin: 68px 0 30px;
  font-size: 36px;
  line-height: 40px;
}
.three-pillars-section .pillars .pillar p {
  font-size: 20px;
  line-height: 40px;
  width: 260px;
}
.three-pillars-section .pillars .pillar.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Section 3: Three Cultural Systems */
.cultural-systems-section {
  background-color: #f6f8fa;
  background: url("../Images/bfoot.jpg") no-repeat; /* Placeholder background image */
  background-size: 100%;
  background-position: 0% 60%;
  padding: 140px 240px 170px;
  position: relative;
}
.cultural-systems-section .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cultural-systems-section h2 {
  display: inline;
  text-align: center;
}
.cultural-systems-section h2 span {
  left: 50%;
  transform: translateX(-50%);
}
.cultural-systems-section .systems {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.cultural-systems-section .system {
  width: 260px;
  height: 590px;
  padding: 40px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Refine shadow */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, width 0.5s ease-out;
  position: relative;
  border-radius: 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url(../Images/b4.jpg) no-repeat;
  background-position: right;
  text-align: center;
}
.cultural-systems-section .system:nth-child(2) {
  background: url(../Images/b5.jpg) no-repeat;
  background-position: right;
}
.cultural-systems-section .system:nth-child(3) {
  background: url(../Images/b6.jpg) no-repeat;
  background-position: right;
}
.cultural-systems-section .system.cur {
  width: 870px;
  text-align: left;
}
.cultural-systems-section .system.cur::before {
  background: linear-gradient(to top, #114bb0, rgba(52, 127, 206, 0));
  background-size: 100% 100%;
  opacity: 0.8;
}
.cultural-systems-section .system.cur .texts {
  width: 790px;
}
.cultural-systems-section .system.cur .texts p {
  height: auto !important;
  opacity: 1 !important;
}
.cultural-systems-section .system::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to right, #114bb0, #347fce);
  opacity: 0.5;
  z-index: -1;
  border-radius: 14px;
}
.cultural-systems-section .system h3 {
  font-size: 32px;
}
.cultural-systems-section .system .texts {
  width: 180px;
}
.cultural-systems-section .system .texts p {
  font-size: 18px;
  line-height: 40px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.5s ease-out, opacity 0.5s ease-out;
}
.cultural-systems-section .system .texts p:first-child {
  opacity: 1;
  height: auto;
}
.cultural-systems-section .system.animate {
  opacity: 1;
  transform: translateY(0);
}

.lgcolor {
  background: linear-gradient(to right, #114bb0, #347fce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-page.aboutc {
  background-image: none;
  background-color: #fff;
}

.aboutc-banner-box {
  padding: 146px 240px 30px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.aboutc-banner-box .city {
  width: 1400px;
  height: 100px;
  content: "";
  background: url(../Images/newscity.png) no-repeat;
  background-size: 1400px 100px;
  position: absolute;
  top: 280px;
  left: 310px;
  animation: widthc 5s linear infinite;
}
.aboutc-banner-box .city::before {
  content: "";
  display: block;
  width: 310px;
  border-top: 1px solid #dee5ec;
  position: absolute;
  left: 0;
  top: 80px;
  transform: translateX(-100%);
}
@keyframes widthc {
  0% {
    width: 0px;
  }
  100% {
    width: 1400px;
  }
}
.aboutc-banner-box .aboutc-left {
  flex-shrink: 0;
  position: relative;
  width: 600px;
  z-index: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.aboutc-banner-box .aboutc-left .tit1 {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.aboutc-banner-box .aboutc-left .tit2 {
  font-size: 20px;
  color: #999999;
  display: none;
}
.aboutc-banner-box .aboutc-left .tit3 {
  font-size: 80px;
  display: block;
  margin: 30px 0 60px;
  display: flex;
  align-items: flex-end;
}
.aboutc-banner-box .aboutc-left .tit3 span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  background-image: linear-gradient(90deg, #114bb0 0%, #347fce 100%), linear-gradient(#115bb3, #115bb3);
  background-blend-mode: normal, normal;
  border-radius: 50%;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  margin-bottom: 18px;
  margin-left: 10px;
}
.aboutc-banner-box .aboutc-left .tit4 {
  font-family: "maobizi";
  font-size: 36px;
  line-height: 1;
  margin: 18px 0;
  color: #115bb3;
}
.aboutc-banner-box .aboutc-left .tit5 {
  font-size: 20px;
  line-height: 30px;
}
.aboutc-banner-box .aboutcBanner {
  width: 731px;
  height: 450px;
  position: relative;
}
.aboutc-banner-box .aboutcBanner::before {
  content: "";
  width: 315px;
  height: 315px;
  background: url(../Images/newsline.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -90px;
  right: -120px;
  z-index: 0;
}
.aboutc-banner-box .aboutcBanner::after {
  content: "";
  width: 732px;
  height: 262px;
  background-image: linear-gradient(90deg, #114bb0 0%, #347fce 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, normal;
  position: absolute;
  bottom: 0;
  right: -240px;
  z-index: 0;
  display: none;
}
.aboutc-banner-box .aboutcBanner .abc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -70px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background-color: #115bb3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.5s;
  z-index: 90;
}
.aboutc-banner-box .aboutcBanner .abc-btn i {
  font-size: 20px;
}
.aboutc-banner-box .aboutcBanner .abc-btn:hover {
  opacity: 0.8;
}
.aboutc-banner-box .aboutcBanner .abc-btn.next {
  left: auto;
  right: -70px;
}
.aboutc-banner-box .aboutcBanner .vdb-btns {
  display: flex;
  position: absolute;
  bottom: 54px;
  right: 0;
  z-index: 99;
  display: none;
}
.aboutc-banner-box .aboutcBanner .vdb-btns .vdb-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 44px;
  cursor: pointer;
}
.aboutc-banner-box .aboutcBanner .vdb-btns .vdb-btn i {
  font-size: 20px;
}
.aboutc-banner-box .aboutcBanner .swiper {
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.aboutc-banner-box .aboutcBanner .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0) !important;
}
.aboutc-banner-box .aboutcBanner .swiper-slide {
  width: 352px !important;
  height: 226px;
  position: absolute;
  left: 0;
  top: 285px;
  transition: all 0.5s ease;
  opacity: 0;
}
.aboutc-banner-box .aboutcBanner .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #276bc2;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}
.aboutc-banner-box .aboutcBanner .swiper-slide .imgitem {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.aboutc-banner-box .aboutcBanner .swiper-slide.swiper-slide-active {
  left: 0;
  top: 0;
  width: 100% !important;
  height: 450px;
  z-index: 2;
  opacity: 1;
}
.aboutc-banner-box .aboutcBanner .swiper-slide.swiper-slide-active::after {
  display: none;
}
.aboutc-banner-box .aboutcBanner .swiper-slide.swiper-slide-active .imgitem {
  width: 100%;
  height: 100%;
}

.qlines {
  width: 100%;
  height: 370px;
  position: relative;
}
.qlines .r_btm {
  position: absolute;
  transform: translateX(-50%);
  color: #666;
  left: 50%;
  bottom: 0;
  font-size: 14px;
}
.qlines .r_btm img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 4px;
}
.qlines .qlinesbox {
  display: flex;
  height: 100%;
  background: url(../Images/qline.svg);
  background-size: 100vw 100%;
  background-repeat: repeat-x;
  transition: transform 0.5s ease-in-out;
}
.qlines .qlineitem:nth-child(8n-7) {
  margin-top: 60px;
}
.qlines .qlineitem:nth-child(8n-6) {
  margin-top: 33px;
}
.qlines .qlineitem:nth-child(8n-5) {
  margin-top: 137px;
}
.qlines .qlineitem:nth-child(8n-4) {
  margin-top: 43px;
}
.qlines .qlineitem:nth-child(8n-3) {
  margin-top: 150px;
}
.qlines .qlineitem:nth-child(8n-2) {
  margin-top: 47px;
}
.qlines .qlineitem:nth-child(8n-1) {
  margin-top: 35px;
}
.qlines .qlineitem:nth-child(8n) {
  margin-top: 133px;
}
.qlines .qlineitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  width: 10vw;
  margin-left: 1.25vw;
  margin-right: 1.25vw;
  flex-shrink: 0;
  white-space: nowrap;
}
.qlines .qlineitem .cir {
  display: block;
  width: 11px;
  height: 11px;
  margin-right: 10px;
  border-radius: 50%;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  background-image: linear-gradient(90deg, #114bb0 0%, #347fce 100%), linear-gradient(#e23c32, #e23c32);
  background-blend-mode: normal, normal;
  position: relative;
}
.qlines .qlineitem .cir::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 14px);
  top: calc(50% - 14px);
  width: 28px;
  height: 28px;
  background-image: linear-gradient(90deg, #114bb0 0%, #347fce 100%), linear-gradient(#e23c32, #e23c32);
  background-blend-mode: normal, normal;
  opacity: 0.2;
}
.qlines .qlineitem .cir i {
  width: 48px;
  height: 48px;
  opacity: 0;
  position: absolute;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
}
.qlines .qlineitem .cir i::after {
  width: 66px;
  height: 66px;
  opacity: 0.6;
  left: calc(50% - 33px);
  top: calc(50% - 33px);
  animation: none;
}
.qlines .qlineitem:hover > .cir::after {
  animation: qlinefd 2s linear infinite;
}
.qlines .qlineitem.sel {
  transform: translateY(-30px);
}
.qlines .qlineitem.sel > .cir {
  width: 80px;
  height: 60px;
  border-radius: 0;
  background: url(../Images/cir.png);
  background-size: 100% 100%;
}
.qlines .qlineitem.sel > .cir::after {
  opacity: 0;
}
.qlines .qlineitem.sel .cir i {
  opacity: 0;
}
@keyframes qlinefd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.qlines .qlineitem:hover p, .qlines .qlineitem.sel p {
  transform: scale(1.1);
}
.qlines .qlineitem p {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  position: relative;
  transition: all 0.5s ease;
}
.qlines .qlineitem p span {
  font-size: 16px;
}

.aboutd {
  background-image: none;
  padding: 80px 0 300px;
}
.aboutd .partnerbj {
  width: 1784px;
  height: 267px;
  background: url(../Images/diqiu.png) no-repeat;
  background-size: 100% 100%;
  background-position: center top;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.aboutd .partnerbj::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
}
.aboutd .aboutdtitle {
  position: relative;
  text-align: center;
  margin-bottom: 76px;
}
.aboutd .aboutdtitle b {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 30px;
  line-height: 120px;
  color: #282828;
}
.aboutd .aboutdtitle p {
  font-size: 18px;
  color: #999999;
}
.aboutd .swiperPartner {
  margin-bottom: 24px;
  position: relative;
}
.aboutd .swiperPartner::before, .aboutd .swiperPartner::after {
  content: "";
  width: 120px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 9;
}
.aboutd .swiperPartner::before {
  left: 0;
  background-image: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}
.aboutd .swiperPartner::after {
  right: 0;
  background-image: linear-gradient(-90deg, #fff 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}
.aboutd .swiperPartner .swiper-slide {
  width: 190px !important;
  height: 120px;
  padding: 24px;
  background-color: #ffffff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
  border-radius: 60px;
}
.aboutd .swiperPartner .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.aboute {
  background-image: none;
  padding: 0;
}
.aboute::before {
  height: 100px;
}
.aboute .ryzztit {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}
.aboute .ryzztit::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: calc(100% - 16px);
  background-image: url(../Images/ryzzcity.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.aboute .ryzztit h3 {
  font-size: 36px;
  line-height: 50px;
  color: #333333;
  padding-top: 20px;
}
.aboute .ryzztit p {
  font-size: 24px;
  color: #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aboute .ryzztit p::after {
  content: "";
  display: block;
  width: calc(100% - 350px);
  height: 4px;
  background-color: #f0f0f0;
}
.aboute .ryzz-swiper {
  padding: 60px 240px;
  position: relative;
}
.aboute .ryzz-swiper .cont {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.aboute .ryzz-swiper .cont .swiperzs {
  width: 820px;
  height: 500px;
  overflow: hidden;
  padding: 30px 0;
  position: relative;
}
.aboute .ryzz-swiper .cont .swiperzs .navbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0px 0px 18px 0px rgba(168, 194, 211, 0.14);
  left: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}
.aboute .ryzz-swiper .cont .swiperzs .navbtn:hover {
  color: #3267cf;
}
.aboute .ryzz-swiper .cont .swiperzs .navbtn.navbtn2 {
  left: auto;
  right: 60px;
}
.aboute .ryzz-swiper .cont .swiperzs .swiper-wrapper .swiper-slide {
  background-color: #ffffff;
  border-radius: 10px;
  border: solid 2px #e1e9f3;
  padding: 30px 24px;
  filter: blur(2px);
}
.aboute .ryzz-swiper .cont .swiperzs .swiper-wrapper .swiper-slide-active {
  filter: blur(0);
  box-shadow: 0px 0px 15px 0px rgba(168, 194, 194, 0.52);
}
.aboute .ryzz-swiper .cont .swiperzs .swiper-wrapper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.aboute .ryzz-swiper .cont .swiperzs .swiper-wrapper .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.aboute .ryzz-swiper .cont .rydlbox {
  width: 490px;
  height: 500px;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 30px;
}
.aboute .ryzz-swiper .cont .rydlbox .swiper-wrapper {
  height: 100%;
}
.aboute .ryzz-swiper .cont .rydlbox .swiper-slide {
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333;
  border-bottom: 1px dashed #cbcbcb;
  cursor: pointer;
}
.aboute .ryzz-swiper .cont .rydlbox .swiper-slide:first-child {
  border-top: 1px dashed #cbcbcb;
}
.aboute .ryzz-swiper .cont .rydlbox .swiper-slide::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: solid 3px #1157cb;
  border-radius: 50%;
  margin-right: 20px;
}
.aboute .ryzz-swiper .cont .rydlbox .swiper-slide-active {
  color: #1157cb;
  font-weight: 600;
}
.aboute .ryzz-swiper .cont dl {
  width: 490px;
  max-height: 500px;
  overflow-y: auto;
  flex-shrink: 0;
  padding-top: 30px;
}
.aboute .ryzz-swiper .cont dl dd {
  height: 60px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  border-bottom: 1px dashed #cbcbcb;
}
.aboute .ryzz-swiper .cont dl dd.cur {
  color: #1157cb;
  font-weight: 600;
}
.aboute .ryzz-swiper .cont dl dd:first-child {
  border-top: 1px dashed #cbcbcb;
}
.aboute .ryzz-swiper .cont dl dd::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: solid 3px #1157cb;
  border-radius: 50%;
  margin-right: 20px;
}
.aboute .about-ryzz {
  position: relative;
  width: 100%;
  height: 890px;
  background-color: #ffffff;
}
.aboute .about-ryzz .ryzzimg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.aboute .about-ryzz .about-ryzz-text {
  position: relative;
  padding: 200px 240px;
  pointer-events: none;
}
.aboute .about-ryzz .about-ryzz-text h3 {
  font-size: 36px;
  line-height: 60px;
  width: 432px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}
.aboute .about-ryzz .about-ryzz-text p {
  width: 462px;
  font-size: 18px;
  line-height: 60px;
  color: #333333;
}
.aboute .about-ryzz .ryzzimg3 {
  display: none;
}
.aboute .about-ryzz .ryzz-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 106px;
}
.aboute .about-ryzz .ryzz-tab p {
  cursor: pointer;
  margin: 0 78px;
  font-size: 36px;
  line-height: 60px;
  color: #999999;
}
.aboute .about-ryzz .ryzz-tab p.lgcolor {
  font-weight: 700;
}
.aboute .ryzz-other {
  width: 100%;
  height: 890px;
  position: relative;
  overflow: hidden;
  padding: 100px 240px 0 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../Images/ryzzbg.jpg) no-repeat;
  background-size: 100% 100%;
}
.aboute .ryzz-other h3 {
  font-size: 36px;
  margin-bottom: 88px;
}
.aboute .ryzz-other .swiperRyzz {
  width: 100%;
  height: 375px;
  margin-bottom: 70px;
}
.aboute .ryzz-other .swiperRyzz .swiper-slide {
  display: flex;
}
.aboute .ryzz-other .swiperRyzz .swiper-slide img {
  width: 440px;
  height: 275px;
  margin-top: 100px;
  background-color: #3368bd;
  border-radius: 10px;
  transition: all 0.5s ease;
  z-index: 2;
}
.aboute .ryzz-other .swiperRyzz .swiper-slide .texts {
  width: 450px;
  transform: translateX(-450px);
  padding: 40px 0 50px 50px;
  opacity: 0;
  transition: transform 0.5s ease;
}
.aboute .ryzz-other .swiperRyzz .swiper-slide .texts p {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
  height: calc(100% - 60px);
  overflow-y: auto;
}
.aboute .ryzz-other .swiperRyzz .swiper-slide .texts p::-webkit-scrollbar {
  width: 4px;
  background: #eee;
  border-radius: 2px;
}
.aboute .ryzz-other .swiperRyzz .swiper-slide .texts p::-webkit-scrollbar-thumb {
  background: #3267cf;
  border-radius: 2px;
}
.aboute .ryzz-other .swiperRyzz .swiper-slide .texts p.tit {
  font-size: 22px;
  line-height: 36px;
  height: auto;
  margin-bottom: 30px;
  color: #333333;
  overflow: visible;
}
.aboute .ryzz-other .swiperRyzz .swiper-slide.swiper-slide-active {
  width: 1110px !important;
}
.aboute .ryzz-other .swiperRyzz .swiper-slide.swiper-slide-active img {
  width: 600px;
  height: 375px;
  margin-top: 0;
}
.aboute .ryzz-other .swiperRyzz .swiper-slide.swiper-slide-active .texts {
  opacity: 1;
  transform: translateX(0);
  transform: translateX(0);
}

.probr-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.probr-btns i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.5s ease;
  color: #2163be;
  background-image: linear-gradient(90deg, #cccccc 0%, #f9f9f9 100%);
}

.probr-btns i:hover {
  color: #fff;
  background-image: linear-gradient(90deg, #2163be 0%, #347fce 100%), linear-gradient(#3368bd, #3368bd);
}

.probr-btns .nums {
  margin: 5px 28px 0;
  display: flex;
  align-items: center;
}

.probr-btns .nums span.cur {
  color: #2163be;
  font-size: 30px;
  font-weight: 700;
  margin-top: 0;
}

.probr-btns .nums span.cur::before {
  display: none;
}

.probr-btns .nums span::before {
  content: "|";
  margin: 0 8px;
}

.probr-btns .nums span {
  display: inline-block;
  font-size: 16px;
  color: #2163be;
  margin-top: 5px;
}

.bullets {
  width: 344px !important;
  height: 0;
  position: absolute;
  top: 360px;
  left: 900px !important;
  display: none;
}

.bullets .swiper-pagination-bullet {
  display: block;
  height: 0;
  border-top: 1px solid #e5e5e5;
  opacity: 0;
  z-index: 2;
  width: 0;
  position: relative;
}

.bullets .swiper-pagination-bullet::before {
  content: "";
  width: 0px;
  border-top: 1px solid #3368bd;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}

@keyframes bullet {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.bullets .swiper-pagination-bullet-active {
  opacity: 1;
  width: 100%;
}

@media screen and (max-width: 1680px) and (min-width: 1440px) {
  .about-page {
    background-position: center -656px;
    padding-bottom: 70px;
  }
  .about-page::before {
    height: 100px;
  }
  .about-page .title {
    padding: 100px 200px 80px;
    font-size: 36px;
  }
  .about-page .about-content {
    width: 1260px;
  }
  .about-page .video-bg {
    width: 1470px;
    height: 450px;
    margin: 131px auto 70px;
    border-radius: 105px 105px 0 0;
  }
  .about-page .video-bg::before {
    height: 218.75px;
  }
  .about-page .video-bg::after {
    top: -72.625px;
    left: 2px;
    width: 1470px;
    height: 521px;
  }
  .about-page .video-bg .video-box video {
    border-radius: 105px 105px 0 0;
  }
  .about-page .video-bg .video-box .video-mask h4 {
    font-size: 38px;
  }
  .about-page .video-bg .video-box .video-mask .btn {
    width: 68px;
    height: 42px;
    border-radius: 21px;
    margin: 42px 0 21px;
  }
  .about-page .video-bg .video-box .video-mask .btn::after {
    border-radius: 35px;
  }
  .datas {
    width: 100%;
    height: 350px;
    padding: 0 120px;
  }
  .datas::before {
    width: 262.5px;
    height: 262.5px;
    left: 0;
  }
  .datas::after {
    left: 0;
    width: 100%;
    height: 350px;
  }
  .datas .data .num {
    font-size: 44px;
  }
  .foot {
    padding: 0 120px;
  }
  /* Section 1: Mission and Values */
  .mission-values-section {
    padding: 110px 120px;
  }
  .mission-values-section .container .values {
    width: 400px;
    height: 350px;
    padding: 60px 38px 39.5px;
  }
  .mission-values-section .container .values h2 {
    font-size: 40px;
    margin-bottom: 24px;
  }
  .mission-values-section .container .values p {
    font-size: 16px;
    line-height: 30px;
  }
  h2 {
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 60px;
  }
  h2 span {
    font-size: 52px;
    line-height: 52px;
  }
  /* Section 2: Three Pillars */
  .three-pillars-section {
    padding: 149px 0;
    height: 779px;
  }
  .three-pillars-section h3 {
    font-size: 44px;
    line-height: 44px;
  }
  .three-pillars-section h3 span {
    font-size: 52px;
    line-height: 52px;
  }
  .three-pillars-section .container::before, .three-pillars-section .container::after {
    height: 779px;
    top: -149px;
  }
  .three-pillars-section .pillars {
    padding: 140px;
  }
  .three-pillars-section .pillars .pillar {
    width: 280px;
    height: 321px;
  }
  .three-pillars-section .pillars .pillar .imgbox {
    width: 102px;
    height: 102px;
  }
  .three-pillars-section .pillars .pillar .imgbox img {
    width: 60px;
    height: 60px;
  }
  .three-pillars-section .pillars .pillar .imgbox i {
    width: 133px;
    height: 133px;
    left: -15.75px;
    top: -15.75px;
  }
  /* Section 3: Three Cultural Systems */
  .cultural-systems-section {
    padding: 120px 120px 148px;
  }
  .cultural-systems-section .system {
    width: 228px;
    height: 516px;
    padding: 35px;
  }
  .cultural-systems-section .system.cur {
    width: 800px;
  }
  .cultural-systems-section .system.cur .texts {
    width: 690px;
  }
  .cultural-systems-section .system .texts {
    width: 160px;
  }
  .cultural-systems-section .system .texts p {
    font-size: 16px;
    line-height: 32px;
  }
  .aboutc-banner-box {
    padding: 128px 120px 25px;
  }
  .aboutc-banner-box .city {
    width: 1225px;
    height: 88px;
    background-size: 1225px 88px;
    top: 230px;
    left: 270px;
  }
  .aboutc-banner-box .city::before {
    width: 270px;
    top: 70px;
  }
  .aboutc-banner-box .aboutc-left {
    width: 500px;
  }
  .aboutc-banner-box .aboutc-left .tit1 {
    font-size: 32px;
  }
  .aboutc-banner-box .aboutc-left .tit2 {
    font-size: 18px;
  }
  .aboutc-banner-box .aboutc-left .tit3 {
    font-size: 70px;
    margin: 20px 0 40px;
  }
  .aboutc-banner-box .aboutc-left .tit3 span {
    font-size: 21px;
    width: 33px;
    height: 33px;
    line-height: 33px;
  }
  .aboutc-banner-box .aboutc-left .tit4 {
    font-size: 32px;
    margin: 15px 0;
  }
  .aboutc-banner-box .aboutc-left .tit5 {
    font-size: 18px;
    line-height: 28px;
  }
  .aboutc-banner-box .aboutcBanner {
    width: 640px;
    height: 360px;
  }
  .aboutc-banner-box .aboutcBanner::before {
    width: 276px;
    height: 276px;
    top: -78px;
    right: -105px;
  }
  .aboutc-banner-box .aboutcBanner::after {
    width: 640px;
    height: 229px;
    right: -120px;
  }
  .aboutc-banner-box .aboutcBanner .vdb-btns {
    bottom: 47px;
  }
  .aboutc-banner-box .aboutcBanner .vdb-btns .vdb-btn {
    width: 61px;
    height: 61px;
    margin-left: 38px;
  }
  .aboutc-banner-box .aboutcBanner .vdb-btns .vdb-btn i {
    font-size: 18px;
  }
  .aboutc-banner-box .aboutcBanner .swiper-slide {
    width: 308px !important;
    height: 198px;
    top: 250px;
  }
  .aboutc-banner-box .aboutcBanner .swiper-slide.swiper-slide-active {
    left: 0;
    top: 0;
    width: 100% !important;
    height: 360px;
  }
  .qlines {
    height: 324px;
  }
  .qlines .qlineitem:nth-child(8n-7) {
    margin-top: 52px;
  }
  .qlines .qlineitem:nth-child(8n-6) {
    margin-top: 30px;
  }
  .qlines .qlineitem:nth-child(8n-5) {
    margin-top: 120px;
  }
  .qlines .qlineitem:nth-child(8n-4) {
    margin-top: 38px;
  }
  .qlines .qlineitem:nth-child(8n-3) {
    margin-top: 132px;
  }
  .qlines .qlineitem:nth-child(8n-2) {
    margin-top: 40px;
  }
  .qlines .qlineitem:nth-child(8n-1) {
    margin-top: 29px;
  }
  .qlines .qlineitem:nth-child(8n) {
    margin-top: 115px;
  }
  .aboutd {
    background-image: none;
    padding: 70px 0 262px;
  }
  .aboutd .partnerbj {
    width: 1561px;
    height: 234px;
  }
  .aboutd .aboutdtitle {
    margin-bottom: 66px;
  }
  .aboutd .aboutdtitle b {
    font-size: 38px;
    line-height: 100px;
  }
  .aboutd .swiperPartner::before, .aboutd .swiperPartner::after {
    width: 105px;
  }
  .aboutd .swiperPartner .swiper-slide {
    width: 166px !important;
    height: 105px;
    padding: 21px;
    border-radius: 53px;
  }
  .aboute .ryzz-swiper {
    padding: 50px 120px;
  }
  .aboute .ryzz-swiper .cont .rydlbox {
    width: 420px;
    height: 450px;
  }
  .aboute .ryzz-swiper .cont dl {
    width: 420px;
    max-height: 450px;
  }
  .aboute .ryzz-swiper .cont dl dd {
    font-size: 17px;
  }
  .aboute .ryzz-swiper .cont .swiperzs {
    width: 720px;
    height: 450px;
  }
  .aboute .about-ryzz {
    width: 100%;
    height: 778px;
  }
  .aboute .about-ryzz .about-ryzz-text {
    position: relative;
    padding: 120px;
  }
  .aboute .about-ryzz .about-ryzz-text h3 {
    font-size: 32px;
    line-height: 50px;
    width: 390px;
  }
  .aboute .about-ryzz .about-ryzz-text p {
    width: 440px;
    font-size: 17px;
    line-height: 50px;
  }
  .aboute .about-ryzz .ryzz-tab {
    padding-top: 90px;
  }
  .aboute .about-ryzz .ryzz-tab p {
    margin: 0 68px;
    font-size: 32px;
    line-height: 50px;
  }
  .aboute .ryzz-other {
    width: 100%;
    height: 778px;
    padding: 80px 120px 0 120px;
  }
  .aboute .ryzz-other h3 {
    font-size: 32px;
    margin-bottom: 78px;
  }
  .aboute .ryzz-other .swiperRyzz {
    width: 100%;
    height: 328px;
    margin-bottom: 60px;
  }
  .aboute .ryzz-other .swiperRyzz .swiper-slide img {
    width: 385px;
    height: 240px;
    margin-top: 80px;
  }
  .aboute .ryzz-other .swiperRyzz .swiper-slide .texts {
    width: 400px;
    transform: translateX(-400px);
  }
  .aboute .ryzz-other .swiperRyzz .swiper-slide .texts p.tit {
    font-size: 20px;
    line-height: 30px;
    height: auto;
    margin-bottom: 20px;
  }
  .aboute .ryzz-other .swiperRyzz .swiper-slide.swiper-slide-active {
    width: 970px !important;
  }
  .aboute .ryzz-other .swiperRyzz .swiper-slide.swiper-slide-active img {
    width: 525px;
    height: 328px;
  }
  .bullets {
    width: 300px !important;
    height: 0;
    position: absolute;
    top: 315px;
    left: 688px !important;
  }
  .about-page.aboute {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1440px) {
  .about-page {
    background-position: center -500px;
    padding-bottom: 50px;
  }
  .about-page::before {
    height: 100px;
  }
  .about-page .title {
    padding: 80px 160px 60px;
    font-size: 28px;
  }
  .about-page .about-content {
    width: 1000px;
  }
  .about-page .video-bg {
    width: 1200px;
    height: 360px;
    margin: 100px auto 50px;
    border-radius: 80px 80px 0 0;
  }
  .about-page .video-bg::before {
    height: 175px;
  }
  .about-page .video-bg::after {
    top: -58px;
    left: 2px;
    width: 1200px;
    height: 416px;
  }
  .about-page .video-bg .video-box video {
    border-radius: 80px 80px 0 0;
  }
  .about-page .video-bg .video-box .video-mask h4 {
    font-size: 30px;
  }
  .about-page .video-bg .video-box .video-mask .btn {
    width: 54px;
    height: 34px;
    border-radius: 17px;
    margin: 34px 0 17px;
  }
  .about-page .video-bg .video-box .video-mask .btn::after {
    border-radius: 28px;
  }
  .datas {
    width: 100%;
    padding: 0 100px;
    height: 280px;
  }
  .datas::before {
    width: 210px;
    height: 210px;
    left: 0;
  }
  .datas::after {
    left: 0;
    width: 1344px;
    height: 280px;
  }
  .datas .data .num {
    font-size: 35px;
  }
  .foot {
    padding: 0 96px;
  }
  /* Section 1: Mission and Values */
  .mission-values-section {
    padding: 88px 96px;
  }
  .mission-values-section .container .values {
    width: 370px;
    height: 300px;
    padding: 56px 34px 32px;
  }
  .mission-values-section .container .values h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .mission-values-section .container .values p {
    font-size: 14px;
    line-height: 24px;
  }
  h2 {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 48px;
  }
  h2 span {
    font-size: 42px;
    line-height: 42px;
  }
  /* Section 2: Three Pillars */
  .three-pillars-section {
    padding: 100px 0;
    height: 623px;
  }
  .three-pillars-section h3 {
    font-size: 35px;
    line-height: 35px;
  }
  .three-pillars-section h3 span {
    font-size: 42px;
    line-height: 42px;
  }
  .three-pillars-section .container::before, .three-pillars-section .container::after {
    height: 623px;
    top: -119px;
  }
  .three-pillars-section .pillars {
    padding: 112px;
  }
  .three-pillars-section .pillars .pillar {
    width: 224px;
    height: 257px;
  }
  .three-pillars-section .pillars .pillar .imgbox {
    width: 82px;
    height: 82px;
    flex-shrink: 0;
  }
  .three-pillars-section .pillars .pillar .imgbox img {
    width: 48px;
    height: 48px;
  }
  .three-pillars-section .pillars .pillar .imgbox i {
    width: 106px;
    height: 106px;
    left: -12.6px;
    top: -12.6px;
  }
  /* Section 3: Three Cultural Systems */
  .cultural-systems-section {
    padding: 96px 96px 118px;
  }
  .cultural-systems-section .system {
    width: 200px;
    height: 413px;
    padding: 28px;
  }
  .cultural-systems-section .system.cur {
    width: 730px;
  }
  .cultural-systems-section .system.cur .texts {
    width: 552px;
  }
  .cultural-systems-section .system .texts {
    width: 128px;
  }
  .cultural-systems-section .system .texts p {
    font-size: 14px;
    line-height: 26px;
  }
  .aboutc-banner-box {
    padding: 102px 96px 20px;
  }
  .aboutc-banner-box .city {
    width: 980px;
    height: 70px;
    background-size: 980px 70px;
    top: 180px;
    left: 216px;
  }
  .aboutc-banner-box .city::before {
    width: 216px;
    top: 56px;
  }
  .aboutc-banner-box .aboutc-left {
    width: 400px;
  }
  .aboutc-banner-box .aboutc-left .tit1 {
    font-size: 26px;
  }
  .aboutc-banner-box .aboutc-left .tit2 {
    font-size: 16px;
  }
  .aboutc-banner-box .aboutc-left .tit3 {
    font-size: 50px;
    margin: 20px 0 30px;
  }
  .aboutc-banner-box .aboutc-left .tit3 span {
    font-size: 17px;
    width: 26px;
    height: 26px;
    line-height: 26px;
  }
  .aboutc-banner-box .aboutc-left .tit4 {
    font-size: 26px;
    margin: 12px 0;
  }
  .aboutc-banner-box .aboutc-left .tit5 {
    font-size: 16px;
    line-height: 24px;
  }
  .aboutc-banner-box .aboutcBanner {
    width: 512px;
    height: 300px;
  }
  .aboutc-banner-box .aboutcBanner::before {
    width: 221px;
    height: 221px;
    top: -62px;
    right: -84px;
  }
  .aboutc-banner-box .aboutcBanner::after {
    width: 512px;
    height: 183px;
    right: -96px;
  }
  .aboutc-banner-box .aboutcBanner .vdb-btns {
    bottom: 38px;
  }
  .aboutc-banner-box .aboutcBanner .vdb-btns .vdb-btn {
    width: 49px;
    height: 49px;
    margin-left: 30px;
  }
  .aboutc-banner-box .aboutcBanner .vdb-btns .vdb-btn i {
    font-size: 16px;
  }
  .aboutc-banner-box .aboutcBanner .swiper-slide {
    width: 246px !important;
    height: 158px;
    top: 200px;
  }
  .aboutc-banner-box .aboutcBanner .swiper-slide.swiper-slide-active {
    left: 0;
    top: 0;
    width: 100% !important;
    height: 300px;
  }
  .qlines {
    height: 259px;
    margin: 0 auto;
  }
  .qlines .qlineitem:nth-child(8n-7) {
    margin-top: 41px;
  }
  .qlines .qlineitem:nth-child(8n-6) {
    margin-top: 24px;
  }
  .qlines .qlineitem:nth-child(8n-5) {
    margin-top: 95px;
  }
  .qlines .qlineitem:nth-child(8n-4) {
    margin-top: 29px;
  }
  .qlines .qlineitem:nth-child(8n-3) {
    margin-top: 104px;
  }
  .qlines .qlineitem:nth-child(8n-2) {
    margin-top: 32px;
  }
  .qlines .qlineitem:nth-child(8n-1) {
    margin-top: 23px;
  }
  .qlines .qlineitem:nth-child(8n) {
    margin-top: 90px;
  }
  .aboutd {
    background-image: none;
    padding: 56px 0 210px;
  }
  .aboutd .partnerbj {
    width: 1249px;
    height: 187px;
  }
  .aboutd .aboutdtitle {
    margin-bottom: 53px;
  }
  .aboutd .aboutdtitle b {
    font-size: 30px;
    line-height: 80px;
  }
  .aboutd .swiperPartner::before, .aboutd .swiperPartner::after {
    width: 84px;
  }
  .aboutd .swiperPartner .swiper-slide {
    width: 133px !important;
    height: 84px;
    padding: 17px;
    border-radius: 42px;
  }
  .aboute .ryzz-swiper {
    padding: 40px 100px;
  }
  .aboute .ryzz-swiper .cont .rydlbox {
    width: 400px;
    height: 400px;
  }
  .aboute .ryzz-swiper .cont dl {
    width: 400px;
    max-height: 400px;
  }
  .aboute .ryzz-swiper .cont dl dd {
    font-size: 16px;
  }
  .aboute .ryzz-swiper .cont .swiperzs {
    width: 660px;
    height: 400px;
  }
  .aboute .about-ryzz {
    width: 100%;
    height: 622px;
  }
  .aboute .about-ryzz .about-ryzz-text {
    position: relative;
    padding: 96px;
  }
  .aboute .about-ryzz .about-ryzz-text h3 {
    font-size: 26px;
    line-height: 40px;
    width: 312px;
  }
  .aboute .about-ryzz .about-ryzz-text p {
    width: 360px;
    font-size: 14px;
    line-height: 40px;
  }
  .aboute .about-ryzz .ryzz-tab {
    padding-top: 72px;
  }
  .aboute .about-ryzz .ryzz-tab p {
    margin: 0 54px;
    font-size: 26px;
    line-height: 40px;
  }
  .aboute .ryzz-other {
    width: 100%;
    height: 650px;
    padding: 64px 96px 0 96px;
  }
  .aboute .ryzz-other h3 {
    font-size: 26px;
    margin-bottom: 62px;
  }
  .aboute .ryzz-other .swiperRyzz {
    width: 100%;
    height: 320px;
    margin-bottom: 48px;
  }
  .aboute .ryzz-other .swiperRyzz .swiper-slide img {
    width: 308px;
    height: 192px;
    margin-top: 64px;
  }
  .aboute .ryzz-other .swiperRyzz .swiper-slide .texts {
    width: 400px;
    transform: translateX(-400px);
  }
  .aboute .ryzz-other .swiperRyzz .swiper-slide .texts p.tit {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .aboute .ryzz-other .swiperRyzz .swiper-slide.swiper-slide-active {
    width: 970px !important;
  }
  .aboute .ryzz-other .swiperRyzz .swiper-slide.swiper-slide-active img {
    width: 525px;
    height: 328px;
  }
  .bullets {
    width: 300px !important;
    height: 0;
    position: absolute;
    top: 264px;
    left: 658px !important;
  }
  .about-page.aboute {
    padding-bottom: 0;
  }
}
.shzr-list {
  padding: 70px 240px;
}
.shzr-list .list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 60px;
}
.shzr-list .news-card {
  background: #fff;
  width: calc(33.33% - 40px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.shzr-list .news-card:hover h3 {
  color: #1157cb;
}
.shzr-list .news-card:hover img {
  transform: scale(1.1);
}
.shzr-list .news-img {
  width: 100%;
  height: 275px;
  border-radius: 10px;
  overflow: hidden;
}
.shzr-list .news-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.shzr-list .news-content {
  text-align: left;
}
.shzr-list .news-content h3 {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  margin: 20px 0 12px 0;
  font-weight: 500;
  transition: color 0.4s ease;
}
.shzr-list .news-content p {
  color: #666666;
  margin: 0;
  line-height: 1.6;
}

@media screen and (min-width: 1440px) and (max-width: 1680px) {
  .shzr-list {
    padding: 60px 120px;
  }
  .shzr-list .news-card .news-img {
    height: 240px;
  }
  .shzr-list .news-content h3 {
    font-size: 18px;
  }
  .shzr-list .news-content p {
    font-size: 15px;
  }
}
@media screen and (max-width: 1440px) {
  .shzr-list {
    padding: 50px 96px;
  }
  .shzr-list .news-card .news-img {
    height: 200px;
  }
  .shzr-list .news-content h3 {
    font-size: 16px;
  }
  .shzr-list .news-content p {
    font-size: 14px;
  }
}/*# sourceMappingURL=aboutus.css.map */