/* 导航栏 */
@media (max-width:600px) {
    .logo_head_Navbar {
        position: fixed;
        padding: 0 5%;
        margin: 0 auto;
        top: 0;
        left: 50%;
        width: 100%;
        transform: translateX(-50%);
        background-color: white;
    }

    .flu_up {
        height: 10dvh;
    }

    .Navbar_top {
        display: none;
    }

    .call_me {
        display: none;
    }

    .more_list {
        display: block;
        width: 60px;
        height: 45px;
        line-height: 45px;
        font-size: 34px;
        border-radius: 10px;
        text-align: center;
        font-weight: 900;
        color: rgb(23, 160, 228);
        border: 1px solid gray;
    }

    .close_list {
        display: none;
        width: 60px;
        height: 45px;
        line-height: 45px;
        font-size: 34px;
        border-radius: 10px;
        text-align: center;
        font-weight: 900;
        color: rgb(23, 160, 228);
        border: 1px solid gray;
    }

    .nav_list_show {
        display: none;
        width: 100%;
        position: fixed;
        top: 10%;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9;
        transition: all .5s;
        opacity: 0;
    }

    .nav_list_show .this_show {
        border-bottom: 3px solid rgb(23, 160, 228);
    }

    .nav_list_show .this_show a {
        color: rgb(23, 160, 228);
    }

    .nav_list_show ul {
        padding: 0 5%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: 80%;
    }

    .nav_list_show ul li {
        padding: 1vw 0;
        border-bottom: 2px solid gray;
    }

    .nav_list_show ul li:last-child a {
        display: block;
        width: 100%;
        height: 45px;
        line-height: 35px;
        text-align: center;
        border-bottom: none;
        color: white;
        background-color: rgb(23, 160, 228);
        border-radius: 10px;
    }

    .nav_list_show ul li:last-child a:hover {
        color: white;
    }

    .nav_list_show ul li a {
        display: block;
        padding: 1.5vw 0;
        font-size: 18px;
        color: #ffa400;
        transition: all .5s;
    }

    .nav_list_show ul li:hover {
        border-bottom: 3px solid rgb(23, 160, 228);
    }

    .nav_list_show ul li:hover a {
        color: rgb(23, 160, 228);
    }

    .nav_list_show ul li:last-child {
        border-bottom: none;
    }
}

@media (max-width:540px) {

    /* 教学展示 */
    .show_school_text li {
        padding: 2.5% 2.5%;
        height: 240px;
    }

    .show_text_set ul li div {
        font-size: 16px;
        font-weight: 600;
    }

    .show_text_set ul li p {
        margin-top: 5px;
        font-size: 14px;
        font-weight: 500;
    }

    /* 校园生活 */
    .school_life ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        height: 400px;
    }

    .text_life .life_size {
        margin-top: 2%;
        font-size: 14px;
        text-align: center;
        font-weight: 600;
    }

    .text_life p {
        padding: 0 5%;
        margin-top: 1%;
        font-size: 10px;
    }

    /* --------------------------- */
    .school_life li .life_img1 {
        height: 60%;
    }

    .school_life li .life_img2 {
        height: 60%;
    }

    .school_life li .life_img3 {
        height: 60%;
    }

    .school_life li .life_img4 {
        height: 60%;
    }

    /* --------------------------- */
}

@media (max-width:330px) {

    /* 教学展示 */
    .show_school_text li {
        padding: 2.5% 2.5%;
        height: 180px;
    }

    .show_text_set ul li div {
        font-size: 12px;
        font-weight: 600;
    }

    .show_text_set ul li p {
        margin-top: 5px;
        font-size: 10px;
        font-weight: 500;
    }

    /* 校园生活 */
    .text_life .life_size {
        margin-top: 2%;
        font-size: 12px;
        text-align: center;
        font-weight: 600;
    }

    .text_life p {
        padding: 0 5%;
        margin-top: 1%;
        font-size: 9px;
    }
}

@media (min-width:601px) {
    .more_list {
        display: none !important;
    }

    .close_list {
        display: none !important;
    }

    .nav_list_show {
        display: none !important;
    }
}