/* 文化理念相关样式 */
.serviceNumberImg {
  display: flex;
  /* justify-content: space-around; */
  justify-content: center;
  align-items: center;
  margin: 40px 0 60px 0;
}
.serviceNumberImg img {
  width: 20%;
  height: auto;
  margin-right: 30px;
}

/* 证书轮播图容器 */
#certificateCarousel,
#certificateCarousel .carousel-inner {
  overflow: hidden;
}

.certificate-grid {
  /* 给容器增加上下内边距，为图片放大留出物理空间 */
  padding: 30px 0 40px 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: visible;
}

/* 单个证书包装盒 */
.cert-item {
  flex: 0 0 200px; /* 固定宽度，可根据需要调整 */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center center;
  position: relative;
  z-index: 1;
}

.cert-item img {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: all 0.4s ease;
}

/* 🌟 核心：鼠标放上去放大 */
.cert-item:hover {
  transform: scale(1.25);
  z-index: 999; /* 确保放大时压在左右按钮和其他图片上方 */
}

.cert-item:hover img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: #f39a40; /* 放大时带一点主题色边框 */
}

/* 轮播图标题 */
.cert-bottom-title {
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 50px;
  color: #333;
}

/* 按钮位置修正 */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
}

.culture-page-font {
  font-family: "Noto Serif SC", serif !important;
}
.serviceTitleAndI {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

/* 1. 愿景板块：淡黄到淡蓝渐变 */
.vision-section-new {
  /* 渐变背景：底部淡黄，顶部淡蓝 */
  background: linear-gradient(to top, #f7f1eb 0%, #f0f7ff 100%);
  border-radius: 15px;
  margin: 40px 0 60px 0;
  overflow: hidden;
  padding: 30px;
}

.vision-title-heavy {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
}

.vision-list-tight {
  list-style: none;
  padding: 0;
}

.vision-list-tight li {
  font-size: 18px;
  color: #333;
  margin-bottom: 0px;
  padding-left: 20px;
  position: relative;
}

.vision-list-tight li::before {
  content: "•";
  color: #999;
  position: absolute;
  left: 0;
}

.vision-stats-tight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.stat-mini-card {
  background: #fff;
  padding: 13px;
  border-radius: 12px;
  text-align: center;
}

.stat-vblue {
  color: #2563eb;
  font-size: 28px;
  font-weight: 900;
}
.stat-vorange {
  color: #f97316;
  font-size: 28px;
  font-weight: 900;
}
.stat-vlightblue {
  color: #0ea5e9;
  font-size: 28px;
  font-weight: 900;
}
.stat-vdeeporange {
  color: #ea580c;
  font-size: 28px;
  font-weight: 900;
}

.stat-mini-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* 2. 核心价值板块 */
.values-section-new {
  background-color: #f8fafc; /* 淡灰蓝色背景 */
  padding: 60px 30px;
  border-radius: 20px;
  margin-bottom: 80px;
}

.heavy-title {
  font-size: 38px;
  font-weight: 900;
  color: #222;
}

.sub-title-light {
  color: #666;
  font-size: 18px;
}

.value-card-tight {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}

.value-header-group {
  display: flex;
  align-items: center; /* 图标与文字垂直居中 */
  margin-bottom: 20px;
}

.v-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.v-icon-circle i {
  color: #fff;
  font-size: 22px;
}
.blue-v {
  background: #2563eb;
}
.green-v {
  background: #63a103;
}
.orange-v {
  background: #f97316;
}

.v-title-text {
  text-align: left;
} /* 标题与描述左对齐 */
.v-title-text h3 {
  font-size: 22px;
  font-weight: 900;
  padding: 0;
  margin: 0;
}
.v-title-text p {
  font-size: 14px;
  color: #444;
  margin: 1px 0 0 0;
  font-weight: bold;
}

.value-detail-box {
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  color: #555;
  text-align: left; /* 详细描述文字居中 */
  line-height: 1.6;
}

/* 3. 我们的承诺：正方形卡片 */
.promise-section-new {
  margin-bottom: 80px;
}

.promise-square-flex {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.p-sq-card {
  width: 190px;
  height: 190px; /* 强制正方形 */
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 15px;
}

.p-sq-card i {
  font-size: 23px;
}
.p-sq-card h4 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 5px;
}
.p-sq-card h5 {
  font-size: 19px;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 11px;
  margin-bottom: 15px;
  color: #fff;
}
.p-sq-card p {
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.9;
  margin: 0;
}

.p-bg-blue {
  background-color: #2563eb;
}
.p-bg-dark {
  background-color: #334155;
}
.p-bg-green {
  background-color: #10b981;
}
.p-bg-purple {
  background-color: #8b5cf6;
}
.p-bg-orange {
  background-color: #f97316;
}
.orange-bg {
  background-color: #fff7ed;
}
.green-bg {
  background-color: #f1fdde;
}
.blue-bg {
  background-color: #f1f6ff;
}

/* 软著整体容器 */
.software-copyright-section {
  padding: 30px 0;
  background-color: #F9F9F9;
  font-family: "Noto Serif SC", serif;
}

/* 标题样式 */
.rz-header {
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.rz-main-title {
  margin-bottom: 40px;
  font-size: 24px;
  color: #666;
  letter-spacing: 1px;
}

.rz-main-title span {
  color: #333;
  font-weight: 900 !important;
}

/* 标题下方的橙色小圆点 */
.rz-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.rz-dots .dot {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
}

.rz-dots .dot.active {
  background-color: #f39a40;
  width: 12px;
  height: 12px;
}

.rz-grid {
  padding: 40px 0;
  background-color: #F9F9F9;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start; /* 顶部对齐 */
  
}

.rz-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* 让所有卡片等高 */
}

.rz-img-box {
  /* 关键：设置一个统一的固定高度（根据你的图片比例，建议 220px-260px） */
  height: 240px;
  width: 100%;
  display: flex;
  align-items: center; /* 垂直居中 */
  justify-content: center; /* 水平居中 */
  background-color: #f9f9f9; /* 给背景色，防止长短图边缘留白太难看 */
  border-radius: 4px;
  overflow: visible !important; /* 软著不是轮播图，可以放心地开启 visible */
}

.rz-img-box img {
  /* 关键：高度撑满容器，宽度自适应，且不裁切内容 */
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.rz-card-title {
  /* 给文字标题设置一个最小高度，防止一行和两行标题导致不对齐 */
  min-height: 50px;
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 🌟 鼠标悬停效果：卡片浮起，图片放大 */
.rz-card:hover {
  /* transform: translateY(-10px); */
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
  border-color: #f39a40;
}

.rz-card:hover .rz-img-box img {
  transform: scale(2.0);
}
