﻿@charset "utf-8";
/*蓝色主题*/
:root {
  --colour1: #0067d0;
  --colour2: #2b2b2b;
  --colour3: #0056ad;
}
.subleft .leftcont .tel{background-image: url(../images/fl_tel_blue.webp);}
.index .product ul li .img .bg{background: url(../images/pro_bg_blue.webp);}


/* === 环保机械风格表格样式 === */
/* 强制全局表格样式 - 无需添加class */
.ArticleTencont table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(30, 100, 60, 0.15);
  background: white;
  font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
  border: 1px solid #e0f2e9;
}

/* 表头样式 - 深绿色渐变 */
.ArticleTencont thead {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ArticleTencont th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.ArticleTencont th:last-child {
  border-right: none;
}

/* 表头装饰线 */
.ArticleTencont th::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* 表格内容行 */
.ArticleTencont tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #edf7f0;
}

/* 斑马条纹效果 */
.ArticleTencont tbody tr:nth-child(even) {
  background-color: #f8fef9;
}

/* 悬停效果 */
.ArticleTencont tbody tr:hover {
  background-color: #e8f5e9;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(46, 125, 50, 0.1);
}

/* 单元格样式 */
.ArticleTencont td {
  padding: 14px 20px;
  color: #37474f;
  border-right: 1px solid #e0f2e9;
  vertical-align: middle;
}

.ArticleTencont td:last-child {
  border-right: none;
}

/* 数据强调样式 */
.ArticleTencont td strong {
  color: #1b5e20;
  font-weight: 600;
}

/* 状态指示器 */
.ArticleTencont .status-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

.ArticleTencont .status-active {
  background: #4caf50;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.5);
}

.ArticleTencont .status-warning {
  background: #ff9800;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .ArticleTencont table {
    font-size: 14px;
  }
  
  .ArticleTencont th, 
  .ArticleTencont td {
    padding: 12px 15px;
  }
  
  .ArticleTencont table {
    box-shadow: 0 2px 6px rgba(30, 100, 60, 0.1);
  }
}

/* 表格标题 */
.ArticleTencont table + p > strong {
 /* display: block;*/
  text-align: center;
  font-style: italic;
  color: #2e7d32;
  margin-top: -1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
