
/* Core Container Style (Ueeshop适配) */
.global-manufacturers-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 15px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.5;
}

/* 样品联系方式样式 */
.contact-info {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}
.contact-info a {
  color: #0066cc;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* Page Title */
.page-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}
.page-title small {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #666;
  margin-top: 8px;
}

/* Section Wrap */
.section-wrap {
  margin-bottom: 25px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.section-header {
  background: #f8f9fa;
  padding: 16px 20px;
  font-size: 20px;
  font-weight: 600;
  color: #222;
}
.section-content {
  display: block; /* 永久展开 */
  padding: 25px;
  background: #fff;
}

/* Table Style (响应式) */
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* 移动端顺滑滚动 */
  margin: 15px 0;
}
.ueeshop-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}
/* 加深标题栏样式 */
.ueeshop-table th {
  background: #2c3e50; /* 深蓝色背景 */
  color: #ffffff; /* 白色文字 */
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  border: 1px solid #e5e7eb;
  white-space: nowrap;
}
.ueeshop-table td {
  padding: 12px 15px;
  font-size: 13px;
  border: 1px solid #e5e7eb;
  vertical-align: top;
}
.ueeshop-table tr:nth-child(even) {
  background: #fafafa;
}
.ueeshop-table a {
  color: #0066cc;
  text-decoration: none;
}
.ueeshop-table a:hover {
  text-decoration: underline;
}

/* Data Info */
.data-info {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  font-size: 14px;
  color: #444;
}
.data-info strong {
  color: #222;
  font-size: 15px;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .page-title {
    font-size: 22px;
  }
  .contact-info {
    font-size: 14px;
  }
  .section-header {
    font-size: 18px;
    padding: 14px 15px;
  }
  .section-content {
    padding: 15px;
  }
  .ueeshop-table th, .ueeshop-table td {
    padding: 10px 8px;
    font-size: 12px;
  }
  .data-info {
    padding: 15px;
    font-size: 13px;
  }
}
