/* 点击鼠标效果 */
@-webkit-keyframes ball-scale-multiple {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    5% {
        opacity: .75
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-moz-keyframes ball-scale-multiple {
    0% {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0)
    }

    5% {
        opacity: .75
    }

    100% {
        opacity: 0;
        -moz-transform: scale(1);
        transform: scale(1)
    }
}

@-o-keyframes ball-scale-multiple {
    0% {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0)
    }

    5% {
        opacity: .75
    }

    100% {
        opacity: 0;
        -o-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes ball-scale-multiple {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0)
    }

    5% {
        opacity: .75
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }
}
.loadI {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
}
.bai_box>div {
    position: absolute;
    top: -30px;
    left: -31px;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    opacity: 0;
    pointer-events: none;
    display: inline-block;
    float: none;
    background-color: #fff;
    border: 0 solid currentColor;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running
}

.bai_box .bai_1 {
    -webkit-animation-delay: .01s;
    -moz-animation-delay: .01s;
    -o-animation-delay: .01s;
    animation-delay: .01s
}

.bai_box .bai_2 {
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -o-animation-delay: .2s;
    animation-delay: .2s
}

.bai_box .bai_3 {
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -o-animation-delay: .4s;
    animation-delay: .4s
}

.bai_box {
    text-align: center;
    position: absolute;
    display: block;
    margin-top: 35px;
    margin-left: 35px
}

.bai_box>div {
    -webkit-animation: ball-scale-multiple .8s 0s linear;
    -moz-animation: ball-scale-multiple .8s 0s linear;
    -o-animation: ball-scale-multiple .8s 0s linear;
    animation: ball-scale-multiple .8s 0s linear
}
/*嵌入注释文字样式*/
/*嵌入文字新增效果*/


.embed_tool {
  width: 1px;
  height: 80px;
  position: relative;
}
.new_embed_tool{
    height: 54px;
}
.embed_tool .line {
  position: absolute;
  width: 1px;
  height: 80px;
  left: 1px;
  z-index: -1;
  transform-origin: bottom;
}
.embed_tool .line .point_bg {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  bottom: 0;
}
.embed_tool .point_font {
  position: absolute;
  text-align: center;
  word-break: break-all;
  word-wrap: break-word;
  overflow: hidden;
}
.embed_tool .vertical {
    writing-mode: inherit;
    width: 5px;
    word-wrap: break-word;
    white-space: break-spaces;
  }
.embed_tool .item {
  width: 18px;
  height: 18px;
  position: absolute;
  left: -9px;
  bottom: 0px;
}

.embed_tool .item::before {
    content: "";
  width: 100%;
  height: 100%;
  background: url(../images/tool1.svg?1);
  background-size: 100% 100%;
  position: absolute;
  animation: point_revolve 1s linear infinite;
  -webkit-animation: point_revolve 1s linear infinite;/* Safari 和 Chrome */
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}
.embed_tool.animation_point .point_bg {
  animation: point_fide_in .3s linear 1;
  -webkit-animation: point_fide_in .3 linear 1;/* Safari 和 Chrome */
}
.embed_tool.animation_point .point_font {
  animation: point_text_in .6s linear 1;
  -webkit-animation: point_text_in .6s linear 1;/* Safari 和 Chrome */
}

@keyframes point_revolve
{
from {transform: rotate(0deg);}
to {transform: rotate(180deg);}
}

@-moz-keyframes point_revolve /* Firefox */
{
from {transform: rotate(0deg);}
to {transform: rotate(180deg);}
}

@-webkit-keyframes point_revolve /* Safari 和 Chrome */
{
from {transform: rotate(0deg);}
to {transform: rotate(180deg);}
}

@-o-keyframes point_revolve /* Opera */
{
from {transform: rotate(0deg);}
to {transform: rotate(180deg);}
}

@keyframes point_fide_in
{
from {height: 0;}
to {height: 100%;}
}

@-moz-keyframes point_fide_in /* Firefox */
{
from {height: 0;}
to {height: 100%;}
}

@-webkit-keyframes point_fide_in /* Safari 和 Chrome */
{
from {height: 0;}
to {height: 100%;}
}

@-o-keyframes point_fide_in /* Opera */
{
from {height: 0;}
to {height: 100%;}
}

@keyframes point_text_in
{
0% {opacity: 0;}
50% {opacity: 0;}
100% {opacity: 1;}
}

@-moz-keyframes point_text_in /* Firefox */
{
0% {opacity: 0;}
50% {opacity: 0;}
100% {opacity: 1;}
}

@-webkit-keyframes point_text_in /* Safari 和 Chrome */
{
0% {opacity: 0;}
50% {opacity: 0;}
100% {opacity: 1;}
}

@-o-keyframes point_text_in /* Opera */
{
0% {opacity: 0;}
50% {opacity: 0;}
100% {opacity: 1;}
}

.son{
    z-index: 6;
}
/*细节样式*/
.scene_tools{
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    white-space: nowrap;
}
.show_details_btn,.show_contrast_btn{
    color: #ffffff;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    width: 90px;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    /* border: 1px solid #fff; */
    background: rgba(0,0,0,.4);
    border-radius: 13px;
    cursor: pointer;
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    z-index: 5;
    pointer-events: auto;

}
.show_details_btn:hover,.show_contrast_btn:hover{
    background: rgba(0,0,0,.6);
}
.show_details_btn .run{
    background: url(../images/details_icon.svg?2) no-repeat;
    background-size: 14px;
    padding-left: 25px;
    background-position: left;

}
.show_details_btn .stop{
    background: url(../images/details_res.svg?1) no-repeat;
    background-size: 16px;
    padding-left: 25px;
    background-position: left;
    display: none;
}
.show_details_btn.runing .run{
    display: none;
}
.show_details_btn.runing .stop{
    display: inline-block;
}
.show_details_btn .hide_dom{
    display: none;
}
.show_contrast_btn span{
    background: url(../images/contrast_icon.svg) no-repeat;
    background-size: 14px;
    padding-left: 25px;
    background-position: left;
}
@-webkit-keyframes pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform:  scale(1.1);
  }

  75% {
    -webkit-transform:  scale(0.9);
    transform:  scale(0.9);
  }
}

@keyframes pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
/*弹窗*/
.detail_text{
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 30px;
    padding: 15px 20px 15px;
    border-radius: 8px;
    background: rgba(0,0,0,.5);
    position: fixed;
    left: 50%;
    top: 140px !important;
    transform: translateX(-50%);
    display: inline-block;
    max-width: 1040px;
    z-index: 10;
    text-align: left;
}
.detail_text .close_btn{
    width: 30px;
    height: 30px;
    right: -15px;
    top: -15px;
    background: #000000;
    position: absolute;
    background: url(../../../../common/kyld/img/tick_col.svg) no-repeat;
    background-size: 18px;
    background-position: center;
    cursor: pointer;
}

@media screen and (max-width: 900px) {
    .detail_text{
        max-width: 80vw;
        width: fit-content;
        top: 1rem;
        padding: .1rem .2rem;
    }

    .show_details_btn:hover{
        background: rgba(0,0,0,.4);
    }
}
/* 外链小程序 */
.wechat-web-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
}
/* .wechat-web-container wx-open-launch-weapp {
    position: absolute;
    bottom: 28%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
} */
.wxTip {
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}
.wxBgdialog {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.1);
}
.wxBgTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid rgb(204, 202, 202);
    padding-bottom: 14px;
}
.wxBgTop .wxBgTop_title {
    font-size: 14px;

}
.wxBgTop .wxBgTop_close {
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
    cursor: pointer;
}
.wxBgTop .wxBgTop_close::before {
    content:'';
    position: absolute;
    width: 2px;
    height:20px;
    background: rgb(148, 147, 147);
    transform: rotate(45deg);
}
.wxBgTop .wxBgTop_close::after {
    content:'';
    position: absolute;
    width: 2px;
    height: 20px;
    transform: rotate(135deg);
    background: rgb(148, 147, 147);
}
.wxButtom {
    width: 120px;
    height: 32px;
    text-align: center;
    font-size: 14px;
    display: block;
    margin: 0 auto;
    line-height: 32px;
    /* padding: 8px 24px; */
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: #07c160;
    color:#fff;
}
.wxBottomBtn {
    display: none;
}

#model_loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 49;
}

.model_loading_box {
    width: 170px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.model_loading_text {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 18px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    width: 100%;
    line-height: 30px;
}

#model_loading .model_loading {
    background: url('//qjzb.kuleiman.com/record/g1.png');
    width: 120px;
    height: 120px;
    transform: rotate(0deg) scale(1);
    background-size: 120px auto;
    background-position: 0 0;
    animation: point_animation 3s steps(44, end) .5s infinite normal;
    cursor: pointer;
    margin: 0 auto;
}

@keyframes point_animation {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 100%;
    }
}
.global_hide {
    display: none !important;
}


/*广告*/
.draw_box{
    position: fixed;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    top: 70px;
    width: 750px;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
}
.draw_box .draw_box_swiper_item{
    width: 100%;
    height: 100%;
    text-align: center;
}
.draw_box .draw_box_swiper_item img{
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
}
.draw_box .draw_box_close{
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url("../images/close_ad.svg") no-repeat;
    background-size: 28px;
    background-position:top right;
    top: 0;
    right: 0;
    display: none;
    z-index: 5;
}
.draw_box::before{
    content: "广告";
    width: 35px;
    height: 20px;
    background: rgba(0,0,0,0.5);
    border-radius: 8px 0px 8px 0px;
    text-align: center;
    line-height: 20px;
    font-weight: 600;
    font-size: 12px;
    color: #FFFFFF;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    display: block;
    z-index: 5;
}
@media screen and (max-width: 900px) {
    .detail_text{
        max-width: 80vw;
        width: fit-content;
        top: 1rem;
        padding: .1rem .2rem;
    }

    .show_details_btn:hover{
        background: rgba(0,0,0,.4);
    }
    /*广告*/
    .draw_box{
        width: 5.4rem;
        height: 0.84375rem;
        top: 1.25rem;
        border-radius: 0.07rem;
    }
    
    .draw_box .draw_box_close{
        position: absolute;
        width: .4rem;
        height: .4rem;
        cursor: pointer;
        background: url("../images/close_ad.svg") no-repeat;
        background-size: .37rem;
        background-position:top right;
        top: 0;
        right: 0;
        display: none;
        z-index: 5;
    }
    
    .draw_box::before{
        content: "广告";
        width: 0.52rem;
        height: 0.28rem;
        border-radius: 0.07rem 0rem 0.07rem 0rem;
        line-height: 0.28rem;
        font-weight: 600;
        font-size: 0.17rem;
    }
}

.ai_help.ai_help_custom {
    background: none;
    display: flex;
    justify-content: right;
    align-items: center;
    /*padding-right: 11px;*/
}

.ai_help.ai_help_custom::before{
    display: none;
}
.ai_help.ai_help_custom img {
    max-width: 100%;
    max-height: 100%;
}