.detector_one_div{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.detector_one_title{
    margin-top: 131px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.detector_one_title h1{
    background: linear-gradient(90.03deg, #885efe 0%, #62b9ff 72.07%);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    width: 90%;
    text-align: center;
    font-size: 46px;
    font-weight: 700;
}
.detector_one_title p{
    width: 100%;
    font-size: 22px;
    font-weight: 500;
    line-height: 35px;
    color: #E7E7E7;
    margin: 0;
    text-align: center;
}
.detector_one_input{
    background-color: #fff;
    width: 1140px;
    max-width: 90%;
    display: flex;
    padding: 32px;
    margin: 20px auto;
    border-radius: 16px;
    box-shadow: 0px 2px 10px 5px #0000001a;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /*height: 504px;*/
}
.detector_one_text{
    min-width: 353px;
    flex: 2;
    position: relative;
}
.detector_one_check{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 440px;
    width: 100%;
    min-width: 342px;
}
.detector_text_div{
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    cursor: text;
    overflow-y: auto;
    width: calc(100% - 33px);
    margin-right: 33px;
    height: 440px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.detector_text_div.empty:before {
    content: attr(data-placeholder);
    color: #888;
    font-style: italic;
    pointer-events: none;
}

.detector_text_div:focus {
    outline: none;
    box-shadow: none;
}
.detector_text_div::-webkit-scrollbar-track {
    background: transparent;
}

.detector_text_div::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.detector_text_div::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}
.detector_one_check1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: .5rem;
    height: 86px;
    width: 100%;
    text-align: center;
}
.detector_one_check2{
    display: flex;
    height: 270px;
    flex-direction: column;
    width: 100%;
}
.detector_one_check2_item{
    height: 44px;
    margin-bottom: 8px;
    padding: 12px 8px;
    background-color: #f6f6f6;
    border-radius: .75rem;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    display: flex;
}
.detector_one_check2_item img{
    width: 20px;
    height: 20px;
}
.detector_one_check2_item p{
    font-weight: 700;
    font-size: 14px;
    margin: 0;
}


.detector_one_toggle_switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    margin: 0;
}


.detector_one_toggle_switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


.detector_one_toggle_track {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}


.detector_one_toggle_thumb {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}


.detector_one_toggle_switch input:checked + .detector_one_toggle_track {
    background-color: #53cb1b;
}

.detector_one_toggle_switch input:checked + .detector_one_toggle_track .detector_one_toggle_thumb {
    transform: translateX(14px);
}


.detector_one_toggle_switch input:focus + .detector_one_toggle_track {
    box-shadow: 0 0 1px #53cb1b;
}


.detector_one_toggle_switch input:disabled + .detector_one_toggle_track {
    opacity: 0.5;
    cursor: not-allowed;
}
.detector_one_check2_item_credit_p{
    font-size: 14px;
    color: #6c7c70;
}
.detector_one_q{
    position: relative;
    display: flex;
    cursor: pointer;
}

.detector_one_tooltip {
    position: absolute;
    bottom: 100%;
    left: 260%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    width: 220px;
    word-wrap: break-word;
    background-color: white;
    color: #333;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.5;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}


.detector_one_tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 30%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}


.detector_one_q:hover .detector_one_tooltip {
    visibility: visible;
    opacity: 1;
}
.detector_one_loader {
    margin-left: 10px;
    width: 20px;
    height: 20px;
    border: 3px solid #cccccc;
    border-top: 3px solid #000000;
    border-radius: 50%;
    animation: spin1 1s linear infinite;
}
.detector_one_check3{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-top: 1px solid #e2e2e2;
    padding: 8px 0;
}
.detector_one_check3 img{
    width: 20px;
    height: 20px;
}
.detector_one_check3_p{
    font-size: 14px;
    color: #8c9ba7;
    line-height: 1.25rem;
    margin-bottom: 10px;
    display: flex;
    gap: 5px;
}

.detector_one_check3_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #513CEA;
    font-size: 18px;
    line-height: 1.75rem;
    font-weight: 600;
    border-radius: 1rem;
    color: #ffffff;
    min-width: 172px;
    text-align: center;
    padding: 8px 16px;
    border: 0;
}
.detector_one_check3_btn:hover{
    opacity: 0.8;
}
.detector_one_trash{
    width: 32px;
    height: 32px;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 1rem;
    background-color: #b4bdba;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.detector_one_trash:hover{
    background-color: #A5A5A5;
}
.detector_one_trash img{
    width: 24px;
    height: 24px;
}
.detector_one_words{
    position: absolute;
    bottom: -24px;
    left: 0;
}
.detector_two_div{
    width: 100%;
    padding: 96px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.detector_two_div h2{
    font-size: 36px;
    color: #171717;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}
.detector_two_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    align-items: stretch;
}
.detector_two_item{
    background-color: #f5f5f6;
    border-radius: 1.5rem;
    padding: 1.5rem;
    max-width: 550px;
    min-width: 300px;
    max-height: 492px;
}
.detector_two_item_title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}
.detector_two_item_p{
    font-size: 14px;
    color: #6c7c70;
    line-height: 1.25rem;
}
.detector_two_btn{
    margin-top: 48px;
    border: 0;
    background-color: #513CEA;
    width: 200px;
    height: 60px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: .75rem;
    font-weight: 600;
}
.detector_two_btn:hover{
    opacity: 0.8;
    color: #ffffff;
    text-decoration: none;
}
.detector_three_div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 48px;
    padding-bottom: 128px;
    width: 90%;
    margin: 0 auto;
}
.detector_three_div_div{
    max-width: 1280px;
    width: 100%;
}
.detector_three_title{
    font-size: 36px;
    color: #171717;
    text-align: center;
    font-weight: 700;
}
.detector_three_bottom{
    margin-top: 48px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}
.detector_three_bottom_p{
    flex: 4;
}
.detector_three_bottom_img{
    flex: 3;
}
.detector_three_bottom_p p{
    font-size: 18px;
}
.all_pricing_div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 96px 0;
    width: 100%;
    background-color: #F9F9FF;
}
.all_pricing_div_div{
    max-width: 1300px;
    /*width: 90%;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 18px 18px 18px;
}
.all_pricing_toggle{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    border: 1px solid #D3D3D3;
    font-weight: 600;
    height: 60px;
    width: 400px;
    position: relative;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    flex-shrink: 0;
}
.all_pricing_mon{
    flex: 2;
    width: 100%;
    text-align: center;
}
.all_pricing_year{
    flex: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.all_pricing_year_save{
    background-color: #eef5f1;
    height: 26px;
    font-size: 14px;
    font-weight: 800;
    color: #513CEA;
    text-align: center;
    border-radius: 15px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
}
.all_pricing_toggle_slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(40% - 4px);
    height: calc(100% - 8px);
    background: #260360;
    border-radius: 30px;
    transition: transform 0.3s ease;
    z-index: 1;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-shadow: 0px 12px 24px rgba(0, 80, 125, .1);
    --tw-shadow-colored: 0px 12px 24px var(--tw-shadow-color);
}
.all_pricing_toggle_option {
    position: relative;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #171717;
    z-index: 2;
}

.all_pricing_toggle_option.pricing_active {
    color: #ffffff;
}
.all_pricing_toggle_slider.pricing_yearly {
    transform: translateX(66%);
    width: calc(60% - 4px);
}
.all_pricing_items{
    width: 100%;
    gap: 15px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}
.all_pricing_item{
    background-color: #ffffff;
    border-radius: 20px;
    width: 370px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative; /* 为放大效果提供相对定位 */
    transition: transform 0.2s ease;
}
.all_pricing_item:hover{
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.all_pricing_item_one{
    position: relative;
}
.all_pricing_item_one h3{
    font-weight: 700;
    font-size: 30px;
    line-height: 3rem;
    margin: 0;
    color: #000000;
}
.all_pricing_item_one p{
    font-weight: 700;
    font-size: 18px;
    color: #7e42ff;
    line-height: 3rem;
    margin: 0;
}
.all_pricing_item_save{
    border-radius: 20px;
    background-color: #f1f0ff;
    color: #a42ff4;
    padding: 4px 14px;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
}
.all_pricing_item_two{
    display: flex;
    align-items: center;
}
.all_pricing_item_two h3{
    font-size: 38px;
    margin: 0;
    line-height: 5rem;
    color: #000000;
    font-weight: 800;
    min-width: 103px;

}
.all_pricing_item_two p{
    margin: 0 0 0 20px;
}
.all_pricing_item_three{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.all_pricing_item_btn{
    width: 100%;
    border-radius: 10px;
    padding: 8px 25px;
    font-size: 16px;
    color: #ffffff;
    background: linear-gradient(90deg, #a417f2 0%, #5f3bed 100%);
    border: 0;
    font-weight: 700;
    margin-bottom: 7px;
}
.all_pricing_item_btn:hover{
    opacity: 0.8;
}
.all_pricing_item_alt{
    font-size: 15px;
    line-height: 1.5rem;
    color: #3B424D;
    margin: 6px 0;
    display: flex;
    align-items: center;
}
.all_pricing_item_three img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.all_pricing_item_un{
    background-color: #310072 !important;
    color: #ffffff !important;
}
.all_pricing_item_save_un{
    background-color: #f1f0ff !important;
    color: #00a850 !important;
}
.all_pricing_item_btn_un{
    background: #ff333c !important;
}
.all_pricing_item_btn_un:hover{
    background: #FF6320 !important;
    opacity: 1;
}
.all_pricing_item_one_un h3{
    color: #ffffff !important;
}
.all_pricing_item_one_un p{
    color: #ffad99 !important;
}
.all_pricing_item_alt_un {
    color: #ffffff !important;
}
.all_pricing_item_two_un h3{
    color: #ffffff !important;
}
.all_pricing_month_item{
    display: none;
}
.all_pricing_month_itemm{
    display: none;
}
.detector_one_btns{
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 14px;
}
.detector_one_btn{
    height: 73px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-align: center;
    color: #513CEA;
    border: 1px solid #513CEA;
    line-height: 18px;
    background-color: #ffffff;
}
.detector_one_btn img{
    width: 24px;
}
.detector_one_btn:hover {
    opacity: 0.8;
}
.detector_one_error{
    color: #fb3a2f;
    background-color: #ffecea;
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
    width: 90%;
    display: none;
    margin: 5px;
}
.detector_one_check3_btn:disabled {
    cursor: not-allowed;
}
.histtory_ai_detections{
    padding: 5px 0;
    display: flex;
}
.history_ai_detection{
    width: 16px;
    height: 16px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.history_ai_detection img{
    width: 16px;
    height: 16px;
}
.history_ai_detection:not(:first-child) {
    margin-left: -8px;
}
.detector_one_aiscore{
    align-items: center;
}
.detector_one_aiscore div{
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    cursor: pointer;
}
.detector_one_aiscore div:hover{
    background-color: #eeeeee;
}
.detector_one_aiscore img{
    width: 16px;
    height: 16px;
}
.detection_pdf_div{
    border-radius: 12px;
    position: relative;
    background-color: #eff1ff;
    max-height: 80%;
    height: 854px;
    width: 496px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    max-width: 80%;
}
.detection_pdf_close{
    width: 32px;
    height: 32px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.detector_pdf_iframe{
    max-width: 100%;
    width: 476px;
    height: 673px;
    max-height: 100%;
    display: flex;
    justify-content: center;
    overflow: auto;
    align-items: center;
}
.detector_pdf_download{
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    border: 0;
    border-radius: 15px;
    background: #523bea;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
}
.detector_pdf_canavs{
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.detector_two_q{
    position: relative;
    display: flex;
    cursor: pointer;
}

.detector_two_tooltip {
    position: absolute;
    bottom: 100%;
    left: -200%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    width: 180px;
    word-wrap: break-word;
    background-color: white;
    color: #333;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.5;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}


.detector_two_tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 77%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}


.detector_two_q:hover .detector_two_tooltip {
    visibility: visible;
    opacity: 1;
}


.pricing_q{
    position: relative;
    display: flex;
    cursor: pointer;
}

.pricing_tooltip {
    position: absolute;
    bottom: 100%;
    left: -200%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    width: 180px;
    word-wrap: break-word;
    background-color: white;
    color: #333;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.5;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}


.pricing_tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 90%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}


.pricing_q:hover .pricing_tooltip {
    visibility: visible;
    opacity: 1;
}
.pricing_detections{
    background-color: #f6f6f6;
    margin-left: 30px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 8px;
    font-size: 12px;
    font-weight: 800;
}
.pricing_detections_un{
    background-color: #44009E !important;
}
.pricing_detections img{
    width: 15px;
    height: 15px;
}
.pricing_a {
    background-color: transparent;
    border: none;
    text-decoration: underline;
    color: rgba(166, 162, 181, 1);
    position: absolute;
    bottom: 2px;
    right: 20px;
}
.detector_pdf_loading{
        margin-left: 10px;
        width: 70px;
        height: 70px;
        border: 8px solid #cccccc;
        border-top: 8px solid #6E5CF1;
        border-radius: 50%;
        animation: spin1 1s linear infinite;

}
@media (max-width: 480px) {
    .detector_one_title h1{
        font-size: 42px;
    }
    .detector_one_title p{
        font-size: 18px;
    }
    .detector_one_text{
        min-width: 300px;
        margin-bottom: 30px;
    }
    .detector_one_check{
        min-width: 200px;
    }
    .detector_one_input{
        padding: 15px;
    }
    .detector_one_trash{
        width: 24px;
        height: 24px;
    }
    .detector_one_trash img{
        width: 16px;
        height: 16px;
    }
    .detector_text_div{
        width: calc(100% - 24px);
    }
    .all_pricing_toggle{
        height: 50px;
        width: 300px;
        font-size: 14px;
    }
    .all_pricing_toggle_option{
        font-weight: 700;
    }
    .all_pricing_year_save{
        font-size: 11px;
    }
    .all_pricing_div_div{
        padding: 0;
    }
    .detection_pdf_close{
        top: 10px;
        right: 10px;
    }
    .all_pricing_item{
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }
    .all_pricing_item:hover{
        transform: scale(1);
    }
    .detector_three_bottom_p{
        flex: auto;
    }
    .detector_three_bottom_img{
        flex: auto;
    }
}

@media (max-width: 1300px) {
    .all_pricing_div_div{
        width: 90%;
    }
}