/* 全局字体 */
body {
  font-family: "Microsoft YaHei", "微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  background: #ffffff;
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

/* 科技感背景网格 - 白色背景下调淡 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(74, 144, 226, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 226, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* 导航栏固定 - 初始透明 */
header,
.header,
nav,
.navbar,
.u-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.3s ease;
  background: transparent !important;
  box-shadow: none !important;
}

/* 导航栏滚动时的白色背景效果 */
header.scrolled,
.header.scrolled,
nav.scrolled,
.navbar.scrolled,
.u-header.scrolled {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
}

/* 导航栏链接字体样式 - 与招聘模板一致 */
header a,
.header a,
nav a,
.navbar a,
.u-header a,
.u-header .nav-link,
.navbar .nav-link,
header .nav-link {
  font-size: 16px !important;
  font-weight: 500 !important;
  padding: 10px 25px !important;
  margin-right: 5px !important;
}

/* 导航栏初始透明状态下的文字颜色 - 确保在轮播图上可见 */
header:not(.scrolled) a,
.header:not(.scrolled) a,
nav:not(.scrolled) a,
.navbar:not(.scrolled) a,
.u-header:not(.scrolled) a,
.u-header:not(.scrolled) .nav-link,
.navbar:not(.scrolled) .nav-link,
header:not(.scrolled) .nav-link {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 导航栏滚动后恢复默认文字颜色 */
header.scrolled a,
.header.scrolled a,
nav.scrolled a,
.navbar.scrolled a,
.u-header.scrolled a,
.u-header.scrolled .nav-link,
.navbar.scrolled .nav-link,
header.scrolled .nav-link {
  color: inherit !important;
  text-shadow: none !important;
}

/* 导航栏logo在透明状态下的可见性 */
header:not(.scrolled) img,
.header:not(.scrolled) img,
nav:not(.scrolled) img,
.navbar:not(.scrolled) img,
.u-header:not(.scrolled) img {
  filter: brightness(1.2) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* 导航栏滚动后logo恢复正常 */
header.scrolled img,
.header.scrolled img,
nav.scrolled img,
.navbar.scrolled img,
.u-header.scrolled img {
  filter: none;
}

/* 导航栏鼠标悬停效果 - 背景变白，文字恢复默认颜色 */
header:hover:not(.scrolled),
.header:hover:not(.scrolled),
nav:hover:not(.scrolled),
.navbar:hover:not(.scrolled),
.u-header:hover:not(.scrolled) {
  background: #ffffff !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* 导航栏悬停时文字恢复默认颜色 */
header:hover:not(.scrolled) a,
.header:hover:not(.scrolled) a,
nav:hover:not(.scrolled) a,
.navbar:hover:not(.scrolled) a,
.u-header:hover:not(.scrolled) a,
.u-header:hover:not(.scrolled) .nav-link,
.navbar:hover:not(.scrolled) .nav-link,
header:hover:not(.scrolled) .nav-link {
  color: inherit !important;
  text-shadow: none !important;
}

/* 导航栏悬停时logo恢复正常 */
header:hover:not(.scrolled) img,
.header:hover:not(.scrolled) img,
nav:hover:not(.scrolled) img,
.navbar:hover:not(.scrolled) img,
.u-header:hover:not(.scrolled) img {
  filter: none !important;
}

/* 为body添加顶部内边距，防止内容被导航栏遮挡 - 首页轮播图到顶时不需要 */
body {
  padding-top: 0;
}

/* 首页轮播图全屏到顶效果 */
section:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.ms-static-layers-template {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}

.master-slider {
  font-family: "Microsoft YaHei", sans-serif;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
}

#masterslider {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* 轮播图景深效果 */
/* .master-slider .ms-slide {
  position: relative;
  transform-style: preserve-3d;
} */

.master-slider .ms-slide img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
  will-change: transform;
}

.master-slider .ms-slide.active img {
  transform: scale(1);
}

/* 轮播图文字层 */
.slide-content {
  position: absolute;
  bottom: 15%;
  left: 10%;
  right: 10%;
  z-index: 20;
  transform: translateZ(50px);
  animation: slideInUp 1s ease-out;
  pointer-events: none;
}

.slide-title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 25px 0;
  text-shadow: 
    0 3px 25px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 0, 0, 0.4),
    2px 2px 0 rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  letter-spacing: 3px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  padding: 15px 25px;
  border-left: 4px solid rgba(74, 144, 226, 0.8);
  
}

.slide-description {
  font-size: 22px;
  color: #ffffff;
  margin: 0;
  text-shadow: 
    0 2px 20px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 0, 0, 0.4),
    1px 1px 0 rgba(0, 0, 0, 0.3);
  line-height: 1.9;
  letter-spacing: 1.5px;
  max-width: 85%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, transparent 100%);
  padding: 15px 25px;

}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px) translateZ(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateZ(50px);
  }
}

/* 公司简介区域 */
.company-intro-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.company-intro-container {
  max-width: 95%;
  padding: 0 80px;
  width: 100%;
  margin: 0 auto;
}

.company-intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.02) 0%, transparent 50%);
  opacity: 1;
  animation: pulse 8s ease-in-out infinite;
}

.company-intro-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.company-intro-title {
  margin: 0 0 30px 0;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  display: flex;
  align-items: baseline;
  gap: 20px;
  position: relative;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.company-intro-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.company-intro-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.company-title-en {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #4a90e2 0%, #6fb3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

.company-title-en::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2, transparent);
  animation: shimmer 2s infinite;
}

.company-title-cn {
  font-size: 32px;
  color: #333333;
  text-shadow: none;
}

.company-intro-desc {
  margin: 0 0 30px 0;
  font-size: 16px;
  color: #555555;
  line-height: 1.9;
  font-weight: 400;
  text-shadow: none;
  flex: 1;
}

.company-stats-container {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 0;
  width: 100%;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 266px;
  padding: 28px 25px;
  background: rgba(74, 144, 226, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.08);
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
}

.stat-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(52%) sepia(90%) saturate(2000%) hue-rotate(195deg) brightness(105%) contrast(95%);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background: rgba(74, 144, 226, 0.12);
  border: none;
  transform: scale(1.05);
}

.stat-item:hover .stat-icon img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(90%) saturate(2000%) hue-rotate(195deg) brightness(105%) contrast(95%);
}

.stat-info {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.2), transparent);
  transition: left 0.5s;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 144, 226, 0.4);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
  background: rgba(74, 144, 226, 0.12);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #4a90e2 0%, #6fb3ff 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1.2;
  filter: drop-shadow(0 2px 10px rgba(74, 144, 226, 0.5));
  white-space: nowrap;
}

.stat-label {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
}

.company-intro-image-wrapper {
  flex: 0 0 550px;
  width: 550px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  align-self: stretch;
  height: 100%;
  margin-left: 120px;
  position: relative;
}

.company-intro-image-wrapper::before {
  display: none;
}

.company-intro-image-wrapper:hover::before {
  display: none;
}

.company-intro-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  display: block;
  transition: none;
  border: none;
}

.company-intro-image-wrapper img:hover {
  transform: none;
  box-shadow: none;
}

/* 内容区域样式 */
.home-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.home-section-gray {
  background: #f9f9f9;
  padding: 80px 0;
  position: relative;
}

/* 新闻中心区域 */
.news-center-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.news-center-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.news-center-title-area {
  flex: 1;
  min-width: 300px;
}

.news-center-title {
  margin: 0 0 30px 0;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  display: flex;
  align-items: baseline;
  gap: 20px;
  position: relative;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.news-title-en {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #4a90e2 0%, #6fb3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

.news-title-en::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2, transparent);
  animation: shimmer 2s infinite;
}

.news-title-cn {
  font-size: 32px;
  color: #333333;
  text-shadow: none;
}

.news-center-subtitle {
  margin: 0;
  font-size: 16px;
  color: #666666;
  font-weight: 400;
}

.btn-view-more {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, #4a90e2 0%, #6fb3ff 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s ease;
  margin-top: 10px;
  border: 1px solid rgba(74, 144, 226, 0.5);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-view-more::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-view-more:hover::before {
  width: 300px;
  height: 300px;
}

.btn-view-more:hover {
  background: linear-gradient(135deg, #6fb3ff 0%, #4a90e2 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
  border-color: rgba(111, 179, 255, 0.8);
}

.btn-view-more span {
  position: relative;
  z-index: 1;
}

/* 新闻卡片容器 */
.news-cards-container {
  margin-top: 20px;
}

/* 新闻轮播容器 */
.news-carousel-wrapper {
  position: relative;
  margin: 0;
  max-width: 100%;
  padding-left: 0;
}

.news-carousel-container {
  overflow: hidden;
  position: relative;
  margin: 0;
  padding-left: 0;
}

.news-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
  align-items: stretch;
  padding-left: 0;
}

/* 新闻轮播中的卡片样式 */
.news-carousel-track .news-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  width: calc(33.333% - 20px);
  min-height: 550px;
  align-self: stretch;
}

/* 通用新闻卡片样式 */
.news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 40px;
  height: 100%;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2, #6fb3ff, #00d4ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.news-card:hover::before {
  transform: scaleX(1);
}

.news-card:hover {
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2), 0 0 15px rgba(74, 144, 226, 0.1);
  transform: translateY(-8px);
  border-color: rgba(74, 144, 226, 0.5);
  background: #ffffff;
}

.news-card-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.news-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.news-card:hover .news-card-image::after {
  opacity: 1;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.news-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 新闻轮播中的内容区域 */
.news-carousel-track .news-card-content {
  min-height: 290px;
}

.news-card-date {
  font-size: 14px;
  color: #999999;
  margin-bottom: 15px;
  font-weight: 500;
}

.news-card-title {
  margin: 0 0 18px 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  flex: 1;
}

/* 新闻轮播中的标题样式 */
.news-carousel-track .news-card-title {
  min-height: 66px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card-title a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.news-card-title a:hover {
  color: #4a90e2;
  text-decoration: none;
  text-shadow: none;
}

.news-card-summary {
  margin: 0 0 24px 0;
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card-link {
  display: inline-block;
  color: #6fb3ff;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  position: relative;
}

.news-card-link::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.news-card-link:hover {
  color: #4a90e2;
  text-decoration: none;
  padding-left: 5px;
}

.news-card-link:hover::after {
  transform: translateX(5px);
}

/* 产品中心区域 */
.product-center-section {
  padding: 80px 0;
  background: #f9f9f9;
  position: relative;
}

.product-center-section .container-custom {
  padding-left: 40px;
  padding-right: 40px;
}

.product-center-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.product-center-title-area {
  flex: 1;
  min-width: 300px;
}

.product-center-title {
  margin: 0 0 30px 0;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  display: flex;
  align-items: baseline;
  gap: 20px;
  position: relative;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.product-title-en {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #4a90e2 0%, #6fb3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

.product-title-en::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2, transparent);
  animation: shimmer 2s infinite;
}

.product-title-cn {
  font-size: 32px;
  color: #333333;
  text-shadow: none;
}

.product-center-subtitle {
  margin: 0;
  font-size: 16px;
  color: #666666;
  font-weight: 400;
}

/* 产品模块按钮 */
.product-module-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  /* justify-content: space-between; 将按钮均匀分布 */
  justify-content: flex-start;
  width: 100%;
  padding-left: 0;
}

.product-module-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #67abf8;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 0 0 1px rgba(39, 155, 221, 0.4),
    0 0 12px rgba(39, 155, 221, 0.5);
  cursor: pointer;
  white-space: nowrap;
}

.product-module-btn:hover,
.product-module-btn.active {
  background-color: #67abf8;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 0 18px rgba(39, 155, 221, 0.8);
}

.product-module-btn:active {
  transform: translateY(0);
}

/* 产品轮播容器 */
.product-carousel-wrapper {
  position: relative;
  margin: 0;
  max-width: 100%;
  padding-left: 0;
}

.product-carousel-container {
  overflow: hidden;
  position: relative;
  margin: 0;
  padding-left: 0;
}

.product-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 40px;
  align-items: stretch;
  padding-left: 0;
}

.product-card {
  flex: 0 0 calc(25% - 22.5px);
  min-width: calc(25% - 22.5px);
  width: auto;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2, #6fb3ff, #00d4ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  z-index: 1;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2), 0 0 15px rgba(74, 144, 226, 0.1);
  transform: translateY(-8px);
  border-color: rgba(74, 144, 226, 0.5);
  background: #ffffff;
}

.product-card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  position: relative;
}

.product-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-card-image::after {
  opacity: 1;
}

.product-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* 产品卡片标题 */
.product-card-title {
  margin: 0 0 25px 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  min-height: 72px;
  max-height: 72px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.product-card-title a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.product-card-title a:hover {
  color: #4a90e2;
  text-decoration: none;
  text-shadow: none;
}

.product-card-link {
  display: inline-block;
  padding: 16px 30px;
  background: linear-gradient(135deg, #4a90e2 0%, #6fb3ff 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.4s ease;
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(74, 144, 226, 0.5);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.product-card-link:hover::before {
  width: 300px;
  height: 300px;
}

.product-card-link:hover {
  background: linear-gradient(135deg, #6fb3ff 0%, #4a90e2 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
}

.product-card-link span {
  position: relative;
  z-index: 1;
}

/* 产品轮播导航按钮 */
.product-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a90e2 0%, #6fb3ff 100%);
  color: #fff;
  border: 2px solid rgba(74, 144, 226, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.4s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.product-carousel-nav:hover:not(:disabled) {
  background-color: #357abd;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.product-carousel-nav:active:not(:disabled) {
  transform: translateY(-50%) scale(0.95);
}

.product-carousel-nav:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}

.product-carousel-prev {
  left: -60px;
}

.product-carousel-next {
  right: -60px;
}

.product-carousel-nav i {
  line-height: 1;
}

/* 新闻轮播导航按钮 */
.news-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a90e2 0%, #6fb3ff 100%);
  color: #fff;
  border: 2px solid rgba(74, 144, 226, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.4s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.news-carousel-nav:hover:not(:disabled) {
  background-color: #357abd;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.news-carousel-nav:active:not(:disabled) {
  transform: translateY(-50%) scale(0.95);
}

.news-carousel-nav:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}

.news-carousel-prev {
  left: -60px;
}

.news-carousel-next {
  right: -60px;
}

.news-carousel-nav i {
  line-height: 1;
}

/* 卡片样式优化 */
.card {
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2, #6fb3ff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
  transform: translateY(-5px);
  border-color: rgba(74, 144, 226, 0.5);
  background: #ffffff;
}

.card-header {
  background: linear-gradient(135deg, #4a90e2 0%, #6fb3ff 100%);
  color: #fff;
  padding: 20px 28px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
  position: relative;
}

.card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.card-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 3s infinite;
  transform: translateX(-100%);
}

.card-header i {
  margin-right: 8px;
  font-size: 20px;
}

.card-header a {
  color: #fff;
  text-decoration: none;
}

.card-header a:hover {
  color: #f0f0f0;
  text-decoration: none;
}

.card-block {
  padding: 28px;
  background: #ffffff;
}

/* 新闻列表样式 */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(74, 144, 226, 0.15);
  transition: all 0.3s ease;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list li:hover {
  background: rgba(74, 144, 226, 0.05);
  padding-left: 12px;
  border-left: 3px solid #4a90e2;
}

.news-list a {
  color: #333333;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.news-list a:hover {
  color: #4a90e2;
  text-decoration: none;
}

.news-list i {
  color: #4a90e2;
  margin-right: 10px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.news-list li:hover i {
  color: #6fb3ff;
  transform: translateX(3px);
}

.news-date {
  color: #999999;
  font-size: 13px;
  white-space: nowrap;
  margin-left: 10px;
}

/* 特色新闻项 */
.news-featured {
  padding: 20px 0;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 20px;
}

.news-featured img {
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-featured h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.news-featured h4 a {
  color: #333;
  text-decoration: none;
}

.news-featured h4 a:hover {
  color: #667eea;
}

.news-featured p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* 分隔线 */
.u-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(74, 144, 226, 0.3), transparent);
  margin: 40px 0;
  position: relative;
}

.u-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2, #6fb3ff);
  border-radius: 2px;
}

/* 容器样式 */
.container-custom {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* 企业链接样式 */
.company-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.company-link-item {
  flex: 0 0 calc(25% - 22.5px);
  min-width: 350px;
  max-width: 400px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 20px;
  padding: 0;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 20px rgba(74, 144, 226, 0.1),
    0 0 0 1px rgba(74, 144, 226, 0.1);
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  align-items: stretch;
}

.company-link-item.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.company-link-item {
  background-image: 
    linear-gradient(135deg, transparent 0%, rgba(74, 144, 226, 0.03) 100%),
    linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  position: relative;
}

/* 顶部渐变条 */
.company-link-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2, #6fb3ff, #00d4ff, #4a90e2);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
  border-radius: 20px 20px 0 0;
}

.company-link-item:hover::before {
  opacity: 1;
  animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* 光晕效果 */
.company-link-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(74, 144, 226, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.company-link-item:hover::after {
  opacity: 1;
}

/* 扫光效果 - 通过内部元素实现 */
.company-link-item .logo-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 3;
  pointer-events: none;
}

.company-link-item:hover .logo-container::before {
  left: 100%;
}

.company-link-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(74, 144, 226, 0.25),
    0 0 30px rgba(74, 144, 226, 0.15),
    inset 0 0 20px rgba(111, 179, 255, 0.1);
  border: none;
  background: linear-gradient(135deg, #ffffff 0%, #f0f5ff 100%);
}

.company-link-item img,
.company-logo-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%) brightness(0.95);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.company-link-item:hover img,
.company-link-item:hover .company-logo-img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1.1);
  padding: 25px;
}

.logo-container {
  background: transparent;
  border-radius: 0;
  padding: 0;
  transition: all 0.5s ease;
  border: none;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  overflow: hidden;
}

.logo-container a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-link-item:hover .logo-container {
  background: transparent;
  border: none;
  box-shadow: none;
}

.company-item {
  transition: transform 0.3s ease;
  border: 1px solid #eee;
  border-radius: 8px;
  background: white;
}

.company-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.company-item a:hover {
  text-decoration: none;
}

/* 标题样式 */
.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* 背景区域 */
.content-bg-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 50px 0;
  margin: 40px 0;
}

.content-bg-section-white {
  background: #fff;
  padding: 50px 0;
}

/* MasterSlider 样式 */
.ms-layer.bold-title {
  font-weight: 900;
  font-size: 26pt;
  color: #222;
  margin: 0;
}

.ms-layer.light-title {
  margin: 0;
  font-weight: 300;
  font-size: 38pt;
  text-transform: uppercase;
  color: #f1f1f1;
  letter-spacing: -3px;
}

.ms-layer.normal-desc {
  margin: 6px 0;
  font-size: 13px;
  width: 37%;
}

.ms-layer.text-box {
  width: 41%;
  height: 36%;
  background-color: rgba(0, 0, 0, 0.2);
}

.ms-layer.normal-title {
  margin: 0;
}

.slide-2 {
  font-family: "Microsoft YaHei", sans-serif;
  /* position: relative; */
}

.slide-2 .ms-anim-layers {
  background-color: transparent;
}

.slide-2 .light-title {
  font-size: 40pt;
  color: #fff;
}

.slide-2 .normal-title {
  color: #fff;
}

/* 轮播图景深效果增强 */
.ms-static-layers-template {
  position: relative;
  perspective: 1000px;
}

#masterslider {
  position: relative;
  transform-style: preserve-3d;
}

/* #masterslider .ms-slide {
  position: relative;
  transform-style: preserve-3d;
  overflow: hidden;
} */

#masterslider .ms-slide img {
  transform: scale(1.15) translateZ(-50px);
  transition: transform 1s ease-out;
  will-change: transform;
  filter: brightness(1.1) contrast(1.05);
}

#masterslider .ms-slide.active img,
#masterslider .ms-slide.ms-slide-active img {
  transform: scale(1) translateZ(0);
  filter: brightness(1) contrast(1);
}

.ms-slide-layers {
  overflow: visible !important;
}

.slide-3 {
  font-family: "Microsoft YaHei", sans-serif;
}

.slide-3 .light-title {
  font-size: 40pt;
  color: #f1f1f1;
}

.slide-3 .bold-title {
  font-size: 45pt;
}

.slide-3 .normal-title {
  font-size: 20pt;
  color: #f1f1f1;
}

.slide-4 .light-title {
  font-size: 50pt;
}

.slide-4 .normal-title {
  color: #758e8e;
  font-size: 17pt;
  font-weight: 300;
}

.slide-5 .text-box {
  width: 55%;
  height: 21%;
  background: rgba(0, 0, 0, 0.85);
}

.slide-5 .bold-title {
  color: white;
  font-size: 38pt;
}

.slide-5 .normal-title {
  color: white;
}

.date {
  font-size: 13px;
  color: #999;
}

/* 动画效果 */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* 滚动动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-card,
.product-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* 主内容区域z-index调整 */
main {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #4a90e2, #6fb3ff);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #6fb3ff, #4a90e2);
}

/* 文字选择颜色 */
::selection {
  background: rgba(74, 144, 226, 0.3);
  color: #fff;
}

::-moz-selection {
  background: rgba(74, 144, 226, 0.3);
  color: #fff;
}

/* 响应式优化 */
@media (max-width: 991px) {
  body::before {
    background-size: 30px 30px;
  }
  
  .product-card {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }

  .product-module-buttons {
    gap: 10px;
    margin-bottom: 30px;
  }

  .product-module-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .product-carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .product-carousel-container {
    margin: 0;
  }
  
  .product-carousel-prev {
    left: -50px;
  }
  
  .product-carousel-next {
    right: -50px;
  }
  
  .product-carousel-track {
    gap: 30px;
  }

  /* 新闻轮播中的卡片响应式样式 */
  .news-carousel-track .news-card {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }

  .news-carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .news-carousel-container {
    margin: 0;
  }
  
  .news-carousel-prev {
    left: -50px;
  }
  
  .news-carousel-next {
    right: -50px;
  }
  
  .news-carousel-track {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .card-header {
    font-size: 16px;
    padding: 15px 20px;
  }
  
  .card-block {
    padding: 20px;
  }
  
  .home-section,
  .home-section-gray {
    padding: 30px 0;
  }

  /* 轮播图响应式 */
  .slide-content {
    bottom: 10%;
    left: 5%;
    right: 5%;
  }

  .slide-title {
    font-size: 28px;
    padding: 12px 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .slide-description {
    font-size: 14px;
    padding: 12px 18px;
    max-width: 95%;
    letter-spacing: 0.5px;
  }

  #masterslider .ms-slide img {
    transform: scale(1.1) translateZ(-30px);
  }

  .news-center-section,
  .product-center-section {
    padding: 40px 0;
  }

  .news-center-header,
  .product-center-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-center-title,
  .product-center-title {
    font-size: 28px;
    margin-bottom: 20px;
    white-space: normal;
    flex-wrap: wrap;
  }

  .news-title-en,
  .product-title-en {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .news-title-cn,
  .product-title-cn {
    font-size: 28px;
  }

  .news-center-subtitle,
  .product-center-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .btn-view-more {
    width: 100%;
    text-align: center;
    margin-top: 0;
  }

  .news-card-image {
    height: 200px;
  }

  .news-card-content {
    padding: 15px;
  }

  .news-card-title {
    font-size: 16px;
  }

  .news-card-summary {
    font-size: 13px;
  }

  /* 新闻轮播中的卡片响应式样式 */
  .news-carousel-track .news-card {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }

  .news-carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .news-carousel-container {
    margin: 0;
  }
  
  .news-carousel-prev {
    left: -50px;
  }
  
  .news-carousel-next {
    right: -50px;
  }
  
  .news-carousel-track {
    gap: 20px;
  }

  .product-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .product-card-image {
    height: 260px;
    padding: 15px;
  }

  .product-card-content {
    padding: 20px;
  }

  .product-card-title {
    font-size: 15px;
    min-height: auto;
  }

  .product-module-buttons {
    gap: 8px;
    margin-bottom: 25px;
  }

  .product-module-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .product-carousel-container {
    margin: 0;
  }

  .product-carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .product-carousel-prev {
    left: -40px;
  }
  
  .product-carousel-next {
    right: -40px;
  }
  
  .product-carousel-track {
    gap: 20px;
  }

  /* 新闻轮播中的卡片响应式样式 */
  .news-carousel-track .news-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .news-carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .news-carousel-prev {
    left: -40px;
  }
  
  .news-carousel-next {
    right: -40px;
  }
  
  .news-carousel-track {
    gap: 15px;
  }
  
  .news-featured .row {
    flex-direction: column;
  }
  
  .news-featured img {
    margin-bottom: 15px;
  }
  
  .company-links {
    gap: 20px;
  }
  
  .company-link-item {
    flex: 0 0 calc(50% - 10px);
    min-width: 300px;
    max-width: 100%;
  }
  
  .logo-container {
    min-height: 180px;
  }

  .company-intro-container {
    padding: 0 20px;
  }

  .company-intro-section {
    padding: 40px 0;
    min-height: auto;
  }

  .company-intro-title {
    font-size: 28px;
    flex-wrap: wrap;
    white-space: normal;
    margin-bottom: 20px;
  }

  .company-title-en {
    font-size: 18px;
  }

  .company-title-cn {
    font-size: 28px;
  }

  .company-intro-content {
    flex-direction: column;
    gap: 30px;
  }

  .company-intro-left {
    width: 100%;
  }

  .company-intro-desc {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .company-stats-container {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
    padding: 15px 12px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-icon img {
    width: 24px;
    height: 24px;
  }

  .stat-info {
    text-align: center;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }
  
  body {
    padding-top: 60px;
  }

  .company-intro-image-wrapper {
    flex: none;
    width: 100%;
    height: 300px;
    max-width: 100%;
  }
}