@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.navbar {
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
}
.navbar .navbar-brand {
  padding: 0;
  font-weight: 700;
  color: #fff;
}
.navbar .navbar-brand i {
  color: #3498db;
}
.navbar .nav-item {
  margin: 0 20px;
}
.navbar .nav-link {
  font-weight: 500;
  position: relative;
  color: #fff !important;
  padding: 8px 12px;
}
.navbar .nav-link.active {
  color: #fff !important;
  border-bottom: 2px solid #fff;
}
.navbar .nav-link:hover {
  border-bottom: 2px solid #fff;
}
.navbar .btn {
  padding: 0.6rem 1.5rem;
}
.navbar .scrolled {
  background-color: white !important;
  box-shadow: 0px 3px 6px 1px rgba(20, 56, 103, 0.17);
}
.navbar .navbar-transparent {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.navbar-transparent {
  background-color: transparent;
}

.navbar.scrolled {
  position: fixed;
  background-color: white !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
  color: #333 !important;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-link.active {
  color: #0043B0 !important;
  border-bottom: 2px solid #0043B0;
}

.navbar.scrolled .nav-link:hover {
  color: #0043B0 !important;
  border-bottom: 2px solid #0043B0;
}

.navbar.scrolled .navbar-brand {
  color: #333 !important;
}

@media (max-width: 992px) {
  .navbar.navbar-transparent .navbar-collapse {
    background-color: transparent;
    transition: none !important;
  }
  .navbar.navbar-transparent .navbar-collapse.show {
    background-color: #fff !important;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .navbar-transparent .navbar-collapse.show .nav-link {
    color: #333 !important;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
  }
  .navbar-transparent .navbar-collapse.show .nav-link:last-child {
    border-bottom: none;
  }
  .navbar-transparent .navbar-collapse.show .nav-link.active,
  .navbar-transparent .navbar-collapse.show .nav-link:hover {
    color: #0043B0 !important;
    border-bottom: 1px solid #0043B0;
  }
  .navbar-transparent .navbar-collapse.show .navbar-brand {
    color: #333 !important;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  background: #252B3A;
  color: #ffffff;
  padding: 48px 0 56px 0;
}
.footer h4, .footer h5 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}
.footer h4::after, .footer h5::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #3498db;
}
.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}
.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.8rem;
}
.footer a:hover {
  color: #ffffff;
  padding-left: 5px;
}
.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}
.footer .row {
  display: flex;
  justify-content: space-between;
}
.footer .row .row-item {
  flex: 1;
}
.footer .row .row-item .info {
  margin-top: 30px;
  font-size: 14px;
}
.footer .row .row-item .info .phone {
  font-size: 36px;
}
.footer .row .row-item .info .email {
  margin-top: 11px;
}
.footer .row .row-item .list-unstyled {
  display: flex;
}
.footer .row .row-item .list-unstyled li {
  flex: 1;
  text-align: right;
}
.footer .row .row-item .QRcode-box {
  display: flex;
  justify-content: right;
  margin-top: 60px;
}
.footer .row .row-item .QRcode-box .qr_item {
  text-align: center;
}
.footer .row .row-item .QRcode-box .qr_item img {
  width: 112px;
  height: 112px;
  margin-bottom: 12px;
}
.footer .row .row-item .QRcode-box .qr_item:first-child {
  margin-right: 116px;
}
@media (max-width: 768px) {
  .footer .row .row {
    flex-direction: column;
  }
  .footer .row .row-item#about {
    margin-top: 2rem;
  }
  .footer .row .row-item#about .list-unstyled {
    flex-direction: column;
  }
  .footer .row .row-item#about .list-unstyled li {
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .footer .row .row-item#about .QRcode-box {
    justify-content: center;
    margin-top: 2rem;
  }
  .footer .row .row-item#about .QRcode-box .qr_item img {
    width: 80px;
    height: 80px;
  }
  .footer .row .row-item#about .QRcode-box .qr_item:first-child {
    margin-right: 30px;
  }
}
@media (max-width: 576px) {
  .footer .row .row-item#about .QRcode-box {
    flex-direction: column;
    align-items: center;
  }
  .footer .row .row-item#about .QRcode-box .qr_item {
    margin-bottom: 1rem;
  }
  .footer .row .row-item#about .QRcode-box .qr_item:first-child {
    margin-right: 0;
  }
}

.hero-section {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: #ffffff;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(30deg);
}
.hero-section h1 {
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .hero-section {
    padding: 6rem 0 4rem;
    text-align: center;
  }
  .hero-section .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.section-title {
  position: relative;
  margin: 3rem 0;
  font-weight: 700;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #3498db;
}
.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.feature-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 2rem;
  background: #ffffff;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.feature-card .feature-icon {
  width: 70px;
  height: 70px;
  background: #3498db;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}
.feature-card h3 {
  text-align: center;
  margin-bottom: 1rem;
}
.feature-card p {
  text-align: center;
  color: #666666;
}

.stats-section {
  background: #ecf0f1;
  padding: 4rem 0;
}
.stats-section .stat-item {
  text-align: center;
}
.stats-section .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 0.5rem;
}
.stats-section .stat-label {
  font-size: 1.1rem;
  font-weight: 500;
}

.testimonial-card {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: #ffffff;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.testimonial-card .client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3498db;
}

.cta-section {
  background: linear-gradient(to right, #2c3e50 0%, #3498db 100%);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 {
  font-weight: 700;
  margin: 1.5rem 0;
}
.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.cta-section .btn {
  margin: 0 0.5rem 1rem;
  min-width: 180px;
}

.floating-window {
  position: fixed;
  right: 3%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
.floating-window .floating-btn {
  width: 70px;
  height: 70px;
  color: #333;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.floating-window .floating-btn:hover {
  background-color: #006DF0;
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 109, 240, 0.2);
}
.floating-window .floating-btn.active {
  background-color: #006DF0;
  color: #fff;
}
.floating-window .floating-btn img {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}
.floating-window .floating-btn .btn-text {
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .floating-window .floating-btn {
    padding: 10px 0;
    width: 60px;
    height: 60px;
  }
  .floating-window .floating-btn img {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 480px) {
  .floating-window .floating-btn {
    padding: 10px 0;
    width: 50px;
    height: 50px;
  }
  .floating-window .floating-btn img {
    width: 24px;
    height: 24px;
  }
  .floating-window .floating-btn .btn-text {
    font-size: 10px;
  }
}
.success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px 30px;
  border-radius: 8px;
  z-index: 1020;
  display: none;
}
.success-toast .toast-content {
  display: flex;
  align-items: center;
}
.success-toast .toast-content img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.success-toast .toast-content p {
  margin: 0;
  font-size: 16px;
}

.carousel-container {
  position: relative;
  margin-top: 0;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
}
.carousel-container .carousel-control-prev {
  position: absolute;
  top: 71%;
  left: 17%;
  z-index: 10;
  width: 5vw;
  max-width: 80px;
  max-height: 80px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.carousel-container .carousel-control-next {
  position: absolute;
  top: 71%;
  left: 33%;
  z-index: 10;
  width: 5vw;
  max-width: 80px;
  max-height: 80px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.carousel-container .carousel-control-prev .icon,
.carousel-container .carousel-control-next .icon {
  width: 5vw;
}
.carousel-container .carousel-indicators {
  position: absolute;
  top: 71%;
  left: -46%;
  margin: 0;
  height: 80px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-container .carousel-indicators button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}
.carousel-container .carousel-indicators button.active {
  width: 12px;
  height: 12px;
  background-color: #fff;
}

/* 轮播图 - 调整高度适应导航栏 */
.carousel {
  width: 100%;
}
.carousel .carousel-inner .carousel-item {
  position: relative;
  max-height: 900px;
  background: center/cover no-repeat;
}
.carousel .carousel-inner .carousel-item.item-1 {
  background-image: url("../assets/images/index-banner.png");
}
.carousel .carousel-inner .carousel-item.item-2 {
  background-image: url("../assets/images/carousel2.png");
}
.carousel .carousel-inner .carousel-item.item-3 {
  background-image: url("../assets/images/carousel3.png");
}
.carousel .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-20%);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  text-align: left;
  max-width: 80%;
  padding-left: 0;
  /* 移除左侧内边距，确保与container最左侧对齐 */
}
.carousel .carousel-inner .carousel-item .carousel-caption .carousel-caption-safe {
  margin-bottom: 16px;
  font-size: 16px;
}
.carousel .carousel-inner .carousel-item .carousel-caption h1 {
  font-size: 3vw;
  max-font-size: 60px;
  min-font-size: 32px;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}
.carousel .carousel-inner .carousel-item .carousel-caption .carousel-caption-title {
  margin-top: 16px;
}
.carousel .carousel-inner .carousel-item .carousel-caption .line {
  width: 92px;
  height: 2px;
  background-color: #fff;
  margin: 64px 0 34px;
}
.carousel .carousel-inner .carousel-item .carousel-caption .text-uppercase {
  font-size: 18px;
  letter-spacing: 0.1vw !important;
}
.carousel .carousel-btn-box {
  position: absolute;
  bottom: 14%;
  left: 13%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 97px;
}
.carousel .carousel-btn-box .icon:first-child {
  margin-right: 60px;
}
.carousel .carousel-btn-box .icon {
  display: block;
  width: 80px;
  height: 80px;
}

.animate-from-top {
  opacity: 0;
  animation: slideInTop 1.5s forwards;
  animation-play-state: running;
}

/* 产品模块 */
.py-5 {
  margin-top: 20px;
  box-sizing: border-box;
}
.py-5 .container h2 {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .py-5 .container h2 {
    font-size: 30px;
  }
}
.py-5 .container p {
  font-size: 16px;
  color: #999999;
}
.py-5 .container .product_box {
  justify-content: center;
  margin-top: 36px;
}
.py-5 .container .product_box .product_item {
  transition: all 0.3s ease;
  height: 280px;
}
.py-5 .container .product_box .product_item .card {
  position: relative;
  border: none;
  background-image: url("../assets/images/cp-jiangguanlei.png");
  background-size: 100% 100%;
  transition: all 0.3s ease;
  border-radius: 6px;
}
.py-5 .container .product_box .product_item .card .card-body {
  padding: 0;
  position: absolute;
  top: 52px;
  left: 53px;
}
.py-5 .container .product_box .product_item .card .card-body h5 {
  font-size: 26px;
  color: #0043B0;
  font-weight: bold;
}
.py-5 .container .product_box .product_item .card .card-body p {
  margin-bottom: 0;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .py-5 .container .product_box .product_item .card .card-body {
    left: 20px;
  }
  .py-5 .container .product_box .product_item .card .card-body h5 {
    font-size: 20px;
  }
}
.py-5 .container .product_box .product_item .card2 {
  background-image: url("../assets/images/cp-anquanlei.png");
}
.py-5 .container .product_box .product_item .card3 {
  background-image: url("../assets/images/cp-shiyanshi.png");
}
.py-5 .container .product_box .product_item .card4 {
  background-image: url("../assets/images/cp-qita.png");
}
.py-5 .container .product_box .product_item .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.py-5 .container .solution_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.py-5 .container .solution_box .solve-box-col {
  width: 100%;
  height: 224px;
}
.py-5 .container .solution_box .solve-box-col .solve-item {
  position: relative;
}
.py-5 .container .solution_box .solve-box-col .solve-item .card-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 24px;
}
.py-5 .container .solution_box .solve-box-col .solve-item .card-title:nth-child(1) {
  bottom: 30px;
}
.py-5 .container .solution_box .solve-box-col:nth-child(1) {
  grid-column: span 2;
}
.py-5 .container .solution_boxs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.py-5 .container .solution_boxs .solve-box-col {
  width: 100%;
  height: 224px;
}
.py-5 .container .solution_boxs .solve-box-col .solve-item {
  position: relative;
  overflow: hidden;
}
.py-5 .container .solution_boxs .solve-box-col .solve-item img {
  transition: transform 0.3s ease;
}
.py-5 .container .solution_boxs .solve-box-col .solve-item:hover img {
  transform: scale(1.05);
}
.py-5 .container .solution_boxs .solve-box-col .solve-item .card-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 24px;
}
.py-5 .container .solution_boxs .solve-box-col .solve-item .card-title:nth-child(1) {
  bottom: 30px;
}

.xsxx {
  margin-top: 100px;
  background-image: url("../assets/images/xsxx-banner.png");
  background-size: 100% 100%;
  color: #fff;
}
@media (max-width: 768px) {
  .xsxx {
    background-size: auto auto;
  }
}
.xsxx .row-item {
  position: relative;
  transition: color 0.5s ease;
  z-index: 1;
  overflow: hidden;
}
.xsxx .row-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #0043B0;
  transform-origin: bottom right;
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
}
.xsxx .row-item:hover {
  color: white;
}
.xsxx .row-item:hover::before {
  transform: scale(1);
}
.xsxx .container {
  margin-top: 28px;
}
.xsxx .container .xsxx-row {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.xsxx .container .xsxx-row .row-item {
  flex: 1;
  background: linear-gradient(180deg, #5C617D 0%, rgba(55, 57, 82, 0.6) 100%);
  padding: 30px 30px 20px 30px;
}
.xsxx .container .xsxx-row .row-item .xsxx-title {
  text-align: center;
  font-size: 22px;
}
.xsxx .container .xsxx-row .row-item .xsxx-content {
  height: 180px;
  margin-top: 20px;
  font-size: 14px;
}
.xsxx .container .xsxx-row .row-item .xsxx-bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.xsxx .container .xsxx-row .row-item .xsxx-bottom .icon {
  width: 30px;
  height: 30px;
}

.zzyf {
  margin-top: 20px;
}
.zzyf .row {
  gap: 10px;
}
.zzyf .zzyf-row {
  position: relative;
  width: 210px;
  height: 524px;
  background-size: 100% 100%;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .zzyf .zzyf-row {
    width: 78%;
  }
}
@media (max-width: 768px) {
  .zzyf .zzyf-row:hover, .zzyf .zzyf-row.active {
    width: 78% !important;
  }
}
.zzyf .zzyf-row .logo {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 30px;
  bottom: 75px;
}
.zzyf .zzyf-row .zzyf-row-title {
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-size: 22px;
}
.zzyf .zzyf-row .custom-content {
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 90px 20px 30px;
}
.zzyf .zzyf-row .custom-content .btn {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%);
  height: 50px;
  width: 85%;
  margin: 0 auto;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
}
.zzyf .zzyf-row:nth-child(1) {
  background-image: url("../assets/images/zz-jssl.png");
}
.zzyf .zzyf-row:nth-child(1):hover,
.zzyf .zzyf-row:nth-child(1).active {
  width: 320px;
  background-image: url("../assets/images/zz-jsslbg.png");
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.zzyf .zzyf-row:nth-child(1):hover .logo,
.zzyf .zzyf-row:nth-child(1):hover .zzyf-row-title,
.zzyf .zzyf-row:nth-child(1).active .logo,
.zzyf .zzyf-row:nth-child(1).active .zzyf-row-title {
  opacity: 0;
}
.zzyf .zzyf-row:nth-child(1):hover .custom-content,
.zzyf .zzyf-row:nth-child(1).active .custom-content {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.zzyf .zzyf-row:nth-child(2) {
  background-image: url("../assets/images/zz-yftr.png");
}
.zzyf .zzyf-row:nth-child(2):hover,
.zzyf .zzyf-row:nth-child(2).active {
  width: 320px;
  background-image: url("../assets/images/zz-yftrbg.png");
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.zzyf .zzyf-row:nth-child(2):hover .logo,
.zzyf .zzyf-row:nth-child(2):hover .zzyf-row-title,
.zzyf .zzyf-row:nth-child(2).active .logo,
.zzyf .zzyf-row:nth-child(2).active .zzyf-row-title {
  opacity: 0;
}
.zzyf .zzyf-row:nth-child(2):hover .custom-content,
.zzyf .zzyf-row:nth-child(2).active .custom-content {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.zzyf .zzyf-row:nth-child(3) {
  background-image: url("../assets/images/zz-jszztd.png");
}
.zzyf .zzyf-row:nth-child(3):hover,
.zzyf .zzyf-row:nth-child(3).active {
  width: 320px;
  background-image: url("../assets/images/zz-jszztdbg.png");
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.zzyf .zzyf-row:nth-child(3):hover .logo,
.zzyf .zzyf-row:nth-child(3):hover .zzyf-row-title,
.zzyf .zzyf-row:nth-child(3).active .logo,
.zzyf .zzyf-row:nth-child(3).active .zzyf-row-title {
  opacity: 0;
}
.zzyf .zzyf-row:nth-child(3):hover .custom-content,
.zzyf .zzyf-row:nth-child(3).active .custom-content {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.zzyf .zzyf-row:nth-child(4) {
  background-image: url("../assets/images/zz-hycd.png");
}
.zzyf .zzyf-row:nth-child(4):hover,
.zzyf .zzyf-row:nth-child(4).active {
  width: 320px;
  background-image: url("../assets/images/zz-hycdbg.png");
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.zzyf .zzyf-row:nth-child(4):hover .logo,
.zzyf .zzyf-row:nth-child(4):hover .zzyf-row-title,
.zzyf .zzyf-row:nth-child(4).active .logo,
.zzyf .zzyf-row:nth-child(4).active .zzyf-row-title {
  opacity: 0;
}
.zzyf .zzyf-row:nth-child(4):hover .custom-content,
.zzyf .zzyf-row:nth-child(4).active .custom-content {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.zzyf .zzyf-row:nth-child(5) {
  background-image: url("../assets/images/zz-yfcg.png");
}
.zzyf .zzyf-row:nth-child(5):hover,
.zzyf .zzyf-row:nth-child(5).active {
  width: 320px;
  background-image: url("../assets/images/zz-yfcgbg.png");
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.zzyf .zzyf-row:nth-child(5):hover .logo,
.zzyf .zzyf-row:nth-child(5):hover .zzyf-row-title,
.zzyf .zzyf-row:nth-child(5).active .logo,
.zzyf .zzyf-row:nth-child(5).active .zzyf-row-title {
  opacity: 0;
}
.zzyf .zzyf-row:nth-child(5):hover .custom-content,
.zzyf .zzyf-row:nth-child(5).active .custom-content {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.khal {
  margin-top: 20px;
}
.khal .row {
  gap: 25px;
}
.khal .row .khal-row {
  width: 220px;
  height: 120px;
  overflow: hidden;
}
.khal .row .khal-row img.logo {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.khal .row .khal-row:hover img.logo {
  transform: scale(1.1);
}

.gywm {
  background-color: #F6F7F9;
  position: relative;
  padding-top: 93px;
}
.gywm .container .container-left {
  z-index: 22;
}
.gywm .container .container-left .left-title {
  font-weight: bold;
  font-size: 32px;
}
.gywm .container .container-left .left-beizhu {
  margin-top: 18px;
  font-weight: bold;
}
.gywm .container .container-left .left-content {
  margin-top: 50px;
  font-size: 16px;
}
.gywm .container .container-left .left-row {
  display: flex;
  margin-top: 87px;
}
.gywm .container .container-left .left-row > div {
  flex: 1;
  text-align: center;
}
.gywm .container .container-left .left-row .left-row-beizhu {
  font-size: 15px;
  color: #999999;
  margin-bottom: 5px;
}
.gywm .container .container-left .left-row .left-row-number {
  font-size: 42px;
}
.gywm .container .container-left .btn {
  padding: 14px 97px;
  margin-top: 65px;
  background: #0043B0;
  border: 1px solid #0043B0;
  border-radius: 4px;
  color: #fff;
}
.gywm .container .container-right {
  background: url("../assets/images/gywm-bg.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
  min-height: 400px;
}

.xwzx {
  margin-top: 20px;
  padding-bottom: 60px;
}
.xwzx .container {
  max-width: 1200px;
}
.xwzx h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}
.xwzx p {
  font-size: 16px;
  color: #999999;
  margin-bottom: 27px;
}
.xwzx .tabs-box {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.xwzx .tabs-box .tabs-box-ul {
  margin: 0 auto;
  display: flex;
  list-style: none;
  padding: 0;
}
.xwzx .tabs-box .tabs-box-ul li {
  padding: 11px 24px;
  margin: 0 10px;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.xwzx .tabs-box .tabs-box-ul li:hover {
  color: #0043B0;
}
.xwzx .tabs-box .tabs-box-ul li.active {
  color: #fff;
  border: 1px solid #0043B0;
  border-radius: 30px;
  background-color: #0043B0;
}
.xwzx .news-grid {
  margin-top: 30px;
  display: flex;
}
@media (max-width: 768px) {
  .xwzx .news-grid {
    flex-direction: column;
  }
}
.xwzx .news-grid .news-grid-item .news-card {
  padding: 30px 20px 14px;
  border: 1px solid #E9E9E9;
  background: #fff;
}
.xwzx .news-grid .news-grid-item .news-card:hover {
  border-bottom: 2px solid #0043B0;
}
.xwzx .news-grid .news-grid-item .news-card img {
  width: 100%;
  height: 346px;
  object-fit: cover;
}
.xwzx .news-grid .news-grid-item .news-card .news-content {
  padding-top: 30px;
}
.xwzx .news-grid .news-grid-item .news-card .news-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.xwzx .news-grid .news-grid-item .news-card .news-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.xwzx .news-grid .news-grid-item .news-card .news-content .news-date {
  font-size: 12px;
  color: #999;
}
.xwzx .news-grid .news-grid-left {
  margin-right: 30px;
}
@media (max-width: 768px) {
  .xwzx .news-grid .news-grid-left {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
.xwzx .news-grid .news-grid-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .xwzx .news-grid .news-grid-right {
    width: 100%;
  }
}
.xwzx .news-grid .news-grid-right .news-card {
  padding: 26px 29px 11px 20px;
  margin-top: 20px;
}
.xwzx .news-grid .news-grid-right .news-card .news-content {
  padding-top: 0;
}
.xwzx .news-grid .news-grid-right .news-card:nth-child(1) {
  margin-top: 0;
}

.jjfa {
  padding: 2rem;
  background-image: url("../assets/images/jjfa-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.jjfa .jigou {
  margin-top: 18px;
}
.jjfa .jigou h2 {
  font-size: 34px;
}
.jjfa .jigou .left-content {
  margin-top: 20px;
  font-size: 16px;
}
.jjfa .jigou .left-row {
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
}
.jjfa .jigou .left-row > div {
  flex: 1;
}
.jjfa .jigou .left-row .left-row-beizhu {
  color: #fff;
}
.jjfa .jigou .left-row .row-item {
  border-right: 1px solid #fff;
}
.jjfa .jigou .left-row .row-item:nth-child(3) {
  border-right: none;
}
.jjfa .jigou .btn {
  padding: 14px 97px;
  margin-top: 60px;
  background: #FFFFFF;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #0043B0;
}
@media (max-width: 768px) {
  .jjfa {
    padding: 1rem;
  }
  .jjfa .jigou h2 {
    font-size: 28px;
  }
  .jjfa .jigou .left-row .row-item {
    border-right: none;
    margin-bottom: 15px;
  }
  .jjfa .jigou .btn {
    padding: 10px 60px;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 服务模块 */
.service-box {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 页脚 */
footer {
  background: #252B3A;
  color: #aaa;
}

.footer-link a {
  color: #aaa;
  margin-right: 1rem;
}

.section-padding {
  padding: 6rem 0;
}
@media (max-width: 767.98px) {
  .section-padding {
    padding: 4rem 0;
  }
}

@keyframes shakeUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  75% {
    transform: translateY(-10px);
  }
}
@keyframes fadeInEnhanced {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
[data-animation=fadeIn] {
  animation-name: fadeInEnhanced;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
  animation-fill-mode: both;
}

[data-animation=fadeInDown] {
  animation-name: fadeInDown;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animation=fadeInUp] {
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.custom-carousel-btn {
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.22);
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev.custom-carousel-btn {
  left: 20px;
}

.carousel-control-next.custom-carousel-btn {
  right: 20px;
}
.carousel-control-next.custom-carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.carousel-control-next.custom-carousel-btn .carousel-control-prev-icon,
.carousel-control-next.custom-carousel-btn .carousel-control-next-icon {
  filter: invert(1);
  width: 24px;
  height: 24px;
}

html,
body {
  width: 100% !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  text-align: left !important;
}

#carouselExampleIndicators.carousel-container {
  width: 100vw !important;
  height: auto !important;
  max-height: 900px !important;
  aspect-ratio: 16/9 !important;
  max-width: 100vw !important;
  box-sizing: border-box;
  min-width: 0;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

#carouselExampleIndicators .carousel-inner {
  height: 100% !important;
  width: 100% !important;
}

#carouselExampleIndicators .carousel-item {
  height: 100% !important;
  background-size: cover !important;
  background-position: center center !important;
}

@media (max-width: 768px) {
  #carouselExampleIndicators.carousel-container {
    width: 100% !important;
  }
  .carousel-caption .lead {
    max-width: 90% !important;
    font-size: 16px !important;
  }
  .carousel-caption {
    padding-bottom: 50px !important;
    left: 20px !important;
  }
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* 通用样式优化 */
body {
  font-family: "Microsoft YaHei", sans-serif;
  color: #333;
  padding-top: 0 !important; /* 移除默认顶部内边距 */
}

a {
  color: #00b38a;
  text-decoration: none;
}

a:hover {
  color: #009974;
}

.product-category {
  padding: 68px 0;
}
.product-category .section-titles {
  font-size: 40px;
  font-weight: 700;
  color: #333333;
  position: relative;
}
@media (max-width: 768px) {
  .product-category .section-titles {
    font-size: 30px;
  }
}
.product-category .section-subtitle {
  opacity: 0.9;
  text-align: center;
  color: #999999;
}

.hand-cursor {
  cursor: pointer;
}

.product-hero {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
}
.product-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  text-align: center;
}
@media (max-width: 992px) {
  .product-hero h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .product-hero {
    height: 40vh;
    min-height: 300px;
  }
  .product-hero h1 {
    font-size: 2.2rem;
  }
  .product-hero p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .product-hero h1 {
    font-size: 1.8rem;
  }
}
/*# sourceMappingURL=main.min.css.map */
