/* 产品详情页面样式 */

/* 面包屑导航 */
.breadcrumb {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #f4b902;
}

.breadcrumb span {
  margin: 0 5px;
  color: #999;
}

.breadcrumb .current {
  color: #333;
  font-weight: bold;
}

/* 产品内容区域 */
.product-content {
  width: 100%;
}

.product-detail-wrap {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 标签页容器 */
.nTab {
  width: 100%;
}

.ntabt {
  margin-bottom: 0;
}

.TabTitle {
  background: #333;
  padding: 0;
  margin: 0;
  border-bottom: 3px solid #f4b902;
}

.TabTitle ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.TabTitle .more {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  padding: 12px 20px;
  flex: 1;
}

.TabTitle li {
  padding: 12px 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.TabTitle li.active {
  background: #f4b902;
  color: #333;
}

.TabTitle li.normal {
  background: #333;
  color: #ccc;
}

.TabTitle li.normal:hover {
  background: #444;
  color: #fff;
}

.TabTitle li a {
  color: inherit;
  text-decoration: none;
}

/* 标签页内容 */
.TabContent {
  min-height: 400px;
  padding: 20px;
}

/* 概述内容 */
.product-info {
  padding: 10px;
}

.product-image {
  text-align: center;
  margin-bottom: 25px;
}

.product-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border: 1px solid #e0e0e0;
  padding: 5px;
  background: #fff;
}

.product-section {
  margin-bottom: 25px;
}

.product-section h3 {
  background: #f4b902;
  color: #333;
  padding: 10px 15px;
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: bold;
}

.product-section ul {
  margin: 0;
  padding-left: 25px;
}

.product-section li {
  line-height: 2;
  color: #444;
  list-style-type: disc;
  margin-bottom: 5px;
}

.product-section p {
  line-height: 1.8;
  color: #444;
}

/* 产品配置 */
.config-image {
  text-align: center;
}

.config-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
  padding: 5px;
}

/* 技术参数 */
.specs-container {
  padding: 10px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.specs-table td {
  padding: 10px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.specs-table tr:nth-child(even) {
  background: #f9f9f9;
}

.specs-table td:first-child {
  background: #f5f5f5;
  font-weight: bold;
  width: 35%;
  color: #333;
}

.specs-table td:last-child {
  color: #444;
}

/* 相关下载 */
.downloads-container {
  padding: 10px;
}

.downloads-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.downloads-table th,
.downloads-table td {
  padding: 12px 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.downloads-table th {
  background: #333;
  color: #fff;
  font-weight: bold;
}

.downloads-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.downloads-table tbody tr:hover {
  background: #f5f5f5;
}

.downloads-table a {
  color: #333;
  text-decoration: none;
}

.downloads-table a:hover {
  color: #f4b902;
}

.download-btn {
  display: inline-block;
  padding: 6px 15px;
  background: #f4b902;
  color: #333;
  text-decoration: none !important;
  font-weight: bold;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: #e8a800;
  color: #333 !important;
}

/* 隐藏类 */
.none {
  display: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 13px;
  }
  
  .TabTitle ul {
    flex-wrap: wrap;
  }
  
  .TabTitle .more {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
  
  .TabTitle li {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .TabContent {
    padding: 10px;
  }
  
  .product-section h3 {
    font-size: 14px;
    padding: 8px 12px;
  }
  
  .specs-table td {
    padding: 8px 10px;
    font-size: 13px;
  }
  
  .downloads-table th,
  .downloads-table td {
    padding: 8px 10px;
    font-size: 13px;
  }
}