header {
  flex-shrink: 0;
}

html {
  height: 100%;
}

* {
  -webkit-tap-highlight-color: transparent;
}


/* .nav-width {
  max-width: 55%;
  margin: 0 auto;
} */

.min-nav-height{
  padding-top: 60px;
  flex-shrink: 0;
}

.search-form {
  margin-bottom: 24px;
}


.search-result-title {
  padding: 0 28px 0 22px;
  text-align: center;
  font-size: 34px;
  color: #212121;
  letter-spacing: 4px;
  padding-bottom: 40px;
  font-weight: bold;
}

/* AI检索输入框 */
.ai_search_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  background-color: #fff;
  border-radius: 41px;
  overflow: hidden;
}

.ai_search_wrap .ai_search_body {
    width: 100%;
}

.ai_search_wrap .ai_search_input_wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 56px;
    padding: 12px 16px;
    border-radius: 41px;
    border: 1px solid #dcdcdc;
    color: #222;
}

.ai_search_wrap .ai_search_input_wrap.focused,
.ai_search_wrap .ai_search_input_wrap:hover {
    border-color: #365AA4;
}

.ai_search_wrap .ai_search_input_wrap.focused {
    box-shadow: 0 0 0 2px rgba(45, 140, 240, 0.2);
    outline: 0;
}

.ai_search_wrap .ai_search_input_wrap.disabled {
    cursor: not-allowed;
    background-color: #f4f4f4;
    pointer-events: none;
}

.ai_search_wrap .ai_search_input_wrap .ai_search_input_page {
    width: 100%;
    line-height: 46px;
    border: none;
    color: #222;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    outline: none;
}

.ai_search_wrap .ai_search_input_wrap .img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.ai_search_wrap .ai_search_input_wrap .prefix_text {
    margin-right: 12px;
    padding-right: 12px;
    color: #365AA4;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.ai_search_wrap .ai_search_input_wrap .icon_clear_page {
    display: none;
    position: absolute;
    top: 50%;
    right: 53px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    margin-right: 16px;
}

.ai_search_wrap .ai_search_input_wrap .icon_clear_page:hover {
    opacity: 0.8;
}

.ai_search_wrap .ai_search_input_wrap .btn_send_handle {
  width: 50px;
  height: 50px;
  margin-left: 40px;
  background: url('../../img/common/send-btn.png') no-repeat center center;
  background-size: 32px;
  cursor: pointer;
  border:0;
  outline:none;
}

.ai_search_wrap .ai_search_input_wrap .btn_send_handle:hover {
  background: url('../../img/common/send-btn-hover.png') no-repeat center center;
    background-size: 32px;
}

.site-id-container{
  display: none;
}

.ai-result-content{
  width: 100%;
  min-height: 135px;
  padding: 18px 16px 24px 16px;
  border-radius: 20px;
  position: relative;
  background: #fff;
  overflow: hidden;
  background-image: linear-gradient(196deg, rgba(146, 189,249,.6) -50px, rgba(220, 233, 250, 0) 120px);
}



.ai-result-content::after{
  content: '';
  position: absolute;
  width: 21px;
  height: 21px;
  background: url("../../img/common/chat-input-prefix.png");
  background-size: 100% 100%;
  right: 15px;
  top: 15px;
}

.answer-tag {
  background: linear-gradient(360deg, rgba(250, 250, 250, 0) 0%, #FAFAFA 28.2%);
  height: 33px;
  border-radius: 8px;
  padding: 0 12px;
  display: inline-block;
  box-sizing: border-box;
  margin-bottom: 12px;
}
.answer-tag .tag-img{
  width:20px;
  height: 20px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline;
}
.answer-tag>span {
  color: #365AA4;
  font-size: 14px;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: 0.28px;
  text-align: left; 
  font-style:italic;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(54, 90, 164, 1);
}

.sekeleton{
  width: 100%;
  padding: 16px 0;
}
.sekeleton>div{
  height: 16px;
  background: rgba(217, 217, 217, .3);
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}
/* .sekeleton>div::after{
  content: '';
display: block;
width: 100%;
height: 16px;
transform: translateX(-100%);
background: linear-gradient(90deg, transparent, rgb(97, 129, 231,0.5), transparent);
animation: loading 2s infinite;
}
*/

.sekeleton .bar::after{
  content: '';
display: block;
width: 100%;
height: 16px;
transform: translateX(-100%);
background: linear-gradient(90deg, transparent, rgb(97, 129, 231,0.5), transparent);
animation: loading 2.5s infinite;
}

@keyframes loading{ /* 骨架屏的动画 */
  100% {
      transform: translateX(100%);
  }
}
.sekeleton>div:nth-of-type(1) .bar{
  width:200%;
}

.sekeleton>div:nth-of-type(3) .bar{
  width:400%;
}

.sekeleton>div:nth-of-type(3) {
  width:50%;
}

.answer{
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #444;
  font-family: "PingFang SC";
  font-style: normal;
}

.answer-text{
  line-height: 1.75;
}


.answer-text code{
  display: none;
}


.search-section>div,
.result-section>div {
  max-width: 55%;
  margin: 0 auto;
}

.result-section>div:nth-child(1) {
  min-height: 864px;
}

.search-result-input {
  background: none;
  width: 100%;
  height: 49px;
  color: #222222;
  font-size: 18px;
  padding-right: 10%;
}


.reference-text{
  color: #999;
  font-family: "PingFang SC";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 8px;
  text-align: left;
}

.display-none { display: none; }


.source .link{
  color: #444;
  font-family: "PingFang SC";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; 
}

.pr-0{
  padding-right: 0;
}


@keyframes out-loading{
  0% {
      opacity: 1;
  }

  50% {
      opacity: 0;
  }

  100%{
      opacity: 1;
  }
}

.output-load{
  color: #156BBC;
  font-family: "PingFang SC";
  font-style: normal;
  font-weight: 400;
  animation: out-loading 1s infinite;
}




@media only screen and (max-width:768px){
  .ai_search_wrap .ai_search_input_wrap .prefix_text{
      font-size: 14px;
  }
  
  .ai_search_wrap .ai_search_input_wrap .img {
      width: 18px;
      height: 18px;
  }
  
  .ai_search_wrap .ai_search_input_wrap .ai_search_input_page {


      font-size: 16px;
  }
  
  .ai_search_wrap .ai_search_input_wrap .icon_clear_page{
     margin-right: 12px;
     right: 38px;
  }
  
  .ai_search_wrap .ai_search_input_wrap .btn_send_handle{
      margin-left: 30px;
  }
  
  .ai_search_wrap .ai_search_input_wrap .icon_clear_page{
      width: 16px;
      height: 16px;
  }
  
  .ai_search_wrap .ai_search_input_wrap{
      padding: 10px 10px 10px 12px;
  }
}

.body-layout {
  display: flex;
  flex-direction: column;
}

.empty{
  flex: 1;
  background: #fff;
}

.empty-gray{
  background: #f8f8f9;
  flex: 1;
}

.relative {
  min-height: 0px !important;
}


.link-area{
  margin-top: 24px;
}

.link-title{
  color: #213252;
  font-family: "PingFang SC";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom:8px;
}

.link-item{
  display:block;
  overflow: hidden;
  color: #111;
  text-overflow: ellipsis;
  font-family: "PingFang SC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left:11px;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
}

.link-item:hover{
  color: #156BBC;
}

.link-item:nth-last-of-type(1){
  margin-bottom: 0
}

.link-item:before{
  position: absolute;
  width:5px;
  height:5px;
  content:'';
  background:#2081DB;
  top:50%;
  left:0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.full-main{
  min-height: 60vh;
}

.link-in-text{
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../../img/common/link.png');
  background-size: 100% 100%;
  cursor: pointer;
  vertical-align: text-bottom;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 2px;
}

.h-title{
  color: #111;
  font-family: "PingFang SC";
  font-size: 20px;
  font-weight: 550;
}

.answer-text>.h-title{
  margin-top: 10px;
  font-style: normal;
}


.answer-text code{
  display: none;
}


.answer-text>.h-title-one{
  margin-top: 0;
}

.strong-text{
  color: #111;
}

.flex-1{
  flex: 1;
}