
.mianBanner{
   position: relative;
}

.zhuanQ01{ position: absolute; width:8% !important; right:31%;top: 32%;}
.zhuanQ02{
  position: absolute;
  width:5.5% !important;
  right: 18.4%;
    top: 40%;
}

.content {
  margin: 0 250px;
  /* margin-top: 0.96rem; */
}

.index_top_banner {
    width: 100%;
    height: auto;
}

.flex_row {
    display: flex;
    flex-direction: row;
}

.flex_column {
    display: flex;
    flex-direction: column;
}

.flex_wrap {
    flex-wrap: wrap;
}

.flex_grow_1 {
    flex-grow: 1;
}

.flex_gap_35 {
    gap: 35px;
}

.flex_gap_40 {
    gap: 40px;
}

.flex_gap_70 {
    gap: 70px;
}

.flex_jc_center {
    justify-content: center;
}

.flex_jc_sb {
    justify-content: space-between;
}

.flex_jc_sa {
    justify-content: space-around;
}

.flex_ai_center {
    align-items: center;
}

.margin_0_auto {
    margin: 0 auto;
}

.margin_h_240 {
    margin-left: 240px;
    margin-right: 240px;
}
.margin_h_277 {
    margin-left: 277px;
    margin-right: 277px;
}

/* 基础重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.margin2{
    margin:0 8%; /* 水平居中 */
}


/* 统计数据容器 */
.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 8%;
  margin: 0 auto;
  flex-wrap: wrap; /* 小屏幕自动换行 */
  gap: 10px; /* 项目之间的间距 */
}

/* 每个统计项 */
.stats-container .item {
  display: flex;
  align-items: center;
  gap: 10px; /* 图标与文字的间距 */
  flex: 1;
  justify-content: center;
  cursor: pointer; /* 鼠标小手样式 */
}

/* 图标样式 */
.stats-container .item img {
  width: 90px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease; /* 添加过渡动画 */
}

/* 鼠标移入item时图片放大 */
.stats-container .item:hover img {
  transform: scale(1.2); /* 放大到1.2倍 */
}

/* 文字容器 */
.stats-container .item > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* 数字样式（匹配图片蓝色） */
.stats-container .number {
  font-size: 35px;
  font-weight: 700;
  color: #0066ff;
  line-height: 1;
}

/* 标签文字样式 */
.stats-container .label {
  font-size: 18px;
  color: #333;
  line-height: 1;
}

.content_title {
  font-weight: bold;
  font-size: 50px;
  color: #000000;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  align-items: center;
  line-height: 70px;
  margin: 20px 8% 70px 8%;
}


.content .content_title_desc {
  font-size: 23px;
  color: #606266;
  text-align: center;
  margin-bottom: 70px;
  margin-top:-90px;
}

.content_title_desc span{
    font-size: 28px;
    color: #015CFF;
    font-weight: bold;
}

/* 卡片容器：两行四列网格布局，完全匹配1920rem基准 */
.service-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; 
}

/* 单个卡片基础样式 */
.service-card {
  /* 卡片内边距：上下1.2rem（120px）、左右0.8rem（80px） */
  padding: 80px 0;
  background: #ffffff;
  border: 1px solid #f5f7fa; /* 浅灰边框，非选中态 */
  border-radius: 12px; /* 圆角12px=0.12rem，匹配图片视觉 */
  display: flex;
  flex-direction: column; /* 文字在上，图标在下 */
  align-items: center; /* 水平居中 */
  justify-content: center; /* 垂直居中 */
  cursor: pointer;
  transition: all 0.2s ease; /* 过渡动画，提升交互 */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}


/* 卡片hover效果：移入直接应用card-active样式 */
.service-card:hover {
  border-color: #0066ff; /* 和card-active一致的蓝色边框 */
  background: #ffffff; /* 保持白底，和选中态一致 */
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.08); /* 选中态的强化阴影 */
}

/* 选中态（APP开发卡片）：保留，作为默认选中/点击后的样式 */
.card-active {
  border: 1px solid #0066ff; 
  box-shadow: 0 0.08rem 0.2rem rgba(0, 102, 255, 0.08);
}


/* 卡片文字样式 */
.card-text {
  font-size: 32px; /* 字体32px=0.32rem，1920下的适配大小 */
  color: #333333; /* 文字深灰色，匹配图片 */
  font-weight: 400;
  margin-bottom: 100px; /* 文字和图标间距100px=1rem */
}

/* 图标容器样式 */
.card-icon {
  width: 120px; /* 图标宽120px=1.2rem，1920下的尺寸 */
  height: 120px; /* 图标高120px=1.2rem */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 图标图片样式：保证比例，不拉伸 */
.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 图标完整显示 */
  /* 若你的图标不是蓝色，添加以下滤镜转为图片同款蓝色（可删除） */
  filter: invert(20%) sepia(97%) saturate(2000%) hue-rotate(210deg) brightness(100%) contrast(100%);
}


/* 分类标签容器样式 */
.category-tabs {
  display: flex;
  gap: 2%; /* 标签间距40px=0.4rem */
  justify-content: center; /* 让所有标签在水平方向居中 */
  margin: 0 auto; /* 容器本身居中（在父级里） */
  margin-bottom:40px;
}

/* 单个标签样式 */
.tab-item {
  padding: 15px 30px; /* 上下20px，左右60px */
  background: #ffffff;
  border: 1px solid #e0e6ff;
  border-radius: 200px; /* 全圆角，匹配图片样式 */
  font-size: 18px; /* 字体28px=0.28rem */
  color: #0066ff;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* 标签选中态（全部标签） */
.tab-item.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* 标签hover效果 */
.tab-item:hover{
  background: #f0f5ff;
  border-color: #0066ff;
}

/* 产品网格容器：每行4列，匹配1920rem基准 */
.product-grid {
  margin: 0 auto 200px; /* 底部200px留白，水平居中 */
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列等宽 */
  gap: 30px; /* 卡片间距60px=0.6rem */
}

/* 单个产品卡片样式 */
.product-card {
  background: #ffffff;
  border-radius: 12px; /* 圆角12px=0.12rem */
  /* padding: 0.6rem; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* 轻微阴影，匹配图片 */
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* 卡片hover效果：轻微上浮+强化阴影 */
.product-card:hover {
  transform: translateY(-8px); /* 上浮8px=0.08rem */
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.06);
}

/* 卡片图片容器 */
.card-img {
  width: 100%;
  border-radius: 8px; /* 图片圆角8px=0.08rem */
  overflow: hidden;
}

/* 卡片图片样式：自适应，不变形 */
.card-img img {
  width: 100%;
  height: 360px;
  transition: transform 0.3s ease;
}

/* 卡片hover时图片轻微缩放 */
.product-card:hover .card-img img {
  transform: scale(1.02);
}

/* 卡片标题样式 */
.card-title {
  font-size:20px; /* 字体32px=0.32rem */
  color: #333333;
  font-weight:bold;
  line-height: 1.4;
  /* margin-bottom: 14px; */
}

/* 卡片标签样式（蓝色小标签） */
.card-tag {
  display: inline-block;
  padding: 8px 20px; /* 上下8px，左右20px */
  background: #e8f3ff;
  color: #0066ff;
  font-size: 13px; /* 字体20px=0.2rem */
  border-radius: 4px; /* 圆角4px=0.04rem */
  align-self: flex-start; /* 左对齐 */
}

/* 卡片简介文字样式 */
.card-desc {
  font-size: 16px; /* 字体24px=0.24rem */
  color: #666666;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp:1; /* 最多显示2行 */
  -webkit-box-orient: vertical;
  overflow: hidden; /* 超出隐藏，避免文字溢出 */
  flex-grow: 1; /* 占满剩余空间，保证卡片高度一致 */
}

.card-body{
    padding:15px 10px;
}

.card-title span{
    display: inline-block;
    background:url(../img/index/lanT.png) no-repeat left center;
    background-size:100%;
    width:120px;
    text-align: center;
    font-size: 12px;
    padding:10px;
    color: #ffffff;
    margin-left:10px;
}


.bgImage{ background:url(../img/index/liu.png) no-repeat; background-size:100%; height:250px; margin-top: -100px;}



/* 核心优势模块容器：深蓝色背景 + 2行3列网格 */
.feature-container {
  background-color: #0047ff; /* 匹配图片的深蓝色背景 */
  margin: 8%;
  padding: 30px; /* 内边距100px */
  border-radius: 20px; /* 圆角20px */
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列等宽 */
  gap: 30px; /* 卡片间距80px */
  margin-top: -80px;
}

/* 单个卡片样式：白色背景 + 居中布局 */
.feature-card {
  background-color: #ffffff;
  border-radius: 12px; /* 圆角12px */
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px; /* 元素间距60px */
  transition: all 0.2s ease;
  cursor: pointer;
}

/* 卡片hover效果：轻微上浮+强化阴影 */
.feature-card:hover {
  transform: translateY(-8px); /* 上浮8px */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* 图标容器样式 */
.feature-icon {
  width: 100px; /* 图标宽100px */
  height: 100px; /* 图标高100px */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 图标图片样式：保证比例，蓝色显示 */
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 若图标不是蓝色，添加滤镜转为图片同款蓝色（可删除） */
  /* filter: invert(20%) sepia(97%) saturate(2000%) hue-rotate(210deg) brightness(100%) contrast(100%); */
}

/* 卡片标题样式 */
.feature-title {
  font-size: 36px; /* 字体36px */
  color: #333333;
  font-weight: 600;
  line-height: 1.2;
}

/* 卡片描述文字样式 */
.feature-desc {
  font-size: 24px; /* 字体24px */
  color: #666666;
  line-height: 1.5;
}





/* 流程模块容器 */
.process-section {
  position: relative;
  /* 背景点阵装饰（模拟图片的点阵效果） */
  background-size: 100px 100px;
  background-position: 0 0;
}

/* 标题区域 */
.process-header {
  text-align: center;
  margin-bottom: 100px; /* 标题与卡片间距180px */
}
.process-title {
  font-size: 50px; /* 字体40px */
  color: #333333;
  font-weight: 600;
  margin-bottom: 30px; /* 标题与副标题间距40px */
}
.process-title .highlight {
  color: #0066ff; /* 蓝色突出“码匠云” */
}
.process-subtitle {
  font-size: 23px; /* 字体28px */
  color: #666666;
  line-height: 1.4;
}

/* 流程卡片容器 */
.process-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:url(../img/index/bgFrame.png) no-repeat center;
  background-size:100% 100%;
  gap: 30px;
}

/* 单个卡片基础样式 */
.process-card {
  background: #ffffff;
  border-radius: 16px; /* 圆角16px */
  padding: 40px 100px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px; /* 图标与标题间距80px */
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 
    0 4px 10px rgba(0, 102, 255, 0.03), /* 内层浅阴影 */
    0 10px 20px rgba(0, 0, 0, 0.05); /* 外层柔和阴影 */
}
.process-card:hover {
  transform: translateY(-8px); /* 上浮8px */
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.06);
}

/* 左右卡片宽度稍大，中间卡片稍窄 */
/* .left-card, .right-card {
  width: 2.8rem;
}
.center-card {
  width: 2rem;
} */

/* 卡片图标容器 */
.card-icons {
  display: flex;
  gap: 60px; /* 图标间距60px */
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* 图标与文字间距20px */
}
.icon-item img {
  width: 90px; /* 图标宽90px */
  height: 90px; /* 图标高90px */
  object-fit: contain;
}
.icon-item span {
  font-size: 22px; /* 字体22px */
  color: #666666;
}

/* 云服务卡片图标 */
.cloud-icon img {
  width: 120px; /* 云图标宽120px */
  height: 120px; /* 云图标高120px */
  object-fit: contain;
}

/* 卡片标题 */
.card-title {
  font-size: 25px; /* 字体32px */
  color: #333333;
  font-weight: bold;
}

/* 箭头样式 */
.process-arrow {
  width: 40px; /* 箭头宽60px */
  height: 40px; /* 箭头高60px */
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(20%) sepia(97%) saturate(2000%) hue-rotate(210deg) brightness(100%) contrast(100%);
}



.index_bottom_banner{margin-top:80px;}