@charset "UTF-8";
.table-container {
  padding-left: 24px;
}
@media (min-width: 992px) {
  .table-container {
    padding: 0;
  }
}
.table-container .swipe {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #FF7B39;
  margin-bottom: 12px;
}

.comparison-table-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.comparison-table {
  max-width: 950px;
  margin: 0 auto;
  color: #212121;
  border-radius: 8px;
  padding: 4px;
  border: 1px solid #D8DFE2;
  /* 在 992px 以下允许水平滚动 */
  /* 四个角圆角处理 */
}
@media (max-width: 991.98px) {
  .comparison-table {
    width: 100%;
    overflow-x: auto;
    /* 开启横向滚动 */
    -webkit-overflow-scrolling: touch;
    /* iOS 惯性滑动 */
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #ccc transparent;
  }
  .comparison-table table {
    min-width: 840px;
    /* 表格最小宽度，保证触发横向滚动 */
  }
}
@media (min-width: 1280px) {
  .comparison-table {
    max-width: 1200px;
  }
}
.comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #FFC6AA;
  border-radius: 10px;
  overflow: hidden;
  table-layout: fixed;
}
.comparison-table thead th {
  background: #FFECE3;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  line-height: 150%;
  border-right: 1px solid #FFC6AA;
}
.comparison-table thead th:last-child {
  border-right: 1px solid transparent;
}
.comparison-table thead th.corner {
  width: 300px;
  text-align: center;
}
@media (max-width: 991.98px) {
  .comparison-table thead th.corner {
    width: 200px;
  }
}
.comparison-table tbody {
  /* 左侧标签列样式 */
}
.comparison-table tbody td {
  padding: 14px 16px;
  font-size: 18px;
  vertical-align: middle;
  text-align: center;
  line-height: 1.5;
  color: #525252;
  border-top: 1px solid #FFC6AA;
  border-right: 1px solid #FFC6AA;
}
.comparison-table tbody td:last-child {
  border-right: 1px solid transparent;
}
.comparison-table tbody td.label {
  width: 300px;
  /* 与 thead .corner 一致 */
  background: rgba(255, 236, 227, 0.3);
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .comparison-table tbody td.label {
    width: 200px;
  }
}
.comparison-table table {
  /* 左上角 */
  /* 右上角 */
  /* 左下角 */
  /* 右下角 */
}
.comparison-table table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
.comparison-table table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}
.comparison-table table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.comparison-table table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.comparison-table .note {
  font-size: 16px;
  color: #525252;
  padding: 12px 24px;
}
@media (max-width: 991.98px) {
  .comparison-table .note {
    min-width: 666px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */