@charset "UTF-8";

/* 水平进度条样式 */
.analysis_step__progress {
  padding: 8px 12px 30px;
  width: 100%;
  margin: 0 auto;
  background: #f9f9fb;
  border-radius: 4px;
  margin-bottom: 10px;
}

.analysis_step__progress--bar {
  position: relative;
}

/* 节点 */
.nodes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 6px;
}

.nodes .node {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.nodes .node::before {
  content: '';
  position: absolute;
}

.node-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d2d5da;
}

.node-icon i {
  font-family: 'iconfont';
  color: #fff;
  font-size: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.node-label {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  color: #666;
  /* display: none; */
}

.nodes .node:first-of-type .node-label {
  left: 0;
  transform: translateX(0);
}

.nodes .node:last-of-type .node-label {
  left: unset;
  right: 0;
  transform: translateX(0);
}

/* 已完成状态*/
.node.done {
  border-color: var(--theme-light-color);
  background: var(--theme-light-color);
}

.node.done .node-icon {
  width: 11px;
  height: 11px;
  background: var(--theme-primary-color);
}

.node.done .node-icon i::before {
  content: '\e633';
  position: relative;
  transform: scale(0.5);
}

.node.done .node-label {
  display: block;
}

/* 处理中状态*/
.node.active {
  border-color: transparent;
  background: transparent;
  /* animation: pulse 1.5s infinite; */
}

.node.active .node-icon {
  background: transparent;
  width: auto;
  height: auto;
  border-radius: unset;
}

.node.active .node-icon i {
  font-size: 15px;
  font-style: normal;
  color: var(--theme-primary-color);
  animation: font-scale 1.5s infinite;
}

.node.active .node-icon i::before {
  content: '\e6da'
}

.node.active .node-label {
  display: block;
  color: var(--theme-primary-color);
}

/* 待处理状态（默认）*/
.node.pending {
  border-color: #ddd;
}

.node_progress {
  width: calc(30% - 24px);
  height: 3px;
  border-radius: 100px;
  background-color: #ebeef5;
  overflow: hidden;
  position: relative;
  flex: 1;
}

.node_progress.big-padding {
  width: calc(45% - 24px);
}

.node_progress--bar {
  background: linear-gradient(90deg, var(--theme-secondary-color) 0%, var(--theme-primary-color) 100%);
  width: 0%;
  height: 100%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 110, 33, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(33, 150, 243, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
  }
}

@keyframes font-scale {
  0% {
    font-size: 15px;
  }

  50% {
    font-size: 20px;
    opacity: 0.7;
  }

  100% {
    font-size: 15px;
  }
}

@keyframes rotate-radius {
  0% {
    border-radius: 10%;
    transform: rotate(0deg);
    border-color: var(--theme-primary-color);
  }

  50% {
    border-radius: 50%;
    transform: rotate(180deg);
    border-color: var(--theme-primary-color);
  }

  100% {
    border-radius: 10%;
    transform: rotate(360deg);
    border-color: var(--theme-primary-color);
  }
}

/* 知识库阅读动画 */
.analysis_step__knowledgebase_reading__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10px;
  gap: 6px;
  color: var(--theme-light-text-color);
  /* 文字效果 */
  background: linear-gradient(90deg, var(--theme-light-text-color) 0%, var(--theme-medium-text-color) 0%, var(--theme-dark-text-color) 10%, var(--theme-light-text-color) 15%);
  background-size: 200% 105%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gloss 5s cubic-bezier(0.4, 0, 1, 1) infinite;
  overflow: hidden;
  font-size: 12px;
}

.analysis_step__knowledgebase_reading__title {
  display: flex;
}

.analysis_step__knowledgebase_reading__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 16px;
  row-gap: 4px;
}

.analysis_step__knowledgebase_reading__content .knowledgebase-reading-item {
  display: flex;
}

.analysis_step__knowledgebase_reading__content .knowledgebase-reading-item p {
  display: flex;
  align-items: center;
}

.analysis_step__knowledgebase_reading__inner b {
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: url(/static/img/client/kb_reading_icon.gif);
  background-size: 100% 100%;
}

.analysis_step__knowledgebase_reading__inner.is-stop b {
  background: linear-gradient(45deg, var(--theme-primary-color), var(--theme-secondary-color));
  background-repeat: no-repeat;
  width: 10px;
  min-width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 3px;
}

.analysis_step__knowledgebase_reading__inner p {
  white-space: nowrap;
  color: inherit;
}

.analysis_step__knowledgebase_reading__inner p em {
  margin: 0 4px;
  color: inherit;
  color: var(--theme-secondary-color)
}

.analysis_step__knowledgebase_reading__inner span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  color: inherit;
  margin-left: 10px;
}

/* 案情梳理 */
.analysis_summary__block .analysis_detail_content {
  background: transparent;
  border: 0;
  padding: 0 8px;
}

.ai-casesummary__wrap {
  /* padding: 10px; */
  border-radius: 8px;
  /* background-color: #f9f9fb; */
}

.ai-casesummary__item {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-casesummary__item:last-child {
  margin-bottom: 0;
}

.ai-casesummary__title {
  color: var(--theme-dark-text-color);
  font-weight: 400;
  line-height: 22px;
  position: relative;
  margin-bottom: 4px;
}

.ai-casesummary__content {
  color: var(--theme-dark-text-color);
  font-weight: 400;
  line-height: 22px;
  display: flex;
  align-items: flex-start;
}

.ai-casesummary__label {
  display: inline-block;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  color: var(--theme-light-text-color);
  white-space: nowrap;
  min-width: 56px;
}

.ai-casesummary__value {
  display: inline-block;
  cursor: text;
}

.ai-casesummary__value * {
  border: none;
  background-color: #f9f9fb;
  border-radius: 4px;
  padding: 4px 12px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  color: var(--theme-dark-text-color);
}

/* 案件研判报告 */
.analysis_report__block .analysis_detail_content {
  background: transparent;
  border: 0;
  padding: 0 8px;
}

/* 争议焦点 */
.ai-casefocus__wrap {
  position: relative;
}

.ai-casefocus__title {
  margin-bottom: 12px;
  position: relative;
}

.ai-casefocus__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-casefocus__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-casefocus__item-header {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 7px;
}

.ai-casefocus__item-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  margin: 0;
  padding: 2px 12px;
  border-radius: 4px;
  background: linear-gradient(90.00deg, rgb(209, 236, 255), rgb(213, 203, 255) 120.161%);
  color: #2B4170;
}

.ai-casefocus__item-focus {
  display: inline-block;
  color: var(--theme-dark-text-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0;
  text-align: left;
}

.ai-casefocus__item-content {
  border-radius: 8px;
  background: #f9f9fb;
  padding: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.ai-casefocus__item-subtitle {
  color: var(--theme-dark-text-color);
  font-size: 14px;
  font-weight: 200;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: left;
}

.ai-casefocus__item-desc {
  text-align: justify;
  color: var(--theme-dark-text-color);
}

/* 法律建议 */
.ai-lawadvice__title {
  margin: 24px 0 16px;
}

.ai-lawadvice__content {
  padding: 16px;
  border-radius: 8px;
  background: rgba(249, 249, 251, 1);
  color: var(--theme-dark-text-color);
}

/* 案件特征 */
.analysis_features__block {
  margin-top: 20px;
  padding-bottom: 5px;
}

.analysis_features__block .analysis_detail_content {
  background: transparent;
  border: 0;
  padding: 0 8px;
}

.ai-casefeature__list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.ai-casefeature__list .label_box {
  margin-bottom: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 4px;
}

.ai-casefeature__list .label_box:last-of-type {
  margin-bottom: 0;
}

.ai-casefeature__list .label_box label {
  margin: 0;
  display: inline-block;
  line-height: 24px;
  color: #999;
}

.ai-casefeature__list .label_box .con_box {
  display: inline-flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 8px;
  row-gap: 8px;
}

.ai-casefeature__list .label_box .label_item {
  text-align: center;
  padding: 0 8px;
  line-height: 24px;
  font-size: 14px;
  color: var(--theme-medium-text-color);
  display: inline-block;
  border-radius: 2px;
  background: #f5f5f5;
}

.ai-casefeature__list .label_box .label_item em {
  display: none;
}

.ai-casefeature__list .label_box .label_item em::after {
  content: '\e6fc';
  font-family: "iconfont" !important;
  font-size: 14px;
  cursor: pointer;
  margin-left: 12px;
  color: #999;
}

/* 案例列表 */
.analysis_caselist__block .analysis_detail_content {
  background: transparent;
  border: 0;
  padding: 0 8px;
}

.ai-case__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ai-case__checkall {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}

.ai-case__checkall i {
  display: inline-block;
  position: relative;
  border: 1px solid #eee;
  border-radius: 4px;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  background-color: #fff;
  z-index: 1;
  transition: border-color .25s cubic-bezier(.71, -.46, .29, 1.46), background-color .25s cubic-bezier(.71, -.46, .29, 1.46);
  cursor: pointer;
}

.ai-case__checkall i:hover {
  border-color: var(--theme-primary-color)
}

.ai-case__checkall i:after {
  box-sizing: content-box;
  content: "";
  border: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 7px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg) scaleY(0);
  width: 3px;
  transition: transform .15s ease-in .05s;
  transform-origin: center
}

.ai-case__checkall.is-check--all i:after {
  transform: rotate(45deg) scaleY(1)
}

.ai-case__checkall.is-check--half i:before {
  content: "";
  position: absolute;
  display: block;
  background-color: #fff;
  height: 2px;
  transform: scale(.5);
  left: 0;
  right: 0;
  top: 6px;
}

.ai-case__checkall.is-check--half i:after {
  display: none
}

.ai-case__checkall.is-check--half i,
.ai-case__checkall.is-check--all i {
  border-color: var(--theme-primary-color);
  background: var(--theme-primary-color);
}

.ai-case__checkall.is-check--all i::before {
  transform: rotate(45deg) scaleY(1);
}

.ai-case__download {
  color: var(--theme-primary-color);
  cursor: pointer;
  padding: 0 10px;
  border-radius: 4px;
  line-height: 22px;
  display: inline-flex;
  column-gap: 8px;
}

.ai-case__download i {
  font-size: 14px;
}

.ai-case__list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.ai-case__item {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.ai-case__header {
  padding: 0 12px 12px;
}

.ai-case__info {
  padding: 12px 0 10px;
  position: relative;
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
}

.ai-case__info--left {
  width: 20px;
  min-width: 20px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 0;
}

.ai-case__number {
  display: inline-flex;
  justify-content: center;
  font-style: normal;
  font-weight: 400;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 4px;
  background: var(--theme-lighter-color);
  color: var(--theme-primary-color);
  font-size: 12px;
}

.is-checked .ai-case__number {
  display: none;
}

.ai-icon.ai-icon--check {
  display: none;
  position: relative;
  border: 1px solid #eee;
  border-radius: 4px;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  background-color: #fff;
  z-index: 1;
  transition: border-color .25s cubic-bezier(.71, -.46, .29, 1.46), background-color .25s cubic-bezier(.71, -.46, .29, 1.46);
  cursor: pointer;
}

.is-checked .ai-icon.ai-icon--check {
  display: block;
}

.ai-icon.ai-icon--check:hover {
  border-color: var(--theme-primary-color)
}

.ai-icon.ai-icon--check:after {
  box-sizing: content-box;
  content: "";
  border: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 7px;
  left: 5px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg) scaleY(0);
  width: 3px;
  transition: transform .15s ease-in .05s;
  transform-origin: center
}

.is-checked .ai-icon.ai-icon--check:after {
  transform: rotate(45deg) scaleY(1)
}

.is-checked .ai-icon.ai-icon--check {
  border-color: var(--theme-primary-color);
  background: var(--theme-primary-color);
}

.is-checked .ai-icon.ai-icon--check::before {
  transform: rotate(45deg) scaleY(1);
}

.ai-case__item:hover .ai-case__number,
.ai-case__item:active .ai-case__number {
  display: none;
}

.ai-case__item:hover .ai-icon--check,
.ai-case__item:active .ai-icon--check {
  display: inline-flex;
}

.ai-case__info--right {
  flex-grow: 1;
}

.ai-case__info--right>span[data-t] {
  display: inline-flex;
  border-radius: 4px;
  background: var(--theme-secondary-color);
  padding: 0 6px;
  font-size: 12px;
  font-weight: 400;
  vertical-align: middle;
  margin-right: 8px;
  color: #fff;
}

.ai-case__info--right>span[data-t="指导性案例"] {
  background: var(--theme-label-third-bg-color);
}

.ai-case__info--right>span[data-t="参考案例"],
.ai-case__info--right>span[data-t="参考性案例"],
.ai-case__info--right>span[data-t="参考性普通案例"] {
  background: var(--theme-label-second-bg-color);
}

.ai-case__info--right>span[data-t="典型案例"] {
  background: var(--theme-label-first-bg-color);
}

.ai-case__info--right>span[data-t="检察案例"] {
  background: var(--theme-secondary-color);
}

.ai-case__info--right>span[data-t="公报案例"] {
  background: var(--theme-primary-color);
}

.ai-case__title {
  color: var(--theme-dark-text-color);
}

.ai-case__title:hover,
.ai-case__title:active,
.ai-case__title:focus {
  color: var(--theme-primary-color);
}

.ai-case__meta {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}

.ai-case__meta * {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}

.ai-case__meta-sep {
  color: var(--theme-light-text-color);
}

.ai-tab-panel {
  position: relative;
}

.ai-tab__header {
  font-size: inherit;
}

.ai-tab__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ai-tab__item {
  padding: 9px 10px;
  color: var(--theme-secondary-color);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.ai-tab__item.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--theme-secondary-color);
}

.ai-tab__content {
  font-size: 13px;
  background: #F9F9FB;
  padding: 16px;
  max-height: 150px;
  overflow-y: auto;
  display: none;
}

.ai-tab__content-item {
  pointer-events: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}

.ai-tab__content-item.active {
  pointer-events: auto;
  opacity: 1;
  height: 100%;
  overflow: visible;
}

/* 引用法规 */
.ai-tab__lawlist {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.ai-lawlist__item {
  display: flex;
}

.ai-lawlist__content {
  display: inline-flex;
  gap: 10px 20px;
  line-height: 20px;
  flex-wrap: wrap;
}

.ai-lawlist__title {
  color: var(--theme-dark-text-color);
  padding-left: 10px;
  position: relative;
}

.ai-lawlist__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--theme-primary-color);
}

.ai-lawlist__reference {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}

.ai-lawlist__reference * {
  color: var(--theme-light-text-color);
}

.ai-lawlist__reference .quote-count {
  color: var(--theme-primary-color);
}

.ai-lawlist__link {
  color: var(--theme-light-text-color);
}

.ai-lawlist__link:hover,
.ai-lawlist__link:active,
.ai-lawlist__link:focus {
  color: var(--theme-light-text-color);
}

/* 关联案例 */
.ai-tab__caselist {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.ai-caselist__item {
  display: flex;
  position: relative;
}

.ai-caselist__content {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.ai-caselist__title {
  display: block;
}

.ai-caselist__title span {
  display: inline-flex;
  line-height: 18px;
  color: var(--theme-primary-color);
  border: 1px dashed var(--theme-secondary-color);
  background: var(--theme-lighter-color);
  padding: 0 6px;
  border-radius: 1px;
  margin-right: 8px;
}

.ai-caselist__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 6px;
  color: var(--theme-light-text-color);
}

.ai-caselist__meta span {
  white-space: nowrap;
}

/* 加载更多按钮 */
.ai-case__more {
  text-align: center;
  background: #F9F9FB;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.3s;
}

.ai-case__more:hover {
  background: var(--theme-light-color);
  color: var(--theme-primary-color);
}

.ai-case__more button {
  width: 100%;
  background: transparent;
  color: inherit;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  margin: 4px auto;
}

/* 批下载弹窗 */
.ai-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4); */
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.ai-modal.in {
  display: block;
}

.ai-modal .modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.ai-modal .modal-wrapper {
  margin: 0 auto 50px;
}

.ai-modal .modal-wrapper {
  width: 92%;
  min-width: 360px;
  max-width: 550px;
  height: auto;
}

.ai-modal .modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .3);
  width: 100%;
  border-radius: 4px;
}

.ai-modal .modal-head {
  position: relative;
  line-height: 40px;
  padding: 0 16px;
  border-bottom: 1px solid #EDEDED;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  background: #efefef;
}

.ai-modal .modal-head>b {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  flex-grow: 1;
  line-height: inherit;
}

.ai-modal .modal-head>i {
  float: right;
  font-size: 14px;
  cursor: pointer;
}

.ai-modal .modal-body {
  color: #666;
  line-height: 22px;
  display: flex;
  flex-direction: column;
  min-height: 160px;
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
}

.ai-modal .modal-foot {
  padding: 16px;
  text-align: center;
  font-size: 0;
  box-shadow: 0 -4px 12px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: flex-end;
}

.ai-modal .modal-btns-container {
  display: flex;
  /* flex: 1; */
  justify-content: flex-end;
  column-gap: 12px;
}

.ai-modal .modal-btns-container .btn {
  flex: 1;
  background: var(--theme-primary-color);
  color: #fff;
  border-radius: 3px;
  line-height: 30px;
  font-size: 13px;
  cursor: pointer;
  padding: 0 12px;
  width: 80px;
  border: 1px solid var(--theme-primary-color);
}

.ai-modal .modal-btns-container .btn.btn-cancel {
  background: #FFF;
  border-color: var(--theme-primary-color);
  color: var(--theme-primary-color);
}

.ai-modal .modal-btns-container .btn:first-child {
  margin-left: 0;
}

.ai-modal .modal-btns-container .btn.btn-disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.5;
}

/* 批量下载 */
.case-batchdownload__content {
  padding: 10px 16px 20px;
}

.case-batchdownload__describe {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 4px;
  font-size: 14px;
}

.case-batchdownload__describe-item span {
  margin: 0 2px
}

.case-batchdownload__panel {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  row-gap: 16px;
}

.case-batchdownload__area {
  display: flex;
  /* flex-direction: column; */
  row-gap: 8px;
}

.case-batchdownload__area-title {
  min-width: 70px;
  color: var(--theme-dark-text-color);
}

.case-batchdownload__area-content {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.case-batchdownload__area-content.flex-column {
  flex-direction: column;
}

.case-batchdownload__area-content-item {
  display: flex;
  align-items: center;
  column-gap: 6px;
}

.case-batchdownload__area-content-item.active {
  color: var(--theme-dark-text-color);
}

.case-batchdownload__area-content-item.disabled {
  cursor: not-allowed;
}

.case-batchdownload__area-content-item b {
  border: 1px solid #dcdfe6;
  border-radius: 100%;
  width: 14px;
  height: 14px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
}

.case-batchdownload__area-content-item b::before {
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: var(--theme-primary-color);
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.1s ease-in;
}

.case-batchdownload__area-content-item.disabled b,
.case-batchdownload__area-content-item.disabled b:hover {
  cursor: not-allowed;
}

.case-batchdownload__area-content-item:not(.disabled):hover b {
  border-color: var(--theme-primary-color);
}

.case-batchdownload__area-content-item.active b {
  border-color: var(--theme-primary-color);
}

.case-batchdownload__area-content-item.active b::before {
  transform: translate(-50%, -50%) scale(2);
}

.case-batchdownload__area-content-item em {
  border: 1px solid #dcdfe6;
  border-radius: 3px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
}

.case-batchdownload__area-content-item em::before {
  box-sizing: content-box;
  content: "";
  border: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 6px;
  left: 4px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg) scaleY(0);
  width: 3px;
  transition: transform .15s ease-in .05s;
  transform-origin: center;
}

.case-batchdownload__area-content-item:hover em {
  border-color: var(--theme-primary-color);
}

.case-batchdownload__area-content-item.active em {
  border-color: var(--theme-primary-color);
  background: var(--theme-primary-color);
}

.case-batchdownload__area-content-item.active em::before {
  transform: rotate(45deg) scaleY(1);
}

.case-batchdownload__area-content-item span {
  display: inline-flex;
  align-items: center;
  column-gap: 2px
}

.case-batchdownload__area-content-item span input {
  width: 50px;
  height: 26px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  background-color: #fff;
  margin: 0 4px;
  padding: 0 4px;
  text-align: center;
}

.case-batchdownload__area-content-item span input:focus {
  border-color: var(--theme-primary-color);
}

.case-batchdownload__area-content-item i.icon-excel {
  color: #03a87b;
}

.case-batchdownload__area-content-item i.icon-word {
  color: #3874f6;
}

.case-batchdownload__area-content-item i.icon-pdf {
  color: #dd2121;
}