/* 界说全局css变量 */
:root {
  /* 默认尺度字号 */
  --font-size: 16px;
  /* 小字号 */
  --font-size-small: 14px;
  /* 大字号 */
  --font-size-large: 18px;
  /* 主题色 */
  --theme-color: #bd1a2d;
  /* 默认字体颜色 */
  --font-color: #333;
  /* 灰度字体颜色 */
  --font-color-gray: #999;
  /* 标题颜色 */
  --title-color: #0042A2;
}

/* 头部 */
#head {
  background: var(--theme-color);
}

.header {
  width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .ipt_box {
  width: 500px;
  position: relative;
}

.header #main_ipt {
  width: 500px;
  padding: 10px 12px;
  padding-right: 106px;
  border-radius: 10px;
  border: 0px;
  height: 60px;
  font-size: var(--font-size);
  color: var(--font-color);
}

.header #main_ipt:focus {
  box-shadow: 0px 1px 8px 0px var(--theme-color);
}

.header #main_ipt.readonly:focus {
  box-shadow: unset;
}

.header #main_ipt::placeholder {
  color: var(--font-color-gray);
}

.header .ipt_box .voice {
  display: none;
  position: absolute;
  height: 20px;
  top: 50%;
  right: 110px;
  transform: translateY(-50%);
}

.header .ipt_box .voice img {
  width: 12px;
  height: 20px;
}

.voice_tips {
  display: none;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
  border-radius: 6px;
  height: 32px;
  width: 140px;
  text-align: center;
  line-height: 32px;
  font-size: var(--font-size-small);
  color: #626675;
  position: absolute;
  z-index: 2;
  top: 43px;
  right: -15px;
}

.header .ipt_box .voice:hover .voice_tips {
  display: block;
}

#main_ipt.has_voice {
  padding-right: 126px;
}

.header #search_btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 60px;
  color: var(--font-color-gray);
  background: #f5f5f6;
  border-radius: 0px 10px 10px 0;
  border: 0;
  top: 0px;
  right: 0;
  font-size: var(--font-size);
}

.header #search_btn img {
  width: 23px;
  margin-right: 7px;
}

/* 头部热搜词 */
.header_search_hot {
  display: flex;
  margin-top: 25px;
}

.h_hot_title {
  margin-left: 14px;
  white-space: nowrap;
}

.h_hot_list {
  display: flex;
  flex-wrap: wrap;
}

.h_hot_item {
  margin-right: 14px;
}

.header_search_hot .h_hot_word {
  font-size: var(--font-size-small);
  line-height: 14px;
  font-weight: 400;
  color: #ffffff;
}

/* 右侧热搜词 */
.hot_word_chart_box {
  width: 100%;
  height: 283px;
}

.hot_word_chart_box #hot_word_chart_main {
  width: 100%;
  height: 100%;
}

.hot_word_list_text {
  max-width: 289px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.hot_word_small_txt {
  width: 20px;
  height: 20px;
  background: #FF6600;
  border-radius: 4px;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 20px;
  text-align: center;
  margin-left: 5px;
  flex-shrink: 0;
}

.hot_word_list_item {
  display: flex;
  height: 50px;
  align-items: center;
  padding: 0px 20px;
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
}

.hot_word_list_item+.hot_word_list_item {
  border-top: 1px solid #eee;
}

.hot_word_list_num {
  font-weight: bold;
  color: var(--font-color-gray);
  line-height: 16px;
  margin-right: 10px;
}

.hot_word_list_item:first-child .hot_word_list_num {
  color: #a91728;
}

.hot_word_list_item:nth-child(2) .hot_word_list_num {
  color: #f55c10;
}

.hot_word_list_item:nth-child(3) .hot_word_list_num {
  color: #ffba25;
}

/* 头部导航 */
.header_nav {
  width: 100%;
  background: var(--theme-color);
  border-top: 1px solid #8f1322;
}

.header_nav_middle {
  width: 1200px;
  display: flex;
  margin: 0 auto;
}

.header_nav_item {
  color: #fff;
  line-height: 60px;
  margin-left: 19px;
  margin-right: 20px;
  font-weight: 400;
  font-size: 24px;
  flex-shrink: 0;
}

.header_nav_item a {
  display: inline-block;
  position: relative;
  height: 56px;
  line-height: 60px;
  font-size: var(--font-size-large);
  font-weight: 400;
  color: #fff;
}

.header_nav_item:hover a {
  border-bottom: 2px solid #f5d389;
}

.header_nav_item:hover a:after {
  content: " ";
  display: block;
  width: 0;
  margin: 0 auto;
  height: 0;
  border: 6px solid #f2f2f2;
  border-color: transparent transparent #f5d389 transparent;
  margin-top: -16px;
}

.header_nav_middle .on a {
  border-bottom: 2px solid #f5d389;
}

.header_nav_middle .on a:after {
  content: " ";
  display: block;
  width: 0;
  margin: 0 auto;
  height: 0;
  border: 6px solid #f2f2f2;
  border-color: transparent transparent #f5d389 transparent;
  margin-top: -16px;
}

.header_nav_item:first-child {
  padding-left: 0;
}

.header_nav_item:last-child {
  padding-right: 0;
}

/* 服务弹窗 */
.work_draw {
  display: none;
  position: fixed;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.2);
  font-size: var(--font-size);
  justify-content: center;
  color: var(--font-color);
}

.work_draw_div {
  width: 1000px;
  background: #ffffff;
}

.work_header {
  width: 100%;
  height: 68px;
  background: var(--theme-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work_header_title {
  padding-left: 20px;
  height: 68px;
  line-height: 68px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  max-width: 900px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.work_header_close {
  width: 26px;
  height: 26px;
  background: url(/so/srpc/zh/static/ai/images/ai_close.png) no-repeat center;
  background-size: 100% 100%;
  margin-right: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.work_main {
  padding: 20px;
  max-height: 655px;
  overflow-y: auto;
}

.main_region {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px dashed #e8e8e8;
  line-height: 16px;
}

.main_region_title {
  font-size: var(--font-size);
  color: var(--font-color);
  margin-right: 10px;
}

.main_region .main_region_con span {
  font-size: var(--font-size);
  font-weight: bold;
  color: var(--font-color);
  cursor: pointer;
}

.main_region .main_region_con .region_split {
  margin: 0 6px;
  font-weight: normal;
}

.main_region .main_region_con .disabled {
  color: #bcbcbc;
  cursor: not-allowed;
}

.main_region_list {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dashed #e8e8e8;
}

.region_item {
  padding: 0px 14px;
  height: 46px;
  line-height: 46px;
  font-size: var(--font-size-small);
  font-weight: 400;
  color: var(--font-color);
  cursor: pointer;
}

.main_region_list .on {
  background: var(--theme-color);
  color: #ffffff;
}

.main_region_list .disabled {
  padding: 0px 14px;
  height: 46px;
  line-height: 46px;
  font-size: var(--font-size-small);
  font-weight: 400;
  color: #bcbcbc;
  cursor: not-allowed;
}

.work_list {
  padding: 15px 20px;
}

.work_main .work_list .list_item {
  display: flex;
  justify-content: space-between;
}

.work_main .work_list .list_item+.list_item {
  margin-top: 20px;
}

.work_list>div,
.work_list .work_list_title>div {
  flex-shrink: 0 !important;
}

.work_list .work_list_title .item_left {
  display: flex;
  align-items: center;
  font-weight: bold;
  flex: 8;
}

.work_list .work_list_title .item_right {
  display: flex;
  align-items: center;
  flex: 2;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}

.work_list .work_body_content .item_left_box {
  flex: 8;
  flex-shrink: 0;
  width: 80%;
  overflow: hidden;
}

.work_list .work_body_content .item_left {
  display: flex;
  align-items: center;
  max-width: 100%;
  margin-right: 40px;
  margin-bottom: 15px;
}

.work_list .work_body_content .item_left_box .implementing_entity {
  margin-left: 10px;
  font-size: var(--font-size-small);
  color: var(--font-color-gray);
}

.work_list .work_body_content .item_left .item_title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 10px;
}

.work_list .work_body_content .item_block_position {
  width: 12px;
  height: 18px;
  background: url(/so/srpc/zh/static/ai/images/work_block_position.png);
  background-size: 100%;
  flex-shrink: 0;
}

.work_list .work_body_content .item_right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 2;
  flex-shrink: 0;
  gap: 20px;
}

.work_btn {
  white-space: nowrap;
  padding: 0 5px;
  line-height: 26px;
  text-align: center;
  border-radius: 4px;
  font-size: var(--font-size);
  font-weight: 400;
  cursor: pointer;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

.work_disabled {
  white-space: nowrap;
  padding: 0 5px;
  line-height: 26px;
  text-align: center;
  border-radius: 4px;
  font-size: var(--font-size);
  font-weight: 400;
  cursor: not-allowed;
  border: 1px solid #bcbcbc;
  color: #bcbcbc;
}

.work_page {
  padding: 10px 20px 20px;
  display: none;
}

.work_page_box {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.work_page_box a,
.work_page_box span {
  min-width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 4px;
  font-size: var(--font-size-small);
  color: var(--font-color);
  padding: 0 6px;
  background: #ffffff;
}

.work_page_box a {
  cursor: pointer;
  border: 1px solid #e6e6e6;
}

.work_page_box span {
  border: 1px solid transparent;
}

.work_page_box .work_page_active {
  background: #f3f3f3;
  border-color: #f3f3f3;
  color: var(--font-color);
}

.work_page_box .work_page_prev,
.work_page_box .work_page_next {
  font-size: var(--font-size-small);
  color: #666666;
}

.similar_item_page {
  display: flex;
  justify-content: flex-end;
}

.similar_item_page .M_box11 {
  width: fit-content;
}

.similar_item_page .M_box11 a,
.similar_item_page .M_box11 span {
  min-width: 22px;
  line-height: 22px;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
  font-size: var(--font-size-small);
  color: var(--font-color);
  margin: 0 5px;
}

.similar_item_page .M_box11 .work_page_active,
.similar_item_page .M_box11 .active {
  background: #f3f3f3;
  color: var(--font-color);
}

.similar_item_page .M_box11 .work_page_prev,
.similar_item_page .M_box11 .work_page_next,
.similar_item_page .m_style .next,
.similar_item_page .m_style .prev {
  width: auto;
  padding: 0 12px;
  color: #666666;
  font-size: var(--font-size-small);
  font-weight: normal;
}

.clear {
  clear: both;
}

/* 中间 */
/* 牢固样式 */
.middle {
  position: relative;
  margin: 20px 0;
}

.middle .anwser_box {
  width: 1200px;
  margin: 0 auto;
  display: none;
}

.middle .anwser_box em {
  font-weight: normal;
}

.middle .anwser_box.person {
  height: calc(100vh - 140px);
}

.answer_container {
  width: 100%;
}

.answer_container .answer_main_container {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.anwser_box .answer_container+.answer_container {
  padding-top: 40px;
  margin-top: 10px;
  border-top: 1px dashed #ccc;
}

.anwser_box .answer_container .question_box {
  padding: 0 25px;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
}

.answer_container .question_box+.answer_main_container {
  margin-top: 40px;
}

.box_left {
  width: 850px;
  background: #fff;
  padding: 24px;
}

.box_right {
  width: 336px;
}

.right_container {
  display: none;
}

/* 左侧盒子 */
/* 加载图标 */
.box_left .loading_spinner_box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.loading_spinner_box .loading_step {
  display: flex;
  align-items: center;
}

.loading_spinner_box .step_text {
  color: #BFBFBF;
}

.loading_spinner_box .going .step_text,
.loading_spinner_box .end .step_text {
  color: var(--font-color);
  white-space: nowrap;
}

.loading_spinner_box .left_loading_spinner {
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
}

.loading_spinner_box .step_link {
  margin: 0 15px;
  color: #BFBFBF;
  display: flex;
  align-items: center;
}

.loading_spinner_box .step_link span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #BFBFBF;
}

.loading_spinner_box .step_link span+span {
  margin-left: 3px;
}

.loading_spinner_box .step_link img {
  display: none;
}

.loading_spinner_box .end+.step_link span {
  display: none;
}

.loading_spinner_box .end+.step_link img {
  display: inline-block;
  width: 15px;
}

.loading_spinner_box .going .left_loading_spinner {
  display: block;
  animation: spin .8s linear infinite;
  border: 2px solid #D5E3FF;
  border-top: 2px solid #3968FF;
}

.loading_spinner_box .end .left_loading_spinner {
  display: block;
  background: url(/so/srpc/zh/static/ai/images/end.png) no-repeat center;
  background-size: 100%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 列表数据展示 */
.box_left .docs_list_box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
}

/* 大模型流式回复块 */
.box_left .llm_box {
  line-height: 2;
  font-size: var(--font-size);
  border: 1px solid #E5E5E5;
  padding: 20px 12px;
}

.box_left .llm_box .llm_text {
  position: relative;
}

.llm_text .right_list_extend {
  left: 0;
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .7), #fff 100%);
  content: " ";
  max-height: 80px;
  height: 40px;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
}

.llm_text .right_list_extend * {
  margin-bottom: 0;
}

.llm_text .right_list_extend .inner {
  bottom: -6px;
}

.llm_text .right_list_extend .inner .img {
  background: url(/so/srpc/zh/static/ai/images/jiantou.png) no-repeat center;
  background-size: 14px 8px;
}

.llm_text .right_list_extend.on {
  position: sticky;
}

.llm_text .right_list_extend.on .inner {
  position: sticky;
  transform: unset;
  top: unset;
  left: unset;
}

.llm_text a {
  color: var(--theme-color);
}

.llm_text a:hover {
  text-decoration: underline;
}

.llm_text h3,
.llm_text h3>* {
  font-size: var(--font-size-large);
}

.llm_text table {
  width: 100%;
  border-collapse: collapse;
  /* 合并表格边框 */
}

.llm_text th,
.llm_text td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.llm_text th {
  background-color: #f2f2f2;
}

.llm_text tr:nth-child(even) {
  background-color: #f9f9f9;
}

.llm_text tr:hover {
  background-color: #e2e2e2;
}

.llm_text * {
  margin-bottom: 5px;
}

.llm_text .pl_2em {
  padding-left: 2em;
}

.llm_text hr,
.llm_text br+br {
  display: none !important;
}

.llm_text em,
.llm_text a.em_a {
  border-radius: 50%;
  margin-left: 5px;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 22px;
  background: rgba(189, 26, 45, 0.1);
  font-size: 12px;
  color: var(--theme-color);
  margin-bottom: 0;
  text-align: center;
}

.llm_text a.em_a:hover {
  text-decoration: unset;
}

.llm_text span.proprietary {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.llm_text span.noun {
  color: #2456B3;
  padding-right: 12px;
  background: url(/so/srpc/zh/static/ai/images/nwss_on_icon.png) no-repeat;
  background-position: 100% 4px;
  background-size: 10px;
}

.llm_text span.attraction {
  padding-right: 60px;
  background: url(/so/srpc/zh/static/ai/images/5a_icon.png) no-repeat;
  background-position: calc(100% - 3px) center;
  background-size: 54px;
}

.llm_text .explain_modal {
  padding: 25px 30px;
  cursor: default;
  position: absolute;
  margin-bottom: 0;
  left: 100%;
  top: 0;
  width: 480px;
  background: linear-gradient(to bottom, #DCE6F9 0%, #FFFFFF 48%, #FFFFFF 100%);
  box-shadow: 0px 0px 18px 0px #DCE6F9;
  border-radius: 12px;
  border: 1px solid #E5E5E5;
  z-index: 999;
}

.llm_text .explain_modal * {
  margin-bottom: 0;
}

.llm_text .explain_modal>a {
  cursor: text;
  color: var(--font-color);
  padding-right: 10px;
  background: url(/so/srpc/zh/static/ai/images/nwss_icon.png) no-repeat;
  background-size: 10px;
  background-position: 100% 0;
  line-height: 20px;
  font-size: var(--font-size);
  font-weight: bold;
}

.llm_text .explain_modal>a:hover {
  text-decoration: none;
}

.llm_text .explain_modal>a.cs {
  cursor: pointer;
  color: #2456B3;
  padding-right: 12px;
  background: url(/so/srpc/zh/static/ai/images/explain_link_icon.png) no-repeat;
  background-size: 12px;
  background-position: 100% 0;
}

.llm_text .explain_modal .description {
  cursor: text;
  line-height: 28px;
  margin-top: 10px;
  font-weight: 400;
}

.origin_llm_text {
  display: none;
}

/* 图片轮播块 */
.image_box,
.image_5a_box {
  margin: 20px auto;
  margin-top: 0;
  text-align: center;
  display: none;
}

.swiper-wrapper {
  height: 146px;
}

.swiper-slide {
  background: #ccc;
  overflow: hidden;
  margin-right: 1%;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
}

.swiper-slide .name {
  min-width: 100px;
  padding: 0 10px;
  line-height: 30px;
  height: 30px;
  background: rgba(0, 0, 0, .4);
  border-radius: 0px 12px 0px 12px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
}

.swiper-button-next,
.swiper-button-prev {
  width: 12px;
  height: 24px;
  margin-top: 0;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
}

.scene_box,
.top_scene_list_box,
.llm_box,
.more_search {
  margin-bottom: 20px;
  width: 100%;
}

/* 列表数据块 */
.docs_item {
  border-bottom: 1px dashed #CFCFCF;
  padding-bottom: 20px;
}

.docs_item .docs_title {
  display: flex;
  justify-content: space-between;
}

.docs_item .docs_title .tag {
  display: inline-block;
  background: #ffe6e6;
  color: var(--theme-color);
  border: 1px solid #ff8080;
  border-radius: 20px;
  font-size: var(--font-size-small);
  padding: 1px 8px;
  margin-right: 10px;
}

.docs_item .docs_title .icon_weixin {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin-top: -5px;
  margin-right: 10px;
  background: url(/so/srpc/zh/static/ai/images/weixin.png) no-repeat center;
  background-size: 100%;
  vertical-align: middle;
}

.docs_item .docs_title .title_box_right {
  line-height: 32px;
}

.docs_item .docs_title a {
  font-size: var(--font-size-large);
  color: var(--title-color);
}

.docs_item .docs_title .title_btn,
.scene_tab_doc .right_btn {
  display: flex;
  flex-shrink: 0;
  margin-left: 5px;
  margin-top: 2px;
  align-items: flex-start;
}

.btn_span,
.docs_item .docs_title .btn_span {
  padding: 0 5px;
  line-height: 26px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 5px;
  font-size: var(--font-size);
  font-weight: 400;
  color: var(--theme-color);
  cursor: pointer;
}

.btn_span:hover,
.work_btn:hover,
.docs_item .docs_title .btn_span:hover {
  background: var(--theme-color);
  color: #fff;
}

.docs_item .docs_title .title_btn>*+*,
.docs_item .docs_title .title_btn .btn_span+.btn_span,
.scene_tab_doc .right_btn>*+* {
  margin-left: 20px;
}

.docs_item .doc_content_box {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: var(--font-size);
  line-height: 28px;
}

.docs_item .doc_content_box .doc_content_left {
  flex-shrink: 0;
  margin-right: 10px;
}

.docs_item .doc_content_box .doc_content_left img {
  width: 128px;
  height: 85px;
}

.docs_item .doc_content_box .doc_content_right {
  width: 100%;
}

.docs_item .doc_content_box .doc_content_left+.doc_content_right {
  width: calc(100% - 138px);
}

.docs_item .doc_content_box .doc_content_right>div+div {
  margin-top: 15px;
}

.docs_item .docs_content {
  line-height: 2;
  font-size: var(--font-size--small);
}

.docs_item .webname_and_time {
  color: var(--font-color-gray);
  font-size: var(--font-size-small);
  line-height: 14px;
  display: flex;
  justify-content: space-between;
}

.docs_item .webname_and_time .similar_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #878787;
  line-height: 16px;
}

.docs_item .webname_and_time .similar_info .similar_more_img {
  width: 14px;
  height: 14px;
  margin-left: 5px;
  background: url(/so/srpc/zh/static/ai/images/jiantou.png) no-repeat center;
  background-size: 100%;
}

.docs_item .similar_info_list {
  display: none;
  padding: 13px;
  border: 1px solid #ebebeb;
  margin-top: 10px;
}

.docs_item .similar_info_list.on {
  display: block;
}

.similar_info_list .similar_item_page {
  margin-top: 20px;
}

/*单条相似信息*/
.similar_info_item {
  display: flex;
}

.similar_info_list .similar_info_item+.similar_info_item {
  margin-top: 20px;
}

.similar_info_list .similar_info_item:last-child {
  margin-bottom: unset;
}

/*相似信息lable样式*/
.similar_item_lable {
  font-size: 15px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: var(--font-color-gray);
  flex-shrink: 0;
  margin-right: 10px;
}

/*相似信息标题样式*/
.similar_item_title {
  display: inline-block;
  cursor: pointer;
  font-size: 15px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: var(--font-color);
}

.left_search_content {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*相似信息时间样式*/
.similar_item_time {
  flex-shrink: 0;
  font-size: var(--font-size);
  color: #878787;
  margin-left: 40px;
}

.docs_item+.docs_item {
  margin-top: 20px;
}

.docs_more {
  text-align: center;
  margin-top: 24px;
}

.docs_more_btn {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #2456B3;
  color: #2456B3;
  border-radius: 20px;
  line-height: 18px;
}

.docs_more_btn:hover {
  background: #2456B3;
  color: #FFFFFF;
}

/* 更多搜索块 */
.more_search .more_search_title {
  display: flex;
  align-items: center;
}

.more_search .more_search_title img {
  margin-right: 6px;
  width: 18px;
}

.more_search .more_search_list {
  margin-top: 8px;
}

.more_search .more_search_list .more_search_item {
  display: inline-block;
  max-width: 800px;
  padding: 12px 24px;
  padding-left: 16px;
  line-height: 18px;
  border-radius: 12px;
  height: 42px;
  border: 1px solid #A1C0FE;
  margin-top: 8px;
}

.more_search .more_search_list .more_search_item img {
  width: 14px;
  height: 14px;
  margin-right: 6px;
}

/* ai回复提示块 */
.ai_tip {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai_tip .ai_tip_left {
  display: flex;
  align-items: center;
  font-size: var(--font-size-small);
  color: var(--title-color);
}

.ai_tip .ai_tip_left img {
  width: 17px;
  margin-right: 8px;
}

.ai_tip .ai_tip_left .ai_search_disclaimer_btn {
  display: inline-block;
  width: 60px;
  height: 22px;
  background: white;
  font-size: 12px;
  color: #836EF3;
  border-radius: 6px;
  border: 1px solid #836EF3;
  line-height: 20px;
  text-align: center;
}

.ai_tip .ai_tip_right {
  display: flex;
  align-items: center;
}

.ai_tip .ai_tip_right .ai_btn_item img {
  width: 14px;
  display: inline-block;
}

.ai_tip .ai_tip_right .ai_btn_item+.ai_btn_item {
  margin-left: 24px;
}

.ai_tip .ai_tip_right .ai_btn_item.bb img {
  width: 16px;
}

.ai_tip .ai_tip_right .ai_btn_item .on {
  display: none;
}

.ai_tip .ai_tip_right .ai_btn_item.active .on {
  display: inline-block;
}

.ai_tip .ai_tip_right .ai_btn_item.active .noon {
  display: none;
}

.classification {
  margin-top: 20px;
}

.classification .classification_nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.classification .classification_nav .classification_nav_item {
  font-size: var(--font-size);
  border-radius: 5px;
  padding: 5px 10px;
  color: var(--font-color);
  background: #efefef;
  border: 1px solid #efefef;
}

.classification .classification_nav .classification_nav_item.on {
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  background: #fff;
}

.classification_data_list {
  margin-top: 15px;
  display: none;
  font-size: var(--font-size);
}

.classification_data_list.on {
  display: block;
}

.classification_data_list .classification_data_item {
  display: flex;
  align-items: center;
  line-height: 16px;
  margin-top: 20px;
}

.classification_data_list .classification_data_item .date_show {
  flex-shrink: 0;
  font-size: var(--font-size);
  color: var(--font-color-gray);
  margin-left: 40px;
}

.classification_data_list .classification_data_item .time_line {
  flex-shrink: 0;
  margin: 0 15px;
  width: 1px;
  background: rgba(189, 26, 45, 0.1);
  position: relative;
}

.classification_data_list .classification_data_item .time_line::after {
  position: absolute;
  top: 21px;
  width: 8px;
  height: 8px;
  background: var(--theme-color);
  border: 3px solid white;
  left: -7px;
  border-radius: 50px;
  content: " ";
}

.classification_data_list .classification_data_item a {
  width: 100%;
}

.more {
  text-align: right;
  margin-top: 15px;
}

.more a {
  color: var(--font-color-gray);
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 16px;
}

/* 场景 Tab */
.scene_tab {
  margin-top: 15px;
}

.scene_tab_header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.scene_tab_btn_left,
.scene_tab_btn_right {
  width: 12px;
  height: 20px;
  cursor: pointer;
  flex: 0 0 auto;
  position: relative;
  user-select: none;
}

.scene_tab_btn_left {
  margin-right: 12px;
}

.scene_tab_btn_right {
  margin-left: 12px;
}

/* 纯 CSS 箭头，制止依赖外部图片资源 */
.scene_tab_btn_left::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid var(--font-color-gray);
}

.scene_tab_btn_right::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--font-color-gray);
}

.scene_tab_names {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  transition: none;
}

.scene_tab_names::-webkit-scrollbar {
  height: 0;
}

.scene_tab_item {
  color: var(--font-color);
  background: #efefef;
  border: 1px solid #efefef;
  white-space: nowrap;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 20px;
  margin-right: 5px;
}

.scene_tab_item_on {
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  background: #fff;
}

.scene_tab_result {
  display: none;
}

.list_show {
  display: block;
}

.scene_tab_doc {
  display: flex;
  align-items: center;
  width: 100%;
}

.scene_tab_doc+.scene_tab_doc {
  margin-top: 20px;
}

.scene_tab_doc_title {
  flex: 1;
  font-size: var(--font-size);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 400;
  color: #444444;
}

.scene_tab_doc_time {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: var(--font-size);
  font-weight: 400;
  color: #888888;
  margin-left: 20px;
}

.scene_tab_more {
  margin-top: 20px;
  text-align: right;
  font-size: var(--font-size);
}

.scene_tab_more a {
  color: var(--font-color-gray);
  cursor: pointer;
}

/* 场景 tab 图片/视频轮播（showType=6/7） */
.scene_tab_img_swiper,
.scene_tab_video_swiper {
  overflow: hidden;
  position: relative;
}

.scene_tab_img_swiper .swiper-wrapper,
.scene_tab_img_swiper .swiper-slide,
.scene_tab_video_swiper .swiper-wrapper,
.scene_tab_video_swiper .swiper-slide {
  height: 200px;
}

.scene_tab_img_swiper a,
.scene_tab_video_swiper a {
  width: 250px;
  display: block;
}

.scene_tab_img_swiper .item_image,
.scene_tab_video_swiper .item_video {
  width: 250px;
}

.scene_tab_img_swiper .item_image .image {
  width: 250px;
  height: 167px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 10px;
}

.scene_tab_img_swiper .item_image img {
  width: 250px;
  height: 184px;
  margin-bottom: 10px;
  border-radius: 12px;
  transition-duration: 0.5s;
  display: block;
}

.scene_tab_img_swiper .item_title,
.scene_tab_video_swiper .item_title {
  font-size: var(--font-size);
  padding: 0 10px;
  font-weight: 400;
  color: var(--font-color);
  height: 18px;
  line-height: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.scene_tab_video_swiper .item_video .video {
  border-radius: 12px;
  position: relative;
  margin-bottom: 10px;
  width: 250px;
  height: 167px;
  overflow: hidden;
}

.scene_tab_video_swiper .item_video .video img {
  width: 250px;
  height: 184px;
  margin-bottom: 10px;
  border-radius: 12px;
  transition-duration: 0.5s;
  display: block;
}

.scene_tab_video_swiper .video_play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene_tab_video_swiper .video_play_icon {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
  margin-left: 2px;
}

.scene_tab_img_swiper .swiper_button_prev,
.scene_tab_img_swiper .swiper_button_next,
.scene_tab_video_swiper .swiper_button_prev,
.scene_tab_video_swiper .swiper_button_next {
  position: absolute;
  top: 45%;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 2;
}

.scene_tab_img_swiper .swiper_button_prev,
.scene_tab_video_swiper .swiper_button_prev {
  left: 3px;
}

.scene_tab_img_swiper .swiper_button_next,
.scene_tab_video_swiper .swiper_button_next {
  right: 3px;
}

.scene_tab_img_swiper .swiper_button_prev::before,
.scene_tab_video_swiper .swiper_button_prev::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid var(--font-color-gray);
}

.scene_tab_img_swiper .swiper_button_next::before,
.scene_tab_video_swiper .swiper_button_next::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--font-color-gray);
}

/* 右侧 */
.right_container>div {
  background: #fff;
}

.right_container>div+div {
  margin-top: 20px;
}

.right_container>div>div+div {
  border-top: 1px solid #eee;
}

.right_container>div>.title {
  font-size: var(--font-size-large);
  padding: 20px;
  background: #fcfcfc;
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
}

/* 场景块 */
.scene_item_box {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 20px;
}

.scene_item_box+.scene_item_box {
  margin-top: 20px;
}

.scene_item_box .scene_title {
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: var(--font-color);
  line-height: 24px;
  margin-bottom: 20px;
}

.scene_item_box .scene_title img {
  width: 20px;
  margin-right: 10px;
}

.scene_list {
  margin-top: 20px;
}

.scene_list .scene_item+.scene_item {
  margin-top: 20px;
}

/* 置顶框盘算与人物/机构/系统 */
.line_hr {
  margin-bottom: 20px;
  border-bottom: 1px dashed #ccc;
}

.scene_org_info {
  border: 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.iframe_title {
  font-size: var(--font-size-large);
  font-weight: bold;
  color: var(--font-color);
  line-height: 24px;
  margin-bottom: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.scene_iframe_info {
  width: 100%;
}

.scene_iframe_info iframe {
  width: 100%;
}

.scene_iframe_source {
  font-size: var(--font-size-small);
  color: #878787;
  line-height: 16px;
  margin-top: 8px;
}

.scene_iframe_source a {
  color: #878787;
}

.scene_person {
  margin-bottom: 20px;
}

.scene_person_con {
  display: flex;
}

.scene_person_image {
  margin-right: 20px;
}

.scene_person_image img {
  width: 140px;
  object-fit: cover;
}

.person_introduce_name {
  font-size: var(--font-size-large);
  color: var(--font-color);
  line-height: 24px;
  margin-bottom: 22px;
}

.person_introduce_name span {
  font-size: var(--font-size);
  color: var(--font-color);
  line-height: 20px;
}

.person_introduce_detail {
  font-size: var(--font-size-small);
  color: var(--font-color);
  line-height: 31px;
}

.scene_org_title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.scene_org_customized_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
  line-height: 58px;
  background: #f2f2f2;
  padding-left: 19px;
  padding-right: 5px;
  margin-bottom: 20px;
}

.customized_title_left,
.customized_title_right {
  display: flex;
  align-items: center;
}

.customized_title_right {
  cursor: pointer;
}

.customized_title_right .org_phone {
  width: 24px;
  height: 24px;
  background: url(/so/srpc/zh/static/ai/images/org_phone.png) no-repeat;
  background-size: 100% 100%;
  margin-right: 10px;
}

.customized_title_right .org_phone_title {
  height: 17px;
  font-size: var(--font-size);
  color: var(--font-color);
  line-height: 17px;
}

.scene_org_name {
  font-size: var(--font-size-large);
  color: var(--font-color);
  line-height: 22px;
  margin-right: 8px;
}

.scene_org_name::before {
  content: " ";
  position: absolute;
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--theme-color);
  margin-top: 2px;
  margin-left: -14px;
}

.scene_org_label {
  padding: 0 4px;
  background: #2440b3;
  border-radius: 4px;
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  height: 30px;
  line-height: 30px;
}

.scene_org_con {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
}

.scene_org_con .scene_org_logo {
  width: 49%;
}

.scene_org_detail {
  width: 50%;
}

.scene_org_describe {
  font-size: var(--font-size);
  color: var(--font-color);
  line-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  word-break: break-all;
}

.scene_system_title {
  font-size: 20px;
  font-weight: bold;
  color: var(--font-color);
  line-height: 24px;
  margin-bottom: 20px;
}

.system_item {
  width: fit-content;
}

.system_item img {
  height: 80px;
}

/* 场景专题块 */
.scene_subject_box .scene_subject_body {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.scene_subject_box .scene_subject_left {
  width: 350px;
  margin-right: 20px;
  flex-shrink: 0;
}

.scene_subject_box .scene_subject_right {
  width: 432px;
}

.scene_subject_box .scene_subject_swiper {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.scene_subject_box .scene_subject_swiper .swiper-wrapper {
  height: 100%;
}

.scene_subject_box .scene_subject_swiper .swiper-slide {
  margin-right: 0;
  background: transparent;
}

.scene_subject_box .scene_subject_swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.scene_subject_box .scene_subject_swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene_subject_box .scene_subject_img_title {
  display: block;
  width: 100%;
  padding: 15px 14px;
  background: var(--theme-color);
  color: #fff;
  font-size: var(--font-size);
  line-height: 20px;
}

.scene_subject_box .scene_subject_swiper .swiper-pagination {
  text-align: right;
  bottom: 16px;
  padding: 0 10px;
}

.scene_subject_box .scene_subject_static {
  font-size: var(--font-size);
  line-height: 28px;
  color: var(--font-color);
}

.scene_subject_box .scene_subject_list a {
  display: block;
  line-height: 28px;
  color: var(--font-color);
}

.scene_subject_box .scene_subject_list a+a {
  margin-top: 10px;
}

/* 通栏场景样式 */
.overview_scene .scene_item_box {
  border: 0;
  margin-bottom: 20px;
  padding: 0;
}

/* 置顶信息块 */
.scene_top_info_box .docs_item {
  border: none;
  padding: 0;
}

/* 服务日历块 */
.fwrl_box .fwrl_title img {
  width: 20px;
  height: 18px;
  margin-right: 10px;
}

.fwrl_box .timeline_container {
  display: flex;
  flex-direction: column;
  width: 300px;
  overflow-x: auto;
  padding-bottom: 2px;
  margin-top: 20px;
}

.fwrl_box .timeline_container::-webkit-scrollbar {
  /* 水平转动条的高度、垂直转动条的宽度 */
  width: 6px;
  /* 水平转动条的高度 */
  height: 6px;
}

.fwrl_box .timeline_container::-webkit-scrollbar-track {
  /* 转动条轨道 */
  /* 颜色和样式 */
  background: transparent;
  border-radius: 4px;
}

.fwrl_box .timeline_container::-webkit-scrollbar-thumb {
  /* 滑块颜色 */
  background: #B5C3FF;
  border-radius: 4px;
}

.fwrl_box .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  text-align: center;
}

.fwrl_box .weekday {
  width: 66px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size);
  color: var(--font-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 15px;
  border: 1px solid #ECECEC;
  background: #FAFAFA;
}

.fwrl_box .weekday.active {
  background: rgba(189, 26, 45, 0.1);
  color: var(--theme-color);
  border: 0;
}

.fwrl_box .timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  position: relative;
  height: 20px;
}

.fwrl_box .timeline::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  width: 522px;
  height: 2px;
  background: #B5C3FF;
  border-radius: 1px 0px 0px 1px;
}

.fwrl_box .timeline_point {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  cursor: pointer;
  z-index: 2;
}

.fwrl_box .point {
  width: 10px;
  height: 10px;
  background: #D7D6D6;
  border: 2px solid #FAFAFA;
  border-radius: 50%;
}

.fwrl_box .timeline_point.active .point {
  background: #7A91F3;
}

.fwrl_box .dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  text-align: center;
}

.fwrl_box .sel_date {
  width: 66px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}

.fwrl_box .date_number {
  color: var(--font-color-gray);
  margin-bottom: 5px;
}

.fwrl_box .fwrl_list {
  margin-top: 16px;
  background: #FAFAFA;
  padding: 20px 16px;
  position: relative;
}

.right_list_extend {
  left: 0;
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #fff 100%);
  content: " ";
  max-height: 80px;
  height: 60%;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.right_list_extend.on {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.right_list_extend.on .inner {
  top: 50%;
  transform: translate(-50%);
}

.right_list_extend .inner {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.right_list_extend .inner .more_btn {
  font-size: var(--font-size-small);
  color: #666666;
}

.right_list_extend .inner .img {
  background: rgba(164, 164, 164, 0.36) url(/so/srpc/zh/static/ai/images/jiantou.png) no-repeat center;
  background-size: 14px 8px;
  width: 18px;
  height: 14px;
  border-radius: 2px;
  display: inline-block;
  margin-left: 6px;
}

.right_list_extend .inner.on .img {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.fwrl_list .fwrl_item {
  display: flex;
  line-height: 28px;
}

.fwrl_list .fwrl_item .pointer {
  width: 4px;
  height: 4px;
  background: #275EF2;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 12px;
  margin-right: 12px;
}

.fwrl_item .fwrl_item_a a {
  display: block;
}

.fwrl_item .fwrl_item_a .date {
  font-size: var(--font-size-small);
  color: var(--font-color-gray);
}

.fwrl_list .fwrl_item+.fwrl_item {
  margin-top: 6px;
}

/* 参考来源块 */
.ckly_box .ckly_title img {
  width: 22px;
  height: 16px;
  margin-right: 10px;
}

.ckly_box .ckly_list {
  margin-top: 20px;
  padding: 20px 15px;
  background: #FAFAFA;
  position: relative;
}

.ckly_item a {
  font-size: var(--font-size);
  line-height: 28px;
}

.ckly_item .num {
  background: rgba(189, 26, 45, 0.1);
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: var(--font-size-small);
  color: var(--theme-color);
  line-height: 19px;
  border-radius: 50%;
  text-align: center;
}

.ckly_item .tag {
  color: var(--font-color-gray);
}

.ckly_list .ckly_item+.ckly_item {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #E7E7E7;
}

.ckly_list .ckly_item .ckly_btn {
  display: flex;
  margin-top: 6px;
}

.ckly_item .ckly_btn .aidd {
  width: 72px;
  height: 24px;
  background: url(/so/srpc/zh/static/ai/images/aidd_img.png) no-repeat center;
  background-size: 100%;
}

.ckly_item .ckly_btn .zcjd {
  display: flex;
  align-items: center;
  font-size: var(--font-size-small);
  color: #E1972C;
  height: 24px;
}

.ckly_item .ckly_btn span+span {
  margin-left: 10px;
}

.ckly_item .ckly_btn .zcjd img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

/* 右侧相关人物 */
.about_person {
  margin-bottom: 20px;
}

.person_con_title {
  display: flex;
  padding: 20px;
  padding-bottom: 0;
  justify-content: space-between;
  align-items: center;
}

.about_person_box {
  position: relative;
}

.about_person_con+.about_person_con {
  border: 0;
}

.about_person_con+.about_person_con>.person_con_title {
  padding-top: 0;
}

.person_text {
  font-size: var(--font-size-large);
  font-weight: bold;
  color: var(--font-color);
  line-height: 18px;
}

.person_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  position: relative;
}

.person_list:after {
  content: "";
  width: 90px;
}

.person_item {
  text-align: center;
  margin: 10px 0;
  cursor: pointer;
}

.person_img {
  margin-bottom: 15px;
}

.person_img img {
  width: 90px;
  vertical-align: middle;
}

.person_name {
  font-size: var(--font-size-small);
  color: var(--font-color);
  line-height: 18px;
}

/* 框盘算块 */
.iframe_box .iframe_title {
  display: flex;
  align-items: center;
}

.iframe_box .iframe_title img {
  width: 20px;
  margin-right: 10px;
}

.iframe_box .iframe_con {
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
}

.iframe_box .iframe_con iframe {
  border: 0;
  width: 100%;
}

/* 关联信息块 */
.glxx_list {
  margin-top: 20px;
  padding: 20px;
  background: #FAFAFA;
}

.glxx_list .glxx_item {
  line-height: 28px;
}

.glxx_list .glxx_item a span {
  display: inline-block;
  color: var(--font-color-gray);
}

.glxx_list .glxx_item+.glxx_item {
  margin-top: 16px;
}

/* 关联政策块 */
.glzc_box .glzc_title img {
  width: 20px;
  height: 17px;
  margin-right: 10px;
}

.glzc_list {
  margin-top: 20px;
  padding: 20px;
  background: #FAFAFA;
}

.glzc_list .glzc_item {
  line-height: 28px;
}

.glzc_list .glzc_item a span {
  display: inline-block;
  color: var(--font-color-gray);
}

.glzc_list .glzc_item .glzc_btn {
  display: flex;
  margin-top: 6px;
}

.glzc_list .glzc_item+.glzc_item {
  margin-top: 16px;
}

.glzc_item .glzc_btn .aidd {
  width: 72px;
  height: 24px;
  background: url(/so/srpc/zh/static/ai/images/aidd_img.png) no-repeat center;
  background-size: 100%;
}

.glzc_item .glzc_btn .zcjd {
  display: flex;
  align-items: center;
  font-size: var(--font-size-small);
  color: #E1972C;
  height: 24px;
}

.glzc_item .glzc_btn span+span {
  margin-left: 10px;
}

.glzc_item .glzc_btn .zcjd img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

/* 关联服务块 */
.glbs_box .glbs_title img {
  width: 20px;
  margin-right: 10px;
}

.glbs_list {
  margin-top: 20px;
  padding: 20px 15px;
  background: #FAFAFA;
}

.glbs_list .glbs_item {
  line-height: 28px;
  padding-left: 10px;
  position: relative;
}

.glbs_list .glbs_item .pointer {
  position: absolute;
  width: 4px;
  left: 0;
  height: 4px;
  background: #275EF2;
  border-radius: 50%;
  top: 12px;
}

.glbs_list .glbs_item a {
  max-width: 100%;
}

.glbs_list .glbs_item .glbs_btn {
  display: flex;
  margin-top: 6px;
}

.glbs_item .glbs_btn .aidd {
  width: 72px;
  height: 24px;
  background: url(/so/srpc/zh/static/ai/images/aidd_img.png) no-repeat center;
  background-size: 100%;
}

.glbs_item .glbs_btn .zcjd {
  display: flex;
  align-items: center;
  font-size: var(--font-size-small);
  color: #E1972C;
  height: 24px;
}

.glbs_item .glbs_btn span+span {
  margin-left: 10px;
}

.glbs_item .glbs_btn .zcjd img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

.glbs_list .glbs_item+.glbs_item {
  margin-top: 16px;
}

/* 相关领导块 */
.xgld_box .xgld_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.xgld_item {
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
}

.xgld_img {
  padding: 1px;
  border: 1px solid #c0c0c0;
  margin-bottom: 15px;
}

.xgld_img img {
  width: 90px;
  vertical-align: middle;
}

.xgld_box .xgld_list:after {
  content: "";
  width: 92px;
}

/* 历史纪录块 */
.lsjl_list {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.lsjl_list .lsjl_item {
  line-height: 28px;
  background: #f1f1f1;
  margin: 5px;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: var(--font-size);
  font-weight: 400;
  max-width: 286px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lsjl_box .del_lsjl {
  text-align: center;
  font-size: var(--font-size-small);
}

.lsjl_box .del_lsjl span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: var(--font-size);
}

.lsjl_box .del_lsjl span img {
  width: 20px;
  height: 23px;
  margin-right: 10px;
}

/* 无结果块 */
.no_result_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}

.no_result_box img {
  width: 218px;
}

.no_result_box p {
  line-height: 30px;
  margin-top: 40px;
  max-width: 480px;
}

/* ai导读块 */
.aidd_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  border-radius: 18px;
  background: #EDF2F6;
  padding: 55px;
  padding-top: 0;
}

.aidd_modal.hide {
  display: none;
}

.aidd_modal .aidd_title {
  height: 40px;
  background: url(/so/srpc/zh/static/ai/images/ai_dd_title.png) no-repeat center;
  background-size: 180px 40px;
}

.aidd_modal .aidd_main_table {
  background: white;
  margin-top: 20px;
}

.aidd_main_table .table_title {
  display: flex;
}

.aidd_main_table .table_title .label {
  width: 121px;
  text-align: center;
  font-size: var(--font-size);
  color: var(--font-color-gray);
  border: 1px solid #EAEAEA;
  padding: 12px 15px;
  font-size: var(--font-size);
  line-height: 1.6;
  border-bottom: 0;
  flex-shrink: 0;
}

.aidd_main_table .table_title a {
  width: 100%;
  border-top: 1px solid #EAEAEA;
  border-right: 1px solid #EAEAEA;
  padding: 12px 15px;
  font-size: var(--font-size);
  line-height: 1.6;
  color: #2456B3;
}

.aidd_modal .aidd_main_table .info_table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.aidd_modal .aidd_main_table .info_table td {
  border: 1px solid #EAEAEA;
  padding: 12px 15px;
  font-size: var(--font-size);
  line-height: 1.6;
}

.aidd_modal .aidd_main_table .info_table .label {
  width: 120px;
  text-align: center;
  font-size: var(--font-size);
  color: var(--font-color-gray);
}

.aidd_modal .aidd_main_table .info_table .content {
  text-align: left;
}

.aidd_modal .aidd_main {
  padding: 20px 30px;
  background: white;
  border-radius: 0px 0px 6px 6px;
  margin-top: 10px;
}

.aidd_modal .aidd_main .main_top_btn {
  display: flex;
}

.aidd_main .main_top_btn span {
  background: #FFFFFF;
  border-radius: 10px;
  font-size: var(--font-size-large);
  color: #3F77CE;
  border: 1px solid #3F77CE;
  height: 48px;
  width: 180px;
  line-height: 48px;
  text-align: center;
}

.aidd_main .main_top_btn span.on {
  background: linear-gradient(to bottom, #0DCCFF 0%, #4760FF 100%);
  border: 0;
  color: white;
}

.aidd_main .main_top_btn span+span {
  margin-left: 30px;
}

.aidd_modal .aidd_main_content {
  margin-top: 20px;
  border-radius: 0px 0px 6px 6px;
  border: 1px solid #EFEFEF;
  font-size: var(--font-size);
  padding: 26px 40px;
  line-height: 36px;
  max-height: 50vh;
  overflow: auto;
  line-height: 2;
  font-size: var(--font-size);
}

.aidd_modal .aidd_main_content *+* {
  margin-top: 5px;
}

.aidd_modal .aidd_main_content a {
  color: #3498db;
}

.aidd_modal .aidd_main_content a:hover {
  text-decoration: underline;
}

.aidd_modal .aidd_main_content h2 {
  font-size: 20px;
}

.aidd_modal .aidd_main_content h3 {
  font-size: var(--font-size-large);
}

.aidd_modal .aidd_main_content .pl_2em {
  padding-left: 2em;
}

.aidd_modal .aidd_main_content table {
  width: 100%;
  border-collapse: collapse;
  /* 合并表格边框 */
}

.aidd_modal .aidd_main_content th,
.aidd_modal .aidd_main_content td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.aidd_modal .aidd_main_content th {
  background-color: #f2f2f2;
}

.aidd_modal .aidd_main_content tr:nth-child(even) {
  background-color: #f9f9f9;
}

.aidd_modal .aidd_main_content tr:hover {
  background-color: #e2e2e2;
}

.aidd_modal .aidd_main_content hr {
  display: none !important;
}

.aidd_modal .aidd_main_tip {
  margin-top: 15px;
  font-size: var(--font-size);
  height: 18px;
  color: #9777DA;
  display: flex;
  align-items: center;
}

.aidd_modal .aidd_main_tip img {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 5px;
}

.aidd_modal .aidd_close {
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(/so/srpc/zh/static/ai/images/ai_close.png) no-repeat center;
  background-size: 100% 100%;
  top: 20px;
  right: 30px;
}

/* 骨架图样式 */
.skeleton_left_container {
  width: 100%;
  border-radius: 10px;
}

.skeleton_left_container .skeleton_left_title {
  font-size: var(--font-size-large);
  text-align: left;
  margin-bottom: 20px;
}

.skeleton_right_container {
  display: none !important;
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
}

.skeleton_right_container .right_box {
  margin-bottom: 20px;
}

.skeleton_right_container .right_box>div+div {
  margin-top: 10px;
}

.skeleton_right_container .right_skeleton_box {
  flex: 1;
  height: 100px;
  border-radius: 8px 0 0 8px;
  border: 1px solid #e0e6ed;
  padding: 0 15px;
  font-size: var(--font-size);
}

.skeleton_right_container .right_skeleton_btn {
  width: 100px;
  border-radius: 0 8px 8px 0;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.skeleton_right_container .filters {
  display: flex;
  gap: 15px;
}

.skeleton_right_container .filter {
  height: 35px;
  border-radius: 6px;
}

/* 骨架动画元素 */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px !important;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.skeleton.right_skeleton_btn {
  height: 50px;
}

.skeleton.filter {
  width: 33%;
}

.skeleton.text {
  height: 25px;
}

.skeleton.text+.skeleton.text {
  margin-top: 20px;
}

/* 主搜索禁止搜索样式 */
.ai_warning,
.ai_ipt_empty {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 20px;
  display: none;
  background: #DAEAFF;
  z-index: 999999;
}

/* ai辅助样式 */
.ai_assistance_modal {
  position: fixed;
  width: 1200px;
  background: radial-gradient(#D5E7FF 0%, #F5FBFE 100%), #FFFFFF;
  border-radius: 18px 18px 18px 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}

.ai_assistance_modal.qp {
  width: 100%;
  height: 100%;
}

.ai_assistance_modal * {
  box-sizing: border-box;
}

.ai_assistance_modal .ai_title {
  width: 180px;
  height: 40px;
  margin: 0 auto;
}

.ai_assistance_modal .ai_title.sd {
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/ai_sd_title.png) no-repeat center;
  background-size: 100% 100%;
}

.ai_assistance_modal .ai_title.dd {
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/ai_dd_title.png) no-repeat center;
  background-size: 100% 100%;
}

.ai_assistance_modal .ai_title.jd {
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/ai_dd_title.png) no-repeat center;
  background-size: 100% 100%;
}

.ai_assistance_modal .ai_title.zj {
  width: 200px;
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/ai_sszj_title.png) no-repeat center;
  background-size: 100% 100%;
}

.ai_assistance_modal .ai_close {
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/ai_close.png) no-repeat center;
  background-size: 100% 100%;
  top: 20px;
  right: 30px;
}

.ai_assistance_modal .ai_assistance_main {
  margin: 20px 30px;
  width: calc(100% - 60px);
  padding: 30px;
  background: white;
}

.ai_assistance_modal .ai_assistance_main .main_top_btn {
  margin-top: 20px;
  white-space: nowrap;
  overflow: auto;
}

.ai_assistance_main .main_top_btn span {
  display: inline-block;
  background: #FFFFFF;
  border-radius: 10px;
  font-size: var(--font-size-large);
  color: #3F77CE;
  border: 1px solid #3F77CE;
  padding: 5px 20px;
  line-height: 28px;
  text-align: center;
}

.ai_assistance_main .main_top_btn span.on {
  background: linear-gradient(to bottom, #0DCCFF 0%, #4760FF 100%);
  border: 0;
  line-height: 30px;
  color: white;
}

.ai_assistance_main .main_top_btn span+span {
  margin-left: 30px;
}

.ai_assistance_main .ai_main_title {
  line-height: 30px;
}

.ai_assistance_main .ai_main_title .title_left {
  width: 100%;
  line-height: 30px;
}

.ai_assistance_main .ai_main_title .title_left a {
  font-weight: bold;
  font-size: 20px;
  width: 100%;
  color: var(--title-color);
  display: inline-block;
}

.ai_assistance_main .ai_main_title .title_left .doc_date {
  color: var(--font-color-gray);
}

.ai_assistance_main .ai_mz {
  padding: 0 15px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid #9776DD;
  margin-left: 10px;
  display: flex;
  align-items: center;
  font-size: var(--font-size-small);
  color: #9776DD;
  justify-content: center;
  flex-shrink: 0;
}

.ai_assistance_main .ai_mz img {
  width: 16px;
  height: 18px;
  margin-right: 4px;
}

.ai_assistance_main .ai_main_content {
  margin-top: 20px;
  border-radius: 0px 0px 6px 6px;
  border: 1px solid #EFEFEF;
  padding: 26px 40px;
  height: 50vh;
  overflow: auto;
  position: relative;
  line-height: 2;
  font-size: var(--font-size);
}

.ai_assistance_modal .ai_main_content.chart {
  overflow: hidden;
  padding: 0;
}

.ai_assistance_main .ai_main_content::-webkit-scrollbar {
  /* 水平转动条的高度、垂直转动条的宽度 */
  width: 8px;
  /* 水平转动条的高度 */
  height: 8px;
}

.ai_assistance_main .ai_main_content::-webkit-scrollbar-track {
  /* 转动条轨道 */
  /* 颜色和样式 */
  background: transparent;
  border-radius: 4px;
}

.ai_assistance_main .ai_main_content::-webkit-scrollbar-thumb {
  /* 滑块颜色 */
  background: #BBD2EF;
  border-radius: 4px;
}

.ai_assistance_modal.qp .ai_main_content {
  height: calc(100vh - 331px);
}

.ai_assistance_modal.has_nav.qp .ai_main_content {
  height: calc(100vh - 391px);
}

.ai_assistance_main .ai_main_content *+* {
  margin-top: 5px;
}

.ai_assistance_main .ai_main_content a {
  color: #3498db;
}

.ai_assistance_main .ai_main_content a:hover {
  text-decoration: underline;
}

.ai_assistance_main .ai_main_content h2 {
  font-size: 20px;
}

.ai_assistance_main .ai_main_content h3 {
  font-size: var(--font-size-large);
}

.ai_assistance_main .ai_main_content .pl_2em {
  padding-left: 2em;
}

.ai_assistance_main .ai_main_content table {
  width: 100%;
  border-collapse: collapse;
  /* 合并表格边框 */
}

.ai_assistance_main .ai_main_content th,
.ai_assistance_main .ai_main_content td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.ai_assistance_main .ai_main_content th {
  background-color: #f2f2f2;
}

.ai_assistance_main .ai_main_content tr:nth-child(even) {
  background-color: #f9f9f9;
}

.ai_assistance_main .ai_main_content tr:hover {
  background-color: #e2e2e2;
}

.ai_assistance_main .ai_main_content hr {
  display: none !important;
}

.ai_assistance_main .ai_main_content .ai_modal_qa_div {
  padding: 20px;
  background-color: #FDFAEE;
  border-radius: 0px 42px 0px 42px;
  margin-bottom: 25px;
}

.ai_assistance_main .ai_main_content .ai_modal_qa_div:last-child {
  margin-bottom: 0;
}

.ai_assistance_main .ai_main_content .qa_modal_qa_question {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
}

.ai_assistance_main .ai_main_content .ai_modal_qa_div .qa_modal_qa_question_icon {
  position: absolute;
  top: -43px;
  left: -40px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/Q.png) no-repeat;
  background-size: 100% 100%;
  margin-right: 10px;
  color: #FFF;
  font-size: 24px;
}

.ai_assistance_main .ai_main_content .ai_modal_qa_div .qa_modal_qa_answer {
  display: flex;
}

.ai_assistance_main .ai_main_content .ai_modal_qa_div .qa_modal_qa_question_txt {
  font-weight: bold;
}

.ai_assistance_main .ai_main_content .ai_modal_qa_div .qa_modal_qa_answer_icon {
  font-weight: bold;
  font-size: 24px;
  color: #DFB977;
  line-height: 27px;
  margin-right: 20px;
}

.ai_assistance_main .ai_main_content .ai_modal_qa_div .qa_modal_qa_answer_txt {
  line-height: 30px;
}

.ai_assistance_main .tip_info_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.ai_assistance_main .ai_main_tip {
  font-size: var(--font-size);
  height: 18px;
  color: #9777DA;
  display: flex;
  align-items: center;
}

.ai_assistance_main .ai_main_tip img {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 5px;
}

.ai_assistance_modal .ai_qp {
  position: absolute;
  right: 70px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/ai_qp_icon.png) no-repeat center;
  background-size: 100% 100%;
}

.ai_assistance_modal.qp .ai_qp {
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/ai_tcqp_icon.png) no-repeat center;
  background-size: 100% 100%;
}

.ai_assistance_modal .cs {
  cursor: pointer;
}

.ai_assistance_modal.hide {
  display: none;
}

#aitj img {
  margin-top: 20px;
  width: 100%;
  display: block;
  cursor: pointer;
}

#aitj .aitj_content {
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid #D9D9D9;
  padding: 20px;
}

#aitj .aitj_content.hide {
  display: none;
}

.aitj_content .aitj_item {
  margin-bottom: 10px;
}

.aitj_content .aitj_item .aitj_item_title {
  margin-top: 10px;
  line-height: 18px;
  font-weight: bold;
  font-size: var(--font-size-large);
  color: #01478D;
}

.aitj_content .aitj_item+.aitj_item {
  padding-top: 26px;
  margin-top: 30px;
  border-top: 1px dashed #D9D9D9;
}

.aitj_item .aitj_item_list {
  line-height: 28px;
  font-size: var(--font-size);
  margin-top: 18px;
}

.aitj_item .aitj_item_list .data_item {
  display: flex;
}

.aitj_item_list .data_item .icon {
  width: 10px;
  height: 10px;
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/aitj_icon.png) no-repeat center;
  background-size: 100%;
  flex-shrink: 0;
  margin-right: 10px;
  margin-top: 8px;
}

.aitj_item .aitj_item_list .data_item+.data_item {
  margin-top: 24px;
}

#ai_tongji_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

#ai_tongji_box .ai_right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

#ai_tongji_box .tongji_icon {
  margin-left: 10px;
  width: 120px;
  height: 24px;
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/aitongji.png) no-repeat center;
  background-size: 100% 100%;
  cursor: pointer;
}

.search-result .search-result-header .search-result-left .ai_icon {
  width: 60px;
  height: 24px;
  margin-left: 10px;
  flex-shrink: 0;
  cursor: pointer;
}

.search-result .search-result-header .search-result-left .ai_dd {
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/aisd_icon.png) no-repeat center;
  background-size: 100% 100%;
}

.search-result .search-result-header .search-result-left .ai_jd {
  background: url(/so/srpc/zh/static/pc/enterprise/ai_images/ai_dd_icon.png) no-repeat center;
  background-size: 100% 100%;
}

/* 弹窗loading */
.ant-skeleton-paragraph>li {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.06) 25%, rgba(0, 0, 0, 0.15) 37%, rgba(0, 0, 0, 0.06) 63%);
  background-size: 400% 100%;
  animation-name: css-9dx883-ant-skeleton-loading;
  animation-duration: 1.4s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  list-style: none;
  border-radius: 100px;
  margin-bottom: 25px;
  height: 10px !important;
}

@keyframes css-9dx883-ant-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.ai_assitant.ant-skeleton-paragraph>li {
  height: 15px !important;
}

/* ai推荐 */
#ai_recommed .recommend-title img {
  width: 62px;
}

#ai_recommed .recommend-list-txt {
  display: flex;
  cursor: unset;
  white-space: normal;
}

#ai_recommed .recommend-list-txt img {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  flex-shrink: 0;
  margin-top: 4px;
}

.ai_warning {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 20px;
  display: none;
  background: #DAEAFF;
  z-index: 999999;
}

/* 免责声明样式 */
/*  免责弹窗  */
.disclaimer-div {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 99999;
}

.disclaimer-div-draw {
  width: 790px;
  background: #FFFFFF;
  border-radius: 10px;
}

.disclaimer-div-draw .disclaimer-div-draw-head {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1658A0;
  padding: 15px 20px;
  position: relative;
}


.disclaimer-div-draw .disclaimer-div-draw-head .disclaimer-div-draw-head-title {
  font-size: 20px;
  color: #FEFEFE;
}

.disclaimer-div-draw .disclaimer-div-draw-head .disclaimer-div-draw-head-close {
  position: absolute;
  right: 20px;
  display: inline-block;
  width: 26px;
  height: 24px;
  background: url(/so/srpc/zh/static/ai/images/work_close_btn.png);
  background-size: 100% 100%;
  cursor: pointer;
}

.disclaimer-div-draw .disclaimer-div-draw-content {
  padding: 30px;
  line-height: 30px;
}

/* 语音录入中样式 */
.voice_draw {
  display: none;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
}

.voice_draw.active {
  display: block;
}

.voice_div {
  padding: 20px;
  box-sizing: border-box;
  width: 680px;
  height: 389px;
  background: #FFFFFF;
  border-radius: 10px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.voice_head {
  text-align: right;
  margin-bottom: 30px;
}

.voice_head .voice_close {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/so/srpc/zh/static/ai/images/voice_close.png") no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}

.voice_con {
  height: 200px;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}

.voice_con>div {
  display: none;
}

.voice_tips_time {
  color: #CCCCCC;
}

.identify_txt {
  max-height: 160px;
  overflow-y: scroll;
}

.identify_txt::-webkit-scrollbar {
  display: none;
}

.voice_con.init .init_txt,
.voice_con.noIdentify .noIdentify_txt,
.voice_con.identify .identify_txt {
  display: block;
}

.voice_button {
  text-align: center;
}

.voice_button_png {
  display: none;
  width: 100px;
  height: 100px;
  background: url("/so/srpc/zh/static/ai/images/voice_button_png.png") no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}

.voice_button_gif {
  display: none;
  width: 100px;
  height: 100px;
  background: url("/so/srpc/zh/static/ai/images/voice_button_gif.gif") no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}

.voice_button.png .voice_button_png,
.voice_button.gif .voice_button_gif {
  display: inline-block;
}

/* 复制功效样式 */
.status {
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  display: none;
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.status.success {
  background-color: #e6f7ee;
  color: #0c8;
  display: block;
}

.status.warning {
  background-color: #fff3e0;
  color: #ff9800;
  display: block;
}

.status.error {
  background-color: #ffe6e6;
  color: #f44;
  display: block;
}

/* 统一警告 tips（2s 自动消失） */
.warn_tips {
  z-index: 99999;
  min-width: 240px;
  max-width: min(70vw, 520px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  font-size: var(--font-size-small);
  line-height: 20px;
  padding: 12px 14px;
}

/* ai辅助弹窗的花样化样式 */
.search_result_table {
  /* 边框颜色 */
  border: 1px solid #ebebeb;
  color: var(--font-color);
  margin-top: 20px;
  border-bottom: 0;
}

/* 单行样式下线 */
.table_row {
  /* 单行边框颜色 */
  border-bottom: 1px solid #ebebeb;
}

/* 表格内部标题 */
.row_title {
  background: #f3f3f3;
  width: 140px;
  flex-shrink: 0;
  text-align: center;
  padding: 10px 0;
}

/* 一行两列 */
.table_row,
.table_row_left,
.table_row_right {
  display: flex;
}

/* 一行两列左侧与右侧巨细设置 */
.table_row_left,
.table_row_right {
  flex: 1;
}

/* 表格内容样式 */
.row_content {
  padding: 10px 30px;
  word-break: break-all;
}

/* 一行一列 */
.table_row_item {
  display: flex;
  border-bottom: 1px solid #ebebeb;
  line-height: 21px;
}

/* 搜索结果表格标题样式 */
.row_item_title {
  width: 140px;
  flex-shrink: 0;
  padding: 10px 0px;
  background: #f3f3f3;
  text-align: center;
}

/* 表格折叠块样式 */
.row_item_content_con {
  flex: 1;
  margin: 10px 30px;
  max-height: 22px;
  overflow: hidden;
}

/* 搜索结果表格内容块样式 */
.row_item_content {
  flex: 1;
  padding: 10px 30px;
  max-height: 77px;
  overflow: hidden;
}

/* 搜索结果表格内容样式 */
.row_item_content_title {
  max-width: 538px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: var(--font-color);
  line-height: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  padding-top: 2px;
}

/* 取消最后一行下边距 */
.row_item_content_title:last-child {
  margin-bottom: unset;
}

/* 鼠标滑过 */
.row_item_content_title a:hover {
  color: #2440b3;
}

/* 右侧展开收起 */
.row_item_expend {
  display: flex;
  height: max-content;
  margin-top: 10px;
  margin-right: 20px;
  flex-shrink: 0;
  color: var(--font-color);
  line-height: 16px;
  cursor: pointer;
}

/* 右侧展开收起图片样式 */
.table_expend_img {
  width: 10px;
  height: 7px;
  margin-top: 5px;
  margin-left: 5px;
  background: url("/so/srpc/zh/static/ai/images/jiantou.png");
  background-size: 100% 100%;
}

/* ai搜索免责声明 */
.ai_disclaimers_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.disclaimers_modal_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 780px;
  padding: 30px;
  border-radius: 12px;
  z-index: 99999;
  background: linear-gradient(to bottom, #EFECFC, white);
}

.disclaimers_modal_box .ai_disclaimers_title {
  font-weight: bold;
  font-size: 24px;
  color: var(--font-color);
  line-height: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid white;
  text-align: center;
}

.disclaimers_modal_box .disclaimers_container p {
  font-size: var(--font-size);
  color: #666;
  line-height: 30px;
  margin-top: 15px;
}

.disclaimers_modal_box .disclaimers_container p a {
  color: var(--theme-color);
}

.disclaimers_modal_box .ai_disclaimers_allow {
  width: 150px;
  height: 36px;
  background: #EFEAFF;
  border-radius: 6px;
  border: 1px solid #836EF3;
  font-weight: 400;
  font-size: var(--font-size-large);
  color: #836EF3;
  position: relative;
  left: calc(100% - 150px);
  text-align: center;
  line-height: 34px;
  margin-top: 15px;
}

*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
  border-radius: 10px;
}

*::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, .2);
}

.open {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/*置顶按钮*/
.topping {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 70px;
}

/*置顶按钮图片*/
.back_top_img {
  width: 40px;
  height: 40px;
  background: url("/so/srpc/zh/static/ai/images/back_top.png") no-repeat center;
  background-size: 100%;
}

/* 悬浮反馈块 */
.flex_feedback_div {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 250px;
  left: 50px;
}

.flex_feedback_top {
  width: 80px;
  height: 50px;
  line-height: 50px;
  background: var(--theme-color);
  text-align: center;
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
}

.flex_feedback_bottom {
  width: 80px;
  background: #FFFFFF;
  border: 1px solid #DCDCDC;
  padding: 0 20px;
  box-sizing: border-box;
}

.flex_feedback_div .close_icon {
  position: absolute;
  width: 24px;
  height: 24px;
  top: -12px;
  right: -12px;
}

.flex_feedback_agree,
.flex_feedback_dissatisfied {
  padding: 25px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.flex_feedback_agree_txt,
.flex_feedback_dissatisfied_txt {
  margin-top: 12px;
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #878787;
}

.flex_feedback_hr {
  width: 60px;
  height: 1px;
  background: #DCDCDC;
}

.hover_satisfied {
  width: 23px;
  height: 22px;
  background: url("/so/srpc/zh/static/ai/images/satisfied_hover.png");
  background-size: 100% 100%;
}

.actived_satisfied {
  width: 23px;
  height: 22px;
  background: url("/so/srpc/zh/static/ai/images/satisfied_disabled.png");
  background-size: 100% 100%;
}

.hover_dissatisfied {
  width: 23px;
  height: 22px;
  background: url("/so/srpc/zh/static/ai/images/dissatisfied_hover.png");
  background-size: 100% 100%;
}

.actived_dissatisfied {
  width: 23px;
  height: 22px;
  background: url("/so/srpc/zh/static/ai/images/dissatisfied_disabled.png");
  background-size: 100% 100%;
}

/*满意弹框*/
.satisfied_draw {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.2);
  font-size: var(--font-size-small);
  color: var(--font-color);
}

.satisfied_draw_div {
  width: 460px;
  background: #ffffff;
  padding: 76px 0;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.satisfied_draw_img {
  width: 100%;
  height: 40px;
  margin-bottom: 22px;
  background: url("/so/srpc/zh/static/ai/images/satisfied_draw_img.png") center center no-repeat;
  background-size: contain;
}

.satisfied_draw_title {
  height: 15px;
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: var(--font-color);
  line-height: 15px;
  margin-bottom: 50px;
}

.satisfied_draw_btn {
  width: 132px;
  height: 40px;
  background: var(--theme-color);
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 40px;
  margin: 0 auto;
  cursor: pointer;
}

/*不满意弹框*/
.dissatisfied_draw {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.2);
  font-size: var(--font-size-small);
  color: var(--font-color);
}

.dissatisfied_draw_div {
  width: 680px;
  height: fit-content;
  background: #ffffff;
  padding: 40px;
}

/* ---后台配置样式start--- */
.scene_subject_static .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* 右侧w50样式 1个 */
.scene_subject_static .clearfix .w50 {
  width: 100%;
}

/* 右侧w25样式 2个 */
.scene_subject_static .clearfix .w25 {
  width: 50%;
}

/* 右侧w16样式 3个 */
.scene_subject_static .clearfix .w16 {
  width: 33.3%;
}

/* 右侧w15样式 4个 */
.scene_subject_static .clearfix .w15 {
  width: 25%;
}

/* 右侧w14样式  5个 */
.scene_subject_static .clearfix .w14 {
  width: 20%;
}

/* 右侧w13样式 6个 */
.scene_subject_static .clearfix .w13 {
  width: 17%;
}

/* 右侧列表超出... */
.scene_subject_static .clearfix li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 20px;
}

/* 右侧列表超出... */
.scene_subject_static .clearfix li a {
  height: 22px;
  line-height: 22px;
}

/* 旧版样式列表小圆点 */
.list li i {
  float: left;
  width: 14px;
  height: 22px;
  background: url("/so/srpc/zh/static/ai/images/list_sport.jpg") no-repeat 0px -3px;
}

/* 旧版标题加粗 */
.scene_subject_static .b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
  font-size: var(--font-size--large);
  margin-bottom: 18px;
}

/* 右侧列表超出... */
.scene_subject_static .pb10 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  word-break: break-all;
  line-height: 24px;
  margin-bottom: 10px;
  color: var(--font-color--gray);
}

/* ---后台配置样式end--- */

@media screen and (max-height: 600px) {
  .dissatisfied_draw_div {
    max-height: 400px;
    overflow-y: scroll;
  }
}

.draw_title {
  height: 16px;
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: var(--font-color);
  line-height: 16px;
  margin-bottom: 10px;
}

/*不满意头部*/
.dissatisfied_draw_head {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.dissatisfied_draw_title {
  width: 100%;
  height: 18px;
  font-size: var(--font-size-large);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: var(--font-color);
  line-height: 18px;
}

.dissatisfied_draw_keyword,
.dissatisfied_draw_question,
.dissatisfied_draw_detail {
  margin-bottom: 30px;
}

.dissatisfied_draw_question {
  position: relative;
}

.dissatisfied_draw_keyword input {
  width: 100%;
  height: 40px;
  padding-left: 10px;
  line-height: 40px;
  border: 1px solid #dfdfdf;
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #888888;
}

.question_select_input {
  flex: 1;
  padding: 12px;
  border: 1px solid #dfdfdf;
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: var(--font-color);
  line-height: 16px;
}

.draw_question_select {
  display: flex;
  cursor: pointer;
}

/*问题箭头样式*/
.question_select_img {
  width: 18px;
  height: 11px;
  background: url(/so/srpc/zh/static/ai/images/question_img.png);
  background-size: 100% 100%;
  margin: 0 auto;
  transition: none;
}

.question_select_btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 50px;
  background: #c3c3c3;
  transition: none;
}

.draw_question_option {
  position: absolute;
  display: none;
  background: #fff;
  z-index: 4;
  width: 100%;
  max-height: 182px;
  overflow-y: auto;
  border: 1px solid #b3b3b3;
}

.item_question_option {
  padding: 10px;
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: var(--font-color);
  line-height: 16px;
  cursor: pointer;
}

.item_question_option:hover {
  background: #eeeeee;
}

.dissatisfied_draw_detail .dissatisfied_draw_textarea {
  width: 100%;
  height: 100px;
  padding: 21px 11px;
  border: 1px solid #dfdfdf;
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: var(--font-color);
  line-height: 16px;
}

.dissatisfied_draw_btn {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.dissatisfied_btn_confirm {
  margin-right: 40px;
}

/*弹框验证*/
.draw_verification_div {
  display: flex;
  align-items: center;
}

/*验证码提示*/
.verification_tips {
  font-size: var(--font-size-small);
  line-height: 14px;
  margin-top: 5px;
}

/*弹框图形验证码input*/
.draw_verification_div input {
  width: 100%;
  height: 40px;
  padding-left: 10px;
  line-height: 40px;
  border: 1px solid #dfdfdf;
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: var(--font-color);
}

/*图形验证码宽高*/
.draw_verification_div img {
  width: unset;
  height: 40px;
  cursor: pointer;
}

.dissatisfied_btn_confirm,
.dissatisfied_btn_cancel {
  width: 120px;
  height: 40px;
  background: #d78b94;
  border-radius: 4px;
  font-size: var(--font-size);
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.dissatisfied_btn_confirm:hover,
.dissatisfied_btn_cancel:hover {
  background: var(--theme-color);
}

.draw_top_img {
  width: 16px;
  height: 16px;
  background: url(/so/srpc/zh/static/ai/images/draw_top.png);
  background-size: 100% 100%;
  cursor: pointer;
}

/* 移动端样式 */
@media (max-width: 768px) {
  .header {
    width: 100%;
    flex-direction: column;
  }

  .header .logo {
    width: 70%;
  }

  .header_right {
    width: 100%;
  }

  .header .ipt_box {
    width: 80%;
    margin: 0 auto;
  }

  .header .ipt_box .voice {
    display: none !important;
  }

  .header_search_hot {
    width: 80%;
    margin: 0 auto;
    margin-top: 10px;
  }

  .header #main_ipt {
    width: 100%;
    height: 40px;
    padding-right: 106px;
  }

  .header #search_btn {
    height: 40px;
  }

  .header_nav_middle {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .header_nav_middle::-webkit-scrollbar {
    height: 4px;
  }

  .middle {
    margin: 0;
    margin-bottom: 7px;
  }

  .middle .anwser_box {
    width: 100%;
  }

  .box_left {
    width: 100%;
    background: transparent;
    padding: 0;
  }

  .box_left>div {
    margin-top: 7px;
    margin-bottom: 0;
    padding: 7px;
    background: #fff;
    border-radius: 0;
  }

  .box_left .loading_spinner_box {
    margin-bottom: 0;
  }

  .overview_scene .scene_item_box {
    margin-bottom: 7px;
  }

  .box_left>.scene_box,
  .box_left>.docs_box {
    background: transparent;
    padding: 0;
  }

  .scene_item_box+.scene_item_box,
  .docs_item+.docs_item {
    margin-top: 7px;
  }

  .line_hr {
    display: none;
  }

  .scene_box>div,
  .docs_box>div {
    margin-top: 7px;
    padding: 7px;
    background: #fff;
    margin-bottom: 0;
  }

  .scene_item_box,
  .docs_item {
    border-bottom: 0px;
    padding-bottom: 7px;
  }

  /* 场景 */
  .scene_tab_doc+.scene_tab_doc,
  .scene_tab_more {
    margin-top: 10px;
  }

  .scene_subject_box .scene_subject_body {
    margin-top: 10px;
    justify-content: unset;
    flex-direction: column;
  }

  .scene_subject_box .scene_subject_left,
  .scene_subject_box .scene_subject_right {
    margin-right: 0;
    width: 100%;
  }

  .scene_subject_box .scene_subject_static {
    margin-top: 10px;
  }

  .classification .classification_nav .classification_nav_item+.classification_nav_item {
    margin-left: 0;
  }

  .box_left .llm_box {
    border: 0;
    padding: 7px;
  }

  .box_left .llm_box .llm_inner {
    padding: 7px;
    border: 1px solid #E5E5E5;
  }

  .ai_tip {
    justify-content: unset;
    align-items: unset;
    flex-direction: column;
  }

  .ai_tip .ai_tip_left {
    flex-wrap: wrap;
  }

  .ai_tip .ai_tip_right {
    justify-content: flex-end;
  }

  .docs_item .docs_title a {
    font-size: var(--font-size);
    line-height: 24px;
  }

  .docs_item .docs_title .tag {
    border-radius: 12px;
    padding: 0px 8px;
    display: inline-block;
    line-height: 24px;
  }

  .docs_item .docs_title .title_btn {
    margin-top: 0;
  }

  .btn_span,
  .docs_item .docs_title .btn_span {
    line-height: 24px;
    font-size: var(--font-size-small);
  }

  .docs_item .docs_content {
    line-height: 1.6;
  }

  .docs_item .doc_content_box .doc_content_right>div+div {
    margin-top: 5px;
  }

  .work_draw_div {
    width: 98%;
  }

  .work_main,
  .main_region_list,
  .main_region,
  .work_list,
  .work_page {
    padding: 7px;
  }

  .work_list .work_body_content .item_right {
    gap: 10px;
    flex-direction: column;
  }

  .region_item,
  .main_region_list .disabled {
    padding: 0 7px;
    height: 28px;
    line-height: 28px;
  }

  .table_template .row p span {
    padding: 7px;
  }

  .table_template .row {
    display: block;
  }

  .table_template .row .w50 {
    width: 100%;
  }

  .table_template .row>p+p {
    border: 0;
  }

  .box_right {
    display: none !important;
  }

  .skeleton.text {
    height: 20px;
  }

  .skeleton.text+.skeleton.text {
    margin-top: 12px;
  }

  .disclaimers_modal_box {
    width: 98%;
    padding: 15px;
  }

  .disclaimers_modal_box .ai_disclaimers_title {
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 10px;
  }

  .disclaimers_modal_box .ai_disclaimers_allow {
    width: 120px;
    height: 28px;
    font-size: var(--font-size);
    left: calc(100% - 120px);
    line-height: 26px;
    margin-top: 15px;
  }

  .topping {
    bottom: 30px;
    right: 10px;
  }

  .back_top_img {
    width: 30px;
    height: 30px;
  }

  .flex_feedback_div {
    display: none !important;
  }

  /* 人物卡片 */
  .scene_person_image img {
    width: 130px;
  }

  .person_introduce_name {
    line-height: 22px;
    display: flex;
    font-weight: bold;
    margin-bottom: 0;
  }

  .person_introduce_name a {
    flex-shrink: 0;
    margin-right: 20px;
  }

  .person_introduce_name span {
    font-size: var(--font-size-small);
  }

  .person_introduce_detail {
    line-height: 22px;
  }
}