*.none {
  display: none;
}

main {
  max-width: 1600px;
  margin: 0 auto;
}

/* 产品展示区域布局 */
.product-display {
  min-width: 1400px;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto;
  align-items: center;
}

/* 左侧图片轮播区域 */
.product-gallery {
  flex: 0 0 45%;
  min-width: 300px;
}

/* 主图片容器 */
.main-image-container {
  position: relative;
  height: 360px;
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
}

/* 主图片样式 */
#mainImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}

/* 缩略图容器 */
.thumbnail-container {
  max-width: 60%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

/* 导航按钮 */
.gallery-btn {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.gallery-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

/* 缩略图导航区域 */
.thumbnail-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 5px 0;
  flex-grow: 1;
}

/* 缩略图按钮 */
.thumbnail-btn {
  border: 2px solid transparent;
  background: none;
  padding: 3px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.thumbnail-btn.active {
  border-color: #4992cc;
  background-color: #f5f5f5;
}

.thumbnail-btn img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 2px;
}

/* 右侧文字描述区域 */
.product-description {
  flex: 1;
  min-height: 500px;
  min-width: 300px;
  padding: 20px 60px;
  box-sizing: border-box;
}

/* 标题样式 */
.product-description h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #4992cc;
  border-bottom: 2px solid #eee;
  padding-bottom: 20px;
}

/* 子标题样式 */
.product-description h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: #555;
}

/* 段落样式 */
.product-description p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #666;
}

/* 响应式布局调整 */
@media (max-width: 768px) {
  .product-gallery {
    flex: 0 0 100%;
  }

  .product-description {
    padding: 15px;
  }
}
/* 技术规格部分样式 */
.technical-specification {
  width: 1400px;
  margin: 15px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 标题样式 */
.technical-specification h3,
.product-info h3 {
  font-size: 20px;
  color: #4992cc;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

/* 表格样式 */
.technical-specification table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 表格头部 */
.technical-specification thead {
  background-color: #4992cc;
  color: white;
}

/* 表格单元格样式 */
.technical-specification th {
  width: 20%;
}

.technical-specification th,
.technical-specification td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #ddd;
}

/* 表格行悬停效果 */
.technical-specification tbody tr:hover {
  background-color: #f5f5f5;
}

/* 奇偶行交替颜色 */
.technical-specification tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* 产品信息部分 */
.product-info {
  margin: 30px 0;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* 产品信息段落样式 */
.product-info p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #666;
}

/* 响应式调整 */
@media (max-width: 768px) {
  /* 小屏幕下表格水平滚动 */
  .technical-specification {
    overflow-x: auto;
  }

  .technical-specification table {
    min-width: 600px;
  }
}

/* PVA的产品页轮播图 */
.ca-gallery {
  margin-right: 20px;
  flex: 0 0 45%;
  min-width: 300px;
}

/* 主图片容器 */
.ca-image-container {
  position: relative;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
}

/* 主图片样式 */
#ca-mainImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}

/* 缩略图容器 */
.ca-thumbnail-container {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

/* 导航按钮 */
.ca-gallery-btn {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ca-gallery-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

/* 缩略图导航区域 - 保持横向布局 */
.ca-thumbnail-nav {
  display: flex;
  gap: 5px;
  padding: 10px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  white-space: nowrap;
  flex-grow: 1;
}

/* 美化滚动条（Webkit浏览器） */
.ca-thumbnail-nav::-webkit-scrollbar {
  height: 6px;
}

.ca-thumbnail-nav::-webkit-scrollbar-track {
  background: transparent;
}

.ca-thumbnail-nav::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.ca-thumbnail-nav::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}

/* 缩略图按钮 */
.ca-thumbnail-btn {
  border: 2px solid transparent;
  background: none;
  padding: 3px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ca-thumbnail-btn.active,
.ca-thumbnail-btn.ca-active {
  border-color: #4992cc;
  background-color: #f5f5f5;
}

.ca-thumbnail-btn img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 2px;
}

/* 轮播图的视频样式 */
.product-video {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 4px;
}
.ca-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
