.top-banner::before {
    content: none;
}

.top-banner h1 {
    font-size: 36px;
    line-height: 54px;
}

.top-banner .desc {
    font-size: 16px;
    font-weight: 700;
    margin: 0px auto 40px;
}

@keyframes indeterminate {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes dot {
    33% {
        transform: translateY(-2em);
    }

    66% {
        transform: translateY(-1em);
    }
}

.gather-wrapper {
    margin-bottom: 0;
}

.bypass-wrapper {
    max-width: 1192px;
    text-align: left;
    color: var(--color-block-drak);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #F5F7FF;
    padding: 14px 20px 14px 0;
}

.bypass-wrapper .bypass-left {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.bypass-wrapper .bypass-right {
    width: 38%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.bypass-wrapper .editor-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 12px;
}

.bypass-wrapper .editor-content {
    display: flex;
    padding: 20px;
    background-color: var(--color-white, #fff);
    flex-direction: column;
    position: relative;
    flex: 1;
}

.bypass-wrapper .bypass-left .editor-content {
    border-radius: 8px 0 0 8px;
}

.bypass-wrapper .bypass-right .editor-content {
    border-left: 1px solid #D4D6DA;
    border-radius: 0 8px 8px 0;
}

.bypass-wrapper .delete-btn {
    position: absolute;
    top: 4px;
    right: 8px;
    cursor: pointer;
    display: none;
}

.bypass-wrapper .delete-icon {
    color: #72778C;
    width: 20px;
    height: 20px;
    transition: color .3s;
}

.bypass-wrapper .delete-btn:hover .delete-icon {
    color: #fb2420;
}

.bypass-wrapper .editor-box {
    height: 450px;
    padding-bottom: 10px;
}

.bypass-wrapper .editor-textarea {
    height: 100%;
    border: none;
    font-size: 16px;
    line-height: 28px;
    color: #2A3048;
    padding-right: 24px;
    margin-right: -20px;
    overflow-x: hidden;
}

.bypass-wrapper .editor-textarea[placeholder]:empty:before {
    content: attr(placeholder);
    color: #999;
}

.bypass-wrapper .empty-editor-box {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
}

.bypass-wrapper .button-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 158px;
    width: 40%;
    height: 80px;
    color: var(--color-block-drak);
    background-color: #F2F3F7;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all .2s;
}

.bypass-wrapper .button-card.paste-text {
    margin-left: 12px;
}

.bypass-wrapper .button-card svg {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    transition: all .2s;
}

.bypass-wrapper .button-card:hover {
    color: var(--color-primary);
    background-color: #F6F4FF;
}

.bypass-wrapper .button-card:hover svg {
    color: var(--color-primary);
}

.bypass-wrapper .footer-btn-left {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.bypass-wrapper .footer-btn-left .error-box {
    border: 1px solid #FF5959;
    background: #FFE5E5;
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease-in-out;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 0;
}

.bypass-wrapper .footer-btn-left .error-text {
    font-weight: 600;
    font-size: 14px;
    flex: 1;
    margin: 0 6px;
    color: #FF5959;
}

.bypass-wrapper .footer-btn-left .text-num {
    font-size: 14px;
    flex: 1;
    color: rgba(42, 48, 72, 0.8);
    display: flex;
    align-items: center;
}

.bypass-wrapper .footer-btn-left .limit-text {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease-in-out;
}

.bypass-wrapper .button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 5px 20px;
    border-radius: 4px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white, #fff);
    cursor: pointer;
    transition: all .3s;
}

.bypass-wrapper .button.is-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.bypass-wrapper .button.light-bg {
    background: #F0EFFF;
    color: var(--color-primary);
}

.bypass-wrapper .button:not(.is-disabled):not(.light-bg):hover {
    background: var(--color-primary-dark);
}

.bypass-wrapper .button.light-bg:not(.is-disabled):hover {
    border-color: var(--color-primary);
}

.bypass-wrapper .button.is-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.bypass-wrapper .editor-content.is-word-exceeded .text-num {
    color: #ff5959;
}

.bypass-wrapper .editor-content.is-word-limit .editor-textarea {
    color: #ff5959;
}

.bypass-wrapper .editor-content.is-word-limit .text-num {
    color: rgba(255, 89, 89, .5);
}

.bypass-wrapper .editor-content.is-word-limit .limit-text {
    transform: scaleX(1);
}

.bypass-wrapper .editor-content.is-word-limit .error-box,
.bypass-wrapper .editor-content.is-fail .error-box {
    transform: scaleY(1);
    height: auto;
}

.bypass-wrapper .editor-content.is-word-limit .editor-box,
.bypass-wrapper .editor-content.is-fail .editor-box {
    padding-bottom: 66px;
}

.bypass-wrapper .empty-loading-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    margin-top: 150px;
}

.bypass-wrapper .progress-box {
    width: 130px;
    margin-top: 34px;
    display: none;
}

.bypass-wrapper .progress-box .progress-outer {
    background-color: #ebeef5;
    border-radius: 100px;
    height: 6px;
    overflow: hidden;
    position: relative
}

.bypass-wrapper .progress-box .progress-inner {
    background-color: var(--color-primary);
    border-radius: 100px;
    height: 100%;
    left: 0;
    line-height: 1;
    position: absolute;
    top: 0;
    transition: width .6s ease;
    white-space: nowrap;
    animation: indeterminate 3s infinite;
    width: 50%;
    transform: translateZ(0)
}

.bypass-wrapper .progress-box .progress-text {
    font-size: 14px;
    color: var(--color-block-drak);
    margin-top: 8px;
    text-align: center
}

.bypass-wrapper .analyze-desc {
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: rgb(22 25 38 / 60%);
    padding: 80px 0 42px;
    border-bottom: 2px solid rgba(217, 217, 217, 1);
}

.bypass-wrapper .success-content {
    display: none;
}

.bypass-wrapper .success-text {
    color: #685BFF;
    font-weight: 500;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.bypass-wrapper .success-text svg {
    margin-right: 4px;
}

.bypass-wrapper .success-result-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    margin: 20px auto 14px;
}

.bypass-wrapper .success-result-chart {
    border-bottom: 2px solid rgba(217, 217, 217, 1);
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0 20px;
    height: 120px;
}

.bypass-wrapper .success-result-chart .chart-item {
    max-width: 120px;
    width: 35%;
    display: inline-block;
    box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #D4D6DA;
    border-bottom: none;
    transition: height .2s;
    height: 0;
    border-radius: 4px 4px 0 0;
    background: #FFFFFF;
    position: relative;
    text-align: center;
}

.bypass-wrapper .success-result-chart .chart-item span {
    position: absolute;
    top: 102%;
    font-size: 14px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.bypass-wrapper .success-result-chart .chart-item.is-ai {
    background: #FFBF83;
} 

.bypass-wrapper .success-result-box .result-number {
    width: 100%;
    font-size: 60px;
    line-height: 90px;
}

.bypass-wrapper .success-result-box .result-text>div {
    display: none;
}

.bypass-wrapper .success-result-box .tips-content {
    left: -150%;
    text-align: left;
}

.bypass-wrapper .success-result-box .tips-box .tips-content::before {
    left: 66%;
}

.bypass-wrapper .result-download {
    text-align: center;
    margin: 36px auto 0;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 160px;
    cursor: pointer;
    color: #34A44A;
}

.bypass-wrapper .result-download svg {
    margin-right: 4px;
}

.bypass-wrapper .analyze-box {
    margin-top: 30px;
}

.bypass-wrapper .analyze-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.bypass-wrapper .analyze-text {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: rgb(22 25 38 / 60%);
    flex: 1;
}

.bypass-wrapper .analyze-text svg {
    color: rgba(42, 48, 72, .6);
    margin-left: 4px;
}

.bypass-wrapper .analyze-circle {
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 12px;
    background: #fff;
    border: 1px solid #D4D6DA;
}

.bypass-wrapper .analyze-circle.orange-color {
    background: #FFBF83;
}

.bypass-wrapper .bypass-right .editor-content.is-loading .empty-loading-box {
    display: flex;
}

.bypass-wrapper .bypass-right .editor-content.is-loading .analyze-content {
    display: none;
}

.bypass-wrapper .bypass-right .editor-content.is-success .analyze-desc {
    display: none;
}

.bypass-wrapper .bypass-right .editor-content.is-success .success-content {
    display: block;
}

.bypass-wrapper .bypass-right .editor-content.is-success .analyze-text {
    color: #2A3048;
}

.bypass-wrapper .switch-content {
    display: none
}

.bypass-wrapper-card {
    margin: 20px auto 160px;
    max-width: 1192px;
    width: 94%;
    text-align: left;
}

.bypass-tips-card {
    width: 100%;
    background: #FFF9D9;
    border: 1px solid #D5E0F2;
    box-shadow: 0px 4px 20px 0px #0000000D;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    color: #2A3048;
    border-radius: 12px;
}

.bypass-tips-card svg {
    width: 38px;
    height: 38px;
    min-width: 38px;
}

.bypass-tips-card p {
    line-height: 20px;
    margin-left: 8px;
}

.bypass-vip-card {
    padding: 20px;
    margin-top: 20px;
    background-color: var(--color-white, #fff);
    border: 1px solid #D5E0F2;
    border-radius: 12px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.0509803922);
    width: 100%;
    color: #2A3048;
}

.bypass-vip-card .card-title {
    font-weight: 600;
}

.bypass-vip-card .card-desc {
    font-size: 14px;
    color: rgb(22 25 38 / 60%);
    margin: 6px 0 10px;
}

.bypass-vip-card .use-item {
    margin-right: 20px;
    font-size: 12px;
}

.bypass-vip-card .use-item svg {
    margin-right: 4px;
    color: #229E03;
    width: 16px;
    height: 16px;
}

.bypass-vip-card .upgrade-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    background: linear-gradient(102.67deg, #5CFFF5 2.47%, #685BFF 39.92%, #B124F3 90.82%);
    margin-top: 20px;
    color: var(--color-white, #fff);
    cursor: pointer;
}

.bypass-wrapper .tip-text {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background-color: #E9FFDE;
    border: 1px solid #3DCB5C;
    border-radius: 8px;
}

.bypass-wrapper .tip-text svg {
    margin-right: 12px;
    width: 24px;
    height: 24px;
}

.bypass-wrapper .tip-desc {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 0 6px;
    border-top: 1px solid #D4D6DA;
}

.bypass-wrapper .tip-item {
    display: flex;
    align-items: center;
    margin: 0 20px 10px 0;
    font-size: 14px;
}

.bypass-wrapper .tip-item svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.message-dialog .mask {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    background: rgba(0, 0, 0, 0.4);
    width: 100vw;
    height: 100vh;
    z-index: 99;
}

.message-dialog .dialog {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    padding: 14px;
    z-index: 100;
    display: flex;
}

.message-dialog .content {
    position: relative;
    background: #fff;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    width: 360px;
    color: var(--color-block-drak);
    border-radius: 8px;
}

.message-dialog .message-title {
    margin-bottom: 8px;
    font-weight: 700;
}

.message-dialog .message-desc {
    font-size: 14px;
}

.message-dialog .message-btns {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-dialog .message-btns button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 5px 20px;
    border-radius: 8px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white, #fff);
    cursor: pointer;
    transition: all .3s;
    min-width: 100px;
}

.message-dialog .message-btns button.light-bg {
    background: var(--color-white, #fff);
    color: var(--color-primary);
    margin-left: 24px;
}

.message-dialog .message-btns button:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.message-dialog .message-btns button.light-bg:hover {
    background: var(--color-primary);
    color: var(--color-white, #fff);
}

.bypass-wrappe .hide {
    display: none !important;
}

.bypass-wrapper .footer-btn-box .switch-results-btn {
    display: none;
}

.bypass-wrapper .editor-box .highlight {
    background-color: #FFE7D1;
}

@media(max-width: 998px) {
    .bypass-wrapper {
        padding: 14px;
    }

    .bypass-wrapper .bypass-left,
    .bypass-wrapper .bypass-right {
        padding-top: 26px;
    }

    .bypass-wrapper .editor-title {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 4px;
    }

    .bypass-wrapper .delete-btn {
        top: 0px;
        right: 4px;
    }

    .bypass-wrapper .editor-content {
        padding: 14px;
    }

    .bypass-wrapper .editor-content.is-word-limit .editor-box,
    .bypass-wrapper .editor-content.is-fail .editor-box {
        padding-bottom: 80px;
    }

    .bypass-wrapper .footer-btn-left .error-box {
        padding: 10px;
    }

    .bypass-wrapper .editor-textarea {
        margin-right: -14px;
    }

    .bypass-wrapper .footer-btn-left .text-num {
        font-size: 12px;
    }

    .bypass-tips-card,
    .bypass-vip-card {
        padding: 16px;
    }

    .bypass-wrapper .tip-text {
        padding: 10px 12px;
        font-size: 14px;
    }

    .bypass-wrapper .tip-desc {
        padding: 12px 0 0;
    }

    .bypass-wrapper .tip-item {
        font-size: 12px;
    }

    .bypass-wrapper-card {
        margin-bottom: 120px;
    }

    .bypass-tips-card p {
        font-size: 14px;
    }

    .bypass-vip-card .use-box {
        flex-wrap: wrap;
    }

    .bypass-vip-card .use-item {
        margin: 0 0 8px 0;
    }

    .bypass-vip-card .card-title {
        font-size: 14px;
    }

    .bypass-vip-card .card-desc {
        font-size: 12px;
        margin: 4px 0 8px;
    }

    .bypass-vip-card .upgrade-button {
        margin-top: 10px;
    }
}

@media(max-width: 552px) {
    .bypass-wrapper {
        height: 577px;
    }
    .bypass-wrapper .bypass-left,
    .bypass-wrapper .bypass-right {
        width: 100%;
        
    }

    .bypass-wrapper .bypass-right,
    .bypass-wrapper.is-results .bypass-left {
        display: none;
    }

    .bypass-wrapper .bypass-right {
        padding-top: 0;
        min-width: auto;
    }

    .bypass-wrapper.is-results .bypass-right {
        display: flex;
    }

    .bypass-wrapper .bypass-left .editor-content,
    .bypass-wrapper .bypass-right .editor-content {
        border-radius: 8px;
        border: none;
    }

    .bypass-wrapper .editor-box {
        padding-bottom: 55px;
    }

    .bypass-wrapper .empty-editor-box {
        top: 140px;
    }

    .bypass-wrapper .footer-btn-left {
        display: flex;
        width: 100%;
        height: 52px;
        border-top: 1px solid var(--color-gray);
        box-shadow: 0 -3px 13px 0 #D9D7E266;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--color-white-lighter);
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
        border-radius: 0 0 8px 8px;
    }

    .bypass-wrapper .footer-btn-left .text-num {
        position: absolute;
        top: -30px;
        font-size: 14px;
    }

    .bypass-wrapper .footer-btn-left .error-box {
        width: 92%;
        left: 50%;
        bottom: 158%;
        transform: translateX(-50%) scaleY(0);
    }

    .bypass-wrapper .editor-content.is-word-limit .error-box,
    .bypass-wrapper .editor-content.is-fail .error-box {
        transform: translateX(-50%) scaleY(1);
    }

    .bypass-wrapper .editor-content.is-word-limit .editor-box,
    .bypass-wrapper .editor-content.is-fail .editor-box {
        padding-bottom: 144px;
    }

    .bypass-wrapper .button {
        width: calc(50% - 5px);
        padding: 5px 8px;
    }

    .bypass-wrapper .footer-btn-box {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    
    .bypass-wrapper .footer-btn-box.is-generated {
        justify-content: space-between;
    }

    .bypass-wrapper .footer-btn-box.is-generated .switch-results-btn {
        display: block;
    }

    .bypass-wrapper .switch-content {
        display: flex;
        width: 100%;
        height: 52px;
        border-top: 1px solid var(--color-gray);
        box-shadow: 0 -3px 13px 0 #D9D7E266;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--color-white-lighter);
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
    }

    .bypass-wrapper-card {
        width: 100%;
        margin-bottom: 60px;
    }

    .bypass-tips-card,
    .bypass-vip-card {
        padding: 12px;
    }

    .message-dialog .content {
        padding: 30px;
        width: 320px;
    }
}