
/* ============================================================
   通用基础设置
   ============================================================ */
.cncmill-container, .cncturned-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* ============================================================
   板块一：优势展示 (cncmill) 
   核心修正：图标绝对居中 + 文字白色
   ============================================================ */
.cncmill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.cncmill-card {
  background-color: #050a30;
  color: #ffffff;            /* 确保蓝色背景内的文字全部为白色 */
  border-radius: 16px;
  padding: 30px;
  flex: 1 1 calc(25% - 20px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.cncmill-icon-box {
  background: white;
  width: 52px;               /* 稍微调整尺寸匹配原图比例 */
  height: 52px;
  border-radius: 10px;
  margin-bottom: 24px;
  flex-shrink: 0;

  /* 核心居中逻辑：双重保险 */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden; 
}

.cncmill-icon-box .material-icons {
  color: #050a30;
  font-size: 28px;
  
  /* 关键：消除字体自带的行高和间距，使其变为纯粹的图形块 */
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  height: 28px;              /* 等于字号，消除垂直偏差 */
  width: 28px;               /* 等于字号，消除水平偏差 */
  margin: 0;
  padding: 0;
}

.cncmill-title {
  margin: 0 0 12px 0;
  font-weight: bold;
  width: 100%;
}

.cncmill-desc {
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* 统计卡片 (右侧不带背景的部分) */
.cncmill-stats-card {
  flex: 1 1 calc(25% - 20px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #333;               /* 这里通常为深色文字 */
}

.cncmill-stats-heading {
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 1.2;
}

.cncmill-stats-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cncmill-percentage {
  font-size: 3.5rem;
  font-weight: 800;
}

.cncmill-avatars {
  display: flex;
  align-items: center;
}

.cncmill-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -12px;
  object-fit: cover;
}

.cncmill-avatars img:first-child { margin-left: 0; }

/* ============================================================
   板块二：用户反馈 (cncturned)
   ============================================================ */
.cncturned-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.cncturned-main-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.cncturned-rating-row {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cncturned-score-num {
  font-size: 3.5rem;
  font-weight: 800;
}

.cncturned-stars-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #4f46e5;
  color: white;
  border-radius: 20px;
}

.cncturned-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cncturned-quote-card {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
}

.cncturned-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.cncturned-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.cncturned-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.cncturned-dot {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
}

.cncturned-dot.cncturned-active {
  background: #050a30;
  width: 20px;
  border-radius: 10px;
}

/* ============================================================
   响应式断点 (三端自适应)
   ============================================================ */

/* 中屏 (平板) */
@media (max-width: 1024px) {
  .cncmill-card, .cncmill-stats-card {
    flex: 1 1 calc(50% - 20px);
  }
  .cncturned-wrapper {
    grid-template-columns: 1fr;
  }
}

/* 小屏 (手机) */
@media (max-width: 640px) {
  .cncmill-card, .cncmill-stats-card {
    flex: 1 1 100%;
  }
  .cncturned-testimonials {
    grid-template-columns: 1fr;
  }
  .cncturned-rating-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}




/* ============================================================
   1. 基础容器与布局 (桌面端)
   ============================================================ */
.cncturned-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;

}

.cncturned-wrapper {
  display: flex; /* 改用 flex 方便精确控制图片侧宽度 */
  gap: 50px;
  align-items: flex-start;
}

/* 图片侧容器：严格控制渲染宽度 */
.cncturned-image-side {
  width: 373px; 
  flex-shrink: 0; /* 禁止被挤压 */
}

.cncturned-main-img {
  width: 100%;
  height: 560px; /* 你的硬性要求 */
  object-fit: cover; /* 自动裁剪 800x533 的图片以适配 373x560 */
  object-position: center center;
  border-radius: 15px;
  display: block;
}

/* 内容侧容器 */
.cncturned-content-side {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   2. 文本样式
   ============================================================ */
.cncturned-sub-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4f46e5;
}

.cncturned-main-title {
  margin: 0 0 24px 0;
  line-height: 1.1;
  font-size: 2rem;

}

.cncturned-rating-row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cncturned-score-num {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cncturned-stars-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 30px;
  background: #4f46e5;
  color: white;
}

.cncturned-reviews-count {
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-top: 4px;
}

.cncturned-intro-text {
  flex: 1;
  min-width: 280px;
  line-height: 1.6;
}

/* ============================================================
   3. 评价卡片与头像
   ============================================================ */
.cncturned-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.cncturned-quote-card {
  border: 1px solid #eef0f5;
  background: #fcfcfd;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cncturned-quote-body {
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 1rem;
}

.cncturned-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cncturned-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cncturned-quote-card:nth-child(1) .cncturned-avatar { background-color: #4f46e5; color: #fff; }
.cncturned-quote-card:nth-child(2) .cncturned-avatar { background-color: #050a30; color: #fff; }

.cncturned-name { display: block; font-size: 1.05rem; color: #111827; }
.cncturned-job { display: block; font-size: 0.85rem; opacity: 0.7; }

/* 轮播点 */
.cncturned-dots { display: flex; gap: 8px; margin-top: 10px; }
.cncturned-dot { width: 10px; height: 10px; border-radius: 50%; background: #e2e8f0; }
.cncturned-dot.cncturned-active { background: #050a30; width: 24px; border-radius: 5px; }

/* ============================================================
   4. 三端自适应媒体查询
   ============================================================ */

/* 中屏适配 (1024px及以下) */
@media (max-width: 1024px) {
  .cncturned-wrapper {
    flex-direction: column;
  }
  .cncturned-image-side {
    width: 100%; /* 图片宽度撑满 */
  }
  .cncturned-main-img {
    height: 450px; /* 适当降低高度 */
  }
  .cncturned-main-title {
    font-size: 2rem;
  }
}

/* 小屏适配 (640px及以下) */
@media (max-width: 640px) {
  .cncturned-main-img {
    height: 320px; /* 移动端最佳观感高度 */
  }
  .cncturned-score-num {
    font-size: 2.8rem;
  }
  .cncturned-rating-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cncturned-testimonials {
    grid-template-columns: 1fr; /* 评价卡片单行排列 */
  }
}




    /* 容器与基础布局 */
.mater-equipment-section {
    padding: 60px 20px;
    background-color: #fff;
}

.mater-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mater-header {
    text-align: center;
    margin-bottom: 50px;
}

.mater-main-title {
    margin-bottom: 15px;
}

/* 网格系统：响应式自适应 */
.mater-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

/* 卡片样式 */
.mater-card {
    flex: 1;
    min-width: 300px; /* 保证基础宽度 */
    padding: 35px;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.mater-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.mater-card-title {
    text-align: center;
    margin-bottom: 30px;
}

/* 参数列表布局 */
.mater-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mater-specs li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    line-height: 1.5;
}

.mater-label {
    flex-shrink: 0;
}

.mater-value {
    text-align: right;
    font-weight: 500;
}

/* --- 响应式适配 --- */

/* 平板端 (1024px以下) */
@media (max-width: 1024px) {
    .mater-card {
        flex: 1 1 calc(50% - 25px); /* 两列布局 */
    }
}

/* 手机端 (768px以下) */
@media (max-width: 768px) {
    .mater-card {
        flex: 1 1 100%; /* 单列全宽 */
    }
    
    .mater-main-title {
        font-size: 24px;
    }
    
    .mater-header {
        margin-bottom: 30px;
    }
}




        /* 容器布局 */
.ind-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 基础卡片样式 */
.ind-card {
    flex: 1;
    min-width: 320px;
    background-color: #f8f9fa; /* 浅灰背景 */
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 40px; /* 为顶部页签留出空间 */
}

/* 右侧高亮卡片背景色微调 */
.ind-card.ind-highlight {
    background-color: #f0f4f8; /* 保持原图的淡色区分，或根据需要改为全白 */
}

/* 顶部页签 (Badge) */
.ind-badge {
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px 25px;
    background-color: #eee;
    font-weight: bold;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); /* 梯形效果 */
}

/* 高亮页签颜色替换为 #186adc */
.ind-highlight .ind-badge {
    background-color: #186adc;
    color: #fff;
}

/* 内容区域内边距 */
.ind-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ind-title {
    margin-bottom: 20px;
}

.ind-text {
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.ind-info {
    margin-bottom: 30px;
}

.ind-info p {
    margin: 5px 0;
}

/* 按钮样式：橙色替换为 #186adc */
.ind-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #186adc;
    color: #fff;
    text-decoration: none;
    align-self: flex-start;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.ind-btn:hover {
    opacity: 0.9;
}

/* --- 响应式适配 --- */

/* 平板端 (1024px以下) */
@media (max-width: 1024px) {
    .ind-container {
        gap: 50px; /* 增加上下堆叠时的间距 */
    }
}

/* 手机端 (768px以下) */
@media (max-width: 768px) {
    .ind-card {
        flex: 1 1 100%;
    }
    
    .ind-content {
        padding: 30px 20px;
    }
    
    .ind-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}




    /* --- 咨询与分析板块容器 --- */
.services-section {
    display: flex;
    flex-wrap: wrap; /* 核心：允许子元素在空间不足时换行 */
    gap: 40px; /* 左右板块的间距 */
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    align-items: stretch; /* 左右高度对齐 */
}

/* --- 左侧文字介绍区域 --- */
.services-content {
    flex: 1; /* 占据剩余空间 */
    min-width: 300px; /* 响应式触发临界点 */
}

/* 标题与文本间距适配 */
.services-title {
    margin-bottom: 25px;
    padding: 0 !important; /* 清除 HTML 中的内联 padding，由 CSS 统一控制 */
}

.services-text {
    margin: 0;
    padding: 0 !important; /* 清除内联样式 */
    line-height: 1.6;
}

/* --- 右侧“我们能做什么”灰色卡片区 --- */
.design-section {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa; /* 保持原有的浅灰色背景 */
    padding: 40px;
    border-radius: 8px; /* 轻微圆角提升质感 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.design-title {
    margin-bottom: 20px;
    padding: 0 !important;
}

.design-text {
    margin: 0;
    line-height: 2; /* 增加列表行高，方便阅读 */
}

/* --- 响应式媒体查询 --- */

/* 平板端 (1024px 以下) */
@media (max-width: 1024px) {
    .services-section {
        gap: 30px;
    }
}

/* 手机端 (768px 以下) */
@media (max-width: 768px) {
    .services-section {
        flex-direction: column; /* 强制转为垂直布局 */
        padding: 40px 20px;
    }

    .services-content, .design-section {
        flex: none;
        width: 100%; /* 宽度撑满屏幕 */
    }

    .services-title {
        text-align: center; /* 移动端标题居中可选 */
    }
    
    .design-section {
        padding: 30px 20px; /* 缩小内边距节省空间 */
    }
}




   /* 容器基础：自适应布局 */
.industry-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap; 
    gap: 40px;
    align-items: center;
}

/* 左侧：文字区 */
.industry-left {
    flex: 1.2;
    min-width: 320px;
}

.industry-title {
    margin-bottom: 20px;
     min-width: 320px
}

.industry-desc {
    margin-bottom: 30px;
    line-height: 1.6;
}

/* 按钮：悬浮变色 #186adc */
.industry-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border: 2px solid #222;
    background: transparent;
    text-decoration: none;
    color: #222;
    font-weight: bold;
    transition: all 0.3s ease;
}

.industry-btn:hover {
    background-color: #186adc;
    border-color: #186adc;
    color: #fff;
}

/* 中间：装饰边框图片 */
.industry-middle {
    flex: 1.5;
    min-width: 320px;
    padding: 15px;
    border: 1px solid #eee;
}

.industry-middle img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右侧：列表区 */
.industry-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.industry-item:last-child {
    border-bottom: none;
}

/* 图标：使用 Material Icons 字体 */
.industry-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #186adc; /* 要求的蓝色 */
    flex-shrink: 0;
}

.industry-icon .material-icons {
    font-size: 30px; /* 图标大小调整 */
}

/* 列表悬浮效果 */
.industry-item:hover {
    color: #186adc;
}

.industry-item-text {
    font-weight: bold;
    text-transform: uppercase;
}

/* --- 响应式适配 --- */

/* 平板端：图文并排，列表下沉变两列 */
@media (max-width: 1024px) {
    .industry-left { flex: 1 1 40%; }
    .industry-middle { flex: 1 1 50%; }
    .industry-right {
        flex: 1 1 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 40px;
    }
}

/* 手机端：垂直堆叠 */
@media (max-width: 768px) {
    .industry-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .industry-left, .industry-middle, .industry-right {
        width: 100%;
    }

    .industry-right {
        grid-template-columns: 1fr;
    }

    .industry-item {
        justify-content: center;
    }

    .industry-btn {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
}




/* 容器基础设置 */
.ut-grid {
    display: flex;
    flex-wrap: wrap; /* 允许换行，实现响应式 */
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
    background-color: #fafafa;
}

/* 左侧图片区域 */
.ut-left {
    flex: 1;
    min-width: 350px; /* 保证平板端也有较好占比 */
}

.ut-left img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 图片等比填充不缩放 */
    display: block;
}

/* 右侧文字内容区域 */
.ut-right {
    flex: 1;
    min-width: 350px;
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 标题与副标题布局 */
.ut-kicker {
    margin-bottom: 15px;
}

.utt-title {
    margin-bottom: 20px;
    line-height: 1.2;
}

.utt-subtitle {
    margin-bottom: 40px;
    max-width: 800px;
}

/* 特性列表布局 */
.ut-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ut-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* 核心：#186adc 椭圆数字图标 */
.ut-badge {
    background-color: #186adc;
    color: #fff;
    /* 椭圆形状核心代码 */
    min-width: 50px;
    height: 32px;
    border-radius: 50px; /* 足够大的圆角形成椭圆 */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

/* 文字排版容器 */
.ut-feature-content {
    flex: 1;
}

.ut-feature-title {
    margin-bottom: 8px;
    font-weight: bold;
}

/* --- 响应式适配 --- */

/* 平板与手机端通用适配 */
@media (max-width: 1024px) {
    .ut-left, .ut-right {
        flex: 1 1 100%; /* 宽度占满 100% */
    }
    
    .ut-left {
        height: 300px; /* 移动端限制图片高度，防止过长 */
    }

    .ut-right {
        padding: 40px 20px;
    }
}

/* 小型手机端额外优化 */
@media (max-width: 480px) {
    .ut-feature {
        flex-direction: column; /* 极窄屏幕下数字和文字垂直排列 */
        gap: 10px;
    }
    
    .ut-badge {
        height: 28px;
        min-width: 45px;
    }
}



}
