/* 表格整体样式 */
#table1 {
  width: 100%;
  /* 表格宽度充满父容器 */
  border-collapse: collapse;
  /* 合并边框，避免双边框 */
  font-family: Arial, sans-serif;
  /* 字体设置 */
  margin: 20px 0;
  /* 上下外边距 */
}

/* 表头单元格样式 */
#table1 .titleTd {
  width: 200px;
    min-width: 200px;
  padding: 15px;
  font-weight: bold;
  background-color: #f9f9f9;
  text-align: left;
}

/* 内容单元格样式 */
#table1 .contentTd {
  width: auto;
  /* 右侧内容宽度 */
  padding: 15px;
  /* 底部边框 */
  text-align: left;
  /* 文字左对齐 */
}

/* 项目间间距 */
#table1 tr {
  margin-bottom: 20px;
  display: block;
  border-bottom: 1px solid #ddd;
}

/* 横线样式 */
#table1 hr {
  border: 0;
  /* 去除默认边框 */
  height: 1px;
  /* 横线高度 */
  background: #ddd;
  /* 横线颜色 */
  margin: 20px 0;
  /* 上下外边距 */
}

/* 链接样式 */
#table1 a {
  color: #0073e6;
  /* 链接颜色 */
  text-decoration: none;
  /* 去除下划线 */
}

#table1 a:hover {
  text-decoration: underline;
  /* 鼠标悬停时显示下划线 */
}

/* 响应式设计：小屏幕优化 */
@media (max-width: 768px) {

  #table1 .titleTd,
  #table1 .contentTd {
    display: block;
    /* 单元格改为块级元素 */
    width: 100%;
    /* 宽度充满父容器 */
    box-sizing: border-box;
    /* 内边距和边框包含在宽度内 */
  }

  #table1 .titleTd {
    background-color: #f1f1f1;
    /* 背景色加深，便于区分 */
    font-size: 16px;
    /* 字体稍大 */
  }

  #table1 .contentTd {
    padding-top: 10px;
    /* 上边距减小 */
    padding-bottom: 20px;
    /* 下边距增加 */
  }

  #table1 hr {
    margin: 15px 0;
    /* 横线外边距调整 */
  }

  #table1 tr {
    margin-bottom: 15px;
    /* 小屏幕下项目间间距减小 */
  }
}



.comparison-container {
  width: 100%;
  max-width: 1940px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  position: relative;
  margin-bottom: 3%;
}

.section-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 970px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  padding: 5%;
}

.comparison-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 970px;
  max-height: 970px;
}

.label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  font-family: Arial, sans-serif;
}

.section-title {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.divider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  /* 改为100%以匹配内容高度 */
  background-color: #333;
  z-index: 1;
}

@media (max-width: 768px) {
  .comparison-container {
    flex-direction: column;
    align-items: center;
  }

  .section-wrapper {
    width: 100%;
    max-width: 970px;
  }

  .divider {
    display: none;
  }

  .section-title {
    margin-top: 20px;
  }
}


.form-container {
  width: 100%;
  max-width: 1000px;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-size: 16px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
}

textarea {
  height: 120px;
  resize: vertical;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

/* 响应式设计 */
@media (max-width: 480px) {
  .form-container {
    padding: 20px;
  }

  .form-container h2 {
    font-size: 24px;
  }

  label {
    font-size: 14px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    font-size: 14px;
  }

  button {
    font-size: 14px;
  }
}

.scroll-container {
  width: 100%;
  max-width: 1000px;
  /* 最大宽度 */
  height: 200px;
  /* 固定高度 */
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  /* 启用垂直滚动 */
  position: relative;
  margin-bottom: 5%;
}

/* 隐藏滚动条 - 跨浏览器兼容 */
.scroll-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

.scroll-container {
  -ms-overflow-style: none;
  /* IE 和 Edge */
  scrollbar-width: none;
  /* Firefox */
}

.scroll-content {
  font-size: 16px;
  line-height: 1.6;
}

.scroll-content p {
  color: #333;
}

/* 响应式设计 */
@media (max-width: 480px) {
  .scroll-container {
    max-width: 100%;
    /* 小屏幕时占满宽度 */
    height: 200px;
    /* 减小高度 */
    padding: 10px;
  }

  .scroll-content {
    font-size: 14px;
    /* 减小字体 */
  }
}