.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  color: #333333;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0a4c9e;
  margin: 1rem auto 0;
}

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

.product-hero {
  height: 50vh;
  min-height: 400px;
  background-image: url("../../assets/images/swhz-bg.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  text-align: center;
}
.product-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.product-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  text-align: center;
}

.analysis-section {
  background-color: #F8FCFF;
  padding: 5rem 0;
}
.analysis-section.dark-bg {
  background-image: url("../../assets/images/swhz-sbhj-bg.png");
  background-size: 100% 100%;
  color: #ffffff;
}
.analysis-section.dark-bg .section-titles {
  color: #ffffff;
}
.analysis-section.dark-bg .section-titles::after {
  background-color: #ffffff;
}
.analysis-section .analysis-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  width: 100%;
}
.analysis-section .analysis-cards .analysis-card {
  opacity: 0;
  animation-fill-mode: forwards;
  border-radius: 8px;
  background-color: #fff;
  padding: 0;
}
.analysis-section .analysis-cards .analysis-card.animate__fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
}
.analysis-section .analysis-cards .analysis-card:hover {
  box-shadow: 0px 20px 20px 1px rgba(0, 0, 0, 0.03);
}
.analysis-section .analysis-cards .analysis-card .card-top {
  width: 100%;
  height: 101px;
  background-image: url("../../assets/images/hzgy-ct-bg.png");
  background-size: 100% 100%;
}
.analysis-section .analysis-cards .analysis-card .card-top > p {
  text-align: center;
  color: #fff;
  padding-top: 25px;
  font-weight: bold;
}
.analysis-section .analysis-cards .analysis-card .card-title {
  color: #0a4c9e;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.analysis-section .analysis-cards .analysis-card .animation-delay-100 {
  animation-delay: 100ms !important;
}
.analysis-section .analysis-cards .analysis-card .animation-delay-200 {
  animation-delay: 200ms !important;
}
.analysis-section .analysis-cards .analysis-card .animation-delay-300 {
  animation-delay: 300ms !important;
}
.analysis-section .analysis-cards .analysis-card .animation-delay-400 {
  animation-delay: 400ms !important;
}
.analysis-section .analysis-cards .analysis-card .animation-delay-500 {
  animation-delay: 500ms !important;
}
.analysis-section .analysis-cards .analysis-card .card-desc {
  padding: 20px;
  margin: 0;
  color: #666666;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .analysis-section .analysis-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 auto;
  }
  .analysis-section .analysis-card {
    margin-top: 20px;
  }
  .analysis-section .analysis-card .card-top {
    height: 90px;
  }
  .analysis-section .analysis-card .card-top > p {
    padding-top: 20px;
    font-size: 0.9rem;
  }
  .analysis-section .analysis-card .card-desc {
    padding: 15px;
    font-size: 0.85rem;
  }
}
.analysis-section .analysis-chart .chart-items {
  position: relative;
  height: 480px;
}
.analysis-section .analysis-chart .chart-items .chart-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 300px;
}
.analysis-section .analysis-chart .chart-items .chart-item {
  background: rgba(10, 20, 73, 0.7);
  box-shadow: 0px 3px 6px 1px rgba(16, 65, 185, 0.26);
  border-radius: 8px;
  border: 1px solid rgba(17, 68, 193, 0.15);
  padding: 20px;
  text-align: right;
}
.analysis-section .analysis-chart .chart-items .chart-item .item-title {
  font-size: 16px;
  color: #266AFF;
  text-align: center;
}
.analysis-section .analysis-chart .chart-items .chart-item .item-desc {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
  color: #DCE5FF;
}
.analysis-section .analysis-chart .chart-items .chart-item:nth-child(1) {
  position: absolute;
  top: 31px;
  left: -45px;
}
.analysis-section .analysis-chart .chart-items .chart-item:nth-child(2) {
  position: absolute;
  top: 51%;
  left: -45px;
}
.analysis-section .analysis-chart .chart-items .chart-item:nth-child(4) {
  width: 70%;
  position: absolute;
  bottom: -7%;
  left: 15%;
  text-align: center;
}
.analysis-section .analysis-chart .chart-items .chart-item:nth-child(5) {
  text-align: left;
  position: absolute;
  right: -2%;
  top: 31px;
}
.analysis-section .analysis-chart .chart-items .chart-item:nth-child(6) {
  text-align: left;
  position: absolute;
  right: -2%;
  top: 51%;
}
.analysis-section .analysis-chart .chart-items-mobile .chart-item-mobile {
  margin-bottom: 20px;
  background: rgba(10, 20, 73, 0.7);
  box-shadow: 0px 3px 6px 1px rgba(16, 65, 185, 0.26);
  border-radius: 8px;
  border: 1px solid rgba(17, 68, 193, 0.15);
}
.analysis-section .analysis-chart .chart-items-mobile .chart-item-mobile .item-title {
  font-size: 16px;
  color: #266AFF;
  margin-bottom: 10px;
}
.analysis-section .analysis-chart .chart-items-mobile .chart-item-mobile .item-desc {
  font-size: 14px;
  color: #DCE5FF;
  margin-bottom: 0;
}
.analysis-section .analysis-chart .chart-items-mobile .chart-item-mobile:nth-child(5) {
  margin-bottom: 0;
}

.zzyf {
  margin: 20px 0;
}
.zzyf .row {
  gap: 0;
}
.zzyf .zzyf-row {
  width: 19%;
  background-size: 100% 100%;
  box-sizing: border-box;
}
.zzyf .zzyf-row .logo {
  width: 58px;
  height: 58px;
  position: absolute;
  left: 40px;
  top: 40px;
}
.zzyf .zzyf-row .zzyf-row-title {
  position: absolute;
  left: 40px;
  top: 110px;
}
.zzyf .zzyf-row .custom-content {
  position: relative;
  padding: 40px 40px 30px;
}
.zzyf .zzyf-row .custom-content h3 {
  font-size: 22px;
}
.zzyf .zzyf-row .custom-content div {
  font-size: 14px;
}
.zzyf .zzyf-row .custom-content img {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
}
.zzyf .zzyf-row .custom-content .zzyf-btn {
  position: absolute;
  bottom: 40px;
  padding: 15px 70px;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 8px;
}
.zzyf .zzyf-row:nth-child(1) {
  background-image: url("../../assets/images/swhz-jrwm1.png");
}
.zzyf .zzyf-row:nth-child(1):hover,
.zzyf .zzyf-row:nth-child(1).active {
  width: 480px;
  background-image: url("../../assets/images/swhz-jrwm1-bg.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/swhz-jrwm2.png");
}
.zzyf .zzyf-row:nth-child(2):hover,
.zzyf .zzyf-row:nth-child(2).active {
  width: 480px;
  background-image: url("../../assets/images/swhz-jrwm2-bg.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/swhz-jrwm3.png");
}
.zzyf .zzyf-row:nth-child(3):hover,
.zzyf .zzyf-row:nth-child(3).active {
  width: 480px;
  background-image: url("../../assets/images/swhz-jrwm3-bg.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/swhz-jrwm4.png");
}
.zzyf .zzyf-row:nth-child(4):hover,
.zzyf .zzyf-row:nth-child(4).active {
  width: 480px;
  background-image: url("../../assets/images/swhz-jrwm4-bg.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;
}

.cooperation-section {
  padding: 5rem 0;
  background-color: #f5f7fa;
}
.cooperation-section .cooperation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}
.cooperation-section .cooperation-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.cooperation-section .cooperation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.cooperation-section .cooperation-card .card-img {
  height: 180px;
  overflow: hidden;
}
.cooperation-section .cooperation-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cooperation-section .cooperation-card .card-img:hover img {
  transform: scale(1.05);
}
.cooperation-section .cooperation-card .card-title {
  color: #0a4c9e;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding: 0 1.5rem;
  padding-top: 1.5rem;
}
.cooperation-section .cooperation-card .card-desc {
  color: #666666;
  line-height: 1.6;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}
.cooperation-section .cooperation-card .btn-primary {
  display: inline-block;
  margin: 0 1.5rem 1.5rem;
  background-color: #0a4c9e;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cooperation-section .cooperation-card .btn-primary:hover {
  background-color: #0e62d3;
}

.government-section {
  padding: 5rem 0;
  background-image: url("../../assets/images/swhz-zq-bg.png");
  background-size: 100% 100%;
  color: #ffffff !important;
}
.government-section .section-titles {
  color: #ffffff;
}
.government-section .section-subtitle {
  color: #ffffff;
}
.government-section .government-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.government-section .content-badge {
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.government-section .content-badge .badge-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.government-section .content-badge .badge-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}
.government-section .content-text {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  opacity: 0.9;
}
.government-section .tabs {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.government-section .tab-item {
  flex: 1;
  padding: 15px 0;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.government-section .tab-item:hover {
  opacity: 1;
}
.government-section .tab-item.active {
  opacity: 1;
  font-weight: bold;
}
.government-section .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0a4c9e;
}
.government-section .tab-content {
  margin-top: 30px;
}
.government-section .tab-pane {
  display: none;
}
.government-section .tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
  }
}

.collaboration-section {
  padding: 5rem 0;
}
.collaboration-section .collaboration-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  position: relative;
}
.collaboration-section .collaboration-steps .step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}
.collaboration-section .collaboration-steps .step-item .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 58px;
  font-weight: bold;
  margin: 0 auto 10px;
  color: #0043B0;
}
.collaboration-section .collaboration-steps .step-item .step-title {
  color: #333333;
  font-size: 20px;
  margin-bottom: 1rem;
}
.collaboration-section .collaboration-steps .step-item .step-desc {
  color: #666666;
  line-height: 1.6;
}

.footer {
  background-color: #111111;
}

@keyframes customFadeInUp {
  0% {
    opacity: 0;
    margin-top: 80px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
.custom-fade-in-up {
  opacity: 0;
  animation: customFadeInUp 0.8s ease-out forwards;
}

@media (max-width: 992px) {
  .government-content {
    grid-template-columns: 1fr !important;
  }
  .collaboration-steps {
    flex-direction: column;
    align-items: center;
  }
  .collaboration-steps::before {
    display: none;
  }
  .collaboration-steps .step-item {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }
  .section-title {
    font-size: 1.8rem !important;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .zzyf .row {
    flex-direction: column;
    gap: 1rem;
  }
  .zzyf .zzyf-row {
    width: 100% !important;
    margin-bottom: 1rem;
  }
  .zzyf .zzyf-row:hover,
  .zzyf .zzyf-row.active {
    width: 100% !important;
  }
}
@media (max-width: 768px) and (min-width: 768px) {
  .zzyf .row {
    display: flex;
    flex-wrap: nowrap;
  }
  .zzyf .zzyf-row {
    width: 25%;
    flex: 1;
  }
}
@media (max-width: 576px) {
  .product-hero {
    height: 250px;
  }
  .product-hero h1 {
    font-size: 1.75rem;
  }
}
/*# sourceMappingURL=businessCooperation.min.css.map */
