/**
* Template Name: Avilon - v4.7.0
* Template URL: https://bootstrapmade.com/avilon-bootstrap-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  overflow-y: hidden;
}

a {
  color: #007bff;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #007bff;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}


.flex-box{
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  /*text-align: center;*/
}

/* 新增：确保产品概述中的段落左对齐 */
.flex-item .description {
  text-align: left;
  margin-bottom: 1.5em; /* 增加与列表的间距 */
}

/* 新增：确保产品概述中的列表左对齐 */
.flex-item ul {
  text-align: left;
  margin-top: 0;
  padding:0!important;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  background: linear-gradient(45deg, #9eb9e0, #007bff);
  color: #fff;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
  visibility: hidden;
  opacity: 0;
  width: 64px;
  height: 34px;
}

.back-to-top i {
  line-height: 0;
  font-size: 20px;
}

.back-to-top:focus {
  background: linear-gradient(45deg, #9eb9e0, #007bff);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #007bff;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  /*background: linear-gradient(45deg, rgba(158,185,224, 1), rgba(0,123,255, 1));*/
  background: transparent;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  /*background: linear-gradient(45deg, rgba(158,185,224, 1), rgba(0,123,255, 1));*/
  background: transparent;
  height: 70px;
  transition: all 0.5s;
}

#header #logo h1 {
  font-size: 36px;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }

  #header #logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  padding: 0 2px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  /*transform: scaleX(1);*/
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  border-radius: 8px;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 120px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #333333;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #007bff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #007bff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  border-radius: 8px;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 120px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #007bff;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# inner-page Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# 智慧民政
--------------------------------------------------------------*/
#inner_page {
  width: 100%;
  background:  url("../img/hero-bg.jpg") center top no-repeat;
  background-color: #d6f0ff;
  background-size: 100%;
  position: relative;
}

#inner_page .section-title{
  color: #2875ff;
}

#inner_page .section-description{
  color: #4183f8;
}


/*--------------------------------------------------------------
# 智慧民政
--------------------------------------------------------------*/
#inner_zhmz  .info{
  background: #eff5f5;
  border-radius: 10px; 
  margin: 20px auto; 
  padding: 20px 60px;
}

#inner_zhmz .info .jsnr{
  position: relative;
  background:  url("../../project/zhmz/img/1.png") center top no-repeat;
  background-size: 70%;
}

#inner_zhmz .jsnr .infobox{
  width: 290px;
  margin: 0 auto;
}

#inner_zhmz .info .jsnr .left-title{
  margin-top: 20vh;
}

#inner_zhmz .info .jsnr .middle-title{
  margin-top: 35vh;

}

#inner_zhmz .info .jsnr .right-title{
  margin-top: 30vh;
}


#inner_zhmz .info .jsnr ul li{
  list-style: none;
  margin-left: -20px;
  width: 80%; 
}

#inner_zhmz .icon{
  float: left;
  font-size: 2rem;
  margin-top: -10px;
  margin-right:10px;
  color:  #4183f8;
}

#inner_zhmz .title{
  font-weight: bolder;
  color:  #4183f8;
}


/*--------------------------------------------------------------
# 未成年人救助保护
--------------------------------------------------------------*/
#inner_wb {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, rgba(158,185,224, 0.9), rgba(0,123,255, 0.9)), url("../img/hero-bg.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}


/*--------------------------------------------------------------
# 大救助
--------------------------------------------------------------*/
#inner_djz {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, rgba(158,185,224, 0.2), rgba(0,123,255, 0.5)), url("../img/hero-bg.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /*background: linear-gradient(45deg, rgba(158,185,224, 0.2), rgba(0,123,255, 0.5)), url("../img/hero.png") center top no-repeat;
  background-size: cover;*/
  position: relative;
  overflow: hidden;
}

/* 视频背景容器 */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* 确保视频在内容下方 */
}

/* 视频样式 */
.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; /* 保持视频比例并覆盖整个区域 */
}

/* 保持原有的渐变叠加效果 */
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(45deg, rgba(158,185,224, 0.2), rgba(0,123,255, 0.5));*/
  z-index: 1; /* 确保在视频上方但在内容下方 */
}

/* 视频无法加载时的备用背景 */
.fallback-background {
  width: 100%;
  height: 100%;
  background: url("../img/hero.png") center top no-repeat;
  background-size: cover;
}


@media (min-width: 1025px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 640px) {
  #hero {
    height: 120vh;
  }
}

#hero .hero-text {
  position: absolute;
  left: 0;
  top: 60px;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  z-index: 10;
}

#hero h2 {
  margin: 30px 0 10px 0;
  padding: 0 15px;
  font-size: 48px;
  font-weight: 900;
  line-height: 56px;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero p {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  color: #007bff;
  background: #fff;
}

#hero .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

#hero .product-screens img {
  box-shadow: 0px -2px 19px 4px rgba(0, 0, 0, 0.29);
  width: 18%; /* 相对于父容器的宽度比例 */
  max-width: 350px; /* 限制最大宽度 */
  min-width: 300px; /* 限制最小宽度 */
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ffffff;
  opacity: 0.8; 
}

#hero .product-screens .product-screen-1 {
  position: absolute;
  z-index: 30;
  left: calc(50% + 54px);
  bottom: 0;
  top: 30px;
}

#hero .product-screens .product-screen-2 {
  position: absolute;
  z-index: 20;
  left: calc(50% - 154px);
  bottom: 0;
  top: 90px;
}

#hero .product-screens .product-screen-3 {
  position: absolute;
  z-index: 10;
  left: calc(50% - 374px);
  bottom: 0;
  top: 150px;
}


/* 英雄区域布局样式 */
/*.hero-text.box {
    width: 80% !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
}

.box-left {
    width: 40% !important;
    padding-right: 20px !important;
}

.box-right {
    width: 60% !important;
}

.box-right video {
    max-width: 100% !important;
    height: auto !important;
    border: none !important;
}*/
@media (max-width: 767px) {
  #hero .product-screens .product-screen-1 {
    position: static;
    padding-top: 30px;
  }

  #hero .product-screens .product-screen-2,
  #hero .product-screens .product-screen-3 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: white;
  text-align: center;
  font-weight: 400;
  margin-top:60px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: white;
  font-style: italic;
}

.section-header .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  background: linear-gradient(0deg, #007bff 0%, #fff 100%);
  /*margin: 0 auto;*/
  margin-bottom: 20px;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #eff5f5;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
  margin-top: 92px;
  color: #fff;
}

.breadcrumbs a{
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

#hero, #about {
  position: relative; /* 关键修复：创建独立的定位上下文 */
}

/* About Us Section
--------------------------------*/
#about {
  padding: 60px 0;
  overflow: hidden;
  height: 100vh;
  background-size: cover;
  background: linear-gradient( rgba(0,123,255, 0.5),rgba(158,185,224, 0.2)), url("../img/about1.png") center bottom no-repeat;
}


#about .bgimg{
  display: flex;
  overflow: hidden;
  height: 50vh;
  margin-left:-50px; 
}

#about .bgimg .fontimg{
  width: 50%;
}


#about .bgimg img{
  width: 180px;
  border-radius:10px; 
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.3);
}

#about .bgimg span{
  font-size: 3rem;
  font-weight: bolder;
  color: #fff;
  text-shadow:0 8px 9px #c4b59d, 0px -2px 1px #fff;
  /*text-shadow:0px 0px 30px rgba(73, 78, 92, 0.8);*/
}

#about .bgimg .left{
  text-align: right;
  margin-top: 15%;
  margin-right: -10%; 
}
#about .bgimg .right{
  text-align: center;
  margin-top: 40%;
}


@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }

  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}


#about .infobox{
  color: #ddd;
  text-shadow: 2px 2px 10px rgba(73, 78, 92, 1);
  max-width: 90%;
  padding: 30px;
  margin: 0 auto;
  border-radius:10px; 
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.3);
}

#about .content .h2 {
  color: #fff;
  font-weight: 300;
  font-size: 24px;
  margin-top: 20px; 
}

#about .content h3 {
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  /*color: #fff;*/
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 10px;
}

/* 智慧民政 
************************************/
#zhmz {
  overflow: hidden;
  background: linear-gradient(rgba(0,123,255, 0.65), rgba(29, 205, 89, 0.2)), url(../img/bg_04.svg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  height: 100vh;
}

#zhmz .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#zhmz .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #zhmz .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#zhmz .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#zhmz .cta-btn:hover {
  background: #007bff;
  border: 2px solid #007bff;
}


/*内容*/
/*#zhmz .zhmznr{
  width: 100%;
  display: flex;
  margin: 20px auto;
  align-items:center;
  overflow: hidden;
  justify-content:center;
}

#zhmz .zhmznr .nrbox{
  flex: 0.2;
  cursor: pointer;
  text-align: center;
}

#zhmz .zhmznr .addicon{
  flex: 0.06;
  font-size: 4rem;
}*/

/* 基础容器样式 */
.zhmznr {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 0 15px;
    box-sizing: border-box;
}

.nrbox .box {
    flex: 1;
    min-width: 0;
}

/* 图片容器样式 */
.img-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.6s ease;
}

/* 初始缩放动画 */
.nrbox.box {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 延迟动画，与aos延迟保持一致 */
.nrbox.box:nth-child(1) { animation-delay: 100ms; }
.nrbox.box:nth-child(3) { animation-delay: 300ms; }
.nrbox.box:nth-child(5) { animation-delay: 500ms; }

/* 图片样式 */
.img img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

/* 信息区域样式 */
.img-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /*padding: 15px auto;*/
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.6s ease;
    transform: translateY(40%); /* 默认只显示部分内容 */
}

/* 标题样式 - 定位在3/4高度处 */
.img-info .title {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    bottom: 70%;
    transition: all 0.6s ease;
}

.img-info .title a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* 说明文字样式 */
.img-description {
    color: white;
    margin: 0 4px 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease 0.1s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* 遮罩层样式 */
.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    transition: all 0.6s ease;
    z-index: 1;
}

/* 鼠标悬停效果 */
.img-container:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
}

.img-container:hover img {
    transform: scale(1.1);
}

.img-container:hover .img-overlay {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.img-container:hover .img-info {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding-bottom: 30px;
    z-index: 10;
}

.img-container:hover .img-description {
    opacity: 1;
    transform: translateY(0);
}

.img-container:hover .title {
    position: relative;
    bottom: auto;
    left: auto;
    margin-bottom: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .zhmznr {
        flex-direction: column;
    }
    
    .img-info {
        transform: translateY(30%);
    }
}

/* 图片容器：Flex布局实现水平排列 */
#investment .image-row-container {
    display: flex; /* 开启Flex布局，子元素水平排列 */
    gap: 8px; /* 子元素之间的间隔（横向+纵向，这里主要用横向） */
    /*overflow-x: auto;*/ /* 当屏幕过小时，允许横向滚动（避免图片挤压变形） */
    padding: 10px 0; /* 上下内边距，优化视觉 */
}
/* 图片样式：统一尺寸+自适应 */
#investment .image-row-item {
    flex: 0 0 auto; /* 禁止图片收缩/拉伸，保持原始比例（或自定义宽度） */
    width: calc(100%  / 4); /* 计算每张图宽度：总宽 - 3个间隔（4图有3个间隔） / 4张图 */
    min-width: 230px; /* 最小宽度，避免小屏幕下图片过窄 */
}

#investment .image-row-item:hover img{
  border: 1px solid #fff;
}

.img-hds:hover{
  cursor: pointer;
  transform: scale(1.02); /* 放大1.1倍 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* 可选阴影效果 */
}

.img-hds{
  width: 100%;
  height: auto; /* 保持图片比例，避免变形 */
  object-fit: cover; /* 若图片比例不一致，可使用此属性裁剪（可选） */
  transition: transform 0.3s ease;
  border-radius: 8px;
}

/* 响应式适配：小屏幕（如手机）下调整布局 */
@media (max-width: 768px) {
    #investment .image-row-item {
        width: calc((100% - 8px) / 2); /* 平板/手机横屏：2张图一排 */
    }
}
@media (max-width: 480px) {
   #investment  .image-row-item {
        width: 100%; /* 手机竖屏：1张图一排 */
        margin-bottom: 6px; /* 纵向间隔，与横向间隔一致 */
    }
    #investment .image-row-container {
        gap: 0; /* 取消横向间隔，避免重复间距 */
    }
}



#zhmz .features-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #zhmz .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#zhmz .features-img img {
  max-width: 100%;
}

#zhmz .box {
  margin-bottom: 15px;
}

#zhmz .icon {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  display: flex;
  text-align: center;
  align-items: center;
  border-radius: 5px;
  background: linear-gradient(45deg, #007bff 0%, #55fabe 100%);
}

#zhmz .icon .num{
  flex: 1;
  color: white;
  font-weight: 900;
  font-size: 8rem;
  transition: 0.5s;
}

#zhmz .imgbox{
  height: 281px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

#zhmz .img{
  flex: 1;
  transition: 0.5s;
}

#zhmz .title {
  font-weight: 500;
  margin: 15px auto;
  font-size: 1.5rem;
}

#zhmz .title a {
  color: #111;
}

#zhmz .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

#zhmz .section-description {
  padding-bottom: 10px;
}

/* 智慧民政建设内容 Section
   数据中心
--------------------------------*/
#zhmz_sjzx {
  overflow: hidden;
  background: linear-gradient(rgba(0,123,255, 0.65), rgba(29, 205, 89, 0.2)), url(../img/bg_06.svg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  height: 100vh;
}


#zhmz_sjzx .container{
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content:center;
  height: 80vh;
}

#zhmz_sjzx .section-title{
  font-size: 2rem;
  line-height: 3rem;
  color: white;
  font-weight: 700;
}

#zhmz_sjzx .description{
  font-size:0.9rem;
  line-height: 1.5rem;
  color: #fff;
  font-weight: 400;
  margin-right: 4rem;
}

#zhmz_sjzx img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}


/* 智慧民政建设内容 Section
   决策分析
--------------------------------*/
#zhmz_jcfx {
  overflow: hidden;
  background: linear-gradient(rgba(0,123,255, 0.65), rgba(29, 205, 89, 0.2)), url(../img/bg_03.svg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  height: 100vh;
}



#zhmz_jcfx .container{
  height: 80vh;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content:center;
}

#zhmz_jcfx .section-title{
  font-size: 2rem;
  line-height: 3rem;
  color: white;
  font-weight: 700;
  text-align: right;
}

#zhmz_jcfx .description{
  font-size:0.9rem;
  line-height: 1.5rem;
  color: #fff;
  font-weight: 400;
  margin-left: 4rem;
}

#zhmz_jcfx img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}


.img-fluid{
  border-radius: 8px;
  /*border: 1px solid #fff;*/
  /*opacity: 0.5*/
}

/* 智慧民政建设内容 Section
   移动端apps
--------------------------------*/
#zhmz_apps {
  overflow: hidden;
  background: linear-gradient(rgba(0,123,255, 0.65), rgba(29, 205, 89, 0.2)), url(../img/bg_01.svg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  height: 100vh;
}

#zhmz_apps .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: transparent;
  transition: 0.4s;
  height: 100%;
  overflow: hidden;
}

#zhmz_apps .container{
  height: 80vh;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content:center;
}

#zhmz_apps .section-title{
  font-size: 2rem;
  line-height: 3rem;
  color: white;
  font-weight: 700;
}

#zhmz_apps .description{
  font-size:0.9rem;
  line-height: 1.5rem;
  color: #fff;
  font-weight: 400;
  margin-right: 4rem;
}

#zhmz_apps img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}


/* 智慧民政建设内容 Section
   个性化应用场景
--------------------------------*/
#zhmz_gxyy {
  overflow: hidden;
  background: linear-gradient(rgba(0,123,255, 0.65), rgba(29, 205, 89, 0.2)), url(../img/bg_02.svg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  height: 100vh;
}



#zhmz_gxyy .container{
  height: 80vh;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content:center;
}

#zhmz_gxyy .section-title{
  font-size: 2rem;
  line-height: 3rem;
  color: white;
  font-weight: 700;
  text-align: right;
}

#zhmz_gxyy .description{
  font-size:0.9rem;
  line-height: 1.5rem;
  color: #fff;
  font-weight: 400;
  margin-left: 4rem;
}

#zhmz_gxyy img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}


/* 项目案例
************************************/
#xmal {
  overflow: hidden;
  background: linear-gradient(rgba(0,123,255, 0.65), rgba(29, 205, 89, 0.2)), url(../img/bg_04.svg) fixed center center;
  background-size: cover;
  padding: 80px 0;
  height: 100vh;
}


#xmal .section-header h3{
  color: white;
  font-weight: 500;
}

#xmal .section-header p{
  color: white;
  font-weight: 500;
}


#xmal .tabs{
  display: flex;
  width: 1200px;
  overflow: hidden;
  margin: 0 auto;
  padding: 10px;
}
#xmal .tabs .tab_box{
  height: 396px;
  width: 30%;
  cursor: pointer;
  transition: all 0.6s;
  flex:0.33;
  border-radius: 10px;
  padding: 30px;
  margin-right:20px; 
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
}
#xmal .tabs .tab_box:hover{
  /*color: white;*/
  border-radius: 10px;
  box-shadow: 3px 5px 5px 2px #888888;
  transform: scale(1.05);
  /*background-image:linear-gradient(45deg, blue, green 10%, red); */ 
}

#xmal .tabs .left:hover{
  background-image:linear-gradient(35deg, rgba(127,255,212,1), rgba(127,255,212,.1)); 
}

#xmal .tabs .left:hover .top_right{font-weight: 700;}
#xmal .tabs .left:hover span{font-weight: 400;}

#xmal .tabs .middle:hover{
  background-image:linear-gradient(35deg, rgba(84,255,159,1), rgba(84,255,159,.1)); 
}


#xmal .tabs .middle:hover .top_right{font-weight: 700;}
#xmal .tabs .middle:hover span{font-weight: 400;}

#xmal .tabs .right:hover{
  background-image:linear-gradient(35deg, rgba(0,255,255,1), rgba(0,255,255,.1)); 
}

#xmal .tabs .right:hover .top_right{font-weight: 700;}
#xmal .tabs .right:hover span{font-weight: 400;}

#xmal .top{
  display: flex;
  width: 100%;
  align-items:center;
  overflow: hidden;
  text-align: center;
  justify-content: center;
}
/*#xmal .top_left{flex: 0.3}*/
#xmal .top_right{flex: 1;font-size: 1.2rem;font-weight:400; }
#xmal .bottom{margin-top:20px; font-size: 0.9rem;font-weight: 300 }
#xmal .bottom span{line-height: 2rem}




/* 智慧人社 
************************************/
#zhrs {
  overflow: hidden;
  background: linear-gradient(rgba(0,123,255, 0.65), rgba(29, 205, 89, 0.2)), url(../img/bg_green.png) fixed center center;
  background-size: cover;
  padding: 80px 0;
  height: 100vh;
}

#zhrs .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#zhrs .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #zhrs .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#zhrs .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#zhrs .cta-btn:hover {
  background: #007bff;
  border: 2px solid #007bff;
}




/* Product Featuress Section
--------------------------------*/
#features {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#features .features-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #features .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#features .features-img img {
  max-width: 100%;
}

#features .box {
  margin-bottom: 15px;
  text-align: center;
}

#features .icon {
  margin-bottom: 10px;
}

#features .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#features .icon i:before {
  background: #007bff;
  background: linear-gradient(45deg, #007bff 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#features .title {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 22px;
}

#features .title a {
  color: #111;
}

#features .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

#features .section-description {
  padding-bottom: 10px;
}

/* Product Advanced Featuress Section
--------------------------------*/
#advanced-features {
  overflow: hidden;
}

#advanced-features .features-row {
  padding: 60px 0 30px 0;
}

#advanced-features h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

#advanced-features h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#advanced-features p {
  line-height: 24px;
  color: #777;
  margin-bottom: 30px;
}

#advanced-features i {
  color: #666666;
  font-size: 64px;
  transition: 0.5s;
  float: left;
  padding: 0 15px 0px 0;
  line-height: 1;
}

#advanced-features i:before {
  background: #007bff;
  background: linear-gradient(45deg, #007bff 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#advanced-features .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#advanced-features .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {

  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 50%;
  }
}

@media (max-width: 767px) {

  #advanced-features .advanced-feature-img-right,
  #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  overflow: hidden;
  background: linear-gradient(rgba(0,123,255, 0.65), rgba(29, 205, 89, 0.2)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #007bff;
  border: 2px solid #007bff;
}



/* Clients Section
--------------------------------*/
#clients {
  padding: 30px 0;
  background: #fff;
  overflow: hidden;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

/* Pricing Section
--------------------------------*/
#pricing {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

#pricing h3 {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 28px;
}

#pricing h4 {
  font-size: 46px;
  color: #007bff;
  font-weight: 300;
}

#pricing h4 sup {
  font-size: 20px;
  top: -20px;
}

#pricing h4 span {
  color: #bababa;
  font-size: 20px;
}

#pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

#pricing ul li {
  padding-bottom: 12px;
}

#pricing ul i {
  color: #007bff;
  font-size: 18px;
  padding-right: 4px;
}

#pricing .get-started-btn {
  background: #515e61;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

#pricing .featured {
  border: 2px solid #007bff;
}

#pricing .featured .get-started-btn {
  background: linear-gradient(45deg, #9eb9e0, #007bff);
}

/* Frequently Asked Questions Section
--------------------------------*/
#faq {
  padding: 60px 0;
  overflow: hidden;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .faq-list li {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #007bff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #179ca0;
  transition: 0.3s;
}

#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: black;
}

#faq .faq-list .collapsed:hover {
  color: #007bff;
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/* Our Team Section
--------------------------------*/
#team {
  padding: 80px 0;
  overflow: hidden;
  height: 100vh;
  background: linear-gradient(45deg, rgba(158,185,224, 0.8), rgba(0,123,255, 0.8)), url("../img/hero-bg.jpg") center top no-repeat;
}

#team  .section-title{
  text-align: left;
  background: rgba(255, 250, 250, 0.8);
  color: #0188ff;
  display: inline-block;
  padding: 10px 20px 10px 10px;
  margin-left:10px; 
}

#team .hope{
  display: flex;
  margin: 60px auto;
}

#team .hope span{
  font-size:22px;
  color: rgba(255, 250, 250, 0.5);
  font-weight: bold;
}


#team .hope p{
  margin:30px 10px 0;
  text-align: left;
  line-height: 1.4;
  color: rgba(255, 250, 250, 0.5);
}


#team .hope li:last-child::after{display:none}

#team .hope li{
  transition: all 0.6s;
  cursor: pointer;
  list-style: none;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  text-align: center;
  margin-right:10px;
  position: relative;
  padding: 20px 20px 0 20px;
  flex: 1;
  -webkit-box-flex:1;
  -ms-flex:1;
  height: 360px;
  -webkit-box-sizing:border-radius;
  box-sizing: border-radius; 
}

#team .hope li:hover{
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: scale(1.02);
  background-image:linear-gradient(35deg, rgba(245,245,245,0.4), rgba(245,245,245,.15)); 
}

#team .hope li:hover span{
  color: rgba(255, 250, 250, 0.9);
  font-weight: bolder;
}

#team .hope li:hover p{
  color: rgba(255, 250, 250, 0.9);
  font-weight: bold;
}


#team .hope li:after{
  content: 'or';
  color: rgba(73, 78, 92, 0.5);
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.3);
  position: absolute;
  top: 17px;
  right: -22px;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  background-color: rgba(73, 78, 92, 0.23);
  z-index: 10;
}

#team .btngroup{
  text-align: right;
  margin-right:20px; 
}

#team .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#team .btn-get-started:hover {
  color: #007bff;
  background: #fff;
}


/* 招聘岗位 Section
--------------------------------*/
#rczp {
  padding: 80px 0;
  overflow: hidden;
  min-height: 100vh;
  background: linear-gradient(45deg, rgba(239,245,245, 0.8), rgba(75,245,245, 0.8)), url("../img/hero-bg.jpg") center top no-repeat;
}


#rczp .section-title{
  text-align: left;
}

#rczp .row{
  margin-top:60px;
}

#rczp .box{
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.3);
  cursor: pointer;
  height: 55vh;
  margin-bottom:20px;
  border-radius:10px;
  padding: 20px;
  transition: all 0.6s;  
}

#rczp .zwlist{
  padding-left: 0; 
}

#rczp .listtitle{
  font-weight: bold;
  margin: 8px auto;
}

#rczp .list{
  margin-left: 20px;
}
#rczp .list i{
  font-size: 0.5rem;
  float: left;
  margin-left:-15px; 
  margin-top:2px; 
}


#rczp ul li{
  list-style: none;
  font-size:0.8rem;
  text-align: 1.2rem;
}

#rczp .box:hover{
  transform: scale(1.02);
  background-image:linear-gradient(35deg, rgba(245,245,245,0.4), rgba(245,245,245,.15)); 
}


#rczp .box:hover h3{
  font-weight: bolder;
}





/* Gallery Section
--------------------------------*/
#gallery {
  background: #fff;
  padding: 60px 0 0 0;
  overflow: hidden;
}

#gallery .container-fluid {
  padding: 0px;
}

#gallery .gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all ease-in-out 0.4s;
}

#gallery .gallery-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

#gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#gallery .gallery-item:hover img {
  transform: scale(1.1);
}

#gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
  background: linear-gradient(45deg, rgba(158,185,224, 0.8), rgba(0,123,255, 0.8)), url("../img/contact2.jpg") center top no-repeat;
  background-size: cover;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007bff;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  background: #fff;
  color: #007bff;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #007bff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact .social-links a i {
  line-height: 0;
}

#contact .social-links a:hover {
  background: #007bff;
  color: #fff;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: #007bff;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}
/* 表单输入框背景透明背景透明化 */
.php-email-form .form-control {
  background-color: transparent; /* 背景透明 */
  border: 1px solid rgba(255, 255, 255, 0.5); /* 半透明白色边框 */
  color: #fff; /* 文字颜色（根据背景调整） */
}

/* 输入框占位符样式 */
.php-email-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7); /* 半透明白色占位符 */
  opacity: 1; /* 确保占位符完全显示 */
}

/* 聚焦状态样式 */
.php-email-form .form-control:focus {
  background-color: transparent; /* 聚焦时保持透明 */
  border-color: #fff; /* 聚焦时边框变白 */
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); /* 白色聚焦阴影 */
  color: #fff; /* 聚焦时文字颜色 */
}

/* 文本域特殊处理（保持一致样式） */
.php-email-form textarea.form-control {
  min-height: 120px; /* 确保足够高度 */
  resize: vertical; /* 允许垂直拉伸 */
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #007bff;
}

#contact .php-email-form button[type=submit] {
  background: linear-gradient(45deg, #9eb9e0, #007bff);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
}

#contact .php-email-form button[type=submit]:hover {
  cursor: pointer;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 核心业务
--------------------------------------------------------------*/
#core_business {
  width: 100%;
  background-size: cover;
  background: linear-gradient( rgba(0,123,255, 0.8),rgba(158,185,224, 0.1)), url("../img/datazl.png") center bottom no-repeat;
  position: relative;
  color: white;
  background-size: 100%;
  padding: 60px 0;
  overflow: hidden;
}

#core_business .section-title {
  color: white;
  margin-top: 60px;
}

#core_business .section-description {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  padding-bottom: 40px;
}

#core_business .section-divider {
  background: rgba(255, 255, 255, 0.3);
  display: block;
  width: 60px;
  height: 3px;
  margin: 0 auto;
  margin-bottom: 20px;
}

#core_business .row:first-child {
  margin-top: 60px !important;
}

#core_business .cta-title,
#core_business .cta-text {
  color: white;
}

/* 核心业务区域横向三等分布局 */
.zhmznr {
  display: flex;
  width: 100%;
  gap: 20px; /* 元素间间距 */
  padding: 0 15px; /* 左右留白 */
  box-sizing: border-box;
}

/* 每个内容块占1/3宽度 */
.zhmznr .nrbox {
  flex: 1; /* 三等分分配宽度 */
  min-width: 0; /* 解决内容溢出问题 */
}

/* 调整加号图标容器宽度 */
.zhmznr .addicon {
  flex: 0 0 40px; /* 固定宽度，不伸缩 */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 确保图片自适应 */
.zhmznr .imgbox {
  width: 100%;
  height: auto;
  padding: 0 10px; /* 图片内边距 */
  box-sizing: border-box;
}

.zhmznr .img img {
  width: 100%;
  height: auto;
  object-fit: contain; /* 保持图片比例 */
}

/* 响应式调整 - 小屏幕纵向排列 */
@media (max-width: 768px) {
  .zhmznr {
    flex-direction: column;
    gap: 30px;
  }
  
  .zhmznr .addicon {
    flex: 0 0 30px;
    transform: rotate(90deg); /* 竖排时加号旋转 */
  }
}

/*--------------------------------------------------------------
# 数据平台
--------------------------------------------------------------*/
#data_platform {
  width: 100%;
  background-size: cover;
  background: linear-gradient( rgba(0,123,255, 0.8),rgba(158,185,224, 0.1)), url("../img/datazc.png") center bottom no-repeat;
  position: relative;
  color: white;
  background-size: 100%;
  padding: 60px 0;
  overflow: hidden;
}

#data_platform .section-title {
  color: white;
  margin-top: 60px;
}

#data_platform .section-description {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  padding-bottom: 40px;
}

#data_platform .section-divider {
  background: rgba(255, 255, 255, 0.3);
  display: block;
  width: 60px;
  height: 3px;
  margin-bottom: 20px;
}

#data_platform .cta-title,
#data_platform .cta-text {
  color: white;
}

/*--------------------------------------------------------------
# 数据处理
--------------------------------------------------------------*/
#data_processing {
  width: 100%;
  background-size: cover;
  background: linear-gradient( rgba(0,123,255, 0.8),rgba(158,185,224, 0.1)), url("../img/datacl.png") center bottom no-repeat;
  position: relative;
  color: white;
  background-size: 100%;
  padding: 60px 0;
  overflow: hidden;
}

#data_processing .section-title {
  color: white;
  margin-top: 60px;
}

#data_processing .section-description {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  padding-bottom: 40px;
}

#data_processing .section-divider {
  background: rgba(255, 255, 255, 0.3);
  display: block;
  width: 60px;
  height: 3px;
  /*margin: 0 auto;*/
  margin-bottom: 20px;
}

#data_processing .cta-title,
#data_processing .cta-text {
  color: white;
}

/*--------------------------------------------------------------
# 投资赋能
--------------------------------------------------------------*/
#investment {
  width: 100%;
  background-size: cover;
  background: linear-gradient( rgba(0,123,255, 0.8),rgba(158,185,224, 0.1)), url("../img/tz.png") center bottom no-repeat;
  position: relative;
  color: white;
  background-size: 100%;
  padding: 60px 0;
  overflow: hidden;
}

#investment .section-title {
  color: white;
  margin-top: 60px;
}

#investment .section-description {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  padding-bottom: 40px;
}

#investment .section-divider {
  background: rgba(255, 255, 255, 0.3);
  display: block;
  width: 60px;
  height: 3px;
  margin: 0 auto;
  margin-bottom: 20px;
}

#investment .cta-title,
#investment .cta-text {
  color: white;
}

/*--------------------------------------------------------------
# 公共样式补充
--------------------------------------------------------------*/
.zhmznr .nrbox h4.title a {
  color: white;
}

.hope li span {
  color: #007bff;
}

.flex-item {
  width: 100%; /* 确保容器占满可用宽度 */
  max-width: 800px; /* 限制最大宽度，避免内容过宽 */
  padding: 0 15px; /* 左右留白，避免内容贴边 */
}

/* 标题左对齐 */
.flex-item .section-title {
  text-align: left;
  margin-left: 0; /* 移除可能的自动外边距 */
}

/* 分隔线左对齐 */
.flex-item .section-divider {
  margin-left: 0; /* 取消居中的自动外边距 */
}

.flex-item ul li {
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
  position: relative;
  /*padding-left: 20px;*/
  margin-left: 0;
  margin-bottom: 0.8em; /* 增加列表项间距 */
  line-height: 1.6; /* 优化行高，提升可读性 */
}

.flex-item ul li:before {
  /*content: '•';*/
  /*position: absolute;*/
  /*left: 0;*/
  color: #007bff;
  font-weight: bold;
}

.description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}

/* 页面高度设置 */
.page1, .page2, .page3, .page4, .page5, .page6, .page7, .page8, .page9, .page10 {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page11{
  height:100px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #333;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  color: #888;
}

#footer .footer-links a {
  color: #666;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #007bff;
}