.about-us {
  height: 700px;
  background-color: #fff;
  -webkit-user-select: none;
  user-select: none;
}

.flex-box {
  display: flex;
  gap: 100px;
  height: 100%;
}

.banner-swiper {
  height: 700px;
}

.banner-swiper .banner-item {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-swiper .banner-item .banner-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-visual {
  width: 42.71%;
  height: 100%;
  background-image: url("/static/images/home/about-bg.png");
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: right;
}

.about-visual .nums-box {
  display: flex;
  justify-content: left;
  width: 66%;
  flex-wrap: wrap;
  row-gap: 80px;
}

.about-visual .nums-box .num-item {
  width: 50%;
  color: #fff;
}

.about-visual .nums-box .num-item .num {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-right: 10px;
}

.about-visual .nums-box .num-item .unit {
  font-size: 18px;
  font-weight: bold;
}

.about-visual .nums-box .num-item .name {
  font-size: 16px;
}

.about-content {
  width: 57.29%;
  padding: 80px 0;
  padding-right: 100px;
  position: relative;
  overflow: hidden;
}

.about-content .title {
  font-size: 36px;
  margin-bottom: 1px;
  color: #222;
  margin-bottom: 10px;
}

.about-content .label {
  color: #999999;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.about-content .desc {
  color: #333333;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
  z-index: 1;
  position: relative;
}

.about-content .features {
  margin-bottom: 40px;
}

.about-content .features li {
  margin-bottom: 12px;
  color: #444;
}

.about-content .features li span {
  color: #0054a6;
  font-weight: bold;
  margin-right: 10px;
}

.about-content .more-btn {
  height: 50px;
  width: 170px;
  background: #fff;
  color: #000000;
  border: 1px solid #000000;
  cursor: pointer;
  transition: 0.3s;
  box-sizing: border-box;
  margin-top: 10px;
}

.about-content .more-btn:hover {
  background: #000000;
  color: #fff;
  border-color: #000000;
}

.about-content .about-bg {
  writing-mode: vertical-lr;
  font-size: 230px;
  color: #eef9ff;
  position: absolute;
  right: -70px;
  top: -90px;
  z-index: 0;
}

#raw-data-source {
  display: none;
}

.product-center {
  height: 700px;
  padding: 80px 0;
  background-image: url("/static/images/home/product-bg.png");
}

.product-center .main-title {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

.product-center .content-wrapper {
  display: flex;
  gap: 40px;
  height: 100%;
}

.product-center .category-nav {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: right;
}

.product-center .category-nav .nav-item {
  display: flex;
  justify-content: right;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  color: #000000;
  font-size: 15px;
  letter-spacing: 2px;
  transition: all 0.3s;
  border-left: 2px solid #dad7e4;
}

.product-center .category-nav .nav-item span:first-child {
  width: 170px;
  text-align: left;
}

.product-center .category-nav .nav-item .arrow {
  color: #ccc;
  font-size: 25px;
  transition: all 0.3s;
}

.product-center .category-nav .nav-item:hover, .product-center .category-nav .nav-item.active {
  color: #0054a6;
  border-left: 2px solid #0054a6;
}

.product-center .category-nav .nav-item:hover .arrow, .product-center .category-nav .nav-item.active .arrow {
  color: #0054a6;
}

.product-center .product-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
}

.product-center .product-card:hover .product-card-inner {
  transform: rotateY(180deg);
}

.product-center .product-card:hover .product-card-inner .product-card-front,
.product-center .product-card:hover .product-card-inner .product-card-back {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-center .product-card {
  position: relative;
  height: 100%;
  perspective: 1000px;
}

.product-center .product-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.8s;
  transform-style: preserve-3d;
}

.product-center .product-card-front, .product-center .product-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.product-center .product-card-front {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-center .product-card-front .product-img {
  height: 130px;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}

.product-center .product-card-front .product-img img {
  max-height: 100%;
}

.product-center .product-card-front .product-info {
  margin-bottom: 20px;
  text-align: center;
}

.product-center .product-card-front .product-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

.product-center .product-card-front .product-info p {
  font-size: 13px;
  color: #999;
}

.product-center .product-card-back {
  background-color: #fff;
  transform: rotateY(180deg);
}

.product-center .product-card-back .jieshao {
  text-align: justify;
  text-indent: 2em;
  font-size: 15px;
}

.product-center .product-card-back .inside {
  padding: 10px 0px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #0054A6;
  text-align: center;
  color: #0054A6;
  width: calc(100% - 40px);
  position: absolute;
  bottom: 20px;
  transition: all 0.3s;
}

.product-center .product-card-back .inside:hover {
  background-color: #0054A6;
  color: #fff;
}

.process-dark {
  position: relative;
  background-image: url("/static/images/home/process-bg.png");
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
  height: 700px;
}

.process-dark .header {
  text-align: left;
  margin-bottom: 20px;
}

.process-dark .header .line {
  height: 3px;
  width: 60px;
  background-color: #fff;
  margin-bottom: 10px;
}

.process-dark .header .title {
  font-size: 28px;
  margin-bottom: 10px;
}

.process-dark .header .desc {
  font-size: 14px;
  opacity: 0.6;
}

.process-dark .process-grid {
  gap: 15px;
  display: flex;
  justify-content: center;
}

.process-dark .process-item {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  cursor: pointer;
  width: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.process-dark .process-item:hover {
  background: white;
  transform: translateY(-5px);
  border-color: #0054a6;
}

.process-dark .process-item .img-box {
  width: 100%;
  aspect-ratio: 3/4.5;
  overflow: hidden;
}

.process-dark .process-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-dark .process-item .text-content {
  padding: 20px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-dark .process-item .text-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #000000;
  font-weight: bold;
}

.process-dark .process-item .text-content p {
  font-size: 12px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.process-dark .process-item .text-content .line {
  height: 3px;
  width: 40px;
  background-color: #397db6;
  margin-bottom: 20px;
}

.process-dark .process-item .text-content .more-btn {
  font-size: 12px;
  color: #333333;
}

.process-dark .tech-bg-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: radial-gradient(circle, #0054a6 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.15;
  pointer-events: none;
}

.case-section {
  padding: 80px 0;
  background-color: #fff;
}

.case-section .flex-box {
  display: flex;
  align-items: center;
  gap: 60px;
}

.case-section .case-info {
  flex: 1;
}

.case-section .case-info .title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 5px;
}

.case-section .case-info .subtitle {
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.case-section .case-info .line {
  width: 40px;
  height: 3px;
  background: #0054a6;
  margin: 25px 0;
}

.case-section .case-info .desc {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 450px;
}

.case-section .case-info .view-more {
  padding: 12px 40px;
  background: transparent;
  border: 1px solid #333;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
}

.case-section .case-info .view-more:hover {
  background: #0054a6;
  border-color: #0054a6;
  color: #fff;
}

.case-section .case-visual {
  flex: 1.2;
}

.case-section .case-visual .img-box {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.case-section .case-visual .img-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .case-section .flex-box {
    flex-direction: column;
  }
}

.partners-section {
  padding: 80px 0;
  background-color: #eaeffd;
  overflow: hidden;
}

.partners-section .header {
  text-align: center;
  margin-bottom: 50px;
}

.partners-section .header .title {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.partners-section .header .subtitle {
  color: #666666;
  letter-spacing: 1px;
  font-size: 14px;
}

.partners-section .multi-scroll-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partners-section .scroll-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.partners-section .scroll-container::before, .partners-section .scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-section .scroll-container::before {
  left: 0;
  background: linear-gradient(to right, #eaeffd, transparent);
}

.partners-section .scroll-container::after {
  right: 0;
  background: linear-gradient(to left, #eaeffd, transparent);
}

.partners-section .scroll-container.dir-left .scroll-track {
  animation-name: scrollLeft;
}

.partners-section .scroll-container.dir-right .scroll-track {
  animation-name: scrollRight;
}

.partners-section .scroll-track {
  display: flex;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.partners-section .scroll-track:hover {
  animation-play-state: paused;
}

.partners-section .logo-list {
  display: flex;
  align-items: center;
}

.partners-section .logo-item {
  padding: 0 15px;
}

.partners-section .logo-item .img-inner {
  width: 200px;
  height: 62px;
  background: #fff;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.partners-section .logo-item .img-inner img {
  max-width: 100%;
  max-height: 100%;
  opacity: 1;
  transition: 0.3s;
}

.partners-section .logo-item .img-inner:hover {
  border-color: #0054a6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partners-section .logo-item .img-inner:hover img {
  opacity: 1;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.news-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.news-section .container {
  display: flex;
}

.news-section .container .news-header {
  width: 20%;
  color: #333333;
}

.news-section .container .news-header .line {
  width: 60px;
  height: 3px;
  background-color: #3353E0;
  margin-bottom: 25px;
}

.news-section .container .news-header .title {
  font-size: 40px;
  font-weight: bold;
}

.news-section .container .news-header .subtitle {
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.news-section .container .news-header .more-btn {
  border: 1px solid #333333;
  cursor: pointer;
  padding: 2px 20px;
  font-size: 14px;
  background-color: #fff;
  border-radius: 14.5px;
  margin-bottom: 400px;
  transition: all 0.3s;
}

.news-section .container .news-header .more-btn:hover {
  border-color: #0054a6;
  background-color: #0054a6;
  color: #fff;
}

.news-section .container .news-header .pagetion {
  display: flex;
  column-gap: 50px;
}

.news-section .container .news-header .pagetion .news-prev,
.news-section .container .news-header .pagetion .news-next {
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid #333333;
  text-align: center;
  line-height: 38px;
  font-size: 20px;
  transition: all 0.3s;
}

.news-section .container .news-header .pagetion .news-prev:hover,
.news-section .container .news-header .pagetion .news-next:hover {
  background-color: #0054a6;
  border-color: #0054a6;
  color: #fff;
}

.news-section .container .swiper-container {
  width: 80%;
  position: relative;
}

.news-section .container .swiper-container .my-pagination {
  width: 450px;
  margin-top: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.news-section .container .swiper-container .my-pagination .slider {
  height: 5px;
  background-color: #F5F6F8;
}

.news-section .container .swiper-container .my-pagination .slider .slider-track {
  width: 20%;
  height: 100%;
  background-color: #3B5AE1;
  transition: all 0.3s;
}

.news-section .container .swiper-container .my-pagination .text {
  margin-top: 20px;
}

.news-section .container .swiper-container .my-pagination .text :first-child {
  font-size: 30px;
  font-weight: bold;
  color: #121212;
}

.news-section .container .swiper-container .my-pagination .text :last-child {
  font-size: 20px;
  color: #666666;
}

.news-section .container .swiper-container .swiper {
  height: 100%;
  transition: all 0.3s;
}

.news-section .container .swiper-container .swiper .news-item {
  height: 100%;
}

.news-section .container .swiper-container .swiper .news-item .img-box {
  width: 100%;
  height: 180px;
  line-height: 180px;
  background-color: #8d8d8d;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-section .container .swiper-container .swiper .news-item .img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.news-section .container .swiper-container .swiper .news-item .news-date {
  padding: 30px 20px;
}

.news-section .container .swiper-container .swiper .news-item .over-hidden {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-section .container .swiper-container .swiper .news-item .news-title {
  padding: 0 20px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  height: 55px;
  -webkit-line-clamp: 2;
}

.news-section .container .swiper-container .swiper .news-item .news-content {
  padding: 0 20px;
  font-size: 16px;
  height: 0;
  transition: all 0.3s;
  -webkit-line-clamp: 5;
}

.news-section .container .swiper-container .swiper .news-item .read-more {
  font-weight: bold;
  margin-top: 90px;
  padding-left: 20px;
  font-size: 18px;
}

.news-section .container .swiper-container .swiper .news-item .read-more .line {
  height: 2px;
  width: 60px;
  background-color: #000;
}

.news-section .container .swiper-container .swiper .swiper-slide {
  transition: all 0.3s;
  height: 80%;
  background-color: #F5F6F8;
  color: #000;
}

.news-section .container .swiper-container .swiper .swiper-slide-active,
.news-section .container .swiper-container .swiper .swiper-slide-prev {
  height: 100%;
  background-color: #3B5AE1;
  color: #fff;
}

.news-section .container .swiper-container .swiper .swiper-slide-active .news-content,
.news-section .container .swiper-container .swiper .swiper-slide-prev .news-content {
  height: 125px;
}

.news-section .container .swiper-container .swiper .swiper-slide-active .read-more :first-child,
.news-section .container .swiper-container .swiper .swiper-slide-prev .read-more :first-child {
  color: #fff;
}

.news-section .container .swiper-container .swiper .swiper-slide-active .read-more .line,
.news-section .container .swiper-container .swiper .swiper-slide-prev .read-more .line {
  background-color: #fff;
}

@media (max-width: 1200px) {
  .banner-swiper {
    height: 200px;
  }
  footer .footer-box {
    width: 100%;
    flex-direction: column;
    column-gap: 0;
    row-gap: 10px;
    text-align: center;
    align-items: center;
  }
  footer .footer-box .info {
    width: 100%;
    flex-direction: column;
  }
  .banner-img {
    width: 100%;
    height: auto !important;
  }
  .news-section {
    padding: 10px;
  }
  .news-section .container {
    flex-direction: column;
  }
  .news-section .container .my-pagination {
    width: 40vw !important;
  }
  .news-section .container .news-header {
    width: 100%;
    margin-bottom: 10px;
  }
  .news-section .container .news-header .line {
    display: none;
  }
  .news-section .container .news-header .title {
    font-size: 30px;
  }
  .news-section .container .news-header .subtitle {
    margin: 0;
  }
  .news-section .container .news-header .more-btn {
    margin: 0;
    display: inline-block;
  }
  .news-section .container .news-header .pagetion {
    display: inline-flex;
    gap: 20px;
    margin-left: 10px;
  }
  .news-section .container .swiper-container {
    width: 100%;
  }
  .news-section .container .swiper-container .img-box {
    height: 4vw;
  }
  .news-section .container .swiper-container .news-date {
    padding: 5px 10px !important;
    text-align: center;
  }
  .news-section .container .swiper-container .news-title {
    padding: 0 10px !important;
    font-size: 1rem !important;
  }
  .news-section .container .swiper-container .news-content {
    padding: 0 10px !important;
  }
  .news-section .container .swiper-container .read-more {
    margin: 20px 5px 5px 5px !important;
    text-align: center;
    padding-left: 0 !important;
  }
  .news-section .container .swiper-container .read-more .line {
    margin: 0 auto;
  }
  .news-section .row-center {
    width: auto;
  }
  .partners-section {
    padding: 10px 0;
  }
  .partners-section .header {
    padding: 0 20px;
    margin-bottom: 10px;
  }
  .partners-section .multi-scroll-wrapper .scroll-track {
    animation-duration: 40s !important;
  }
  .case-section {
    padding: 20px;
  }
  .case-section .row-center {
    width: 100% !important;
    gap: 0 !important;
  }
  .case-section .subtitle {
    margin-bottom: 0px !important;
  }
  .case-section .desc {
    margin-bottom: 5px !important;
  }
  .case-section .view-more {
    margin-bottom: 10px;
  }
  .case-section .img-box {
    height: auto !important;
  }
  .process-dark {
    height: auto;
    padding: 20px 20px 0 20px;
  }
  .process-dark .row-center {
    width: 100% !important;
    gap: 0 !important;
  }
  .process-dark .header {
    margin-bottom: 10px;
  }
  .process-dark .header .line {
    margin-bottom: 5px;
  }
  .process-dark .header .title {
    margin: 0;
  }
  .process-dark .process-grid {
    display: block;
  }
  .process-dark .process-grid .process-item {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    margin-bottom: 20px;
    height: 200px;
  }
  .process-dark .process-grid .process-item .img-box {
    flex: 1;
    height: 100%;
  }
  .process-dark .process-grid .process-item .text-content {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .process-dark .process-grid .process-item .text-content * {
    margin: 0;
  }
  .flex-box {
    flex-direction: column;
    row-gap: 0;
    height: auto;
  }
  .about-us {
    height: auto;
  }
  .about-visual {
    right: 0;
    bottom: 0;
    width: 100%;
  }
  .about-visual .nums-box {
    width: 100%;
    text-align: center;
    margin: 1rem 0;
  }
  .about-visual .nums-box {
    row-gap: 10px !important;
  }
  .about-visual .nums-box .num-item .num {
    font-size: 2rem;
  }
  .about-content {
    width: 100%;
    margin: 0;
    padding: 1rem;
  }
  .about-content .title {
    font-size: 1.7rem;
    margin-bottom: 0;
  }
  .about-content .label {
    margin-bottom: 0;
  }
  .about-content .desc {
    font-size: 0.8rem;
  }
  .about-content .more-btn,
  .about-content .more-btn2 {
    width: 30%;
  }
  .about-content .row-center {
    width: 100% !important;
    gap: 0 !important;
  }
  .about-bg {
    display: none;
  }
  .category-nav {
    width: 100px !important;
  }
  .category-nav .main-title {
    font-size: 0.8rem;
    margin-left: 10px;
  }
  .category-nav .nav-item span:first-child {
    width: 100% !important;
    text-align: center !important;
  }
  .product-center {
    padding: 10px 0;
    height: unset;
  }
  .product-center .row-center {
    width: 100% !important;
    gap: 0 !important;
  }
  .product-grid {
    grid-template-columns: repeat(1, 1fr) !important;
    overflow-y: auto;
  }
  .product-grid .product-card {
    width: 80%;
    margin: 0 auto;
  }
}
