/* 1. 整体表格容器 */
table {
  width: 100%;
  border-collapse: collapse; /* 消除间隙，让边框紧密相连 */
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); /* 淡淡的外框阴影 */
  margin: 20px 0;
}

/* 2. 表头：图二同款深藏蓝 */
thead tr {
  background-color: #1d426d; /* 工业藏蓝色 */
}

th {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: center; /* 图二为统一居中对齐 */
  vertical-align: middle;
  border-right: 1px solid rgba(255, 255, 255, 0.3); /* 表头白色的细竖分隔线 */
}

/* 清除表头最后一列的右边框 */
th:last-child {
  border-right: none;
}

/* 3. 单元格：清爽浅灰边框网格 */
td {
  padding: 16px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #4a5568;
  text-align: center; /* 统一居中 */
  vertical-align: middle;
  border: 1px solid #e2e8f0; /* 极浅的灰色细网格边框 */
}

/* 4. 第一列（产品/材质）加粗强调 */
td:first-child {
  font-weight: 700;
  color: #2d3748;
}

/* 5. 副标题/规格补充说明（如 Cr 20%-26% 等小字） */
.sub-text {
  display: block;
  font-size: 11px;
  color: #8c9ba5;
  font-weight: normal;
  margin-top: 4px;
}

/* 6. 突出高亮文字（如图二中的绿色 1.5 Times） */
.highlight-text {
  color: #2e7d32; /* 工业绿 */
  font-weight: 700;
}

/* 7. 悬停效果 */
tbody tr:hover {
  background-color: #f8fafc;
}




/* ==========================================================================
   2. About Us 模块基础样式（纯手动硬编码版）
   ========================================================================== */
/* 关于我们区域主容器 */
.about-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    color: #fff;
    scroll-margin-top: 100px;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* 关键修改：设置 z-index 让文字置顶 */
.about-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-title {
    text-align: center;
    margin-bottom: 50px;
}

.about-title h2 {
    font-size: 42px;
    color: #ffffff !important;
    margin: 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.about-text {
    flex: 1 1 55%;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff !important;
    line-height: 1.3;
}

.about-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #ffffff !important;
    margin-bottom: 30px;
}

/* 按钮与数据统计 */
.about-btn {
    display: inline-block;
    background: #DD7500;
    color: #fff !important;
    padding: 12px 30px;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background: #c56800;
}

.about-stats {
    flex: 1 1 35%;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff !important;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-number span {
    font-size: 20px;
}

.stat-item p {
    color: #ffffff !important;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-stats {
        flex: 1 1 100%;
    }
    
    .stat-number {
        font-size: 30px;
    }
}
/* ==========================================================================
   5. 导航栏样式自定义（菜单居中与字体放大）
   ========================================================================== */
.navbar-nav .nav-item .nav-link {
    font-size: 18px !important;     /* 调整为你想要的大小，默认一般是 14px 或 16px */
    font-weight: 500;               /* 让导航字体稍微加粗一点，更有质感 */
    padding-left: 20px !important;  /* 适当增加菜单项之间的左右间距 */
    padding-right: 20px !important;
}

/* 如果 Products 后面有下拉菜单小箭头，微调它的间距 */
.navbar-nav .nav-item .nav-link i {
    margin-left: 6px;
}