#captcha-box {
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
    transform: scale(0);
    /* opacity: 0; */
}

#tianai-captcha-parent {
    width: 318px;
    height: 338px;
    overflow: hidden;
    position: relative;
    z-index: 997;
    box-sizing: border-box;
    padding: 16px 8px 8px 8px;
    
    border-radius: 5px;
    border-width: 1px;
    border-color: rgb(47 47 48 / 1);
    background-color: rgb(0 0 0 / 20%);
    box-shadow: 0px 12px 32px 4px rgba(0,0,0,0.36),0px 8px 20px rgba(0,0,0,0.72);
    --after-percent: 0%;
}

#tianai-captcha-parent::after{
    display: block;
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: var(--after-percent);
    height: 6px;
    background-color: #409eff;
    transition: all .3s ease-out;
}

#tianai-captcha-parent #tianai-captcha-box {
    height: 280px;
    width: 100%;
    position: relative;
    overflow: hidden
}

#tianai-captcha-parent #tianai-captcha-box .loading {
    width: 50px;
    height: 50px;
    text-align: center;
    display: block;
    z-index: 998;
    position: absolute;
    top: 105px;
    left: 126px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    animation: __spin 1s linear infinite;
}


#tianai-captcha-parent #tianai-captcha-box .loading::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid rgba(59, 130, 246, 0.3); /* Light blue background ring */
    border-top-color: rgb(59, 130, 246); /* Blue color for the rotating part */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes __spin {
    to {
        transform: rotate(360deg);
    }
}

#tianai-captcha-parent #tianai-captcha-box #tianai-captcha {
    transform-style: preserve-3d;
    will-change: transform;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0.36, 0.3, 0.42, 1.5);
    transform: translateX(-300px)
}

#tianai-captcha-parent #tianai-captcha-bg-img {
    background-color: #fff;
    background-position: top;
    background-size: cover;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 6px
}

#tianai-captcha-parent .slider-bottom {
    height: 19px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

#tianai-captcha-parent .slider-bottom .close-btn {
    width: 20px;
    height: 20px;
    background-image: url(../images/close.png);
    background-repeat: no-repeat;
    background-size: 19px 19px;
    background-size: center center;
    cursor: pointer;
    order: 2;
}

#tianai-captcha-parent .slider-bottom .refresh-btn {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    background-image: url(../images/refresh.png);
    background-repeat: no-repeat;
    order: 1;
    cursor: pointer;
    margin-left: auto;
    margin-right: 10px;
    transition: all .3s;
    transform: rotate(0);
}

#tianai-captcha-parent .slider-bottom .logo {
    height: 30px;
    /* float: left */
}

#tianai-captcha-parent .slider-move-shadow {
    animation: myanimation 2s infinite;
    height: 100%;
    width: 5px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    filter: opacity(0.5);
    box-shadow: 1px 1px 1px #fff;
    border-radius: 0;
}

#tianai-captcha-parent #tianai-captcha-slider-move-track-mask {
    border-width: 1px;
    border-style: solid;
    border-color: #00f4ab;
    width: 0;
    height: 32px;
    background-color: #a9ffe5;
    opacity: .5;
    position: absolute;
    top: -1px;
    left: -1px;
    border-radius: 5px
}

#tianai-captcha {
    text-align: left;
    box-sizing: content-box;
    width: 300px;
    height: 260px;
    z-index: 999
}

#tianai-captcha .slider-bottom .logo {
    height: 30px
}

#tianai-captcha .slider-bottom {
    height: 19px;
    width: 100%
}

#tianai-captcha .content .tianai-captcha-tips {
    height: 25px;
    width: 100%;
    position: absolute;
    bottom: -25px;
    left: 0;
    z-index: 999;
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    text-align: center;
    transition: bottom .3s ease-in-out
}

#tianai-captcha .content .tianai-captcha-tips.tianai-captcha-tips-error {
    background-color: #ff5d39
}

#tianai-captcha .content .tianai-captcha-tips.tianai-captcha-tips-success {
    background-color: #39c522
}

#tianai-captcha .content .tianai-captcha-tips.tianai-captcha-tips-on {
    bottom: 0
}

#tianai-captcha .content #tianai-captcha-loading {
    z-index: 9999;
    background-color: #f5f5f5;
    text-align: center;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

#tianai-captcha .content #tianai-captcha-loading img {
    display: block;
    width: 45px;
    height: 45px
}

#tianai-captcha #tianai-captcha-slider-bg-canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px
}

@keyframes myanimation {
    from {
        left: 0
    }

    to {
        left: 289px
    }
}

#tianai-captcha.tianai-captcha-slider {
    z-index: 999;
    position: absolute;
    left: 0;
    top: 0;
    user-select: none
}

#tianai-captcha.tianai-captcha-slider .content {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden
}

#tianai-captcha.tianai-captcha-slider .bg-img-div {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translate(0px, 0px)
}

#tianai-captcha.tianai-captcha-slider .bg-img-div img {
    height: 100%;
    border-radius: 5px
}

#tianai-captcha.tianai-captcha-slider .slider-img-div {
    height: 100%;
    position: absolute;
    transform: translate(0px, 0px)
}

#tianai-captcha.tianai-captcha-slider .slider-img-div #tianai-captcha-slider-move-img {
    height: 100%
}

#tianai-captcha.tianai-captcha-slider .slider-move {
    height: 34px;
    width: 100%;
    margin: 20px 0;
    position: relative
}

#tianai-captcha.tianai-captcha-slider .slider-move-track {
    position: relative;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: rgb(47 47 48);
    border: 1px solid rgb(39 39 42);
    color: #999;
    transition: 0s;
    font-size: 14px;
    box-sizing: content-box;
    border-radius: 4px;
    filter: opacity(0.8);
}

#tianai-captcha.tianai-captcha-slider .refresh-btn,
#tianai-captcha.tianai-captcha-slider .close-btn {
    display: inline-block
}

#tianai-captcha.tianai-captcha-slider .slider-move {
    line-height: 38px;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    color: #88949d;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

#tianai-captcha.tianai-captcha-slider .slider-move .slider-move-btn {
    transform: translate(0px, 0px);
    position: absolute;
    top: -6px;
    left: 0;
    width: 63px;
    height: 45px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 5px
}

#tianai-captcha.tianai-captcha-slider .slider-tip {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 15px;
    line-height: normal;
    color: #000
}

#tianai-captcha.tianai-captcha-slider .slider-move-btn:hover {
    cursor: pointer
}

#tianai-captcha.tianai-captcha-rotate .rotate-img-div {
    height: 100%;
    text-align: center
}

#tianai-captcha.tianai-captcha-rotate .rotate-img-div img {
    height: 100%;
    transform: rotate(0deg);
    display: inline-block
}

#tianai-captcha.tianai-captcha-concat .tianai-captcha-slider-concat-img-div {
    background-size: 100% 180px;
    position: absolute;
    transform: translate(0px, 0px);
    z-index: 1;
    width: 100%
}

#tianai-captcha.tianai-captcha-concat .tianai-captcha-slider-concat-bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translate(0px, 0px);
    background-size: 100% 180px
}

#tianai-captcha.tianai-captcha-word-click {
    position: relative;
    box-sizing: border-box
}

#tianai-captcha.tianai-captcha-word-click .click-tip {
    position: relative;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#tianai-captcha.tianai-captcha-word-click .click-tip .tip-img {
    width: 110px;
    position: absolute;
    right: 0;
    filter: contrast(0);
}

#tianai-captcha.tianai-captcha-word-click .click-tip #tianai-captcha-click-track-font {
    font-size: 14px!important;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: absolute
}

#tianai-captcha.tianai-captcha-word-click .slider-bottom {
    position: relative;
    top: 6px
}

#tianai-captcha.tianai-captcha-word-click .content #bg-img-click-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

#tianai-captcha.tianai-captcha-word-click .content #bg-img-click-mask .click-span {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50px;
    background-color: #409eff;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    color: #fff;
    border: 2px solid #fff
}

#tianai-captcha.tianai-captcha-rotate2 {
    position: relative;
    user-select: none
}

#tianai-captcha.tianai-captcha-rotate2 #tianai-captcha-bg-img {
    background-color: #fff;
    background-position: top;
    background-size: cover;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 6px
}

#tianai-captcha.tianai-captcha-rotate2 .content {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden
}

#tianai-captcha.tianai-captcha-rotate2 .content .mask {
    height: 180px;
    width: 180px;
    position: absolute;
    border: 2px solid #fff;
    z-index: 99;
    left: 60px;
    border-radius: 50%;
    box-sizing: border-box
}

#tianai-captcha.tianai-captcha-rotate2 .bg-img-div {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translate(0px, 0px);
    text-align: center
}

#tianai-captcha.tianai-captcha-rotate2 .bg-img-div img {
    height: 100%;
    border-radius: 50%
}

#tianai-captcha.tianai-captcha-rotate2 .slider-img-div {
    height: 100%;
    position: absolute;
    transform: translate(0px, 0px)
}

#tianai-captcha.tianai-captcha-rotate2 .slider-img-div img {
    height: 100%
}

#tianai-captcha.tianai-captcha-rotate2 .slider-move {
    height: 60px;
    width: 100%;
    margin: 11px 0;
    position: relative
}

#tianai-captcha.tianai-captcha-rotate2 .slider-move .slider-move-track {
    line-height: 38px;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    color: #88949d;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    filter: opacity(0.8)
}

#tianai-captcha.tianai-captcha-rotate2 .slider-move .slider-move-btn {
    transform: translate(0px, 0px);
    position: absolute;
    top: -6px;
    left: 0;
    width: 63px;
    height: 45px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 5px
}

#tianai-captcha.tianai-captcha-rotate2 .slider-bottom {
    height: 19px;
    width: 100%
}

#tianai-captcha.tianai-captcha-rotate2 .slider-bottom .close-btn {
    width: 20px;
    height: 20px;
    background-image: url(../images/icon.png);
    background-repeat: no-repeat;
    background-position: 0 -14px;
    float: right;
    margin-right: 2px
}

#tianai-captcha.tianai-captcha-rotate2 .slider-bottom .refresh-btn {
    width: 20px;
    height: 20px;
    background-image: url(../images/icon.png);
    background-position: 0 -167px;
    background-repeat: no-repeat;
    float: right;
    margin-right: 10px
}

#tianai-captcha.tianai-captcha-rotate2 .slider-move-track {
    position: relative;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #f5f5f5;
    color: #999;
    transition: 0s;
    font-size: 14px;
    box-sizing: content-box;
    border: 1px solid #f5f5f5;
    border-radius: 4px
}

#tianai-captcha.tianai-captcha-rotate2 .refresh-btn,
#tianai-captcha.tianai-captcha-rotate2 .close-btn {
    display: inline-block
}

#tianai-captcha.tianai-captcha-rotate2 .slider-tip {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 15px
}

#tianai-captcha.tianai-captcha-rotate2 .slider-move-btn:hover,
#tianai-captcha.tianai-captcha-rotate2 .tianai-captcha-rotate2 .close-btn:hover,
#tianai-captcha.tianai-captcha-rotate2 .tianai-captcha-rotate2 .refresh-btn:hover {
    cursor: pointer
}

#tianai-captcha.tianai-captcha-rotate2 #tianai-captcha-slider-move-track-mask {
    border-width: 1px;
    border-style: solid;
    width: 0;
    height: 32px;
    background-color: #f7b645;
    opacity: .5;
    position: absolute;
    top: -1px;
    left: -1px;
    border-radius: 5px;
    border-color: #ef9c0d
}

#tianai-captcha.tianai-captcha-rotate2 .rotate-img-div {
    height: 100%;
    position: absolute;
    transform: rotate(0deg);
    margin-left: 58px
}

#tianai-captcha.tianai-captcha-rotate2 .rotate-img-div img {
    height: 100%
}

#tianai-captcha.tianai-captcha-rotate2 .tianai-captcha-slider-bg-img-mask {
    position: absolute;
    left: 60px;
    top: 0;
    background-image: url(../images/axis.png);
    width: 180px;
    height: 180px;
    float: left;
    background-size: 100%;
    filter: opacity(0.9);
    display: none
}

#tianai-captcha.tianai-captcha-rotate2 #tianai-captcha-slider-bg-degree-canvas {
    position: absolute;
    top: 0;
    width: 180px;
    height: 180px;
    left: 60px;
    border-radius: 50%;
    transform: rotate(0deg)
}

#tianai-captcha.tianai-captcha-scrape #tianai-captcha-scrape-tip-img {
    display: inline-block;
    height: 20px
}

#tianai-captcha.tianai-captcha-scrape #tianai-captcha-slider-move-track-font,
#tianai-captcha-slider-move-track-font {
    color: #cbd5e1;
    font-size: 14px!important;
}

#tianai-captcha.tianai-captcha-scrape .slider-img-div {
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: #d8d8d8;
    transform: translate(0px, 0px);
    border-radius: 0 5px 5px 0;
    box-sizing: border-box;
    top: 0;
    box-shadow: -6 px 0px 9px 0px #fff
}

#tianai-captcha.tianai-captcha-disable {
    z-index: 999;
    position: absolute;
    left: 0;
    top: 0
}

#tianai-captcha.tianai-captcha-disable .content {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden
}

#tianai-captcha.tianai-captcha-disable .content .bg-img-div {
    background-image: url(../images/dun.jpeg);
    width: 100%;
    height: 100%;
    overflow: hidden
}

#tianai-captcha.tianai-captcha-disable .content .bg-img-div #content-span {
    color: #fff;
    overflow: hidden;
    margin-top: 132px;
    display: block;
    text-align: center
}