@import url(./base.css);
/* 技术指导 */
.guidance-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.service-range {
  margin: 0 auto;
  margin-top: 40px;
}
/* 行容器：PC端 Flex 布局，两端对齐 */
.guidance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 25px;
}

/* 文字内容块：控制宽度与内边距 */
.guidance-content {
  flex: 3;
  padding: 0 10px;
}

/* 标题样式：绿色文字 + 下划线 */
.guidance-title {
  color:var(--primary);
  font-size: var(--text-modeltree-size);
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 15px;
}

/* 描述文字样式 */
.guidance-desc {
  font-size: var(--text-modelfive-size);
color: var(--text);
  line-height: 1.6;
  margin-bottom: 15px;
}
/* 描述文字样式 */
.guidance-desc:nth-child(3) {
 font-weight: bold;
}
/* 列表样式：自定义绿色菱形标记 */
.guidance-list {
  list-style: none;
}

.guidance-list li {
  font-size: var(--text-modelfive-size);
  color: #666;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.guidance-list li::before {
  content: "";
  display: flex;
  width: 16px;
  height: 16px;
  background-image: url("../assets/images/solution_art/star.png");
  background-size: cover;
  background-repeat: no-repeat;
  color:var(--primary);
  position: absolute;
  left: 0;

  top: 0;
}

/* 图片容器：灰色占位 + 高度控制 */
.guidance-img {
  flex: 3;
  height: 260px;
  display: flex;
  align-items: center;
  /*overflow: hidden;*/ border-radius: 8px;
}
.guidance-img  img{
 border-radius: 8px;
width: 100%;
}
/* 移动端适配（屏幕 < 768px） */
@media (max-width: 768px) {
  .guidance-row {
    flex-direction: column; /* 垂直堆叠布局 */
  }

  .guidance-content,
  .guidance-img {
    flex: 0 0 100%; /* 宽度占满 */
    margin-bottom: 20px;
  }
}
/* ======================== <!-- 技术指导流程 --> */
/* 容器样式 */
.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* 流程项通用样式 */
.process-item {
  display: flex;
  align-items: flex-start;
  padding: 25px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.process-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* 圆形序号样式 */
.process-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-modelfive-size);
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0; /* 防止压缩 */
}

/* 文字内容样式 */
.process-content {
  flex: 1;
}

.process-title {
  font-size: var(--text-modeltree-size);
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.process-desc {
  font-size: var(--text-modelfive-size);
  color: var(--text);
  line-height: 2;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .process-container {
    padding: 10px;
  }
  .process-item {
    padding: 12px;
  }
  .process-number {
    width: 36px;
    height: 36px;
    font-size: var(--text-modelfive-size);
    margin-right: 10px;
  }
  .process-title {
    font-size: var(--text-modelfour-size);
  }
  .process-desc {
    font-size: var(--text-modelsix-size);
  }
}
/*技术指导优势  */
.service-container {
  padding: 40px 20px;
}

/* 服务卡片网格：PC端多列自适应，移动端单列 */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; /* 卡片间距 */
}

/* 单个服务卡片：阴影 + 圆角 + hover 效果 */
.service-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 图标容器：居中 + 尺寸控制 */
.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary); /* 图标颜色（绿色） */
}

/* 卡片标题 */
.service-title {
  font-size: var(--text-modeltree-size);
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

/* 卡片描述文字 */
.service-desc {
  font-size: var(--text-modelfive-size);
  color: #666;
  line-height: 1.6;
}

/* 移动端适配（屏幕＜768px） */
@media (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr; /* 单列布局 */
  }
  .service-icon {
    width: 50px;
    height: 50px;
  }
  .service-title {
    font-size: var(--text-modelfour-size);
  }
  .service-desc {
    font-size: var(--text-modelsix-size);
  }
}
/*===========================分子蒸馏工艺关键参数  */
.table-wrapper {
  width: 100%;
  overflow-x: auto; /* 小屏时横向滚动 */
  padding: 20px;
}
table {
  width: 100%;
  max-width: 1200px; /* 限制最大宽度 */
  margin: 0 auto;
  border-collapse: collapse;
  text-align: left;
}
thead {
  background-color: var(--primary);
  color: #fff;
}

th,
td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  font-size: var(--text-modelfive-size);
}

th {
  font-weight: 600;
}

tbody tr:nth-child(even) {
  background-color: #f8faf5;
}

tbody tr:hover {
  background-color: #f0f7e9;
}

@media (max-width: 768px) {
  th,
  td {
    padding: 10px;
    font-size: var(--text-modelsix-size);
  }
}
