
@charset "utf-8";
/* 产品介绍部分样式 */
.content-right {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.product-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.product-note {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.sub-title {
    font-size: 18px;
    color: #2c7be5;
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e8f7;
}
<!-- 专门为排序定义的CSS -->
/* 添加这一行，让有序列表的数字使用相同颜色 */
.has-numbered-list {
    list-style: decimal;
    color: #2c7be5;
}

/* 保持列表项文本为默认颜色 */
.has-numbered-list > li {
    color: initial;
}
</style><!-- 强制生效的 CSS（放 <head> 或单独 CSS 文件） -->
<style>
  /* 专属类名，优先级更高 */
  .custom-ordered-list {
    /* 强制显示数字 */
    list-style-type: decimal !important;  
    /* 确保左侧有缩进空间放数字 */
    padding-left: 40px !important;        
    /* 清除可能的干扰样式 */
    list-style: decimal !important;        
  }
  /* 可选：优化列表项间距 */
  .custom-ordered-list li {
    margin-bottom: 8px;
    line-height: 1.6;
  }
</style>  <style>
    /* 有序列表样式 */
    ol {
      list-style-type: decimal; /* 确保显示数字 */
      padding-left: 1.5rem; /* 左侧缩进 */
      margin-bottom: 1rem;
    }
    
    ol li {
      margin-bottom: 0.5rem; /* 列表项间距 */
      line-height: 1.6; /* 行高 */
    }
.image-container {
    margin: 20px 0;
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.image-caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
}

.spec-table th {
    background-color: #2c7be5;
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.spec-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e8f7;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.application-list, .service-list {
    margin: 20px 0;
    padding-left: 20px;
}

.application-list li, .service-list li {
    margin-bottom: 10px;
    position: relative;
}

.application-list li:before, .service-list li:before {
    content: "•";
    color: #2c7be5;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.contact-note {
    font-size: 16px;
    color: #2c7be5;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
}
<!-- 专门为上下页的CSS -->
/* 容器样式 */
.product-nav-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

/* 按钮基础样式 */
.nav-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  background-color: #f1f8ff;
  border: 1px solid #d9eaf7;
  border-radius: 8px;
  padding: 10px 16px;
  transition: all 0.3s ease;
}

/* 按钮 hover 效果 */
.nav-btn:hover {
  background-color: #e6f3ff;
  border-color: #bcd8f0;
}

/* 图标样式 */
.nav-btn i {
  font-size: 18px;
  margin-right: 8px;
  color: #409eff;
}

/* 文字容器 */
.btn-text {
  display: flex;
  flex-direction: column;
}

/* 小标题样式（Previous/Next Product） */
.btn-text span {
  font-size: 14px;
  color: #999;
  margin-bottom: 2px;
  font-weight: bold; /* 文字加粗 */
}

/* 产品名称样式 */
.btn-text p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: #409eff;
}

/* 下一个按钮样式调整 */
.next-btn {
  flex-direction: row-reverse;
}
.next-btn i {
  margin-right: 0;
  margin-left: 8px;
}



/* 产品导航模块样式（删除Contact us相关样式） */
.product-nav-container {
    display: flex;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e8f7;
}

.product-nav {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.nav-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #f0f5ff;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-btn i {
    font-size: 20px;
    color: #2c7be5;
    margin: 0 10px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 增大"Previous Product"和"Next Product"的字体 */
.btn-text span {
    font-size: 16px; /* 从14px增大到16px */
    color: #555;
    margin-bottom: 6px;
}

.btn-text p {
    font-size: 15px;
    font-weight: bold;
    color: #2c7be5;
    margin: 0;
    white-space: normal;
    overflow: visible;
}

.nav-btn:hover {
    background-color: #e0e8f7;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(44, 123, 229, 0.15);
}

@media (max-width: 768px) {
    .product-nav {
        flex-direction: column;
        gap: 15px;
    }
    .nav-btn {
        width: 100%;
        justify-content: flex-start;
    }
}