/* 404页面样式表 */

:root {
    font: 400 62.5%/1.5 Roboto, Franklin Gothic Medium, Tahoma, sans-serif;
    line-height: 1.375;
}

.error-header {
    height: 5rem;
    width: 100%;
    background-color: #128ced;
}

.error-page__container {
    display: flex;
    align-items: center;
    padding: 0 6rem;
    min-width: 75rem;
    max-width: 140rem;
    margin: auto;
    transition: width .2s ease-out;
    box-sizing: border-box;
}

#header-searchform {
    margin-top: 0.4rem;
    margin-left: 1.7rem;
    height: 3.5rem;
    width: 100%;
    max-width: 70rem;
    background-color: #fff;
    font-family: inherit;
    font-size: 1rem;
    box-shadow: 0 0 0 0.2rem #128ced;
    border-radius: 0.5rem;
}

.nav-search-field {
    height: 3.5rem;
    font-size: 1.6em;
    border: none;
    outline: none;
    background: none;
    padding: 0 9rem 0 1rem;
    border-radius: 0.5rem;
    appearance: none;
}

.swf-404__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 3.2rem;
    margin: 4rem 0;
    min-height: 70vh;
}

.image-container {
    display: grid;
    grid: 20.5rem 22.5rem / 23.5rem 24.5rem 21rem;
    gap: 0.8rem;
}

.image-container img {
    width: 100%;
    /* height: 20.5rem; */
    height: 100%;
    object-fit: cover;
}

.text-container {
    /* margin-left: 4rem; */
    text-align: center;
    margin-bottom: 0;
}

.text-container h1 {
    margin-top: -0.25em;
    margin-bottom: 1.6rem;
    padding-top: 0;
    color: #333;
    font-size: 7.2rem;
    font-weight: 300;
    line-height: 1.11111;
}

.text-container p {
    font-size: 1.6rem;
    line-height: 1.375;
    margin-top: -0.375em;
}

.text-container a {
    display: inline-block;
    font-family: Roboto, Franklin Gothic Medium, Tahoma, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}


/* 手机端 */

@media screen and (max-width: 768px) {
    .error-header {
        height: unset;
    }
    .error-page__container {
        align-items: center;
        flex-direction: column;
        padding: 1rem 4.8rem;
        min-width: unset;
    }
    #header-searchform {
        margin-top: 0.5rem;
        margin-left: 0;
    }
    .nav-search-field {
        width: 100%;
    }
    .swf-404__container {
        flex-direction: column;
        justify-content: flex-start;
    }
    .text-container {
        margin-left: 0;
        margin-bottom: 2.4rem;
        order: 1;
        text-align: center;
    }
    .text-container h1 {
        margin-bottom: 1.6rem;
        padding-top: 1.25rem;
        font-size: 5.4rem;
        font-weight: 400;
    }
    .image-container {
        order: 2;
        height: 25vh;
        width: 100%;
        grid: 50% 50% / 33% 33% 33%;
        gap: 0.3rem;
    }
}


/* 电脑端 */

@media screen and (min-width: 769px) {}