@media only screen and (max-width: 768px){
    #notFound{
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        padding-bottom: 1rem;
    }
    .not_found_box{
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .not_found_box_main{
        width: 100%;
        height: 3.5rem;
    }
    .not_found_box_main>img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .not_found_box1{
        width: 100%;
        height: 100%;
        padding-top: 1.54rem;
        box-sizing: border-box;
    }
    .icon_img{
        display: block;
        width: 10.94rem;
        height: 6.08rem;
        margin: 0 auto;
    }
    .not_found_box1_text1{
        width: 100%;
        text-align: center;
        font-weight: 400;
        font-size: 0.72rem;
        color: #2385C9;
        line-height: 1rem;
    }
    .not_found_box1_text2{
        width: 100%;
        text-align: center;
        font-weight: 400;
        font-size: 0.48rem;
        color: #9E9E9E;
        line-height: 1rem;
    }

    .not_found_box1_text3{
        width: 100%;
        text-align: center;
        font-weight: 400;
        font-size: 0.48rem;
        color: #6BB1EE;
        line-height: 1rem;
        cursor: pointer;
    }
}
@media only screen and (min-width: 800px){
    #notFound{
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        padding-bottom: 60px;
    }
    .not_found_box{
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .not_found_box_main{
        width: 100%;
        height: 450px;
        box-sizing: border-box;
        animation:myfirst_animate 4s linear ;
    }
    .not_found_box_main>img{
        width: 100%;
        height: 100%;
        object-fit: fill;
        overflow: hidden;
    }
    .not_found_box_main:hover>img{
        cursor: pointer;
        transition: all 0.5s;
        transform: scale(1.1);
    }
    @keyframes myfirst_animate {
        0%{
            opacity: 0;

        }
        10%{
            opacity: 0;
            transform: scale(1.09);
        }
        10%{
            opacity: 0.1;
            transform: scale(1.08);
        }
        20%{
            opacity: 0.2;
            transform: scale(1.07);
        }
        30%{
            opacity: 0.4;
            transform: scale(1.06);
        }
        50%{
            opacity: 0.5;
            transform: scale(1.05);
        }
        60%{
            opacity: 0.6;
            transform: scale(1.04);
        }
        70%{
            opacity: 0.7;
            transform: scale(1.03);
        }
        80%{
            opacity: 0.8;
            transform: scale(1.02);
        }
        90%{
            opacity: 0.9;
            transform: scale(1.01);
        }

        100%{
            transform: scale(1);
            opacity: 1;
        }
    }

    .not_found_box1{
        width: 1300px;
        margin: 0 auto;
        height: 100%;
        padding-top: 77px;
        box-sizing: border-box;
    }
    .icon_img{
        display: block;
        width: 350px;
        height: 217px;
        margin: 0 auto;
    }
    .not_found_box1_text1{
        width: 100%;
        text-align: center;
        font-weight: 400;
        font-size: 24px;
        color: #2385C9;
        line-height: 36px;
    }
    .not_found_box1_text2{
        width: 100%;
        text-align: center;
        font-weight: 400;
        font-size: 16px;
        color: #9E9E9E;
        line-height: 36px;
    }

    .not_found_box1_text3{
        width: 100%;
        text-align: center;
        font-weight: 400;
        font-size: 16px;
        color: #6BB1EE;
        line-height: 36px;
        cursor: pointer;
    }
}

