/* 页面内容容器样式 */
.page {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

/* 内容区域样式 */
.content {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  box-sizing: border-box;
}

/* 页面内容样式 */
.vsb_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 图片样式 */
.img_vsb_content {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.img_vsb_content:hover {
  transform: scale(1.02);
}

/* 图片组样式 - 自动适应空间 */
.vsb_content p:has(.img_vsb_content) {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.vsb_content p:has(.img_vsb_content) .img_vsb_content {
  flex: 1 1 auto;
  min-width: 200px;
  max-width: 100%;
  object-fit: cover;
}

/* 表格样式 */
.vsb_content table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  overflow-x: auto;
  display: block;
}

.vsb_content th, .vsb_content td {
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.vsb_content th {
  font-weight: 600;
}

/* 响应式布局 - 小屏幕设备 */
@media (max-width: 768px) {
  .page {
    padding: 15px 0;
  }
  
  .content {
    padding: 0 10px;
  }
  
  .vsb_content p:has(.img_vsb_content) .img_vsb_content {
    min-width: 100%;
  }
  
  .vsb_content table {
    font-size: 14px;
  }
  
  .vsb_content th, .vsb_content td {
    padding: 8px 10px;
  }
}