.sheet_box {
    padding: 32px 32px 24px;
    border-radius: 4px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05);
    background-color: #FFF;
}
.sheet_box_title {
    color: #2B2B2B;
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 24px;
}
/* 让外部容器支撑横向滚动 */
.table-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.table-scroll-wrapper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
  border-radius: 4px;
}

.table-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: #C9CDD4;
  border-radius: 4px;
}

.table-scroll-wrapper::-webkit-scrollbar-track {
  background-color: #F2F3F5;
  border-radius: 4px;
}

.compare-table {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px; 
}

/* 单元格基础样式设定 */
.compare-table th,
.compare-table td {
  padding: 20px;
  vertical-align: middle; 
  min-width: 240px;
  width: 1%;
}

.compare-table tbody td {
  background-color: #fff;
  border-bottom: 1px solid #F2F3F5;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.compare-table thead th {
  background-color: #F9F7F2;
  border-bottom: 1px solid #D4C5B9;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}
.compare-table tbody tr:hover td {
  background-color: #F2F3F5 !important;
}

.sheet_feature {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.sheet_icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    flex-shrink: 0;
}

.sheet_icon img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
}

@media only screen and (max-width: 767px) { 
    .sheet_box {
        padding: 16px 12px 20px 12px;
        border: 0.5px solid #F2F3F5;
        box-shadow: 0 0 4.276px 0 rgba(0, 0, 0, 0.05);
    }
    .sheet_box_title {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .compare-table th,
    .compare-table td {
        padding: 16px;
        min-width: 232px;
    }
    .compare-table thead th, .compare-table tbody td {
      font-size: 14px;
    }
    .sheet_feature {
        gap: 8px;
    }
}

