/* 全局样式重置与基础设置 */
    .stemcell {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 15px;
        box-sizing: border-box;
    }
    .stemcell-section {
        margin-bottom: 40px;
        width: 100%;
        box-sizing: border-box;
    }
    /* 核心标题样式（突出宝宝存/妈妈存） */
    .stemcell-title {
        width: 100%;
        margin: 0 0 30px 0;
        padding: 15px 20px;
        background-color: #00864a;
        border-radius: 8px;
    }
    .stemcell-title span {
        font-size: 24px; /* 标题统一放大，突出展示 */
        font-weight: bold;
        color: #ffffff;
        line-height: 1.5;
    }
    /* 行布局统一 */
    .row {
        display: flex;
        flex-wrap: nowrap;
        margin: 0 -8px;
        width: 100%;
        box-sizing: border-box;
		gap: 10px; /* 卡片之间间距 */
    }
    .row .col {
        flex: 1;
        padding: 0 10px;
        min-width: 300px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
	/* 功能卡片列样式 - 强制一行4列 */
	.row-cards .col {
	    flex: 1;
	    padding: 0 8px;
	    min-width: 23%; /* 4个卡片均分宽度 */
	    max-width: 23%;
	    box-sizing: border-box;
	    margin-bottom: 0; /* 取消底部间距 */
	}
	/* 存脐带/脐血列样式 */
	.row-compare .col {
	    flex: 1;
	    padding: 0 15px;
	    min-width: 48%;
	    box-sizing: border-box;
	    margin-top: 30px; /* 图片和文字的间距 */
	}
    /* 内容模块样式 */
    .stemcell-content {
        width: 100%;
        padding: 20px;
        background-color: #f6fbf9;
        border-radius: 8px;
        box-sizing: border-box;
    }
    .stemcell-content-item {
        margin-bottom: 15px;
    }
    .stemcell-content-item h3 {
        font-size: 18px;
        margin: 0 0 8px 0;
        display: inline-block;
    }
    .text-green {
        color: #00864a !important;
    }
    .text-red {
        color: #e53e3e !important;
    }
    .text-bold {
        font-weight: bold !important;
    }
    .stemcell-content-item p {
        font-size: 16px; /* 统一正文文字大小 */
        line-height: 1.6;
        color: #333;
        margin: 0;
    }
    /* 功能卡片样式 */
    .card {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #e8f5e9;
        border-radius: 8px;
        padding: 20px;
        box-sizing: border-box;
        height: 100%;
    }
    .bg-green {
        background-color: #f6fbf9 !important;
    }
    .card-header h3 {
        font-size: 18px;
        color: #00864a;
        font-weight: bold;
        margin: 0 0 10px 0;
    }
    .card-body {
        font-size: 16px; /* 统一卡片内文字大小 */
        line-height: 1.6;
        color: #333;
    }
    .card-body p {
        margin: 0;
    }
    .card-body .ulist {
        margin: 0;
        padding-left: 20px;
    }
    .card-body .ulist li {
        margin-bottom: 8px;
        line-height: 1.6;
    }
    /* 图片样式统一 */
    .stemcell-section img {
        max-width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .text-center {
        text-align: center;
    }
	.img-2 {
	    margin-top: 15px; /* 两张图片之间的间距 */
	}
    /* 三种干细胞表格专属样式 - 最终版：表头无边框/内容带边框 */
    .stemcell-table-wrapper {
        width: 100%;
        overflow-x: auto;
        /* 修复点击错乱：禁止溢出抖动 */
        overflow-x: hidden !important;
    }
    /* 核心表格：无外边框，固定布局防错乱 */
    .stemcell-table-custom {
        width: 100%;
        border-collapse: collapse;
        margin: 0;
        font-size: 16px !important;
        table-layout: fixed !important; /* 固定列宽，彻底防错乱 */
        border: none !important; /* 取消表格外边框 */
    }
    /* 表头行：无任何背景色 */
    .table-header-main {
        background: none !important;
    }
    /* 左上角空单元格：无边框、无背景 */
    .table-header-main .empty-th {
        background: none !important;
        border: none !important;
    }
    /* 列标题（核心修改）：无边框、无背景、无下划线，仅文字+箭头 */
    .col-title {
        background: none !important; /* 取消背景色 */
        color: #00864a;
        font-weight: bold;
        padding: 10px 5px;
        border: none !important; /* 取消标题边框 */
        text-align: center;
        position: relative;
    }
    /* 仅保留绿色箭头，删除下划线 */
    .arrow-down {
        display: block;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #00864a;
        margin: 5px auto 0;
        /* 清除所有多余样式 */
        position: static !important;
    }
    /* 【关键】删除箭头下划线 */
    .arrow-down::after {
        display: none !important;
    }
    /* 行标签列（第一列）：保留样式 */
    .row-label {
        /* background-color: #f0f0f0; */
        font-weight: bold;
        text-align: center;
        padding: 12px 5px;
        border: 1px solid #cccccc; /* 保留边框 */
    }
    /* 偶数行 - 浅绿色背景 */
    .table-row-even {
        background-color: #f6fbf9;
    }
    /* 奇数行 - 白色背景 */
    .table-row-odd {
        background-color: #ffffff;
    }
    /* 内容单元格：保留边框（分隔线） */
    .stemcell-table-custom td {
        padding: 12px 8px;
        text-align: center;
        vertical-align: middle;
        border: 1px solid #cccccc; /* 内容带边框 ✅ */
        word-wrap: break-word;
        font-size: 16px;
    }
    /* 重点文字高亮 */
    .text-red-bold {
        color: #e53e3e !important;
        font-weight: bold !important;
    }
    .text-green-bold {
        color: #00864a !important;
        font-weight: bold !important;
    }
    /* 表格备注文字 */
    .stemcell-table-note {
        margin-top: 15px;
        padding: 10px 0;
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        text-align: left;
    }
    /* 响应式适配 */
    @media (max-width: 768px) {
        .stemcell-table-custom {
            font-size: 14px !important;
        }
        .row-label {
            padding: 8px 3px;
        }
        .stemcell-table-custom td {
            padding: 8px 5px;
            font-size: 14px;
        }
    }
    /* 终极修复：禁止点击后表格变形错乱 */
    .stemcell-table-custom * {
        transition: none !important;
        transform: none !important;
        outline: none !important;
    }
	/* 彻底禁用列标题点击效果 */
	.no-click {
	    pointer-events: none !important; /* 禁止所有点击/hover交互 */
	    cursor: default !important; /* 鼠标指针改为默认（非手型） */
	}
	/* 禁止表格所有元素触发点击事件 */
	.stemcell-table-custom th,
	.stemcell-table-custom td,
	.stemcell-table-custom tr {
	    pointer-events: none !important;
	}
	/* 终极防护：禁止表格区域事件冒泡 */
	.stemcell-table-wrapper {
	    pointer-events: none !important;
	}
	/* 仅保留表格内容可选中（如需复制文字），但无点击效果 */
	.stemcell-table-custom {
	    user-select: text !important;
	    pointer-events: auto !important; /* 恢复表格本身选中功能 */
	}
/* .row {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
} */

.col {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-center {
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-column {
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-1 {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.text-red {
  color: #e50012;
}
.text-green {
  color: #009944;
}
.text-bold {
  font-weight: bold;
}
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}

.immune-cell {
  padding: 1rem;
  margin: 2rem auto;
  background-color: #f2f4f8;
  color: #3e3938;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.immune-cell::before, .immune-cell::after {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.immune-cell-container {
  background-color: #fff;
}
.immune-cell .capsule-list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 90%;
  margin: 20px auto;
}
.immune-cell .capsule-list-item {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.immune-cell .capsule-list-item-title {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  color: #fff;
  background-color: #42b034;
  padding: 10px;
  text-align: center;
  min-width: 100px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.immune-cell .capsule-list-item-content {
  padding: 10px;
}
.immune-cell .section-title {
  color: #008341;
  font-size: 36px;
  text-align: center;
}
.immune-cell .section-subtitle {
  font-size: 24px;
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #dcdcdd;
}
.immune-cell .cut-line {
  position: relative;
  width: 50%;
  height: 4px;
  background: #eee;
}
.immune-cell .cut-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #42b034;
}
.immune-cell-section {
  padding: 40px;
}
.immune-cell-section + .immune-cell-section {
  margin-top: 40px;
}
.immune-cell-section-1.cover {
  position: relative;
  background-color: #f6faf8;
  background-image: url(../images/immune-cell/cover.png);
  -o-background-size: cover;
     background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 925px;
}
.immune-cell-section-1.cover .title {
  position: absolute;
  left: 50px;
  bottom: -100px;
  width: 200px;
  height: 200px;
  padding: 5px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-image: -webkit-linear-gradient(315deg, #9e9f9f 0%, #eeeeee 50%, #9e9f9f 100%);
  background-image: -moz-linear-gradient(315deg, #9e9f9f 0%, #eeeeee 50%, #9e9f9f 100%);
  background-image: -o-linear-gradient(315deg, #9e9f9f 0%, #eeeeee 50%, #9e9f9f 100%);
  background-image: linear-gradient(135deg, #9e9f9f 0%, #eeeeee 50%, #9e9f9f 100%);
  border-radius: 50%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.immune-cell-section-1.cover .title::before, .immune-cell-section-1.cover .title::after {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.immune-cell-section-1.cover .title-inner {
  position: relative;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  background-image: -webkit-linear-gradient(315deg, #dcdcdd, #fefefe);
  background-image: -moz-linear-gradient(315deg, #dcdcdd, #fefefe);
  background-image: -o-linear-gradient(315deg, #dcdcdd, #fefefe);
  background-image: linear-gradient(135deg, #dcdcdd, #fefefe);
  border-radius: 50%;
}
.immune-cell-section-1.cover .title-inner::before, .immune-cell-section-1.cover .title-inner::after {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.immune-cell-section-1.cover .title-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 40%);
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 40%);
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 40%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 40%);
}
.immune-cell-section-1.cover .title-inner h1 {
  font-weight: bold;
  font-size: 42px;
}
.immune-cell-section-1.cover .title-subtitle {
  margin-top: 10px;
  width: 80%;
}
.immune-cell-section-1.cover .title-subtitle-item {
  font-size: 14px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 10px;
}
.immune-cell-section-1.cover .title-subtitle-item:first-child {
  font-size: 18px;
}
.immune-cell-section-1.cover .title-subtitle-item + .title-subtitle-item {
  border-top: 1px solid #3e3938;
}
.immune-cell-section-2 {
  margin-top: 0 !important;
  padding-top: 120px;
  background-color: #f6faf8;
}
.immune-cell-section-3 .ball {
  position: relative;
  margin-top: 20px;
  min-height: 540px;
}
.immune-cell-section-3 .ball-item {
  position: absolute;
  width: 150px;
  height: 150px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #42b034;
  background-image: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0.5) 0%, rgba(21, 21, 21, 0.05) 75%, rgba(255, 255, 255, 0.2) 100%);
  background-image: -moz-linear-gradient(315deg, rgba(255, 255, 255, 0.5) 0%, rgba(21, 21, 21, 0.05) 75%, rgba(255, 255, 255, 0.2) 100%);
  background-image: -o-linear-gradient(315deg, rgba(255, 255, 255, 0.5) 0%, rgba(21, 21, 21, 0.05) 75%, rgba(255, 255, 255, 0.2) 100%);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(21, 21, 21, 0.05) 75%, rgba(255, 255, 255, 0.2) 100%);
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  border: 2px solid #42b034;
  border-radius: 50%;
}
.immune-cell-section-3 .ball-item:nth-child(1) {
  top: 0;
  left: 180px;
}
.immune-cell-section-3 .ball-item:nth-child(2) {
  top: 100px;
  left: 0;
}
.immune-cell-section-3 .ball-item:nth-child(3) {
  top: 180px;
  left: 160px;
  width: 200px;
  height: 200px;
  font-size: 60px;
}
.immune-cell-section-3 .ball-item:nth-child(4), .immune-cell-section-3 .ball-item:nth-child(5) {
  top: 280px;
  left: 30px;
  width: 120px;
  height: 120px;
  font-size: 32px;
}
.immune-cell-section-3 .ball-item:nth-child(5) {
  top: 390px;
  left: 140px;
}
.immune-cell-section-3 .ball-item:nth-child(6) {
  top: auto;
  bottom: 20px;
  left: 0;
  width: 100px;
  height: 100px;
  font-size: 28px;
}
.immune-cell-section-3 .ball-item:nth-child(7) {
  margin-bottom: 60px;
  top: auto;
  bottom: 10px;
  left: auto;
  right: 0;
  width: 320px;
  height: 320px;
  font-size: 80px;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #008341;
  border-color: #008341;
  border-width: 4px;
}
.immune-cell-section-3 .ball-item:nth-child(7)::after {
  position: absolute;
  bottom: -50px;
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}
.immune-cell-section-3 .content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 20px;
}
.immune-cell-section-3 .content .cut-line {
  margin-top: 20px;
  margin-bottom: 10px;
}
.immune-cell-section-3 .content .cut-line::before {
  left: auto;
  right: 0;
}
.immune-cell-section-3 .content p {
  margin-top: 10px;
  font-weight: bold;
  font-size: 32px;
}
.immune-cell-section-4 {
  background-color: #f6faf8;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.immune-cell-section-4 .content {
  margin: 20px auto;
  line-height: 1.8;
}
.immune-cell-section-5 .chart {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  padding: 20px;
  gap: 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.immune-cell-section-5 .chart-content {
  font-size: 24px;
  font-weight: bold;
  color: #008341;
}
.immune-cell-section-5 .chart-tips {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  font-size: 14px;
}
.immune-cell-section-5 .content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.immune-cell-section-5 .content .cut-line {
  margin-top: 40px;
  margin-bottom: 10px;
}
.immune-cell-section-5 .content .cut-line::before {
  left: auto;
  right: 0;
}
.immune-cell-section-5 .content p {
  margin-top: 10px;
  font-weight: bold;
  font-size: 32px;
}
.immune-cell-section-6 {
  background-color: #f6faf8;
}
.immune-cell-section-6 .info-card {
  position: relative;
  margin-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-top: 30px;
  background-color: #fefefe;
  border-left: 20px solid #c6e6c1;
}
.immune-cell-section-6 .info-card:nth-child(even) {
  margin-left: 80px;
}
.immune-cell-section-6 .info-card-num {
  position: absolute;
  top: -20px;
  left: -20px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 8px;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #008341;
  text-shadow: 0 0 4px #fffb81, 0 0 4px #fffb81, 0 0 4px #fffb81;
  -webkit-transform: skewX(-20deg);
     -moz-transform: skewX(-20deg);
      -ms-transform: skewX(-20deg);
       -o-transform: skewX(-20deg);
          transform: skewX(-20deg);
}
.immune-cell-section-6 .info-card-num::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin-left: 5px;
  background-color: #008341;
  box-shadow: 0 0 4px #fffb81, 0 0 4px #fffb81, 0 0 4px #fffb81;
}
.immune-cell-section-6 .info-card-title {
  font-weight: bold;
  color: #008341;
}
.immune-cell-section-6 .info-card-content {
  line-height: 1.8;
}
.immune-cell-section-7 .info-card {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  background-color: #eaf3df;
  border-radius: 20px;
}
.immune-cell-section-7 .info-card-thumb {
  -webkit-flex: 0 0 200px;
     -moz-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  min-height: 200px;
  border-radius: 0 20px 20px 20px;
  background-color: #c6e6c1;
  background-position: center;
  -o-background-size: cover;
     background-size: cover;
  background-repeat: no-repeat;
}
.immune-cell-section-7 .info-card-body {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
}
.immune-cell-section-7 .info-card-content {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
  line-height: 1.8;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.immune-cell-section-7 .info-card:nth-child(odd) .info-card-thumb {
  border-radius: 20px 0 20px 20px;
}
.immune-cell-section-8 {
  background-color: #f6faf8;
}
.immune-cell-section-8 .info-card {
  position: relative;
  margin-top: 20px;
  background-color: #fefefe;
  border: 4px solid #42b034;
  border-radius: 20px;
  overflow: hidden;
}
.immune-cell-section-8 .info-card table {
  margin: -1px;
  width: 100%;
  border-collapse: collapse;
}
.immune-cell-section-8 .info-card th,
.immune-cell-section-8 .info-card td {
  padding: 10px;
  border: 1px solid #dcdcdd;
}
.immune-cell-section-8 .info-card th {
  white-space: nowrap;
}
.immune-cell-section-8 .info-card thead th {
  color: #42b034;
}
.immune-cell-section-8 .info-card thead th:first-child {
  color: #3e3938;
}
.immune-cell-section-9 {
  padding-left: 0;
  padding-right: 0;
}
.immune-cell-section-9 .cover img {
  width: 100%;
  height: auto;
}
.immune-cell-section-9 .content {
  padding: 40px;
  line-height: 1.8;
  font-size: 18px;
}
.immune-cell-section-9 .list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin: 0 40px;
  margin-bottom: 40px;
}
.immune-cell-section-9 .list h3 {
  font-size: 24px;
  font-weight: bold;
}
.immune-cell-section-9 .list .text-sm {
  font-size: 14px;
  color: #717070;
}
.immune-cell-section-9 .list-item {
  padding-left: 50px;
  background-image: url(../images/immune-cell/li-dot.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
  -o-background-size: 35px;
     background-size: 35px;
}
.immune-cell-section-9 .list-item-body {
  background-color: #f3f3f4;
  padding: 20px;
  border-radius: 20px;
  font-size: 18px;
  line-height: 1.8;
}
.immune-cell-section-9 .list-item:last-child {
  padding-top: 15px;
  margin-top: -15px;
}
.immune-cell-section-9 .list-item:last-child .list-item-body h3 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 30px;
  line-height: 1;
}
.immune-cell-section-9 .list-item:last-child .list-item-body h3 div {
  display: inline-block;
  -webkit-transform: translateY(-35px);
     -moz-transform: translateY(-35px);
      -ms-transform: translateY(-35px);
       -o-transform: translateY(-35px);
          transform: translateY(-35px);
}
.immune-cell-section-9 .service-process {
  margin-top: 40px;
  padding: 40px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.immune-cell-section-9 .service-process-info {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.immune-cell-section-9 .service-process-info + .service-process-info {
  margin-top: 10px;
}
.immune-cell-section-9 .service-process-info-num {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #3e3938;
  border-radius: 50%;
  line-height: 1;
}
.immune-cell-section-9 .service-process-info-text {
  font-size: 18px;
}
.immune-cell-section-9 .service-process-item {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.immune-cell-section-9 .service-process-item-title {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 120px;
     -moz-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  background-color: #d8ece2;
}
.immune-cell-section-9 .service-process-item-content {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f3f3f3;
  padding: 20px;
}

@media (max-width: 768px) {
  .row {
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .immune-cell {
    margin-top: 0;
  }
  .immune-cell .capsule-list {
    width: 100%;
    max-width: 100%;
  }
  .immune-cell-section {
    padding: 15px;
    margin-top: 0 !important;
  }
  .immune-cell-section-1.cover {
    min-height: 320px;
  }
  .immune-cell-section-1.cover .title {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .immune-cell-section-2 {
    padding-top: 120px;
  }
  .immune-cell-section-3 .ball {
    position: unset;
    margin-top: 20px;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
    min-height: auto;
  }
  .immune-cell-section-3 .ball-item {
    position: unset;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
  }
  .immune-cell-section-3 .ball-item:nth-child(7) {
    margin-bottom: 0;
  }
  .immune-cell-section-3 .ball-item:nth-child(7)::after {
    display: none;
  }
  .immune-cell-section-3 .ball .ball-shadow {
    width: 100%;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
  }
  .immune-cell-section-3 .content p {
    font-size: 24px;
  }
  .immune-cell-section-5 .chart-content {
    text-align: center;
  }
  .immune-cell-section-5 .content {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .immune-cell-section-5 .content p {
    font-size: 24px;
  }
  .immune-cell-section-6 {
    background-color: #f6faf8;
  }
  .immune-cell-section-6 .info-card {
    position: relative;
    margin-top: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-top: 30px;
    background-color: #fefefe;
    border-left: 20px solid #c6e6c1;
  }
  .immune-cell-section-6 .info-card:nth-child(even) {
    margin-left: 80px;
  }
  .immune-cell-section-6 .info-card-num {
    position: absolute;
    top: -20px;
    left: -20px;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 8px;
    font-size: 44px;
    font-weight: bold;
    line-height: 1;
    color: #008341;
    text-shadow: 0 0 4px #fffb81, 0 0 4px #fffb81, 0 0 4px #fffb81;
    -webkit-transform: skewX(-20deg);
       -moz-transform: skewX(-20deg);
        -ms-transform: skewX(-20deg);
         -o-transform: skewX(-20deg);
            transform: skewX(-20deg);
  }
  .immune-cell-section-6 .info-card-num::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    margin-left: 5px;
    background-color: #008341;
    box-shadow: 0 0 4px #fffb81, 0 0 4px #fffb81, 0 0 4px #fffb81;
  }
  .immune-cell-section-6 .info-card-title {
    font-weight: bold;
    color: #008341;
  }
  .immune-cell-section-6 .info-card-content {
    line-height: 1.8;
  }
  .immune-cell-section-7 .info-card {
    width: 100%;
  }
  .immune-cell-section-9 {
    padding-left: 0;
    padding-right: 0;
  }
  .immune-cell-section-9 .content {
    padding: 15px;
    line-height: 1.8;
    font-size: 18px;
  }
  .immune-cell-section-9 .list {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 0 15px;
    margin-bottom: 15px;
  }
  .immune-cell-section-9 .list h3 {
    font-size: 18px;
  }
  .immune-cell-section-9 .list-item {
    padding-left: 50px;
    -o-background-size: 35px;
       background-size: 35px;
  }
  .immune-cell-section-9 .list-item-body {
    font-size: 14px;
  }
  .immune-cell-section-9 .list-item:last-child .list-item-body h3 {
    height: 20px;
  }
  .immune-cell-section-9 .service-process {
    margin-top: 15px;
    padding: 15px;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .immune-cell-section-9 .service-process-info {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .immune-cell-section-9 .service-process-info + .service-process-info {
    margin-top: 10px;
  }
  .immune-cell-section-9 .service-process-info-num {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #3e3938;
    border-radius: 50%;
    line-height: 1;
  }
  .immune-cell-section-9 .service-process-info-text {
    font-size: 18px;
  }
  .immune-cell-section-9 .service-process-item {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .immune-cell-section-9 .service-process-item-title {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 0 0 120px;
       -moz-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: bold;
    background-color: #d8ece2;
  }
  .immune-cell-section-9 .service-process-item-content {
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-color: #f3f3f3;
    padding: 20px;
  }
}