﻿*,h4,h5,h6 {
    margin:0;
    box-sizing:border-box;
}
.img {
    overflow: hidden;
}

    .img img {
        width: 100%;
        display: block;
        transition: all .5s;
    }

.yih {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.erh {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

header {
    position: sticky;
    z-index: 200;
    border-bottom: 1px solid #f1f1f1;
    background: #fff;
    top: 0;
    left: 0;
}

.header_pack {
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 50px;
}

.logo {
    height: 100px;
    padding: 20px 0;
}

    .logo a {
        height: 100%;
        display: block;
    }

    .logo img {
        max-height: 100%;
        display: block;
    }

.navlist {
    display: flex;
    align-items: center;
}

.w_nav {
    display: flex;
}

    .w_nav > li {
        padding: 0 40px;
        position:relative;
    }

        .w_nav > li > a {
            font-size: 16px;
            line-height: 32px;
            color: rgb(0, 0, 0);
            display: block;
        }

            .w_nav > li > a:hover,
            .w_nav > li.active > a {
                color: rgb(0, 25, 82);
                font-weight:bold;
            }
            .er_nav {
                background:#fff;
                position:absolute;
                top:100%;
                transform:translateX(-50%);
                left:50%;
                width:100%;
                padding:5px 0;
                text-align:center;
                display:none;
            }
                .er_nav li a {
                    display:block;
                    font-size:16px;
                    line-height:32px;
                    color:#000;
                }
                    .er_nav li a:hover {
                        background:rgb(0, 25, 82);
                        color:#fff;
                    }
                    .header_search {
                        position: relative;
                    }

.header_search_icon {
    width: 100px;
    height: 100px;
    background: rgb(0, 25, 82);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .header_search_icon img {
        max-width: 16px;
        display: block;
    }

.search_cont {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 300;
    display: none;
}

.search_pack {
    width: 540px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
}

    .search_pack input {
        width: 400px;
        font-size: 16px;
        padding: 0 5px 0 25px;
        border: 1px solid #f0f0f0;
        line-height: 38px;
        border-radius: 5px 0 0 5px;
    }

.search_btn {
    width: 70px;
    background: rgb(0, 25, 82);
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.search_cha {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    background: rgba(178, 178, 178,.5);
    margin-left: 40px;
}

    .search_cha i {
        font-size: 47px;
        line-height: 23px;
        transform: rotate(45deg);
        font-style: normal;
        display: block;
        font-weight: 300;
        cursor: pointer;
        font-weight: 300;
        margin-top: 3px;
    }

@media(max-width:1000px) {
    .search_pack {
        width: 95%;
    }

        .search_pack input {
            width: calc(100% - 120px);
        }

    .search_cha {
        margin-left: 20px;
    }
}
footer {
    background: rgb(51, 51, 51);
    padding: 60px 0 40px;
}

.footer_pack {
    display: flex;
    align-items: flex-start;
    padding: 44px 0;
}

.footer_pack_phone {
    width: 30%;
    border-right: 1px solid rgb(223, 225, 230);
    padding-right:5%;
}

    .footer_pack_phone li {
        margin-bottom: 31px;
        display: flex;
        align-items: center;
    }

.footer_phone_icon {
    width: 44px;
}

.footer_phone_cont {
    width: calc(100% - 44px);
    padding-left: 15px;
    font-size: 16px;
    line-height: 24px;
}

    .footer_phone_cont h4 {
        color: rgb(149, 149, 149);
    }

    .footer_phone_cont p {
        color: rgb(255, 255, 255);
    }

.footer_pack_right {
    width: 70%;
    padding-left: 5%;
}

.footer_pack_list {
    display: flex;
    justify-content: space-between;
}

    .footer_pack_list li {
        max-width: 21%;
    }

    .footer_pack_list h4 {
        font-size: 20px;
        line-height: 29px;
        color: rgb(255, 255, 255);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .footer_pack_list a {
        display: block;
        font-size: 16px;
        line-height: 24px;
        padding: 8px 0;
        color: rgba(255, 255, 255,.6);
    }

        .footer_pack_list a:hover {
            color: #fff;
        }

.footer_code {
    max-width: 148px;
    margin-top: 10px;
}

.footer_pack_list li:last-child h4 {
    text-align: center;
}

.copyright {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: rgb(149, 149, 149);
    border-top: 1px solid rgb(223, 225, 230);
    padding: 19px 0 0;
}

    .copyright a {
        color: rgb(149, 149, 149);
    }

@media screen and (max-width: 1000px) {
    footer {
        padding: 20px 0 10px;
    }

    .flogo {
        height: 60px;
        padding: 20px 0;
    }

    .footer_pack_right {
        display: none;
    }

    .footer_pack_phone {
        width: 100%;
        border: none;
    }

    .footer_pack {
        padding: 20px 0;
    }

    .footer_pack_phone li {
        margin-bottom: 15px;
    }

    .copyright {
        padding-top: 10px;
    }
}
.nei-banner{
    position:relative;
}
.banner_cont {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    max-width: 1520px;
    transform: translate(-50%,-50%);
    color: rgb(255, 255, 255);
    text-align:center;
}
    .banner_cont h3 {
        font-size: 60px;
        line-height: 87px;
    }
.banner_cont p {
    font-size:36px;
    line-height:52px;
    margin-top:9px;
}
.public_nav {
    border-bottom: 1px solid rgb(229, 229, 229);
}
.public_nav_pack {
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.public_nav_list{
    display:flex;
}
    .public_nav_list li{
        position:relative;
    }
        .public_nav_list li::after {
            content: "";
            width: 1px;
            height: 18px;
            background: rgb(229, 229, 229);
            position:absolute;
            right:0;
            top:50%;
            transform:translateY(-50%);
        }
            .public_nav_list li:last-child::after {
                display:none;
            }
            .public_nav_list li a {
                display: block;
                padding: 25px 30px;
                font-size: 20px;
                line-height: 29px;
                font-weight: bold;
                color: rgb(0, 0, 0);
            }
        .public_nav_list li.active a {
            background: rgb(0, 25, 82);
            color:#fff;
        }
        .public_nav_list li.active::after {
            display:none;
        }
        .public_nav_cont {
            font-size: 16px;
            line-height: 24px;
            color: rgb(51, 51, 51);
        }
.public_nav_cont a {
    color:rgb(51,51,51);
}
.about_plate1_pack {
    display: flex;
    align-items: center;
}

.about_plate1_left {
    width: 48%;
    padding: 0 5% 0 10.5%;
}

    .about_plate1_left h3 {
        font-size: 44px;
        line-height: 64px;
        color: rgb(0, 0, 0);
    }

.about_plate1_desc {
    font-size: 16px;
    line-height: 24px;
    margin-top: 49px;
    color: rgb(51, 51, 51);
}

.about_plate1_left_list {
    display: flex;
    justify-content: space-between;
    margin-top: 42px;
}

    .about_plate1_left_list li h3 {
        font-size: 24px;
        line-height: 35px;
        color: rgb(243, 187, 25);
    }

        .about_plate1_left_list li h3 span {
            font-size: 40px;
            line-height: 58px;
            color: rgb(243, 187, 25);
        }

    .about_plate1_left_list li p {
        font-size: 18px;
        line-height: 26px;
        color: rgb(102, 102, 102);
        margin-top: 10px;
    }

.about_plate1_img {
    position: relative;
    border-radius: 100px 0 0 100px;
}

    .about_plate1_img i {
        width: 120px;
        height: 120px;
        background: url(../images/stop.png) no-repeat center/100% 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        cursor: pointer;
    }
.about {
    padding:120px 0;
}
.about_plate1_left{
    background:url(../images/abg.png) no-repeat center/cover;
}
.video_shadow {
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 302;
    display: none;
}

.video_sahodw_cont {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

    .video_sahodw_cont video {
        max-height: 70vh;
    }

.vidoe_cha {
    font-size: 50px;
    line-height: 60px;
    position: absolute;
    top: -60px;
    right: 0;
    transform: rotate(45deg);
    color: #fff;
    font-weight: 300;
    cursor: pointer;
}

.video_sahodw_cont video {
    width: 100%;
}
.about-wmdys {
    margin-top: 40px;
    position: relative;
}

    .about-wmdys .wmdys-pic {
        width: 360px;
        height: 360px;
        padding: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background: #F9FAFB;
        border-radius: 50%;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .about-wmdys ul {
        display: flex;
        align-content: space-between;
        justify-content: space-between;
        flex-wrap: wrap;
        height: 530px;
    }

        .about-wmdys ul li {
            width: 43%;
            background: #fff;
            box-shadow: 0px 5px 30px 0px rgba(232, 235, 245, 0.6);
            border-radius: 20px;
            padding: 60px 120px 60px 60px;
            display: flex;
        }

            .about-wmdys ul li .pic {
                width: 72px;
            }

            .about-wmdys ul li .tet {
                width: calc(100% - 72px);
                padding-left: 30px;
            }

                .about-wmdys ul li .tet h3 {
                    font-size: 24px;
                    color: #000;
                    font-weight: bold;
                }

                .about-wmdys ul li .tet p {
                    font-size: 16px;
                    color: #666;
                    margin-top: 20px;
                }

            .about-wmdys ul li:nth-child(2n) {
                padding: 60px 60px 60px 120px;
            }

@media (max-width: 1000px) {
    .about-wmdys {
        margin-top: 20px;
        position: relative;
    }

        .about-wmdys .wmdys-pic {
            display: none;
        }

        .about-wmdys ul {
            height: auto;
        }

            .about-wmdys ul li {
                width: 100%;
                padding: 20px;
                margin-top: 10px;
            }

                .about-wmdys ul li .pic {
                    width: 60px;
                }

                .about-wmdys ul li .tet {
                    width: calc(100% - 60px);
                    padding-left: 20px;
                }

                    .about-wmdys ul li .tet h3 {
                        font-size: 16px;
                    }

                    .about-wmdys ul li .tet p {
                        font-size: 14px;
                        margin-top: 10px;
                    }

                .about-wmdys ul li:nth-child(2n) {
                    padding: 20px;
                }
}
.y1200 {
    max-width:1220px;
    margin:0 auto;
    padding:0 10px;
}
.history {
    padding:60px 0 120px;
}
.team_list_swiper {
    margin-top:50px;
    position:relative;
}
.arr {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    z-index:180;
}
.arrr {
    right:5%;
}
.arrl {
    left:5%;
}
.arr:hover {
    background: rgb(0, 25, 82);
}
    .arr:hover img {
        filter:invert(100%);
    }
    .team {
        padding: 100px 0 120px;
    }
.teamswiper{
    overflow:hidden;
}
.team_pack{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
}
.team_left{
    width:26%;
}
    .team_left img,
    .teamswiper2_img  img{
        border-radius: 20px;
        border: 20px solid rgb(248, 248, 248);
    }
.team_right {
    width: 73%;
    background: rgb(248, 248, 248);
    border-radius:20px;
    padding:50px;
}
    .team_right h3 {
        font-size: 28px;
        line-height: 40px;
        color: rgb(243, 187, 25);
        font-weight:bold;
    }
    .team_right h4 {
        font-size: 20px;
        line-height: 29px;
        color: rgb(32, 32, 32);
        margin-top:12px;
    }
    .team_right p {
        font-size: 16px;
        line-height: 24px;
        color: rgb(51, 51, 51);
        margin-top:19px;
    }
    .team_right p span {
        display:block;
    }
.teamswiper2 {
    overflow:hidden;
}
    .teamswiper2 .swiper-slide-active img {
        border-color: rgb(243, 187, 25);
    }
.teaching_plate1 {
    padding:120px 0;
}
.teaching_plate1_pack {
    display:flex;
    align-items:center;
}
.teaching_plate1_left {
    width:49%;
    padding-right:5%;
}
    .teaching_plate1_left h3 {
        font-size: 44px;
        line-height: 59px;
        color: rgb(0, 0, 0);
    }
.teaching_plate1_left_desc {
    margin-top: 54px;
    color: rgb(51, 51, 51);
}
.teaching_plate1_left_desc h4 {
    font-size:24px;
    line-height:34px;
}
.teaching_plate1_left_desc div {
    font-size:16px;
    line-height:24px;
}
    .teaching_plate1_left_desc div p {
        margin-top:10px;
    }
.teaching_plate1_right{
    width:51%;
}
.teaching_plate2 {
    padding:75px 0 100px;
    background:url(../images/tbg.jpeg) no-repeat center/cover;
}
.teaching_plate2_pack {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-top:49px;
}
.public_title{
    text-align:center;
}
    .public_title h3 {
        font-size: 44px;
        line-height: 58px;
        color: rgb(0, 0, 0);
    }
.teaching_plate2_left{
    width:49.5%;
}
.teaching_plate2_list {
    overflow:hidden;
    margin:0 -5px;
}
.teaching_plate2_list li {
    float:left;
    padding:0 5px;
    margin-bottom:10px;
    width:25%;
}
.teaching_plate2_list_pack{
    border-radius:20px;
    display:flex;
    flex-wrap:wrap;
    height:180px;
    align-content:center;
}
    .teaching_plate2_list_pack .teaching_plate2_list_icon {
        width:100%;
        height:48px;
    }
.teaching_plate2_list_icon img {
    max-height:100%;
    display:block;
    margin:0 auto;
}
.teaching_plate2_list_pack p {
    width: 100%;
    font-size: 20px;
    line-height: 26px;
    color: rgb(255, 255, 255);
    margin-top: 18px;
    text-align:center;
}
.teaching_plate2_list li:first-child .teaching_plate2_list_pack {
    background: rgba(0, 25, 82,.5);
}
.teaching_plate2_list li:nth-child(2) {
    width:50%;
}
    .teaching_plate2_list li:nth-child(2) .teaching_plate2_list_pack {
        background: rgba(0, 25, 82,.6);
    }
.teaching_plate2_list li:nth-child(3) {
    float:right;

}
    .teaching_plate2_list li:nth-child(3) .teaching_plate2_list_pack {
        height: 370px;
        background: rgba(0, 25, 82,.7);
    }
.teaching_plate2_list li:nth-child(4) .teaching_plate2_list_pack {
    background: rgba(0, 25, 82,.6);
}
.teaching_plate2_list li:nth-child(5) .teaching_plate2_list_pack {
    background: rgba(0, 25, 82,.7);
}
.teaching_plate2_list li:nth-child(6) .teaching_plate2_list_pack {
    background: rgba(0, 25, 82,.5);
}
.teaching_plate2_list li:nth-child(7) .teaching_plate2_list_pack {
    background: rgba(0, 25, 82,.8);
}
.teaching_plate2_list li:nth-child(8) {
    width: 50%;
}
.teaching_plate2_list li:nth-child(8) .teaching_plate2_list_pack {
    background: rgba(0, 25, 82,1);
}
    .teaching_plate2_list li:nth-child(9) .teaching_plate2_list_pack {
        background: rgba(0, 25, 82,1);
    }
.teaching_plate2_list li.active .teaching_plate2_list_pack {
    background: rgb(243, 187, 25);
}
.teaching_plate2_right{
    width:50%;
    padding:33px 5%;
    background:#fff;
    border-radius:20px;
}
.teaching_plate2_right h4 {
    font-size:24px;
    line-height:32px;
    color:#000;
    font-weight:bold;
}
.teaching_plate2_right_desc h5 {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: rgb(51, 51, 51);
    text-decoration:underline;
    margin-top:14px;
}
.teaching_plate2_right_desc p {
    font-size: 16px;
    line-height: 24px;
    color: rgb(51, 51, 51);
    margin-top:12px;
}
.teaching_plate2_right_img{
    margin-top:17px;
}
.teaching_plate3 {
    padding:100px 0;
}
.teaching_plate3_pack{
    display:flex;
    align-items:center;
    margin-top:50px;
}
.teaching_plate3_desc {
    font-size:16px;
    line-height:24px;
    color:rgb(51,51,51);
    width:50%;
    padding-right:6%;
}
    .teaching_plate3_desc strong {
        color:#000;
    }
    .teaching_plate3_img {
        border-radius: 20px;
        overflow: hidden;
        width: 50%;
    }
    .teaching_plate3_img img {
        border-radius: 20px;
    }
.teaching_plate3_list{
    margin:80px -20px 0;
    display:flex;
    flex-wrap:wrap;
}
.teaching_plate3_list li {
    width:33.33%;
    padding:0 20px;
}
.teaching_plate3_list_cont {
    padding: 50px;
    background: rgba(243, 187, 25,.9);
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}
.teaching_plate3_list_pack {
    position:relative;
}
.teaching_plate3_list_icon {
    height:54px;
}
.teaching_plate3_list_icon img {
    max-height:100%;
    display:block;
}
.teaching_plate3_list_text {
    margin-top: 10px;
    color: #fff;
}
.teaching_plate3_list_text h4 {
    font-size:18px;
    line-height:26px;
}
.teaching_plate3_list_text p{
    font-size:16px;
    line-height:24px;
    margin-top:10px;
}
.teaching_plate4 {
    padding: 60px 0;
    background: rgb(248, 248, 248);
}
.teaching_plate4_pack {
    position:relative;
}
.teaching_plate4_img{
    width:1075px;
    margin:0 auto;
}
.teaching_plate4_cont {
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}
.teaching_plate4_text {
    max-width: 460px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(232, 235, 245, 0.6);
    padding:25px 30px;
    position:absolute;
}
    .teaching_plate4_text h4 {
        font-size: 24px;
        line-height: 35px;
        font-weight: bold;
        color: rgb(0, 0, 0);
    }
    .teaching_plate4_text p {
        font-size: 16px;
        line-height: 24px;
        margin-top: 15px;
        color: rgb(102, 102, 102);
        white-space:pre-line;
    }
.teaching_plate4_text:first-child {
    top:5%;
    left:50%;
    transform:translateX(-50%);
}
.teaching_plate4_text:nth-child(2) {
    left:5%;
    bottom:20%;
}
.teaching_plate4_text:last-child {
    right:5%;
    bottom:20%;
}
.teaching_plate5{
    padding-top:115px;
}
.teamswiper_list{
    margin-top:49px;
}
.teamswiper{
    overflow:hidden;
    border-radius:20px;
    background:url(../images/tbg.png) no-repeat center/cover;
}
.teamswiper_pack{
    padding:80px 100px 0;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
}
.teamswiper_left{
    width:45%;
} 
.y1260 {
    max-width:1280px;
    padding:0 10px;
    margin:0 auto;
}
.teamswiper_img {
    width:310px;
}
.teamswiper_left h3 {
    font-size: 24px;
    line-height: 35px;
    font-weight: bold;
    color: rgb(0, 0, 0);
}
.teamswiper_left h3 span {
    font-size:50px;
    line-height:70px;
    font-weight:500;
    margin-right:20px;
}
    .teamswiper_left h3 strong {
        color: rgb(243, 187, 25);
        margin-left:20px;
    }
.teamswiper_left p {
    margin-top:26px;
}
.teamswiper_left p strong {
    font-size:28px;
    line-height:37px;
    color:#000;
    display:inline-block;
    position:relative;
}
    .teamswiper_left p strong::after {
        content: "";
        width: 60px;
        height: 10px;
        border-radius: 5px;
        background: linear-gradient(to right,rgba(243, 187, 25, 0),rgb(243, 187, 25));
        position:absolute;
        bottom:-7px;
        right:0;
    }
    .teamswiper_left p span {
        font-size: 20px;
        line-height: 26px;
        color: rgb(51, 51, 51);
        display:block;
        margin-top:12px;
    }
.teaching_plate5_list {
    margin:50px 0 0;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}
.teaching_plate5_list li {
    width:150px;
    margin:0 25px;
}
    .teaching_plate5_list li img {
        border-radius:50%;
    }
    .teaching_plate5_list li.active img {
        border: 5px solid rgb(243, 187, 25);
    }
.teamswiper_list {
    position:relative;
}
.teamswiper_list .arrr {
    right:-100px;
}
.teamswiper_list .arrl {
    left:-100px;
}
.abott-bghj {
    margin-top: 40px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
}

    .abott-bghj img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius:50px;
    }

    .abott-bghj .pic-fl {
        width: 35.5%;
    }

    .abott-bghj .pic-fr {
        width: 64%;
        display: flex;
        flex-wrap: wrap;
        align-content: space-between;
    }

        .abott-bghj .pic-fr .img-top {
            height: 49.5%;
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

            .abott-bghj .pic-fr .img-top .img-fl {
                width: 49.5%
            }

        .abott-bghj .pic-fr .img-bot {
            width: 100%;
            height: 49%;
        }
.teaching_plate6{
    padding:120px 0;
}

@media(max-width:1000px) {
    .ny-baout {
        padding: 0
    }

    .abott-bghj {
        padding-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .abott-bghj img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .abott-bghj .pic-fl {
            width: 100%;
        }

        .abott-bghj .pic-fr {
            width: 100%;
        }

            .abott-bghj .pic-fr .img-top {
                height: 49%;
                width: 100%;
                padding-top: 10px;
                display: flex;
                justify-content: space-between;
            }

                .abott-bghj .pic-fr .img-top .img-fl {
                    width: 49%
                }

            .abott-bghj .pic-fr .img-bot {
                width: 100%;
                height: 49%;
                padding-top: 10px
            }
    .teaching_plate6{
        padding:30px 0;
    }
}
.Selected_Teachers {
    padding:100px 0;
}
.Selected_Teachers_list {
    display:flex;
    flex-wrap:wrap;
    margin:0 -33px;
}
.Selected_Teachers_list li {
    width:25%;
    padding:0 33px;
    margin-bottom:65px;
}
    .Selected_Teachers_list a {
        background: rgb(248, 249, 251);
        border-radius: 20px;
        height: 100%;
        padding: 40px 45px;
        display:block;
        border-bottom: 5px solid rgb(0, 25, 82);
    }
.Selected_Teachers_list_img {
    max-width:240px;
    margin:0 auto;
    border-radius:50%;
}
.Selected_Teachers_list_cont {
    margin-top:28px;
    text-align:center;
}
    .Selected_Teachers_list_cont h4 {
        font-size: 20px;
        line-height: 30px;
        color: rgb(0, 0, 0);
    }
    .Selected_Teachers_list_cont p {
        font-size: 16px;
        line-height: 24px;
        margin-top: 17px;
        color: rgb(102, 102, 102);
    }
    .Selected_Teachers_list_cont span {
        width: 150px;
        line-height: 48px;
        border: 1px solid rgb(229, 229, 229);
        background: rgb(248, 249, 251);
        text-align: center;
        font-size: 16px;
        border-radius: 30px;
        margin: 28px auto 0;
        display: block;
        color: rgb(0, 0, 0);
    }
.Selected_Teachers_list a:hover img {
    transform:scale(1.1);
}
.Selected_Teachers_list a:hover h4 {
    color:rgb(243, 187, 25);
}
.Selected_Teachers_list a:hover span {
    border-color:rgb(243, 187, 25);
    background:rgb(243, 187, 25);
    color:#fff;
}
.Selected_TeachersDetail {
    padding:100px 0;
}
    .Selected_TeachersDetail .teamswiper_pack {
        background:url(../images/tbg.png) no-repeat center/cover;
        border-radius:50px;
    }
.news {
    padding:70px 0 120px;
}
.news_list li{
    position:relative;
    padding:50px 0;
}
    .news_list li::after {
        content: "";
        width: 80%;
        height: 1px;
        background: rgb(222, 222, 222);
        position:absolute;
        bottom:0;
        left:0;
    }
.news_list li a {
    display:flex;
    align-items:center;
}
.news_list_img {
    width:24%;
    border-radius:20px;
}
.news_list_cont{
    width:76%;
    display:flex;
    align-items:center;
}
.news_list_text {
    width: calc(100% - 60px);
    padding: 0 7% 0 4%;
}
    .news_list_text h4 {
        font-size: 24px;
        line-height: 35px;
        font-weight: bold;
        color: rgb(0, 0, 0);
    }
.news_list_data {
     display:flex;
     align-items:center;
     margin-top:20px;
}
.news_list_data img {
    width:18px;
    display:block;
}
    .news_list_data span {
        font-size: 16px;
        line-height: 24px;
        color: rgb(51, 51, 51);
        padding-left:12px;
        width:calc(100% - 18px);
    }
.news_list_text p {
    font-size: 16px;
    line-height: 24px;
    color: rgb(102, 102, 102);
    margin-top:20px;
}
.news_list_dian {
    width:60px;
    background:rgb(0, 25, 82);
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    height:240px;
}
.news_list_dian img {
    width:9px;
    height:40px;
}
.news_list li a:hover img {
    transform:scale(1.1);
}
.news_list li a:hover h4 {
    color:rgb(243, 187, 25);
}
.news_list li a:hover p,
.news_list li a:hover span{
    color: rgb(243, 187, 25);
}
.news_list li a:hover .news_list_dian {
    background:rgb(243, 187, 25);
}
.newsdetail {
    padding:100px 0;
}
.newsdetail_pack{
    display:flex;
    align-items:flex-start;
}
.NewsDetail001 {
    width:65%;
    padding-right:5%;
    margin:0;
}
.NewsDetail001-title {
    border-bottom: 1px solid rgb(222, 222, 222);
    padding-bottom:20px;
    text-align:left;
}
    .NewsDetail001-title h3 {
        font-size: 40px;
        line-height: 58px;
        color: rgb(0, 0, 0);
    }
.tit_bar .text{
    margin:0;
    display:flex;
    align-items:center;
}
.tit_bar .text span {
    margin-left:10px;
}
.NewsDetail001-item {
    border-bottom: 1px solid rgb(222, 222, 222);
}
.TurnPages {
    margin-top:44px;
    display:block;
}
.TurnPages p {
    width:100%;
    margin:0;
}
    .TurnPages p:nth-last-child(1) {
        text-align: left;
    }
.dt {
    width: 36%;
    background: rgb(248, 248, 248);
    border-radius:20px;
    padding:25px 30px;
}
.news_datetime h3 {
    font-size: 40px;
    line-height: 53px;
    font-weight: bold;
    color: rgb(51, 51, 51);
}
    .news_datetime h3::after {
        content: "";
        width: 49px;
        height: 5px;
        background: rgb(243, 187, 25);
        margin-top:18px;
        display:block;
    }
.news_datetime p {
    font-size: 16px;
    line-height: 24px;
    color: rgb(51, 51, 51);
    margin-top:16px;
}
.dt_list{
    margin-top:46px;
}
    .dt_list h3 {
        font-size: 28px;
        line-height: 37px;
        color: rgb(0, 0, 0);
        font-weight: bold;
        padding-bottom: 19px;
        border-bottom: 1px solid rgb(222, 222, 222);
    }
.dt_list_cont {
    margin-top:18px;
}
.dt_list_cont li {
    margin-bottom:18px;
}
    .dt_list_cont li a h4 {
        font-size: 16px;
        line-height: 24px;
        color: rgb(0, 0, 0);
    }
    .dt_list_cont li a .dt_list_time {
        display:flex;
        align-items:center;
        margin-top:12px;
    }
    .dt_list_cont li a .dt_list_time img {
        width:18px;
    }
        .dt_list_cont li a .dt_list_time span {
            width: calc(100% - 18px);
            padding-left: 10px;
            font-size: 16px;
            line-height: 24px;
            color: rgb(153, 153, 153);
        }
.word {
    padding:120px 0;
}
.word_list {
    display:flex;
    flex-wrap:wrap;
    margin:0 -20px;
}
.word_list li {
    width:33.333%;
    padding:0 20px;
    margin-bottom:40px;
}
    .word_list li a {
        display: block;
        height: 100%;
        background: rgb(248, 250, 252);
        border-radius:20px;
    }
.word_list_img{
    border-radius:20px 20px 0 0;
}
.word_list_cont{
    padding:30px;
}
    .word_list_cont h4 {
        font-size: 20px;
        line-height: 30px;
        color: rgb(0, 0, 0);
        font-weight:bold;
    }
    .word_list_cont p {
        font-size: 16px;
        line-height: 28px;
        margin-top: 20px;
        color: rgb(102, 102, 102);
    }
    .word_list_cont span {
        width: 150px;
        line-height: 48px;
        text-align: center;
        border: 1px solid rgb(229, 229, 229);
        border-radius: 30px;
        font-size: 16px;
        color: rgb(0, 0, 0);
        display:block;
        margin-top:23px;
    }
.word_list li a:hover img {
    transform:scale(1.1);
}
.word_list li a:hover {
    background:rgb(243, 187, 25);
}
    .word_list li a:hover h4,
    .word_list li a:hover p,
    .word_list li a:hover span{
        color: #fff;
    }
.word_list li a:hover span {
    border-color:#fff;

}
.worddetail_list h3 {
    font-size: 24px;
    line-height: 31px;
    font-weight: bold;
    color: rgb(0, 0, 0);
}
.worddetail_list ul a .dt_list_time span {
    padding-left:0;
}
.worddetail_list ul a .dt_list_time{
    margin-top:5px;
}
.worddetail_list ul a:hover h4 {
    color:rgb(243, 187, 25);
}
.contact{
    padding:120px 0;
}
.contact_top {
    display:flex;
    align-items:flex-end;
}
.contact_left {
    width:52%;
    padding-right:10%;
}
    .contact_left h3 {
        font-size: 44px;
        line-height: 58px;
        color: rgb(0, 0, 0);
    }
.contact_1 {
    display:flex;
    align-items:center;
    margin-top:9px;
}
.contact_1 img {
    width:44px;
    display:block;
}
    .contact_1 span {
        width: calc(100% - 44px);
        padding-left: 15px;
        font-size: 22px;
        line-height: 30px;
        color: rgb(0, 25, 82);
    }
.contact_left_tel{
    margin-top:37px;
}
.contact_left_tel p {
    display:flex;
    align-items:flex-start;
    margin-top:10px;
}
    .contact_left_tel p img {
        width:20px;
        margin-top:6px;
    }
    .contact_left_tel p span {
        width:calc(100% - 20px);
        font-size: 20px;
        line-height: 30px;
        color: rgb(32, 32, 32);
        padding-left:15px;
    }
.contact_right {
    width:48%;
}
    .contact_right h4 {
        font-size: 48px;
        line-height: 70px;
        color: rgb(0, 0, 0);
    }
.contact_right img {
    width:100%;
}
.map{
    margin-top:47px;
}
.map .y1200>* {
    border-radius:20px;
}
    .map * {
        height:600px !important;
    }
    .public_btn {
        margin-top: 30px;
    }
.public_btn a {
    display: flex;
    width: 170px;
    background: rgb(0, 25, 82);
    border-radius: 25px;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    padding-left: 40px;
    align-items: center;
    justify-content: space-between;
}
    .public_btn a i {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid #fff;
        background: rgb(0, 25, 82) url(../images/ar.png) no-repeat center center / 40%;
    }
.message {
    padding:97px 0 120px;
}
.message_form {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.message_input {
    width:calc(50% - 37px);
    margin-bottom:18px;
}
    .message_input p {
        font-size: 18px;
        line-height: 26px;
        color: rgb(0, 0, 0);
    }
        .message_input p span {
            color: rgb(231, 120, 23);
        }
    .message_input input {
        border: 1px solid rgb(228, 228, 228);
        border-radius:10px;
        background:#fff;
        padding:19px 20px;
        font-size:16px;
        line-height:24px;
        width:100%;
        margin-top:12px;
    }
.message_input:last-child {
    width:100%;
}
    .message_input textarea {
        border: 1px solid rgb(228, 228, 228);
        border-radius: 10px;
        background: #fff;
        padding: 19px 20px;
        font-size: 16px;
        line-height: 24px;
        width: 100%;
        margin-top: 12px;
        height:150px;
    }
.join {
    padding: 91px 0 120px;
}
.join_list_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 6px solid rgb(0, 25, 82);
    padding: 35px 50px;
}
    .join_list li {
        margin-bottom: 30px;
        background: #F5F8FB;
    }
        .join_list li.active .join_list_title {
            border-left-color: rgb(243, 187, 25);
        }
        .join_list li.active .join_list_btn {
            background: rgb(243, 187, 25);
        }
        .join_list_left {
            width: calc(100% - 200px);
        }

    .join_list_left h4 {
        font-size: 20px;
        line-height: 30px;
        color: #000000;
    }

    .join_list_left p {
        font-size: 16px;
        line-height: 22px;
        color: #626262;
        margin-top: 17px;
    }

        .join_list_left p span {
            display: inline-block;
            margin: 0 15px;
        }

            .join_list_left p span:first-child {
                margin-left: 0;
            }

.join_list_btn {
    width: 150px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #FFFFFF;
    background: rgb(0, 25, 82);
    box-shadow: 0 5px 10px rgba(129, 102, 47, 0.3);
    border-radius: 30px;
    cursor: pointer;
}

.join_list_cont {
    padding: 30px 50px;
    font-size: 16px;
    line-height: 24px;
}

.join_list_desc {
    display: none;
}
.home_swiper {
    overflow: hidden;
}

    .home_swiper a {
        position: relative;
        display:block;
    }

        .home_swiper a img {
            width: 100%;
            display: block;
        }

.home_swiper_cont {
    position: absolute;
    width: 95%;
    max-width: 1520px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

    .home_swiper_cont h3 {
        font-size: 60px;
        line-height: 87px;
        color: rgb(255, 255, 255);
    }

    .home_swiper_cont p {
        font-size: 36px;
        line-height: 52px;
        color: rgb(255, 255, 255);
        margin-top: 9px;
    }

    .home_swiper_cont span {
        display: flex;
        width: 170px;
        background: rgb(0, 54, 178);
        border-radius: 25px;
        margin-top: 62px;
        font-size: 16px;
        line-height: 50px;
        color: #fff;
        padding-left: 40px;
        align-items: center;
        justify-content: space-between;
    }

        .home_swiper_cont span i {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid #fff;
            background: rgb(0, 54, 178) url(../images/ar.png) no-repeat center center/40%;
        }
.about_btn {
    margin-top:80px;
}
.home_mess {
    padding:95px 0 104px;
    background:url(../images/mbg.jpeg) no-repeat center/cover;
}
.home_mess_title{
    text-align:center;
}
.home_mess_title h3 {
    font-size:44px;
    line-height:58px;
    color:#fff;
}
.home_mess_title p {
    font-size:18px;
    line-height:26px;
    margin-top:20px;
    color:#fff;
}
.home_mess_form {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    margin-top:50px;
}
.home_mess_input {
    width: 31%;
    margin-bottom:30px;
}
    .home_mess_input input {
        border-radius: 5px;
        background: rgba(255, 255, 255,.15);
        color: #fff;
        font-size: 16px;
        line-height: 24px;
        padding: 13px 20px;
        width:100%;
        border:none;
        outline:none;
    }
        .home_mess_input input::-webkit-input-placeholder,
        .home_mess_input textarea::-webkit-input-placeholder{
            color: #fff;
        }
    .home_mess_input select {
        border-radius: 5px;
        background: rgba(255, 255, 255,.15);
        color: #fff;
        font-size: 16px;
        line-height: 24px;
        padding: 13px 20px;
        width: 100%;
        border: none;
        outline: none;
        height:50px;
    }
        .home_mess_input select option {
            background:rgb(0, 25, 82);
        }
        .home_mess_code {
            display: flex;
        }
.home_mess_code input {
    width:calc(100% - 120px);
}
.home_mess_code img {
    width:120px;
    height:50px;
    object-fit:cover;
}
.home_mess_input:last-child {
    width:100%;
}
.home_mess_input textarea {
    border-radius: 5px;
    background: rgba(255, 255, 255,.15);
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    padding: 13px 20px;
    width: 100%;
    border: none;
    outline: none;
    height: 120px;
    resize:none;
}
.submit {
    width:170px;
    line-height:50px;
    border-radius:30px;
    text-align:center;
    font-size:16px;
    color:#fff;
    margin:0 auto;
    background:rgb(243, 187, 25);
    cursor:pointer;
}
.public_title p {
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:9px;
}
.public_title p img {
    width:44px;
}
    .public_title p span {
        font-size: 22px;
        line-height: 32px;
        color: rgb(0, 25, 82);
        margin-left:16px;
    }



    .home_news .sy-news {
        padding-top: 40px;
        display: flex;
        flex-wrap: wrap
    }

        .home_news .sy-news .news-fl {
            width: 62%;
        }

            .home_news .sy-news .news-fl ul {
                display: flex;
                flex-wrap: wrap;
                margin: 0 -10px
            }

                .home_news .sy-news .news-fl ul li {
                    width: 50%;
                    padding: 0 10px;
                }

                    .home_news .sy-news .news-fl ul li a {
                        display: block;
                        height: 100%;
                        box-shadow: 0px 0px 15px 0px rgba(106, 106, 106, 0.1);
                        border-radius:0 0 20px 20px;
                    }

                    .home_news .sy-news .news-fl ul li .pic {
                        overflow: hidden;
                        height: 320px;
                        border-radius:20px 20px 0 0;
                    }

                        .home_news .sy-news .news-fl ul li .pic img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover
                        }

                    .home_news .sy-news .news-fl ul li .tet {
                        padding: 20px;
                    }

                        .home_news .sy-news .news-fl ul li .tet h3 {
                            font-size: 22px;
                            color: #000;
                        }

                        .home_news .sy-news .news-fl ul li .tet span {
                            font-size: 14px;
                            color: #999;
                            display: block;
                            padding: 10px 0
                        }

                        .home_news .sy-news .news-fl ul li .tet p {
                            font-size: 16px;
                            color: #666;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 2;
                            line-height: 25px;
                            height: 50px;
                            overflow: hidden;
                        }

                        .home_news .sy-news .news-fl ul li .tet .more {
                            font-size: 16px;
                            color: #666;
                            padding-top: 15px
                        }

                   

        .home_news .sy-news .news-fr {
            width: 38%;
            padding-left: 20px;
        }

            .home_news .sy-news .news-fr ul li {
                box-shadow: 0px 0px 15px 0px rgba(106, 106, 106, 0.1);
                margin-bottom: 20px;
                border-radius:20px;
                background:#fff;
            }
                .home_news .sy-news .news-fr ul li:hover {
                    background:rgb(243, 187, 25);
                }
                    .home_news .sy-news .news-fr ul li:hover a .time {
                        color:#fff;
                    }
                    .home_news .sy-news .news-fr ul li:hover a .tet h3,
                    .home_news .sy-news .news-fr ul li:hover a .tet p,
                    .home_news .sy-news .news-fr ul li:hover a .tet .more {
                        color: #fff;
                    }
                    .home_news .sy-news .news-fr ul li:last-child {
                        margin-bottom: 0
                    }

                .home_news .sy-news .news-fr ul li a {
                    padding: 20px 20px 20px 0;
                    display: flex;
                    align-items: center;
                }

                    .home_news .sy-news .news-fr ul li a .time {
                        width: 100px;
                        text-align: center;
                        font-size: 18px;
                        color: #666;
                        border-right: solid 1px #E2E2E2
                    }

                    .home_news .sy-news .news-fr ul li a .tet {
                        width: calc(100% - 100px);
                        padding-left: 20px;
                    }

                        .home_news .sy-news .news-fr ul li a .tet h3 {
                            font-size: 22px;
                            color: #000;
                            font-weight: bold;
                        }

                        .home_news .sy-news .news-fr ul li a .tet p {
                            font-size: 16px;
                            color: #666;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 2;
                            line-height: 25px;
                            height: 50px;
                            overflow: hidden;
                            margin-top: 10px;
                        }

                        .home_news .sy-news .news-fr ul li a .tet .more {
                            font-size: 16px;
                            color: #666;
                            padding-top: 10px
                        }

                .home_news .sy-news .news-fr ul li:hover .tet h3,
                .home_news .sy-news .news-fr ul li:hover .tet .more {
                    color: #ff0000
                }

                .home_news .sy-news .news-fr ul li:hover {
                    box-shadow: 0px 0px 15px 3px rgba(106, 106, 106, 0.1);
                }
.home_news {
    padding:0 0 115px;
}
.home_news_btn a {
    margin:50px auto 0;
}
.nei-banner img {
    width:100%;
    display:block;
    min-height:150px;
    object-fit:cover;
}
.history_img img {
    width:100%;
    display:block;
}
@media(max-width:1600px) {
    .about_plate1_left {
        width:55%;
    }
    .about_plate1_img{
        width:45%;
    }
    .teamswiper_list .arrr {
        right:5px;
    }
    .teamswiper_list .arrl {
        left:5px;
    }
    .w_nav > li{
        padding:0 20px;
    }
    .about_plate1_img i{
        width:100px;
        height:100px;
    }
    .home_news .sy-news .news-fl ul li .pic {
        height:280px;
    }
    .Selected_Teachers_list  {
        margin:0 -15px;
    }
    .Selected_Teachers_list li {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    .teamswiper_left{
        width:50%;
    }
    .contact_right h4{
        font-size:35px;
        line-height:50px;
        text-align:center;
    }
}
@media (max-width: 1000px) {
    .home_news .sy-news {
        padding-top: 40px;
        display: flex;
        flex-wrap: wrap
    }

            .home_news .sy-news .news-fl {
                width: 100%;
            }

                .home_news .sy-news .news-fl ul {
                    display: flex;
                    margin: 0;
                }

                    .home_news .sy-news .news-fl ul li {
                        width: 100%;
                        padding: 0;
                        margin-bottom: 20px
                    }

                        .home_news .sy-news .news-fl ul li .pic {
                            height: auto;
                        }

                        .home_news .sy-news .news-fl ul li .tet {
                            padding: 20px 10px;
                        }

                            .home_news .sy-news .news-fl ul li .tet h3 {
                                font-size: 16px;
                            }

                            .home_news .sy-news .news-fl ul li .tet span {
                                font-size: 14px;
                                color: #999;
                                display: block;
                                padding: 10px 0
                            }

                            .home_news .sy-news .news-fl ul li .tet p {
                                font-size: 14px;
                            }

                            .home_news .sy-news .news-fl ul li .tet .more {
                                font-size: 14px;
                                padding-top: 15px
                            }

            .home_news .sy-news .news-fr {
                width: 100%;
                padding-left: 0px;
                padding-top: 20px;
            }

                .home_news .sy-news .news-fr ul li a {
                    padding: 20px 10px 20px 0;
                    display: flex;
                    align-items: center;
                }

                    .home_news .sy-news .news-fr ul li a .time {
                        width: 80px;
                        text-align: center;
                        font-size: 16px;
                        color: #666;
                        border-right: solid 1px #E2E2E2
                    }

                    .home_news .sy-news .news-fr ul li a .tet {
                        width: calc(100% - 80px);
                        padding-left: 20px;
                    }

                        .home_news .sy-news .news-fr ul li a .tet h3 {
                            font-size: 16px;
                        }

                        .home_news .sy-news .news-fr ul li a .tet p {
                            font-size: 14px;
                        }

                        .home_news .sy-news .news-fr ul li a .tet .more {
                            font-size: 14px;
                            display: none
                        }
    .w_nav > li {
        padding: 0;
    }

    .iconfont {
        width: 40px;
        height: 40px;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

        .iconfont i {
            width: 100%;
            height: 100%;
            position: absolute;
        }

        .iconfont .cha {
            background: url(../images/cha.png) no-repeat center/100% 100%;
            display: none;
        }

        .iconfont .nav {
            background: url(../images/nav.png) no-repeat center/100% 100%;
        }

    .logo {
        height: 60px;
        padding: 10px 0;
    }

    .navlist {
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        background: #fff;
        padding: 10px;
        border-top: 1px solid #f1f1f1;
        display: none;
        z-index: 101;
    }

    .w_nav {
        display: block;
    }

    .header_search_icon {
        width: 40px;
        height: 40px;
    }

    .header_pack {
        padding-left: 15px;
    }
    .banner_cont h3 {
        font-size:25px;
        line-height:35px;
    }
    .banner_cont p{
        font-size:16px;
        line-height:24px;
        margin-top:5px;
    }
    .public_nav_pack{
        display:block;
    }
    .public_nav_list li a{
        padding:10px 15px;
        font-size:18px;
        line-height:26px;
    }
    .public_nav_cont{
        margin:10px 0;
    }
    .contact{
        padding:30px 0;
    }
    .contact_top{
        display:block;
    }
    .contact_left {
        width:100%;
        padding:0 0 20px;
    }
        .contact_left h3{
            font-size:25px;
            line-height:35px;
        }
    .contact_1 span{
        font-size:16px;
        line-height:26px;
    }
    .contact_left_tel p span{
        font-size:16px;
        line-height:24px;
    }
    .contact_left_tel p img{
        width:18px;
        margin-top:5px;
    }
    .contact_left_tel{
        margin-top:20px;
    }
    .contact_right {
        width:100%;
    }
        .contact_right h4 {
            font-size:22px;
            line-height:32px;
            text-align:center;
        }
    .map .y1200 > * {
         width:100%;
    }
    .public_nav_list{
        flex-wrap:wrap;
        justify-content:center;
    }
    .news{
        padding:30px 0;
    }
    .news_list li{
        padding:20px 0;
    }
        .news_list li a{
            display:block;
        }
    .news_list_img {
        width:100%;
    }
    .news_list_dian {
        display:none;
    }
    .news_list_text{
        width:100%;
        padding:20px 0 0;
    }
    .news_list_cont {
        width:100%;
    }
    .news_list_text h4{
        font-size:18px;
        line-height:26px;
    }
    .newsdetail{
        padding:30px 0;
    }
    .newsdetail_pack{
        display:block;
    }
    .NewsDetail001{
        width:100%;
        padding:0;
    }
    .NewsDetail001-title h3{
        font-size:23px;
        line-height:33px;
    }
    .dt{
        width:100%;
        margin-top:30px;
        padding:15px;
    }
    .news_datetime {
        display:none;
    }
    .dt_list{
        margin:0;
    }
        .dt_list h3{
            font-size:22px;
            line-height:32px;
            padding-bottom:10px;
        }
    .Selected_Teachers,
    .Selected_TeachersDetail {
        padding: 30px 0;
    }
    .Selected_Teachers_list{
        margin:0;
    }
        .Selected_Teachers_list li{
            width:100%;
            padding:0 ;
            margin-bottom:20px;
        }
   .teamswiper_pack{
        padding:20px 15px;
        border-radius:10px !important;
        display:block;
    }
    .teamswiper_left {
        width:100%;
    }
    .teamswiper_img {
        max-width:200px;
        margin:20px auto 0;
    }
    .teamswiper_left h3 span {
        font-size:25px;
        line-height:35px;
    }
    .teamswiper_left h3{
        font-size:18px;
        line-height:26px;
    }
    .teamswiper_left p strong{
        font-size:20px;
        line-height:30px;
    }
    .teamswiper_left p span{
        font-size:16px;
        line-height:24px;
    }
    .teaching_plate1{
        padding:30px 0;
    }
    .teaching_plate1_pack{
        display:block;

    }
    .teaching_plate1_left {
        width:100%;
        padding:0 0 20px;
    }
    .teaching_plate1_left_desc {
        margin-top:20px;
    }
    .teaching_plate1_left h3 {
        font-size:25px;
        line-height:35px;
    }
    .teaching_plate1_left_desc h4{
        font-size:18px;
        line-height:26px;
    }
    .teaching_plate1_right {
        width:100%;
    }
    .teaching_plate2{
        padding:30px 0;
    }
    .public_title h3{
        font-size:25px;
        line-height:35px;
    }
    .teaching_plate2_pack{
       display:block;
       margin-top:30px;
    }
    .teaching_plate2_left {
        width:100%;
    }
    .teaching_plate2_right{
        width:100%;
    }
        .teaching_plate2_right h4{
            font-size:20px;
            line-height:30px;
        }
    .teaching_plate2_list_pack .teaching_plate2_list_icon {
        height:40px;
    }
    .teaching_plate2_list_pack p {
        font-size:16px;
        line-height:24px;
    }
    .teaching_plate2_list_pack{
        height:150px;
    }
    .teaching_plate2_list li:nth-child(3) .teaching_plate2_list_pack{
        height:310px;
    }
    .teaching_plate3{
        padding:30px 0;
    }
    .teaching_plate3_pack{
        margin-top:30px;
        display:block;
    }
    .teaching_plate3_desc{
        width:100%;
        padding:0 0 20px;
    }
    .teaching_plate3_img{
        width:100%;
    }
    .teaching_plate3_list{
        margin:30px 0 0;
        display:block;
    }
    .teaching_plate3_list li {
        width:100%;
        padding:0;
        margin-bottom:20px;
    }
    .teaching_plate3_list_cont{
        padding:20px 10px;
    }
    .teaching_plate3_list_icon {
        height:45px;
    }
    .teaching_plate4{
        padding:30px 0;
    }
    .teaching_plate4_img {
        display:none;
    }
    .teaching_plate4_cont{
        position:static;
    }
    .teaching_plate4_text{
        position:static;
        width:100%;
        transform:none !important;
        margin-bottom:20px;
        padding:20px 10px;
    }
        .teaching_plate4_text h4{
            font-size:20px;
            line-height:30px;
        }
    .teaching_plate5{
        padding-top:30px;
    }
    .teamswiper_list {
        margin-top:30px;
    }
    .teaching_plate5_list{
        margin:30px -5px 0;
    }
        .teaching_plate5_list li {
            width:33.333%;
            padding:0 5px;
            margin:0 0 10px;
        }
    .abott-bghj{
        margin-top:20px;
    }
        .abott-bghj img {
            border-radius:10px;
        }
        .er_nav {
            position:static;
            transform:none;
        }
    .er_nav li a {
        padding:0 10px;
        text-align:left;
    }
    .about{
        padding:30px 10px;
    }
    .about_plate1 {
        padding: 30px 10px 0;
    }

    .about_plate1_pack {
        display: block;
    }

    .about_plate1_left {
        width: 100%;
        padding: 0 0 20px;
    }

        .publish_detail_right_title h3, .about_plate1_left h3, .public_title h3 {
            font-size: 25px;
            line-height: 35px;
        }

    .about_plate1_desc {
        margin-top: 20px;
    }

    .about_plate1_left_list {
        margin-top: 20px;
    }

        .about_plate1_left_list li h3 span {
            font-size: 30px;
            line-height: 40px;
        }

        .about_plate1_left_list li h3 {
            font-size: 18px;
            line-height: 26px;
        }

        .about_plate1_left_list li p {
            font-size: 16px;
            line-height: 24px;
        }

    .about_plate1_img {
        width: 100%;
    }

        .about_plate1_img i {
            width: 60px;
            height: 60px;
        }

    .video_sahodw_cont {
        width: 95%;
    }
    .about_btn {
        margin-top:30px;
    }
    .home_swiper_cont span, .public_btn a, .home_plate3_swiper_cont span {
        margin-top: 20px;
    }

    .home_swiper_cont span, .public_btn a, .home_plate3_swiper_cont span {
        width: 140px;
        padding-left: 20px;
        line-height: 40px;
    }

        .home_swiper_cont span i, .public_btn a i, .home_plate3_swiper_cont span i {
            width: 40px;
            height: 40px;
        }
    .history{
        padding:30px 0;
    }
    .history_img {
        overflow:auto;
    }
    .history_img img {
        min-width:100%;
    }
    .team{
        padding:30px 0;
    }
    .team_pack {
        display:block;
    }
    .team_left,
    .team_right {
        width: 100%;
    }
    .team_right {
        padding:20px 10px;
        margin-top:20px;
    }
        .team_right h3 {
            font-size:22px;
            line-height:32px;
        }
        .team_right h4 {
            font-size:18px;
            line-height:26px;
        }
    .arr{
        width:45px;
        height:45px;
    }
    .teamswiper2{
        width:70%;
        margin:0 auto;
    }
    .team_list_swiper{
        margin-top:30px;
    }
    .team_left img, .teamswiper2_img img{
        border-width:5px;
    }
    .message{
        padding:30px 0;
    }
    .message_input{
        width:100%;
    }
        .message_input input{
            padding:10px 15px;
        }
    .join {
        padding:30px 0;
    }
    .join_list_title {
        padding: 15px 10px;
        display: block;
    }

    .join_list_left {
        width: 100%;
    }

        .join_list_left p span {
            display: block;
            margin: 0;
        }

    .join_list_btn {
        line-height: 40px;
        margin-top: 20px;
    }

    .join_list_cont {
        padding: 20px 10px;
    }
    .home_swiper a img {
        height:200px;
    }
    .home_swiper_cont h3{
        font-size:25px;
        line-height:35px;
    }
    .home_swiper_cont p{
        font-size:18px;
        line-height:26px;
    }
    .home_mess{
        padding:30px 0;
    }
    .home_mess_title h3{
        font-size:25px;
        line-height:35px;
    }
    .home_mess_title p {
        font-size:16px;
        line-height:24px;
        margin-top:10px;
    }
    .home_mess_form{
        margin-top:30px;
    }
    .home_mess_input{
        width:100%;
        margin-bottom:15px;
    }
    .public_title p span {
        font-size:16px;
        line-height:24px;
        text-align:left;
    }
    .home_news {
        padding: 30px 0;
    }
    .teamswiper_list .arrr{
        right:0;
    }
    .teamswiper_list .arrl{
        left:0;
    }
    .about_plate1_img{
        border-radius:0;
    }
    .submit {
        width:130px;
        line-height:40px;
    }
    .map * {
        height: 300px !important;
    }
    .word {
        padding:30px 0;
    }
    .word_list {
        margin:0;
    }
    .word_list li {
        width:100%;
        padding:0;
        margin-bottom:20px; 
    }
    .word_list_cont{
        padding:20px 15px;
    }
        .word_list_cont h4 {
            font-size:18px;
            line-height:26px;
        }
        .word_list_cont p {
            margin-top:10px;
        }
        .word_list_cont span{
            width:130px;
            line-height:38px;
        }
}