img {
    max-width: 100%;
    height: auto;
    width: auto \9;
    /* ie8 */
    -ms-interpolation-mode: bicubic;
    /*为了照顾ie图片缩放失真*/
    border: none;
    display: block;
}

.publicBox {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.disNone {
    display: none;
}

ul,
li,
p {
    margin-bottom: 0;
    margin: 0;
    padding: 0;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}


/* 菜单样式 */

.menuBox {
    width: 100%;
    height: 98px;
    background: #24539c;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    box-shadow: 0px 2px 13px 1px rgba(0, 0, 0, 0.14);
}

.menuBox .menuBlock {
    width: 92%;
    margin: 0 auto;
    /* overflow: hidden; */
    position: relative;
}

.menuBox .menuBlock .menuListBox {
    width: 100%;
}

.menuBox .menuBlock .menuListBox ul {
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
}

.menuBox .menuBlock .menuListBox ul div {
    flex: 1;
    display: flex;
}

.menuBox .menuBlock .menuListBox ul div:nth-child(1) {
    margin-right: 21.15%;
}

.menuBox .menuBlock .menuListBox ul li {
    flex: 1;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.menuBox .menuBlock .menuListBox ul div:nth-child(1) li:nth-child(5) {
    flex: 1.75;
}

.menuBox .menuBlock .menuListBox ul div:nth-child(2) li:nth-child(2) {
    flex: 1.2;
}

.menuBox .menuBlock .menuListBox ul .menuListItem .menuListItemLink {
    font-size: 18px;
    line-height: 36px;
    padding-bottom: 29px;
    color: #ffffff;
    display: inline-block;
    padding-top: 29px;
    font-weight: bold;
    position: relative;
}

.menuBox .menuBlock .menuListBox ul .menuListItem:hover .menuListItemLink {
    border-bottom: 3px solid #ffffff;
}

.menuBox .menuBlock .menuListBox ul .active .menuListItemLink {
    font-weight: bold;
    border-bottom: 3px solid #ffffff;
}

.menuLogoBox {
    width: 21.15%;
    position: absolute;
    z-index: 11;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.menuLogoBlock {
    position: relative;
    width: 100%;
    height: 100%;
}


/* .menuLogoBlock::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: -200px;
    left: 0;
    width: 330px;
    height: 330px;
    background-color: #fff;
    border-bottom-left-radius: 165px;
    border-bottom-right-radius: 165px;
    box-shadow: 0px 0px 25px 0px rgba(34, 23, 20, 0.26);
}

.menuLogoBlock:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -225px;
    left: -20px;
    width: 370px;
    height: 370px;
    background-color: #ffffff;
    border-bottom-left-radius: 185px;
    border-bottom-right-radius: 185px;
}

.menuLogoBlock a {
    position: relative;
    display: block;
    z-index: 12;
    width: 100%;
    height: 100%;
    background: url(../img/menuLogoBlockBg.png) no-repeat center center;
    background-size: 163px;
} */

.menuLogoBlock img {
    margin: 0 auto;
}

.menuIconBox {
    display: none;
}


/* banner样式 */

.bannerBox {
    margin-top: 98px;
    background: url(../img/bannerBg.png) no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 10% 0 9% 0;
    overflow: hidden;
}

.bannerBlock {
    width: 100%;
    -webkit-animation: ZoomInOut 2s infinite ease;
    -moz-animation: ZoomInOut 2s infinite ease;
    -o-animation: ZoomInOut 2s infinite ease;
    -ms-animation: ZoomInOut 2s infinite ease;
    animation: ZoomInOut 2s infinite ease;
}

.bannerBlock img {
    margin: 0 auto;
}

.bannerBlock .bannerTitleTop {
    width: 61.97916%;
    margin: 0 auto 3.5% auto;
    animation-duration: 1.2s;
}

.bannerBlock .bannerTitleBottom {
    width: 62.39583%;
    margin: 0 auto 6.5% auto;
    animation-delay: 0.8s;
    animation-duration: 1.2s;
}

.bannerBlock .bannerBtn {
    width: 34%;
    margin: 0 auto;
    animation-delay: 1.6s;
    animation-duration: 1.2s;
    cursor: pointer;
}

@-webkit-keyframes ZoomInOut {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.95);
        -moz-transform: scale(0.95);
        -o-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ZoomInOut {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.95);
        -moz-transform: scale(0.95);
        -o-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}


/* 标题样式 */

.itemTitleBox {
    padding-top: 80px;
    margin-bottom: 50px;
    overflow: hidden;
}

.itemTitleBlock {
    text-align: center;
}

.itemTitleBlock .itemTitleName {
    font-weight: bold;
    font-size: 48px;
    line-height: 50px;
    color: #24539c;
    position: relative;
    z-index: 1;
}

.itemTitleBlock span {
    width: 59px;
    height: 4px;
    background-color: #24539c;
    display: block;
    margin: 20px auto 0 auto;
}

.itemTitleBox02 .itemTitleBlock .itemTitleName {
    color: #ffffff;
}

.itemTitleBox02 .itemTitleBlock span {
    background-color: #ffffff;
}


/* 学校简介和项目介绍 */

.schoolProfile {
    background-color: #ffffff;
    padding: 0 0 40px 0;
}

.schoolIntro {
    margin-bottom: 48px;
    position: relative;
}

.schoolIntro01 .schoolIntroBox {
    overflow: hidden;
    padding-bottom: 30px;
}

.schoolIntro01 .schoolIntroBox .schoolIntroLeft {
    width: 545px;
    float: left;
    position: relative;
    z-index: 2;
}

.schoolIntro01 .schoolIntroBox .schoolIntroRight {
    margin-left: 543px;
    padding-top: 25px;
}

.schoolIntro02 .schoolIntroBox .schoolIntroLeft {
    width: 545px;
    float: right;
    position: relative;
    z-index: 2;
}

.schoolIntro02 .schoolIntroBox .schoolIntroRight {
    margin-right: 543px;
    padding-top: 23px;
}

.schoolIntroLeft .schoolIntroImg_m {
    display: none;
}

.schoolIntroRight .schoolIntroBlcok {
    padding: 30px 50px 55px 50px;
    border: solid 1px #24539c;
}

.schoolIntroBlcok .schoolIntroTitle {
    background: #24539c;
    display: inline-block;
    position: relative;
}

.schoolIntroBlcok .schoolIntroTitle:after {
    content: '';
    position: absolute;
    top: 0;
    right: -70px;
    border-left: 35px solid #24539c;
    border-top: 45px solid transparent;
    border-right: 35px solid transparent;
}

.schoolIntroBlcok .schoolIntroTitle p {
    font-size: 26px;
    line-height: 45px;
    color: #ffffff;
    font-weight: bold;
    padding-left: 54px;
    padding-right: 46px;
}

.schoolIntro01 .schoolIntroBlcok .schoolIntroTitle p {
    background: url(../img/schoolProfileIcon01.png) no-repeat center left;
    background-size: 29px;
    background-position-x: 19px;
}

.schoolIntro02 .schoolIntroBlcok .schoolIntroTitle p {
    background: url(../img/schoolProfileIcon02.png) no-repeat center left;
    background-size: 29px;
    background-position-x: 19px;
}

.schoolIntroBlcok .schoolIntroCont {
    margin-top: 15px;
}

.schoolIntroBlcok .schoolIntroCont p {
    text-align: justify;
    font-size: 16px;
}

.schoolIntroBlcok .schoolIntroCont p span {
    font-weight: bold;
    color: #24539c;
}

.schoolIntro01 .schoolIntroRight {
    position: relative;
}

.schoolIntro01 .schoolIntroRight:before {
    content: '';
    position: absolute;
    right: 38px;
    bottom: 0;
    width: 73px;
    height: 1px;
    background: #ffffff;
}

.schoolIntro01 .schoolIntroRight:after {
    content: '';
    position: absolute;
    right: 41px;
    bottom: -41px;
    width: 67px;
    height: 67px;
    background: url(../img/schoolProfileIcon03.png) no-repeat center center;
    background-size: cover;
}

.schoolIntro02 .schoolIntroRight:before {
    content: '';
    position: absolute;
    left: 38px;
    bottom: 0;
    width: 73px;
    height: 1px;
    background: #ffffff;
}

.schoolIntro02 .schoolIntroRight:after {
    content: '';
    position: absolute;
    left: 41px;
    bottom: -41px;
    width: 67px;
    height: 67px;
    background: url(../img/schoolProfileIcon04.png) no-repeat center center;
    background-size: cover;
}

.schoolIntro02 .schoolIntroRight .schoolIntroBlcok {
    padding: 30px 40px 50px 30px;
}


/* 培养计划 */

.trainingPlan {
    padding: 56px 0;
    position: relative;
}

.trainingPlan .itemTitleBox {
    display: none;
}

.trainingPlanBox {
    height: 352px;
    background-color: #24539c;
}

.trainingPlanTitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.trainingPlanItem {
    overflow: hidden;
}

.trainingPlanItem .trainingPlanItemBlock {
    width: 320px;
}

.trainingPlanItem .trainingPlanItemBlock01 {
    float: left;
    text-align: left;
}

.trainingPlanItem .trainingPlanItemBlock02 {
    float: right;
    text-align: right;
}

.trainingPlanItemTitle {
    margin-top: 30px;
    margin-bottom: 10px;
}

.trainingPlanItemTitle p {
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    padding-top: 60px;
}

.trainingPlanItemBlock01 .trainingPlanItemTitle p {
    background: url(../img/trainingPlanItemTitleIcon01.png) no-repeat top left;
    background-size: 53px;
}

.trainingPlanItemBlock02 .trainingPlanItemTitle p {
    background: url(../img/trainingPlanItemTitleIcon02.png) no-repeat top right;
    background-size: 53px;
}

.trainingPlanItemCont p {
    color: #ffffff;
    text-align: justify;
}


/* 课程设置&学历和学位证书 */

.courseDegree {
    padding: 30px 0 75px 0;
}

.courseDegreeItem {
    overflow: hidden;
    display: flex;
    margin-bottom: 55px;
}

.courseDegreeItem .courseDegreeItemBox {
    flex: 1;
}

.courseDegreeItem .courseDegreeItemBox01 {
    margin-right: 50px;
}

.courseDegreeItemTitle {
    padding: 100px 0;
    border-bottom: 14px solid #3c74cc;
}

.courseDegreeItemTitle p {
    font-size: 48px;
    font-weight: bold;
    line-height: 60px;
    color: #ffffff;
    text-align: center;
}

.courseDegreeItemBox01 .courseDegreeItemTitle {
    background: url(../img/courseDegreeItemTitleBg01.png) no-repeat center center;
    background-size: cover;
}

.courseDegreeItemBox02 .courseDegreeItemTitle {
    background: url(../img/courseDegreeItemTitleBg02.png) no-repeat center center;
    background-size: cover;
}

.courseDegreeItemCont {
    height: 180px;
    background: #f7f7f7;
}

.courseDegreeItemCont p {
    padding: 30px 30px 0 30px;
    text-align: justify;
}

.courseDegreeMOre {
    text-align: center;
}

.courseDegreeMOre a {
    display: inline-block;
}

.courseDegreeMOre a p {
    font-size: 20px;
    font-weight: bold;
    color: #24539c;
    display: block;
    padding: 0 77px 0 30px;
    line-height: 56px;
    border: solid 2px #24539c;
    border-radius: 13px;
    position: relative;
}

.courseDegreeMOre a p:after {
    content: '';
    position: absolute;
    top: 13px;
    right: 27px;
    width: 32px;
    height: 32px;
    background: url(../img/courseDegreeMOreIcon.png) no-repeat center right;
    background-size: 32px;
    -webkit-animation: ZoomInOut 1.5s infinite ease;
    -moz-animation: ZoomInOut 1.5s infinite ease;
    -o-animation: ZoomInOut 1.5s infinite ease;
    -ms-animation: ZoomInOut 1.5s infinite ease;
    animation: ZoomInOut 1.5s infinite ease;
}


/* 关于报考 */

.aboutRegistration {
    padding-bottom: 65px;
    background: url(../img/aboutRegistrationBg.png) no-repeat center top;
    background-size: cover;
}

.registrationConditions {
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

.registrationConditions .registrationConditionsLeft {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url(../img/aboutRegistrationImg.png) no-repeat center center;
    background-size: cover;
}

.registrationConditions .registrationConditionsRight {
    margin-left: 50%;
    background-color: #ffffff;
}

.registrationConditionsRightBox {
    padding: 40px 40px 40px 40px;
}

.registrationConditionsRightBox p {
    text-align: justify;
}

.registrationConditionsRightBox .registrationConditionsRightTitle {
    color: #24539c;
    font-size: 27px;
    line-height: 45px;
    font-weight: bold;
    padding-left: 56px;
    margin-bottom: 10px;
    background: url(../img/aboutRegistrationIcon01.png) no-repeat center left;
    background-size: 45px;
}

.registrationProcess {
    position: relative;
}

.registrationProcess .registrationProcessLeft {
    position: absolute;
    width: 240px;
    height: 100%;
    margin-right: 15px;
    background: #ffffff;
}

.registrationProcess .registrationProcessRight {
    margin-left: 255px;
    background: #ffffff;
}

.registrationProcessLeftBox {
    position: relative;
    width: 100%;
    height: 100%;
}

.registrationProcessLeftBox p {
    position: absolute;
    font-size: 27px;
    font-weight: bold;
    color: #24539c;
    width: 100%;
    padding-top: 70px;
    background: url(../img/aboutRegistrationIcon02.png) no-repeat center top;
    background-size: 48px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.registrationProcessRightBox {
    padding: 30px 25px;
}

.registrationProcessRightBox p span {
    font-weight: bold;
    font-size: 18px;
}

.registrationProcessRightBox .registrationProcessP1 span,
.registrationProcessRightBox .registrationProcessP2 span {
    font-size: 20px;
    color: #24539c;
    font-weight: bold;
}

.registrationProcessRightBox .registrationProcessP2 {
    margin-top: 30px;
}

.aboutRegistrationMark {
    margin-top: 50px;
}

.aboutRegistrationMark p {
    text-align: center;
    color: #ffffff;
}

.registrationProcessP1 a {
    color: #333333;
}

.registrationProcessP1 a:hover {
    color: #D94741;
}


/* 联考和复试 */

.examination {
    padding-bottom: 65px;
}

.examinationBlock {
    position: relative;
}

.examinationList {
    position: relative;
    z-index: 2;
}

.examinationList ul {
    display: flex;
}

.examinationList ul li {
    flex: 1;
}

.examinationList ul li:nth-child(1) {
    animation-delay: 0;
}

.examinationList ul li:nth-child(2) {
    animation-delay: 0.5s;
}

.examinationList ul li:nth-child(3) {
    animation-delay: 1s;
}

.examinationList ul li:nth-child(4) {
    animation-delay: 1.5s;
}

.examinationItem {
    margin: 0 30px;
}

.examinationImg img {
    max-width: 100%;
    margin: 0 auto;
}

.examinationCont p:nth-child(1) {
    color: #24539c;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 15px 0 15px 0;
}

.examinationCont p:nth-child(2) {
    text-align: center;
    line-height: 24px;
}

.examinationCont p:nth-child(2) span {
    display: block;
}

.examinationLine {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 70px;
    width: 100%;
    height: 10px;
    background-color: #e5e5e5;
}

.enrollmentPlanTable {
    width: 100%;
    text-align: center;
}

.enrollmentPlanTable tr {
    height: 92px;
}

.enrollmentPlanTable tr td {
    font-size: 20px;
    border-right: 2px solid #0b2b5b;
}

.enrollmentPlanTable tr td span {
    display: block;
}

.enrollmentPlanTable tr td:last-child {
    border-right: 0;
}

.enrollmentPlanTable tr:nth-child(odd) {
    background-color: #d8e6fc;
}

.enrollmentPlanTable tr:nth-child(even) {
    background-color: #bed2f1;
}

.enrollmentPlanTable tr:nth-child(1) {
    background-color: #24539c;
    height: 119px;
}

.enrollmentPlanTable tr:nth-child(1) td:nth-child(1) {
    width: 23.5%;
}

.enrollmentPlanTable tr:nth-child(1) td:nth-child(2) {
    width: 37.5%;
}

.enrollmentPlanTable tr:nth-child(1) td:nth-child(3) {
    width: 39%;
}

.enrollmentPlanTable tr:nth-child(1) td {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
}

.enrollmentPlanTable tr .enrollmentPlanTableTr02 span {
    display: inline;
}


/* 2023年招生计划 */

.enrollmentPlan {
    background: url(../img/enrollmentPlanBg.png) no-repeat center top;
    background-size: cover;
    padding-bottom: 75px;
}

.wonderfulHgBox .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}

.wonderfulHgSwiper .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    opacity: 1;
    transition: all ease 0.4s;
}

.wonderfulHgSwiper .swiper-pagination-bullet-active {
    width: 90px;
    height: 15px;
    background-color: #24539c;
    border-radius: 10px;
}

.wonderfulHgBox img {
    margin: 0 auto;
}


/* 联系我们 */

.contactUs {
    padding: 90px 0 80px 0;
    background: url(../img/contactUsBg.png) no-repeat center center;
    background-size: cover;
}

.contactUsBlock {
    overflow: hidden;
}

.contactUsBlock .contactUsLeft {
    width: 680px;
    float: left;
}

.contactUsBlock .contactUsRight {
    margin-left: 680px;
}

.contactUsIntro p {
    color: #ffffff;
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff;
}

.contactUsCont p {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
}

.contactUsCont p:last-child {
    margin-bottom: 0;
}

.contactUsCont p a {
    color: #ffffff;
}

.contactUsCont p a:hover {
    color: #D94741;
}

.contactUsCode {
    margin-top: 70px;
}

.contactUsCode img {
    width: 195px;
    margin: 0 auto;
}

.contactUsCode p {
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    margin-top: 10px;
}


/* 返回顶部 */

.backTop {
    width: 34px;
    height: 34px;
    background: rgba(1, 73, 228, 0.8);
    padding: 8px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    cursor: pointer;
    border-radius: 5px;
}

.backTop img {
    width: 100%;
}

.backTop p {
    display: none;
    color: #ffffff;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
}

.backTop:hover img {
    display: none;
}

.backTop:hover p {
    display: block;
}

@media (max-width:1366px) and (min-width:1200px) {
    .publicBox {
        width: 1180px;
        margin: 0 auto;
    }
    .menuBox {
        height: 70px;
    }
    .menuBox .menuBlock {
        width: 98%;
    }
    .menuBox .menuBlock .menuListBox ul .menuListItem .menuListItemLink {
        font-size: 18px;
        line-height: 40px;
        padding-top: 10px;
        padding-bottom: 17px;
    }
    .itemTitleBox {
        padding-top: 70px;
        margin-bottom: 40px;
    }
    .itemTitleBlock .itemTitleName {
        font-size: 42px;
    }
    .bannerBox {
        margin-top: 70px;
        padding: 13% 0 7% 0;
    }
    .bannerBlock .bannerTitleTop {
        width: 66%;
    }
    .bannerBlock .bannerTitleBottom {
        width: 69%;
    }
    .schoolIntroBlcok .schoolIntroTitle p {
        font-size: 22px;
    }
    .schoolIntro01 .schoolIntroRight .schoolIntroBlcok {
        padding: 30px;
    }
    .schoolIntro02 .schoolIntroRight .schoolIntroBlcok {
        padding: 30px;
    }
    .trainingPlanItemCont p {
        line-height: 28px;
    }
    .courseDegree {
        padding-bottom: 50px;
    }
    .courseDegreeItemTitle p {
        font-size: 40px;
    }
    .courseDegreeMOre a p {
        line-height: 45px;
    }
    .courseDegreeMOre a p:after {
        top: 7px;
    }
    .registrationConditions {
        margin-bottom: 15px;
    }
    .registrationConditionsRightBox .registrationConditionsRightTitle {
        font-size: 24px;
    }
    .registrationProcessLeftBox p {
        font-size: 24px;
        padding-top: 60px;
    }
    .aboutRegistrationMark {
        margin-top: 30px;
    }
    .contactUs {
        padding: 60px 0;
    }
    .contactUsCont p {
        font-size: 16px;
    }
    .contactUsCode {
        margin-top: 100px;
    }
    .contactUsCode img {
        width: 150px;
    }
    .contactUsCode p {
        font-size: 16px;
    }
}

@media (max-width: 1199px) and (min-width:768px) {
    .publicBox {
        width: 94%;
        margin: 0 3%;
    }
    .menuBox {
        position: fixed;
        width: 100%;
        height: 70px;
        background: #ffffff;
        border-top: none;
        box-shadow: none;
    }
    .menuIconBox {
        display: block;
    }
    .menuBox .menuIconSwitch {
        display: block;
        position: fixed;
        top: 0;
        right: 10px;
    }
    .menuBox .menuIconSwitch img {
        display: none;
        width: 40px;
        padding: 15px;
        cursor: pointer;
    }
    .menuBox .menuIconSwitch .menuIconClose {
        width: 40px;
        padding: 15px;
    }
    .menuBox .menuIconSwitch .active {
        display: block;
    }
    .menuBox .menuBlock .menuLogoBox {
        width: 100%;
        float: none;
        margin-right: 0;
        display: none;
    }
    .menuBox .menuBlock {
        width: 300px;
        margin-top: 70px;
        background: rgba(255, 255, 255, 1);
        display: none;
        position: fixed;
        right: 0;
        box-shadow: 0px 2px 13px 1px rgb(0 0 0 / 14%);
    }
    .menuBox .menuBlock .logoBox {
        width: 100%;
        background: #ffffff;
        border-top: 5px solid #01a6f6;
    }
    .menuBox .menuBlock .menuListBox ul .menuListItem:nth-child(5) {
        width: 100%;
    }
    .menuBox .menuBlock .logoBox img:nth-child(1) {
        width: 90%;
        margin: 15px 5%;
    }
    .menuBox .menuBlock .logoBox img:nth-child(2) {
        width: 60%;
        margin: 0 20%;
    }
    .menuBox .menuBlock .menuListBox {
        width: 100%;
        float: none;
    }
    .menuBox .menuBlock .menuListBox ul .menuListItem {
        width: 100%;
        float: none;
        text-align: center;
        padding: 0;
    }
    .menuBox .menuBlock .menuListBox ul li a {
        font-size: 20px;
        line-height: 50px;
        display: block;
    }
    .menuBox .menuBlock .menuListBox ul .menuListItem .menuListItemLink {
        display: block;
        line-height: 60px;
        font-size: 18px;
        padding-top: 0;
        border-bottom: none;
        padding-bottom: 0;
        color: #24539c;
    }
    .menuBox .menuBlock .menuListBox ul .menuListItem:hover .menuListItemLink,
    .menuBox .menuBlock .menuListBox ul .active .menuListItemLink {
        border-bottom: none;
        font-size: 20px;
        color: #ffffff;
        background: #24539c;
    }
    .menuBox .menuBlock .menuLogoBox img {
        width: 70%;
        margin: 30px 15% 30px 15%;
    }
    .menuBox .menuBlock .menuListBox ul {
        display: block;
    }
    .menuBox .menuBlock .menuListBox ul .active .menuListItemLink:after {
        display: none;
    }
    .menuBox .menuBlock .menuListBox ul .menuListItem:hover .menuListItemLink:after {
        display: none;
    }
    .menuBox .menuIconLogo {
        position: fixed;
        top: 0;
        left: 3%;
    }
    .menuBox .menuIconLogo img {
        display: block;
        width: auto;
        height: 42px;
        padding: 14px 0;
    }
    .menuBox .menuBlock .menuListBox ul div {
        display: block;
    }
    .menuBox .menuBlock .menuListBox ul div:nth-child(1) {
        margin-right: 0;
    }
    .bannerBox {
        margin-top: 70px;
        padding: 14% 0 11% 0;
    }
    .bannerBlock .bannerTitleTop {
        width: 74%;
        margin: 0 auto 5.5% auto;
    }
    .bannerBlock .bannerTitleBottom {
        width: 70%;
    }
    .backTop {
        width: 28px;
        height: 28px;
    }
    .itemTitleBox {
        padding-top: 40px;
        margin-bottom: 30px;
    }
    .itemTitleBlock .itemTitleName {
        font-size: 36px;
    }
    .itemTitleBlock span {
        margin-top: 10px;
    }
    .backTop p {
        line-height: 14px;
    }
    .schoolProfile {
        padding: 40px 0 0 0;
    }
    .schoolIntro {
        margin-bottom: 40px;
    }
    .schoolIntro01 .schoolIntroBox .schoolIntroLeft {
        width: 300px;
    }
    .schoolIntro01 .schoolIntroBox .schoolIntroRight {
        margin-left: 298px;
        padding-top: 15px;
    }
    .schoolIntroRight .schoolIntroBlcok {
        padding: 15px 20px 25px 20px;
    }
    .schoolIntroBlcok .schoolIntroCont p {
        font-size: 16px;
        line-height: 28px;
        text-indent: 2em;
    }
    .schoolIntroBlcok .schoolIntroCont p span {
        font-size: 18px;
    }
    .schoolIntroBlcok .schoolIntroTitle p {
        font-size: 20px;
        line-height: 36px;
        letter-spacing: 0;
        padding-left: 50px;
        padding-right: 20px;
    }
    .schoolIntro01 .schoolIntroBlcok .schoolIntroTitle p {
        background-size: 27px;
        background-position-x: 14px;
    }
    .schoolIntroBlcok .schoolIntroTitle:after {
        right: -72px;
        border-left: 36px solid #24539c;
        border-top: 36px solid transparent;
        border-right: 36px solid transparent;
    }
    .schoolIntro02 .schoolIntroBox .schoolIntroLeft {
        width: 300px;
    }
    .schoolIntro02 .schoolIntroBox .schoolIntroRight {
        margin-right: 298px;
        padding-top: 13px;
        position: relative;
    }
    .schoolIntro02 .schoolIntroBlcok .schoolIntroTitle p {
        background-size: 27px;
        background-position-x: 14px;
    }
    .schoolIntro01 .schoolIntroBox {
        padding-bottom: 25px;
        overflow-x: hidden;
    }
    .schoolIntro02 .schoolIntroBox {
        padding-bottom: 25px;
    }
    .schoolIntroBlcok .schoolIntroCont {
        margin-top: 10px;
    }
    .schoolIntro01 .schoolIntroRight:after {
        right: 47px;
        bottom: -29px;
        width: 52px;
        height: 52px;
    }
    .schoolIntro02 .schoolIntroRight:after {
        left: 47px;
        bottom: -29px;
        width: 52px;
        height: 52px;
    }
    .trainingPlanTitle {
        width: 30%;
    }
    .trainingPlan {
        padding: 30px 0;
    }
    .trainingPlanItem .trainingPlanItemBlock {
        width: 30%;
    }
    .trainingPlanItemCont p {
        line-height: 28px;
    }
    .trainingPlanBox {
        height: auto;
        min-height: 300px;
        padding: 30px 0;
    }
    .trainingPlanItemTitle {
        margin-top: 0;
    }
    .courseDegreeItemTitle p {
        font-size: 36px;
    }
    .courseDegreeItemTitle {
        padding: 70px 0;
        border-bottom: 6px solid #3c74cc;
    }
    .courseDegreeItemCont p {
        padding: 15px 20px 0 20px;
        line-height: 28px;
    }
    .courseDegreeItem {
        margin-bottom: 30px;
    }
    .courseDegreeMOre a p {
        font-size: 18px;
        line-height: 45px;
        padding: 0 55px 0 20px;
    }
    .courseDegreeMOre a p:after {
        top: 6px;
        right: 15px;
    }
    .courseDegree {
        padding-bottom: 40px;
    }
    .registrationConditionsRightBox {
        padding: 25px;
    }
    .registrationConditionsRightBox p {
        line-height: 28px;
    }
    .registrationConditionsRightBox .registrationConditionsRightTitle {
        font-size: 22px;
        line-height: 36px;
        padding-left: 40px;
        background-size: 32px;
    }
    .registrationConditions {
        margin-bottom: 10px;
    }
    .registrationProcessLeftBox p {
        font-size: 22px;
        line-height: 36px;
        padding-top: 45px;
        background-size: 38px;
    }
    .registrationProcess .registrationProcessLeft {
        width: 180px;
        margin-right: 10px;
    }
    .registrationProcess .registrationProcessRight {
        margin-left: 190px;
    }
    .registrationProcessRightBox {
        padding: 25px;
    }
    .registrationProcessRightBox p {
        line-height: 28px;
    }
    .aboutRegistrationMark {
        margin-top: 20px;
    }
    .aboutRegistration {
        padding-bottom: 40px;
    }
    .examinationCont p:nth-child(1) {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .examinationItem {
        margin: 0 10px;
    }
    .examination {
        padding-bottom: 40px;
    }
    .enrollmentPlan {
        padding-bottom: 50px;
    }
    .enrollmentPlanTable tr:nth-child(1) {
        height: 60px;
    }
    .enrollmentPlanTable tr {
        height: 60px;
    }
    .enrollmentPlanTable tr td {
        font-size: 16px;
        line-height: 28px;
    }
    .enrollmentPlanTable tr:nth-child(1) td:nth-child(2) {
        width: 33.5%;
    }
    .enrollmentPlanTable tr:nth-child(1) td {
        font-size: 20px;
    }
    .enrollmentPlanTableTr {
        padding: 8px 5px;
        text-align: left;
    }
    .wonderfulHg .swiper-container-horizontal>.swiper-pagination-bullets,
    .wonderfulHg .swiper-pagination-custom,
    .wonderfulHg .swiper-pagination-fraction {
        bottom: 0;
    }
    .wonderfulHgSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    .wonderfulHgBox .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 4px;
    }
    .wonderfulHgSwiper .swiper-pagination-bullet-active {
        width: 30px;
    }
    .contactUsCont p {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .contactUs {
        padding: 50px 0;
    }
    .contactUsCode img {
        width: 150px;
    }
    .contactUsCode p {
        font-size: 16px;
    }
}

@media (max-width: 1025px) and (min-width:768px) {
    .examinationItem {
        margin: 0 20px;
    }
    .examinationImg img {
        width: 120px;
    }
    .examinationLine {
        top: 55px;
    }
    .examinationCont p:nth-child(2) span {
        display: inline;
    }
}

@media (max-width: 767px) {
    .publicBox {
        width: 94%;
        margin: 0 3%;
    }
    .menuBox {
        width: 40%;
        background: none;
        border-top: none;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.14);
    }
    .menuIconBox {
        display: block;
    }
    .menuBox .menuIconBox {
        display: block;
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0px 2px 13px 1px rgba(0, 0, 0, 0.14);
        z-index: 2;
    }
    .menuBox .menuIconBox .menuIconSwitch {
        float: right;
    }
    .menuBox .menuIconBox .menuIconSwitch img {
        display: none;
        width: 34px;
        padding: 13px;
    }
    .menuBox .menuIconBox .menuIconSwitch img.active {
        display: block;
    }
    .menuBox .menuIconBox .menuIconSwitch .menuIconClose {
        width: 34px;
        padding: 13px;
    }
    .menuBox .menuIconBox .menuIconLogo {
        height: 60px;
    }
    .menuBox .menuIconBox .menuIconLogo img {
        height: 42px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding-left: 3%;
    }
    .menuBox .menuBlock {
        width: 40%;
        top: 60px;
        right: 0;
        background: rgba(255, 255, 255, 0.9);
        display: none;
        position: fixed;
    }
    .menuBox .menuBlock .menuLogoBox {
        display: none;
    }
    .menuBox .menuBlock .logoBox {
        width: 100%;
        background: #ffffff;
    }
    .menuBox .menuBlock .menuListBox ul .menuListItem:nth-child(5) {
        width: 100%;
    }
    .menuBox .menuBlock .logoBox img:nth-child(1) {
        width: 90%;
        margin: 15px 5%;
    }
    .menuBox .menuBlock .logoBox img:nth-child(2) {
        width: 60%;
        margin: 0 20%;
    }
    .menuBox .menuBlock .menuListBox {
        width: 100%;
    }
    .menuBox .menuBlock .menuListBox ul .menuListItem {
        width: 100%;
        float: none;
        text-align: center;
        padding: 0;
    }
    .menuBox .menuBlock .menuListBox ul li a {
        font-size: 20px;
        line-height: 50px;
        display: block;
    }
    .menuBox .menuBlock .menuListBox ul .menuListItem .menuListItemLink {
        line-height: 45px;
        font-size: 16px;
        padding-bottom: 0;
        padding-top: 0;
        display: block;
        font-weight: normal;
        color: #24539c;
    }
    .menuBox .menuBlock .menuListBox ul .menuListItem:hover .menuListItemLink,
    .menuBox .menuBlock .menuListBox ul .active .menuListItemLink {
        padding-bottom: 0;
        padding-top: 0;
        border-bottom: none;
        color: #ffffff;
        background: #24539c;
    }
    .menuBox .menuBlock .menuListBox ul li a {
        font-size: 16px;
    }
    .menuBox .menuBlock .menuListBox ul {
        display: block;
    }
    .menuBox .menuBlock .menuListBox ul li:hover .menuListItemLink:after {
        display: none;
    }
    .menuBox .menuBlock .menuListBox ul .active .menuListItemLink:after {
        display: none;
    }
    .menuBox .menuBlock .menuListBox ul div {
        display: block;
    }
    .menuBox .menuBlock .menuListBox ul div:nth-child(1) {
        margin-right: 0;
    }
    .itemTitleBox {
        padding-top: 25px;
        margin-bottom: 20px;
    }
    .itemTitleBlock .itemTitleName {
        font-size: 24px;
        line-height: 36px;
    }
    .itemTitleBlock span {
        margin-top: 0;
    }
    .bannerBox {
        margin-top: 60px;
        padding: 15% 0 8% 0;
    }
    .bannerBlock .bannerTitleTop {
        width: 80%;
        margin-bottom: 6%;
    }
    .bannerBlock .bannerTitleBottom {
        width: 86%;
        margin-bottom: 8%;
    }
    .bannerBlock .bannerBtn {
        width: 10%;
        width: 5%;
    }
    .backTop p {
        line-height: 14px;
    }
    .backTop {
        width: 28px;
        height: 28px;
        bottom: 20px;
        right: 10px;
        padding: 5px;
    }
    .schoolProfile {
        padding-bottom: 20px;
    }
    .schoolIntro {
        margin-top: 0;
        margin-bottom: 0;
    }
    .schoolIntro01 {
        margin-bottom: 20px;
    }
    .schoolIntro01 .schoolIntroBox .schoolIntroLeft,
    .schoolIntro02 .schoolIntroBox .schoolIntroLeft {
        width: 100%;
        float: none;
        height: 300px;
        overflow: hidden;
    }
    .schoolIntroLeft .schoolIntroImg_pc {
        display: none;
    }
    .schoolIntroLeft .schoolIntroImg_m {
        display: block;
        width: 100%;
    }
    .schoolIntro01 .schoolIntroBox .schoolIntroRight,
    .schoolIntro02 .schoolIntroBox .schoolIntroRight {
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
    }
    .schoolIntroRight .schoolIntroBlcok {
        padding: 15px 0 0 0;
        border: 0;
    }
    .schoolIntroBlcok .schoolIntroTitle p {
        font-size: 18px;
        line-height: 36px;
        letter-spacing: 0;
        padding-left: 30px;
        padding-right: 20px;
    }
    .schoolIntro01 .schoolIntroBlcok .schoolIntroTitle p,
    .schoolIntro02 .schoolIntroBlcok .schoolIntroTitle p {
        background-size: 20px;
        background-position-x: 5px;
    }
    .schoolIntroBlcok .schoolIntroTitle:after {
        right: -64px;
        border-left: 28px solid #24539c;
        border-top: 36px solid transparent;
        border-right: 36px solid transparent;
    }
    .schoolIntro01 .schoolIntroRight:before,
    .schoolIntro01 .schoolIntroRight:after,
    .schoolIntro02 .schoolIntroRight:before,
    .schoolIntro02 .schoolIntroRight:after {
        display: none;
    }
    .schoolIntroBlcok .schoolIntroCont p {
        font-size: 14px;
        line-height: 28px;
        text-indent: 2em;
    }
    .schoolIntro02 .schoolIntroRight .schoolIntroBlcok {
        padding: 15px 0 0 0;
    }
    .schoolIntro01 .schoolIntroBox {
        padding-bottom: 0;
    }
    .schoolIntroBlcok .schoolIntroCont {
        margin-top: 10px;
    }
    .trainingPlan {
        padding: 0 0 30px 0;
    }
    .trainingPlan .itemTitleBox {
        display: block;
    }
    .trainingPlanTitle {
        display: none;
    }
    .trainingPlanBox {
        height: auto;
        padding: 25px 0;
    }
    .trainingPlanItem .trainingPlanItemBlock {
        width: 100%;
    }
    .trainingPlanItem .trainingPlanItemBlock01 {
        float: none;
        margin-bottom: 15px;
    }
    .trainingPlanItem .trainingPlanItemBlock02 {
        float: none;
        text-align: left;
    }
    .trainingPlanItemTitle {
        margin-top: 0;
        margin-bottom: 0;
    }
    .trainingPlanItemTitle p {
        padding-top: 0;
        line-height: 36px;
        padding-left: 35px;
    }
    .trainingPlanItemBlock01 .trainingPlanItemTitle p {
        background: url(../img/trainingPlanItemTitleIcon01.png) no-repeat center left;
        background-size: 30px;
    }
    .trainingPlanItemBlock02 .trainingPlanItemTitle p {
        background: url(../img/trainingPlanItemTitleIcon02.png) no-repeat center left;
        background-size: 30px;
    }
    .trainingPlanItemCont p {
        font-size: 14px;
        line-height: 28px;
        text-indent: 2em;
    }
    .courseDegree {
        padding: 10px 0 30px 0;
    }
    .courseDegreeItem {
        display: block;
        margin-bottom: 25px;
    }
    .courseDegreeItem .courseDegreeItemBox01 {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .courseDegreeItemTitle p {
        font-size: 24px;
        line-height: 36px;
    }
    .courseDegreeItemTitle {
        padding: 50px 0;
        border-bottom: 5px solid #3c74cc;
    }
    .courseDegreeItemCont p {
        padding: 25px 20px;
        font-size: 14px;
        line-height: 28px;
        text-indent: 2em;
    }
    .courseDegreeItemCont {
        height: auto;
    }
    .courseDegreeMOre a p {
        font-size: 16px;
        font-weight: normal;
        line-height: 40px;
        padding: 0 45px 0 15px;
        border: solid 1px #24539c;
    }
    .courseDegreeMOre a p:after {
        top: 5px;
        right: 6px;
    }
    .registrationConditions .registrationConditionsLeft {
        position: relative;
        width: 100%;
        height: 150px;
    }
    .registrationConditions .registrationConditionsRight {
        margin-left: 0;
    }
    .registrationConditionsRightBox {
        padding: 15px 10px;
    }
    .registrationConditionsRightBox p {
        font-size: 14px;
        line-height: 28px;
        text-indent: 2em;
    }
    .registrationConditionsRightBox .registrationConditionsRightTitle {
        text-indent: 0;
        font-size: 20px;
        line-height: 36px;
        padding-left: 35px;
        background-size: 30px;
        margin-bottom: 0;
    }
    .registrationConditions {
        margin-bottom: 10px;
    }
    .registrationProcess .registrationProcessLeft {
        width: 100%;
        height: auto;
        position: relative;
        margin-right: 0;
        padding: 15px 10px 0 10px;
    }
    .registrationProcess .registrationProcessRight {
        margin-left: 0;
    }
    .registrationProcessRightBox {
        padding: 0 10px 15px 10px;
    }
    .registrationProcessLeftBox p {
        position: relative;
        font-size: 20px;
        line-height: 36px;
        text-align: left;
        padding-left: 35px;
        padding-top: 0;
        background: url(../img/aboutRegistrationIcon02.png) no-repeat center left;
        background-size: 26px;
        top: 0;
        transform: translateY(0);
    }
    .registrationProcessRightBox .registrationProcessP1 span,
    .registrationProcessRightBox .registrationProcessP2 span {
        font-size: 18px;
    }
    .registrationProcessRightBox p span {
        font-size: 16px;
    }
    .registrationProcessRightBox p {
        font-size: 14px;
        line-height: 28px;
    }
    .registrationProcessRightBox .registrationProcessP2 {
        margin-top: 15px;
    }
    .aboutRegistrationMark {
        margin-top: 15px;
    }
    .aboutRegistrationMark p {
        text-align: left;
        font-size: 14px;
        line-height: 28px;
    }
    .aboutRegistration {
        padding-bottom: 30px;
    }
    .examinationLine {
        display: none;
    }
    .examinationList ul {
        display: block;
    }
    .examinationList ul li {
        margin-bottom: 10px;
    }
    .examinationList ul li:nth-child(4) {
        margin-bottom: 0;
    }
    .examinationImg {
        display: none;
    }
    .examinationItem {
        margin: 0;
    }
    .examinationCont p:nth-child(1) {
        text-align: left;
        margin: 0 0 0 0;
        font-size: 18px;
        padding: 10px 0 10px 35px;
    }
    .examinationCont p:nth-child(2) {
        text-align: left;
        font-size: 14px;
    }
    .examinationCont p:nth-child(1) {
        background: url(../img/examinationIcon01.png) no-repeat left center;
        background-size: 30px;
    }
    .examinationCont p:nth-child(2) span {
        display: inline;
    }
    .examination {
        padding-bottom: 30px;
    }
    .enrollmentPlanTable tr td {
        font-size: 14px;
        line-height: 24px;
        border-right: 1px solid #0b2b5b;
        padding: 5px;
    }
    .enrollmentPlanTable tr:nth-child(1) td {
        font-size: 16px;
        line-height: 24px;
    }
    .enrollmentPlanTable tr {
        height: 50px;
    }
    .enrollmentPlanTable tr .enrollmentPlanTableTr02 span {
        display: block;
    }
    .enrollmentPlanTable tr:nth-child(1) {
        height: 60px;
    }
    .enrollmentPlanTableTr03 {
        text-align: left;
    }
    /* .enrollmentPlanTableTr03 span {
        display: block;
    } */
    .wonderfulHg .swiper-container-horizontal>.swiper-pagination-bullets,
    .wonderfulHg .swiper-pagination-custom,
    .wonderfulHg .swiper-pagination-fraction {
        bottom: 0;
        line-height: 24px;
    }
    .wonderfulHgSwiper .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }
    .wonderfulHgBox .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 4px;
    }
    .wonderfulHgSwiper .swiper-pagination-bullet-active {
        width: 20px;
    }
    .contactUs {
        padding: 30px 0 30px 0;
    }
    .contactUsBlock .contactUsLeft {
        width: 100%;
        float: none;
    }
    .contactUsBlock .contactUsRight {
        margin-left: 0;
    }
    .contactUsIntro p {
        font-size: 22px;
        padding-bottom: 0;
    }
    .contactUsCont p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 8px;
    }
    .contactUsCode {
        margin-top: 20px;
    }
    .contactUsCode img {
        width: 150px;
    }
    .contactUsCode p {
        font-size: 14px;
        margin-top: 0;
    }
}