    /* PC端头部样式 */

    .header {
        background: url(../images/navBg.png) no-repeat;
        background-size: 100% 100%;
        position: fixed;
        z-index: 100;
        width: 100%;
        max-width: 1920px;
        padding: 0 5%;
        box-sizing: border-box;
    }

    .header>.nav {
        height: 93px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .header .left {
        float: left;
        padding-top: 21px;
        box-sizing: border-box;
    }

    .header .right {
        float: right;
        height: 100%;
        width: 75%;
    }

    .header .right ul {
        display: flex;
        justify-content: space-between;
        height: 100%;
        padding-top: 28px;
        box-sizing: border-box;
    }

    .header .right ul li {
        float: left;
        font-size: 18px;
        cursor: pointer;
        position: relative;
    }

    .header .right ul li a {
        display: block;
        color: #ffffff;
    }

    .header .right ul li:hover a,
    .header .right ul li.active a {
        color: #f7b440;
        transition: all 0.2s;
    }

    .header .right ul li:hover .line,
    .header .right ul li.active .line {
        opacity: 1;
        transition: all 0.3s;
    }

    .header .right ul li:last-child {
        padding-right: 0;
    }

    .header .right ul li:last-child a .login {
        vertical-align: middle;
        margin-right: 5px;
    }

    .header .right ul li:last-child a em {
        vertical-align: bottom;
    }

    .header .right ul li .line {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #f7b440;
        margin: 0 auto;
        opacity: 0;
        transition: all 0.3s;
        position: absolute;
        bottom: 13px;
    }

    /* 手机头部样式 */

    #mobile_head {
        display: none;
        position: relative;
        position: fixed;
        z-index: 100;
        width: 100%;
        left: 0;
        top: 0;
    }

    .mobile_header {
        padding: 0.2rem 0;
        background-color: rgba(51, 51, 51, 0.98);
        box-shadow: 0px 1px 16px 0px rgba(4, 0, 0, 0.9);
    }

    .mobile_header>.cont {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile_header>.cont .left {
        display: block;
        width: 4rem;
    }

    .mobile_header>.cont .collapse-btn {
        display: block;
        width: 0.6rem;
        -webkit-transition: all ease 1s;
        -o-transition: all ease 1s;
        -moz-transition: all ease 1s;
        transition: all ease 1s
    }

    .mobile_header>.cont .collapse-btn.active img {
        display: none;
        -webkit-transition: all ease 1s;
        -o-transition: all ease 1s;
        -moz-transition: all ease 1s;
        transition: all ease 1s
    }

    .mobile_header .collapse-btn.active .icon {
        display: block;
        width: 0.6rem;
        height: 3px;
        -webkit-transform: translateY(-70%);
        -moz-transform: translateY(-70%);
        -ms-transform: translateY(-70%);
        -o-transform: translateY(-70%);
        transform: translateY(-70%);
        background-color: transparent;
        position: relative;
        -webkit-transition: all ease 1s;
        -o-transition: all ease 1s;
        -moz-transition: all ease 1s;
        transition: all ease 1s
    }

    .mobile_header .collapse-btn.active .icon::before {
        content: "";
        width: 0.6rem;
        height: 3px;
        position: absolute;
        background-color: #ffffff;
        top: 0.05rem;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: top .5s ease, -webkit-transform .5s ease-out .5s;
        transition: top .5s ease, -webkit-transform .5s ease-out .5s;
        -o-transition: top .5s ease, -o-transform .5s ease-out .5s;
        -moz-transition: top .5s ease, transform .5s ease-out .5s, -moz-transform .5s ease-out .5s;
        transition: top .5s ease, transform .5s ease-out .5s;
        transition: top .5s ease, transform .5s ease-out .5s, -webkit-transform .5s ease-out .5s, -moz-transform .5s ease-out .5s, -o-transform .5s ease-out .5s
    }

    .mobile_header .collapse-btn.active .icon::after {
        content: "";
        width: 0.6rem;
        height: 3px;
        position: absolute;
        background-color: #ffffff;
        bottom: -0.05rem;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: bottom .5s ease, -webkit-transform .5s ease-out .5s;
        transition: bottom .5s ease, -webkit-transform .5s ease-out .5s;
        -o-transition: bottom .5s ease, -o-transform .5s ease-out .5s;
        -moz-transition: bottom .5s ease, transform .5s ease-out .5s, -moz-transform .5s ease-out .5s;
        transition: bottom .5s ease, transform .5s ease-out .5s;
        transition: bottom .5s ease, transform .5s ease-out .5s, -webkit-transform .5s ease-out .5s, -moz-transform .5s ease-out .5s, -o-transform .5s ease-out .5s
    }

    #mobile_head .nav {
        width: 2.9rem;
        background-color: rgba(51, 51, 51, 0.98);
        position: absolute;
        right: 0;
        top: 1rem;
        z-index: 100;
        display: none;
    }

    #mobile_head .nav .list li {
        text-align: right;
        font-size: 0.32rem;
        color: #ffffff;
        margin: 0.4rem 0;
        position: relative;
        padding-right: 0.5rem;
    }

    #mobile_head .nav .list li:hover::after,
    #mobile_head .nav .list li.active::after {
        content: "";
        width: 3px;
        height: 100%;
        background: #f7b440;
        position: absolute;
        right: 0;
    }

    #mobile_head .nav .list li:hover,
    #mobile_head .nav .list li.active,
    #mobile_head .nav .list li:hover a,
    #mobile_head .nav .list li.active a {
        color: #f7b440;
    }

    #mobile_head .nav .list li a {
        color: #ffffff;
    }

    /* banner样式 */

    .bannerBox {
        overflow: hidden;
        position: relative;
    }

    .aniBanner {
        display: block;
        width: 100%;
        animation: ZoomInOut 5s infinite linear;
        position: relative;
    }

    .aniBanner img {
        width: 100%;
    }

    /* 质量认证 */

    #qualityBox {
        padding: 40px 0 130px;
        box-sizing: border-box;
        background: url(../images/sixAuthoritiesImg.png) no-repeat;
        background-size: cover;
    }

    #qualityBox .sixAuthoritiesTitle {
        font-size: 34px;
        color: #333333;
        line-height: 1.27;
        text-align: center;
    }

    #qualityBox .text_box {
        margin: 50px 0;
        text-align: center;
    }

    .wtable {
        width: 100%;
        border-collapse: collapse;
        text-align: center;
        font-size: 18px;
    }

    .wtable td {
        border: 1px solid #fff;
        color: #fff;
        padding: 15px;
    }

    @-webkit-keyframes ZoomInOut {
        0% {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -o-transform: scale(1);
        }

        50% {
            -webkit-transform: scale(1.05);
            -moz-transform: scale(1.05);
            -o-transform: scale(1.05);
        }

        100% {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -o-transform: scale(1);
        }
    }

    @keyframes ZoomInOut {
        0% {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -o-transform: scale(1);
        }

        50% {
            -webkit-transform: scale(1.05);
            -moz-transform: scale(1.05);
            -o-transform: scale(1.05);
        }

        100% {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -o-transform: scale(1);
        }
    }

    .bannerTitleBlock {
        width: 62%;
        position: absolute;
        left: 19%;
        top: 42%;
    }

    .bannerTitleBlock .bannerTitle,
    .mobileBannerTitleBlock .bannerTitle {
        /* position: absolute; */
        /* top: 0; */
        width: 100%;
        animation-delay: 0.5;
        animation-duration: 1.5s;
    }

    .bannerTitleBlock .bannerTitleSub {
        /* position: relative; */
        top: 50px;
        width: 80%;
        margin-left: 10%;
        margin-top: 40px;
        animation-delay: 0.5;
        animation-duration: 1.5s;
    }

    .mobileBannerTitleBlock {
        display: none;
    }

    .mobileBannerTitleBlock {
        width: 80%;
        position: absolute;
        margin-left: 10%;
        margin-top: -32%;
        overflow: hidden;
    }

    .mobileBannerTitleBlock .bannerTitleSub {
        width: 90%;
        margin-left: 5%;
        margin-top: 0.2rem;
        animation-delay: 0.5;
        animation-duration: 1.5s;
    }

    /* 标题样式 */

    #title {
        text-align: center;
        padding: 40px 0;
    }

    #title .t {
        font-family: 'YouSheBiaoTiHei';
        font-size: 50px;
        /* font-weight: 550; */
        color: #f8b62d;
        line-height: 1.1;
    }

    #title.blackColor .t {
        color: #373737;
    }

    #title .line {
        margin: 0 auto;
        display: block;
        width: 40px;
        height: 3px;
        background-color: rgb(248, 182, 45);
    }

    #title.blackColor .line {
        background-color: #373737;
    }

    #title .sub {
        font-family: Arial;
        color: #f8b62d;
        font-size: 20px;
        font-style: italic;
    }

    #title.blackColor .sub {
        color: #373737;
    }

    /* 项目介绍 */

    #b1 {
        background: url(../images/projectBanner.png) no-repeat;
        background-size: 100% 100%;
        padding: 80px 0 100px;
        margin-top: -130px;
        position: relative;
        z-index: 1;
    }

    .projectIntroBlock .projectIntroImg {
        width: 28%;
        float: left;
        animation-delay: 0.5s;
        animation-duration: 1.5s;
        box-sizing: border-box;
    }

    .projectIntroBlock .projectIntroCont {
        width: 68%;
        float: right;
        font-size: 20px;
        line-height: 45px;
        color: #ffffff;
        animation-delay: 1s;
        animation-duration: 1.5s;
        box-sizing: border-box;
        text-align: justify;
    }

    .projectIntroItemBox p:nth-child(1),
    .projectIntroItemBox ul:nth-child(2) {
        animation-delay: 1s;
        animation-duration: 1.5s;
    }

    .projectIntroItemBox p:nth-child(3),
    .projectIntroItemBox ul:nth-child(4) {
        animation-delay: 1.5s;
        animation-duration: 1.5s;
    }

    /* 页面中所有带三角的小标题 */

    .projectIntroItemTitle {
        background: url(../images/triangleYellow.png) no-repeat left center;
        font-size: 22px;
        font-weight: bold;
        line-height: 50px;
        color: #f8b62d;
        padding-left: 30px;
        margin-top: 30px;
    }

    /* 页面中所有带三角的小标题 */

    .projectIntroItemBox .projectIntroItemList01 {
        width: 100%;
        overflow: hidden;
    }

    .projectIntroItemBox .projectIntroItemList01 a {
        display: block;
        width: 30%;
        float: left;
        text-decoration: none;
        margin-bottom: 20px;
        position: relative;
    }

    .projectIntroItemBox .projectIntroItemList01 .top1 {
        width: 37%;
    }

    @media (max-width:700px) {
        .projectIntroItemBox .projectIntroItemList01 .top1 {
            width: 63%;
        }
    }

    /* .projectIntroItemBox .projectIntroItemList01 a:nth-child(2), */
    .projectIntroItemBox .projectIntroItemList01 a:nth-child(3) {
        margin: 0 5%;
    }

    .projectIntroItemBox .projectIntroItemList01 a li {
        text-align: center;
        border: solid 1px #f8b62d;
        font-size: 20px;
        line-height: 60px;
        border-radius: 100px;
        cursor: pointer;
        text-decoration: none;
        color: #f8b62d;
        position: relative;
        z-index: 10;
    }

    .projectIntroItemBox .projectIntroItemList01 a li:hover {
        color: #373737;
    }

    .projectIntroItemBox .projectIntroItemList01 a:before,
    .projectIntroItemBox .projectIntroItemList01 a:after {
        content: "";
        position: absolute;
        height: 100%;
        width: 0;
        top: 0;
        background-color: #f8b62d;
        -webkit-transition: all .4s;
        transition: all .4s;
        border-radius: 100px;
    }

    .projectIntroItemBox .projectIntroItemList01 a:hover:before,
    .projectIntroItemBox .projectIntroItemList01 a:hover:after {
        width: 100%;
    }

    .projectIntroItemBox .projectIntroItemList01 a:nth-child(4) li {
        margin-right: 0;
    }

    /* 项目特色 */

    #b2 {
        background: url(../images/projectFeaturesBanner.png) no-repeat top center;
        background-size: 100% 100%;
        background-size: cover;
        padding: 100px 0 177px;
        margin-top: -120px;
    }

    #b2 .tab_nav {
        margin-bottom: 30px;
        position: relative;
        z-index: 10;
    }

    #b2 .tab_nav li {
        float: left;
        width: 25%;
        padding: 20px 0;
        background-color: rgb(126, 126, 126);
        font-size: 26px;
        color: #333333;
        font-weight: bold;
        text-align: center;
        border-right: 2px solid rgb(126, 126, 126);
        cursor: pointer;
        position: relative;
        transition: all 0.2s;
        box-sizing: border-box;
    }

    #b2 .tab_nav li p {
        margin-top: 10px;
    }

    #b2 .tab_nav li .sanjiao {
        width: 0;
        height: 0;
        overflow: hidden;
        font-size: 0;
        /*是因为, 虽然宽高度为0, 但在IE6下会具有默认的 */
        line-height: 0;
        /* 字体大小和行高, 导致盒子呈现被撑开的长矩形 */
        border-width: 20px;
        border-style: solid dashed dashed dashed;
        /*IE6下, 设置余下三条边的border-style为dashed,即可达到透明的效果*/
        border-color: #f8b62d transparent transparent transparent;
        position: absolute;
        left: 50%;
        margin-left: -20px;
        bottom: -40px;
        opacity: 0;
        transition: all 0.2s;
    }

    #b2 .tab_nav li.active {
        background: #f8b62d;
        transition: all 0.2s;
        color: #333333;
    }

    #b2 .tab_nav li.active .sanjiao {
        opacity: 1;
        transition: all 0.2s;
    }

    #b2 .contentbox {
        background-color: rgba(9, 9, 9, 0.68)
    }

    #b2 .items {
        height: 373px;
        height: 190px;
    }

    #b2 .items .item {
        display: none;
        padding: 40px 0px 80px;
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }

    #b2 .items .item p.p1 {
        font-size: 20px;
        color: #ffffff;
        line-height: 1.875;
        text-align: justify;
        margin-bottom: 25px;
        line-height: 2.5;
        text-align: justify;
    }

    /* 在线宣讲 */

    #b3 {
        background: url(../images/onlinePresentationBanner.png) no-repeat;
        background-size: cover;
        padding: 0px 0 177px;
    }

    #b3 .swiper-pagination {
        display: none;
        width: 100%;
        text-align: center;
        margin-top: 0.1rem;
    }

    #b3 .swiper-pagination .swiper-pagination-bullet {
        width: 0.15rem;
        height: 0.15rem;
        display: inline-block;
        border-radius: 100%;
        background: #9d9d9d;
        opacity: .2;
        margin: 0 0.1rem;
    }

    #b3 .swiper-pagination .swiper-pagination-bullet-active {
        opacity: 1;
        background: #f8b62d;
        width: 0.4rem;
        border-radius: 10px;
    }

    #b3 .swiper_img {
        position: relative;
    }

    #b3 .swiper-button-prev,
    #b3 .swiper-container-rtl .swiper-button-next {
        width: 35px;
        height: 35px;
        background: url(../images/arrowLeft.png) no-repeat;
        background-size: 100% 100%;
    }

    #b3 .swiper-button-next,
    #b3 .swiper-container-rtl .swiper-button-prev {
        width: 35px;
        height: 35px;
        background: url(../images/rightArrow.png) no-repeat;
        background-size: 100% 100%;
    }

    #b3 .swiper-slide {
        width: 640px;
        cursor: pointer;
    }

    #b3 .swiper-slide .videoBox {
        width: 100%;
    }

    .videoBlack {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background-color: rgba(0, 0, 0, 0.569);
    }

    #b3 .swiper-slide .bofang {
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -28px;
        margin-top: -28px;
        width: 56px;
        height: 56px;
    }

    #b3 .swiper-slide .bofang .play2 {
        display: none;
    }

    #b3 .swiper-slide:hover .bofang .play1 {
        display: none;
    }

    #b3 .swiper-slide:hover .bofang .play1 {
        display: none;
    }

    #b3 .swiper-slide:hover .bofang .play2 {
        display: block;
        animation: rotate 2s infinite;
    }

    #b3 .swiper-slide .video-title {
        color: #fff;
        background-color: #4d4d4d;
        text-align: center;
        font-size: 16px;
        padding: 10px 0;
        position: relative;
        z-index: 210;
    }

    /* 旋转动画 */

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @-webkit-keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @-moz-keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @-ms-keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    /* 宣讲申请 提前批面试批次申请*/

    #b4 {
        background: url(../images/preachingApplicationBanner.png) no-repeat;
        background-size: cover;
        padding: 60px 0 80px;
        margin-top: -70px;
    }

    #b6 {
        background: url(../images/earlyRoundApplicationBg.png) no-repeat;
        background-size: cover;
        padding: 60px 0 120px;
        margin-top: -90px;
    }

    #b4 .zu {
        font-size: 20px;
        color: #000;
        line-height: 2;
        text-align: justify;
        margin-top: 30px;
    }

    #b4 .table,
    #b6 .table {
        width: 100%;
        text-align: center;
        border-collapse: collapse;
        font-size: 20px;
        border-radius: 38px;
        overflow: hidden;
    }

    #b4 .table tr th {
        width: 30%;
    }

    #b4 .table tr th,
    #b6 .table tr th {
        background-color: #f8b62d;
        color: #373737;
        text-align: center;
        padding: 18px 0;
    }

    #b4 .table tr th p,
    #b6 .table tr th p {
        border-right: 2px solid rgb(55, 55, 55);
    }

    #b4 .table tr td,
    #b6 .table tr td {
        padding: 18px 0;
        line-height: 1.5;
        background-color: rgb(55, 55, 55);
        color: #ffffff;
    }

    #b4 .table tr:nth-child(2n+1) td,
    #b6 .table tr:nth-child(2n+1) td {
        background-color: #777574;
    }

    #b4 .table tr td a,
    #b6 .table tr td a {
        display: inline-block;
        color: #f8b62d;
        width: 120px;
        height: 38px;
        line-height: 37px;
        border: 1px solid #f8b62d;
        border-radius: 100px;
    }

    #b4 .table tr td a:hover,
    #b6 .table tr td a:hover {
        background: #f8b62d;
        color: #373737;
    }

    #b6 .tips {
        font-size: 20px;
        color: #ffffff;
        line-height: 2;
        text-align: justify;
        margin-top: 40px;
    }

    /* 下载按钮 */

    #b4 .downloadLink {
        display: inline-block;
        padding: 7px 92px 11px;
        border-radius: 100px;
        font-size: 36px;
        color: #373737;
        background: #f8b62d;
        font-weight: bold;
        text-align: center;
        margin: 50px auto;
        position: relative;
        /* z-index: 1; */
        border: none;
        box-sizing: border-box;
    }

    #b4 .downloadLink::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0;
        top: 0;
        left: 0;
        background: #373737;
        -webkit-transition: all .9s;
        transition: all .9s;
        border-radius: 30px;
        /* z-index: -1; */
    }

    #b4 .downloadLink::after {
        content: "";
        position: absolute;
        height: 100%;
        width: 0;
        top: 0;
        right: 0;
        background: #373737;
        -webkit-transition: all .9s;
        transition: all .9s;
        border-radius: 30px;
        /* z-index: -1; */
    }

    #b4 .downloadLink:hover {
        background: none;
        color: #f8b62d;
    }

    #b4 .downloadLink:hover::before,
    #b4 .downloadLink:hover::after {
        width: 100%;
    }

    /* 查看更多 */
    .plc-d{
        margin-top: 20px;
        color: #fff;
        font-size: 18px;
    }
    .downloadBox {
        text-align: center;
    }

    .downloadLink {
        display: inline-block;
        padding: 7px 92px 11px;
        /* line-height: 50px; */
        border-radius: 100px;
        font-size: 36px;
        color: #f8b62d;
        font-weight: bold;
        text-align: center;
        margin: 50px auto 0;
        position: relative;
        z-index: 1;
        border: 1px solid #f8b62d;
        background: none;
        box-sizing: border-box;
    }

    .downloadLink span {
        margin-right: 15px;
    }

    .downloadLink .downloadSelect {
        display: none;
    }

    .downloadLink::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0;
        top: 0;
        left: 0;
        background: #f8b62d;
        -webkit-transition: all .9s;
        transition: all .9s;
        border-radius: 30px;
        z-index: -1;
    }

    .downloadLink::after {
        content: "";
        position: absolute;
        height: 100%;
        width: 0;
        top: 0;
        right: 0;
        background: #f8b62d;
        -webkit-transition: all .9s;
        transition: all .9s;
        border-radius: 30px;
        z-index: -1;
    }

    .downloadLink::before,
    .downloadLink::after {
        background: #f8b62d;
    }

    .downloadLink:hover .download {
        display: none;
    }

    .downloadLink:hover .downloadSelect {
        display: inline-block;
    }

    .downloadLink:hover {
        color: #373737;
    }

    .downloadLink:hover::before,
    .downloadLink:hover::after {
        width: 100%;
    }

    /* 申请录取 */

    #b5 {
        background: url(../images/introductionBg.png) no-repeat;
        background-size: 100% 100%;
        padding: 20px 0 130px;
        position: relative;
        z-index: 1;
    }

    #b5 .introductionBox .introductionImg {
        width: 22%;
        float: left;
        animation-delay: 0.5s;
        animation-duration: 1.5s;
        box-sizing: border-box;
    }

    #b5 .introductionBox .introductionCont {
        width: 76%;
        float: right;
        font-size: 20px;
        line-height: 45px;
        color: #ffffff;
        animation-delay: 1s;
        animation-duration: 1.5s;
        box-sizing: border-box;
        text-align: justify;
    }

    #b5 .tab_nav {
        margin: 50px 0 30px;
    }

    #b5 .applyAdmissionBox .tab_nav li {
        float: left;
        width: 50%;
        padding: 20px 0;
        background-color: rgb(126, 126, 126);
        font-size: 26px;
        color: #333333;
        font-weight: bold;
        text-align: center;
        border-right: 2px solid rgb(126, 126, 126);
        cursor: pointer;
        position: relative;
        transition: all 0.2s;
        box-sizing: border-box;
    }

    #b5 .applyAdmissionBox .tab_nav li .sanjiao {
        width: 0;
        height: 0;
        overflow: hidden;
        font-size: 0;
        /*是因为, 虽然宽高度为0, 但在IE6下会具有默认的 */
        line-height: 0;
        /* 字体大小和行高, 导致盒子呈现被撑开的长矩形 */
        border-width: 20px;
        border-style: solid dashed dashed dashed;
        /*IE6下, 设置余下三条边的border-style为dashed,即可达到透明的效果*/
        border-color: #f8b62d transparent transparent transparent;
        position: absolute;
        left: 50%;
        margin-left: -20px;
        bottom: -40px;
        opacity: 0;
        transition: all 0.2s;
    }

    #b5 .applyAdmissionBox .tab_nav li.active {
        background: #f8b62d;
        transition: all 0.2s;
        color: #333333;
    }

    #b5 .applyAdmissionBox .tab_nav li.active .sanjiao {
        opacity: 1;
        transition: all 0.2s;
    }

    #b5 .items .sub_tab_nav {
        margin-bottom: 30px;
    }

    #b5 .items {
        background: url(../images/introductionBanner.png) no-repeat;
        background-size: cover;
        margin-top: -30px;
        padding: 80px 45px 20px;
    }

    #b5 .items .item2 {
        display: none;
    }

    #b5 .items .sub_tab_nav li {
        float: left;
        white-space: nowrap;
        padding: 0 15px;
        height: 50px;
        line-height: 45px;
        font-size: 24px;
        color: #f8b62d;
        text-align: center;
        border: 1px solid #f8b62d;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.2s;
        box-sizing: border-box;
    }

    #b5 .items .sub_tab_nav li:first-child {
        margin-right: 30px;
    }

    #b5 .items .sub_tab_nav li.active {
        background: #f8b62d;
        color: #333333;
    }

    #b5 .interviewItems .sub_title {
        font-size: 22px;
        color: #f8b62d;
        margin-bottom: 20px;
        font-weight: 550;
    }

    #b5 .interviewItems .interviewItem {
        display: none;
    }

    #b5 .interviewItems .sub_title .number {
        display: inline-block;
        font-size: 18px;
        color: #373737;
        font-family: "PingFangSC";
        background-color: #f8b62d;
        width: 21px;
        height: 21px;
        border-radius: 50%;
        text-align: center;
        line-height: 21px;
        margin-right: 10px;
    }

    #b5 .interviewItems .interview_sub_item {
        padding-bottom: 20px;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.502);
    }

    #b5 .interviewItems .interview_sub_item:last-child {
        border: none;
    }

    #b5 .interviewItems .text_box {
        padding: 0 32px;
    }

    #b5 .interviewItems .text_box .p1 {
        font-size: 20px;
        line-height: 45px;
        color: #ffffff;
        box-sizing: border-box;
        text-align: justify;
    }

    #b5 .interviewItems1 .text_box .p1 {
        font-size: 20px;
        line-height: 45px;
        color: #ffffff;
        box-sizing: border-box;
        text-align: justify;
    }

    #b5 .interviewItems .text_box .p2 {
        font-size: 20px;
        line-height: 45px;
        color: #f8b62d;
        box-sizing: border-box;
        text-align: justify;
    }

    #b5 .text_box .interview_process {
        margin-top: 40px;
        overflow: hidden;
    }

    #b5 .text_box .interview_process li {
        float: left;
        width: 20%;
        text-align: center;
        font-size: 18px;
        color: #6c6c6c;
        transition: all 0.5s;
        cursor: pointer;
    }

    #b5 .text_box .interview_process li .t {
        margin-top: 15px;
    }

    #b5 .text_box .interview_process li .select_img {
        display: none;
    }

    #b5 .text_box .interview_process li:hover .t,
    #b5 .text_box .interview_process li.active .t {
        color: #f8b62d;
    }

    #b5 .text_box .interview_process li:hover .img,
    #b5 .text_box .interview_process li.active .img {
        display: none;
    }

    #b5 .text_box .interview_process li:hover .select_img,
    #b5 .text_box .interview_process li.active .select_img {
        display: inline-block;
    }

    #b5 .text_box .interview_process_items {
        border-radius: 20px;
        background-color: #f8b62d;
        padding: 30px 35px;
        box-sizing: border-box;
        margin-top: 50px;
    }

    #b5 .interviewItems .text_box .pb {
        font-size: 20px;
        line-height: 45px;
        color: #333333;
        box-sizing: border-box;
        text-align: justify;
    }







    #b5 .interviewItems1 .sub_title {
        font-size: 22px;
        color: #f8b62d;
        margin-bottom: 20px;
        font-weight: 550;
    }

    #b5 .interviewItems1 .interviewItemtwo {
        display: none;
    }

    #b5 .interviewItems1 .sub_title .number {
        display: inline-block;
        font-size: 18px;
        color: #373737;
        font-family: "PingFangSC";
        background-color: #f8b62d;
        width: 21px;
        height: 21px;
        border-radius: 50%;
        text-align: center;
        line-height: 21px;
        margin-right: 10px;
    }

    #b5 .interviewItems1 .interview_sub_item {
        padding-bottom: 20px;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.502);
    }

    #b5 .interviewItems1 .interview_sub_item:last-child {
        border: none;
    }

    #b5 .interviewItems1 .text_box {
        padding: 0 32px;
    }

    #b5 .interviewItems1 .text_box .p1 {
        font-size: 20px;
        line-height: 45px;
        color: #ffffff;
        box-sizing: border-box;
        text-align: justify;
    }

    #b5 .interviewItems1 .text_box .p2 {
        font-size: 20px;
        line-height: 45px;
        color: #f8b62d;
        box-sizing: border-box;
        text-align: justify;
    }

    #b5 .text_box .interview_process {
        margin-top: 40px;
        overflow: hidden;
    }

    #b5 .text_box .interview_process li {
        float: left;
        width: 20%;
        text-align: center;
        font-size: 18px;
        color: #6c6c6c;
        transition: all 0.5s;
        cursor: pointer;
    }

    #b5 .text_box .interview_process li .t {
        margin-top: 15px;
    }

    #b5 .text_box .interview_process li .select_img {
        display: none;
    }

    #b5 .text_box .interview_process li:hover .t,
    #b5 .text_box .interview_process li.active .t {
        color: #f8b62d;
    }

    #b5 .text_box .interview_process li:hover .img,
    #b5 .text_box .interview_process li.active .img {
        display: none;
    }

    #b5 .text_box .interview_process li:hover .select_img,
    #b5 .text_box .interview_process li.active .select_img {
        display: inline-block;
    }

    #b5 .text_box .interview_process_items {
        border-radius: 20px;
        background-color: #f8b62d;
        padding: 30px 35px;
        box-sizing: border-box;
        margin-top: 50px;
    }

    #b5 .interviewItems .text_box .pb {
        font-size: 20px;
        line-height: 45px;
        color: #333333;
        box-sizing: border-box;
        text-align: justify;
    }

    #b5 .interviewItems1 .text_box .pb {
        font-size: 20px;
        line-height: 45px;
        color: #333333;
        box-sizing: border-box;
        text-align: justify;
    }

    #b5 .text_box .interview_process_item1 {
        position: relative;
        display: none;
    }

    #b5 .text_box .interview_process_item1.active {
        display: block;
    }

    #b5 .text_box .interview_process_item1 .sanjiao {
        width: 0;
        height: 0;
        overflow: hidden;
        font-size: 0;
        /*是因为, 虽然宽高度为0, 但在IE6下会具有默认的 */
        line-height: 0;
        /* 字体大小和行高, 导致盒子呈现被撑开的长矩形 */
        border-width: 20px;
        border-style: solid dashed dashed dashed;
        /*IE6下, 设置余下三条边的border-style为dashed,即可达到透明的效果*/
        border-color: transparent transparent #f8b62d transparent;
        position: absolute;
        left: 7%;
        top: -70px;
        opacity: 0;
        transition: all 0.2s;
    }

    #b5 .text_box .interview_process_item1.active .sanjiao {
        opacity: 1;
        transition: all 0.2s;
    }



    #b5 .text_box .interview_process_item {
        position: relative;
        display: none;
    }

    #b5 .text_box .interview_process_item.active {
        display: block;
    }

    #b5 .text_box .interview_process_item .sanjiao {
        width: 0;
        height: 0;
        overflow: hidden;
        font-size: 0;
        /*是因为, 虽然宽高度为0, 但在IE6下会具有默认的 */
        line-height: 0;
        /* 字体大小和行高, 导致盒子呈现被撑开的长矩形 */
        border-width: 20px;
        border-style: solid dashed dashed dashed;
        /*IE6下, 设置余下三条边的border-style为dashed,即可达到透明的效果*/
        border-color: transparent transparent #f8b62d transparent;
        position: absolute;
        left: 7%;
        top: -70px;
        opacity: 0;
        transition: all 0.2s;
    }

    #b5 .text_box .interview_process_item.active .sanjiao {
        opacity: 1;
        transition: all 0.2s;
    }

    /* 师资力量 */

    #b7 {
        background: url(../images/facultyBg.png) no-repeat;
        background-size: cover;
        padding: 60px 0 130px;
        position: relative;
        z-index: 1;
        margin-top: -90px;
    }

    #b7 .top_text {
        margin-bottom: 50px;
    }

    #b7 .top_text .p1 {
        font-size: 20px;
        color: #ffffff;
        text-align: justify;
        line-height: 2;
        margin-bottom: 20px;
    }

    #b7 .teacher_list {
        display: flex;
        flex-wrap: wrap;
    }

    #b7 .teacher_list li {
        width: 33.33%;
        float: left;
        overflow: hidden;
        /* height: 162px; */
        margin-bottom: 35px;
    }

    #b7 .teacher_list li .hedaer_img {
        width: 30%;
        float: left;
        margin-right: 4%;
    }

    #b7 .teacher_list li .teacher_info {
        width: 66%;
        float: left;
    }

    #b7 .teacher_list li .teacher_info .name {
        font-size: 22px;
        color: #f8b62d;
        line-height: 1.818;
        font-weight: 550;
    }

    #b7 .teacher_list li .teacher_info .line {
        width: 128px;
        height: 2px;
        background-color: #000000;
        margin: 10px 0;
    }

    #b7 .teacher_list li .teacher_info .text {
        font-size: 18px;
        color: #adadad;
        line-height: 1.9;
        text-align: justify;
        margin-left: -10px;
    }

    /* 课程设置 */

    #b8 {
        background: url(../images/curriculumBg.png) no-repeat;
        background-size: 100% 100%;
        padding: 80px 0 130px;
        margin-top: -90px;
    }

    #b8 .applyAdmissionBox .tab_nav {
        margin: 50px 0 30px;
        position: relative;
        z-index: 10;
    }

    #b8 .applyAdmissionBox .tab_nav li {
        float: left;
        width: 50%;
        padding: 20px 0;
        background-color: rgb(126, 126, 126);
        font-size: 20px;
        color: #333333;
        font-weight: bold;
        text-align: center;
        border-right: 2px solid rgb(126, 126, 126);
        cursor: pointer;
        position: relative;
        transition: all 0.2s;
        box-sizing: border-box;
    }

    #b8 .applyAdmissionBoxTwo .tab_nav li {
        width: 25%;
    }

    #b8 .applyAdmissionBoxTwo .tab_nav li p {
        border-left: 1px solid #373737;
    }

    #b8 .applyAdmissionBoxTwo .tab_nav li:first-child p {
        border: none;
    }

    #b8 .applyAdmissionBox .tab_nav li .sanjiao {
        width: 0;
        height: 0;
        overflow: hidden;
        font-size: 0;
        /*是因为, 虽然宽高度为0, 但在IE6下会具有默认的 */
        line-height: 0;
        /* 字体大小和行高, 导致盒子呈现被撑开的长矩形 */
        border-width: 20px;
        border-style: solid dashed dashed dashed;
        /*IE6下, 设置余下三条边的border-style为dashed,即可达到透明的效果*/
        border-color: #f8b62d transparent transparent transparent;
        position: absolute;
        left: 50%;
        margin-left: -20px;
        bottom: -40px;
        opacity: 0;
        transition: all 0.2s;
    }

    #b8 .applyAdmissionBox .tab_nav li.active {
        background: #f8b62d;
        transition: all 0.2s;
        color: #333333;
    }

    #b8 .applyAdmissionBox .tab_nav li.active+li p {
        border: none;
    }

    #b8 .applyAdmissionBox .tab_nav li.active p {
        border-color: #f8b62d;
    }

    #b8 .applyAdmissionBox .tab_nav li.active .sanjiao {
        opacity: 1;
        transition: all 0.2s;
    }

    #b8 .items {
        background: url(../images/introductionBanner.png) no-repeat;
        background-size: cover;
        margin-top: -30px;
        padding: 50px 35px 10px;
    }

    #b8 .items .item1,
    #b8 .items .item2,
    #b8 .items .item3,
    #b8 .items .item4 {
        display: none;
    }

    #b8 .items .required_course_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        overflow: hidden;
    }

    #b8 .items .required_course_list li {
        width: 48%;
        float: left;
        background-color: rgba(226, 226, 226, 0.702);
        margin-bottom: 35px;
    }

    #b8 .items .required_course_list li:nth-child(2n) {
        float: right;
    }

    #b8 .items .required_course_list li .t {
        font-size: 20px;
        color: #f8b62d;
        line-height: 2;
        line-height: 2.5;
        text-align: justify;
        background-color: #4b4b4b;
        padding: 0 20px;
        box-sizing: border-box;
        font-weight: 550;
    }

    #b8 .items .required_course_list li .text_box {
        padding: 15px 20px;
        color: #333333;
        line-height: 2.5;
        font-size: 16px;
        text-align: justify;
        font-weight: 550;
    }

    #b8 .items .elective_courses_box .top {
        font-size: 20px;
        color: #ffffff;
        line-height: 2;
        text-align: justify;
    }

    #b8 .items .elective_courses_content {
        margin: 30px 0;
    }

    #b8 .items .elective_courses_tab {
        width: 35%;
        float: left;
    }

    #b8 .items .elective_courses_tab li {
        background-color: #7e7e7e;
        padding: 20px;
        box-sizing: border-box;
        font-size: 18px;
        color: #333333;
        line-height: 1.875;
        cursor: pointer;
        position: relative;
        font-weight: 550;
    }

    #b8 .items .elective_courses_tab li.active {
        background: #f8b62d;
        transition: all 0.2s;
    }

    #b8 .items .elective_courses_tab li .sanjiao {
        width: 0;
        height: 0;
        overflow: hidden;
        font-size: 0;
        /*是因为, 虽然宽高度为0, 但在IE6下会具有默认的 */
        line-height: 0;
        /* 字体大小和行高, 导致盒子呈现被撑开的长矩形 */
        border-width: 20px;
        border-style: solid dashed dashed dashed;
        /*IE6下, 设置余下三条边的border-style为dashed,即可达到透明的效果*/
        border-color: transparent transparent transparent #f8b62d;
        position: absolute;
        right: -40px;
        top: 50%;
        margin-top: -20px;
        opacity: 0;
        transition: all 0.2s;
    }

    #b8 .items .elective_courses_tab li.active .sanjiao {
        opacity: 1;
        transition: all 0.2s;
    }

    #b8 .items .elective_courses_items {
        width: 65%;
        float: left;
        background-color: rgba(248, 182, 45, 0.761);
        padding: 20px;
        box-sizing: border-box;
    }

    #b8 .elective_courses_items .elective_courses_item {
        display: none;
    }

    #b8 .elective_courses_items .desc_content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        overflow: hidden;
    }

    #b8 .elective_courses_items .desc_content .desc {
        width: 48%;
        float: left;
        font-size: 16px;
        color: #333333;
        line-height: 1.875;
        margin-bottom: 25px;
        font-weight: 550;
        padding-left: 20px;
        box-sizing: border-box;
        background: url(../images/desc_circle.png) no-repeat left 11px;
    }

    #b8 .elective_courses_items .desc_content .desc:nth-child(2n) {
        float: right;
    }

    #b8 .applyAdmissionBoxTwo .innovation_item {
        padding-bottom: 20px;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.502);
    }

    #b8 .applyAdmissionBoxTwo .innovation_item:last-child {
        border: none;
    }

    #b8 .applyAdmissionBoxTwo .innovation_item .p1 {
        font-size: 20px;
        line-height: 45px;
        color: #ffffff;
        box-sizing: border-box;
        text-align: justify;
    }

    #b8 .applyAdmissionBoxTwo .innovation_item .pb {
        padding: 0 20px;
    }

    #b8 .applyAdmissionBoxTwo .innovation_item .tag_list {
        font-size: 20px;
        color: #333333;
        line-height: 2;
        margin: 20px 0 0px;
    }

    #b8 .applyAdmissionBoxTwo .innovation_item .tag_list li {
        display: inline-block;
        margin-right: 10px;
        background-color: #f8b62d;
        padding: 0 20px;
        border-radius: 18px;
        margin-bottom: 10px;
    }

    #b8 .applyAdmissionBoxTwo .innovation_item .sub_title {
        padding-left: 20px;
        background: url(../images/innovation_circle.png) no-repeat left 9px;
        font-size: 22px;
        color: #f8b62d;
        margin-bottom: 20px;
        font-weight: 550;
    }

    /* 常见问题 */

    #b9 {
        background: url(../images/faqBg.png) no-repeat;
        background-size: cover;
        padding: 60px 0;
        margin-top: -90px;
    }

    #b9 .contentBox .faq_tag_list a {
        display: block;
        width: 30%;
        float: left;
        text-decoration: none;
        margin-bottom: 20px;
        position: relative;
    }

    #b9 .contentBox .faq_tag_list a li {
        border: solid 1px #f8b62d;
        font-size: 20px;
        height: 60px;
        line-height: 55px;
        border-radius: 100px;
        cursor: pointer;
        text-decoration: none;
        color: #f8b62d;
        position: relative;
        z-index: 10;
        padding: 0 25px;
        box-sizing: border-box;
    }

    #b9 .contentBox .faq_tag_list a:nth-child(2),
    #b9 .contentBox .faq_tag_list a:nth-child(5) {
        margin: 0 5%;
    }

    #b9 .contentBox .faq_tag_list a:before,
    #b9 .contentBox .faq_tag_list a:after {
        content: "";
        position: absolute;
        height: 100%;
        width: 0;
        top: 0;
        background-color: #f8b62d;
        -webkit-transition: all .4s;
        transition: all .4s;
        border-radius: 100px;
    }

    #b9 .contentBox .faq_tag_list a:hover:before,
    #b9 .contentBox .faq_tag_list a:hover:after {
        width: 100%;
    }

    #b9 .contentBox .faq_tag_list a li:hover {
        color: #373737;
    }

    #b9 .contentBox .faq_tag_list a li .sanjiao {
        width: 0;
        height: 0;
        overflow: hidden;
        font-size: 0;
        /*是因为, 虽然宽高度为0, 但在IE6下会具有默认的 */
        line-height: 0;
        /* 字体大小和行高, 导致盒子呈现被撑开的长矩形 */
        border-width: 10px;
        border-style: solid dashed dashed dashed;
        /*IE6下, 设置余下三条边的border-style为dashed,即可达到透明的效果*/
        border-color: transparent transparent transparent #f8b62d;
        position: absolute;
        right: 15px;
        margin-top: -10px;
        top: 50%;
        opacity: 1;
        transition: all 0.2s;
    }

    #b9 .contentBox .faq_tag_list a li:hover .sanjiao {
        border-color: transparent transparent transparent #373737;
        transition: all 0.2s;
    }

    /* 联系我们 */

    #footer {
        background-image: -moz-linear-gradient(90deg, rgb(34, 34, 34) 0%, rgb(56, 56, 56) 100%);
        background-image: -webkit-linear-gradient(90deg, rgb(34, 34, 34) 0%, rgb(56, 56, 56) 100%);
        background-image: -ms-linear-gradient(90deg, rgb(34, 34, 34) 0%, rgb(56, 56, 56) 100%);
    }

    #footer .content {
        padding: 40px 0;
    }

    #footer .content .left {
        width: 60%;
        float: left;
        position: relative;
    }

    #footer .content .left .line {
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -40px;
        float: left;
        width: 1px;
        height: 80px;
        background-color: rgba(255, 255, 255, 0.541);
    }

    #footer .content .left .p1 {
        font-size: 18px;
        color: #ffffff;
        line-height: 2;
        text-align: justify;
    }

    #footer .content .left .email {
        color: #ffffff;
    }

    #footer .content .left .mobile {
        color: #f8b62d;
        font-weight: 550;
        display: inline-block;
        margin-left: 10px;
    }

    #footer .content .right {
        width: 40%;
        float: left;
    }

    #footer .content .right .ewm_box {
        float: right;
    }

    #footer .content .right .ewm_box:first-child {
        margin: 0 20px 0 50px;
    }

    #footer .content .right .ewm_box .p {
        font-size: 14px;
        color: #a4a4a4;
        line-height: 1.5;
        text-align: center;
        margin-top: 8px;
    }

    #footer .mobile_ewm {
        display: none;
    }

    /* 手机端样式 */

    .bannerBox .mobile_banner {
        display: none;
    }

    #qualityBox .six_mobile {
        display: none;
    }

    /* 返回顶部 */

    .backTop {
        width: 60px;
        height: 60px;
        position: fixed;
        right: 30px;
        bottom: 50px;
        cursor: pointer;
        z-index: 20;
        background: #f8b62d;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        font-weight: 550;
        color: #373737;
    }

    .disNone {
        display: none;
    }

    .backTop span {
        display: none;
        transition: all 0.5s;
    }

    .backTop img {
        width: 30px;
    }

    .backTop:hover span {
        display: block;
        transition: all 0.5s;
    }

    .backTop:hover img {
        display: none;
    }


    /* 设置三角形位置 */
    #b5 .sanjiao.sanjiao1 {
        margin-left: 20%;
    }

    #b5 .sanjiao.sanjiao2 {
        margin-left: 42%;
    }

    #b5 .sanjiao.sanjiao3 {
        margin-left: 63%;
    }

    #b5 .sanjiao.sanjiao4 {
        margin-left: 84%;
    }

    #b5 .sanjiao.sanjiao5 {
        margin-left: 20%;
    }

    #b5 .sanjiao.sanjiao6 {
        margin-left: 42%;
    }

    #b5 .sanjiao.sanjiao7 {
        margin-left: 63%;
    }

    #b5 .sanjiao.sanjiao8 {
        margin-left: 84%;
    }

    #b5 .sanjiao.sanjiao9 {
        margin-left: 20%;
    }

    #b5 .sanjiao.sanjiao10 {
        margin-left: 42%;
    }

    @media(min-width:1700px) {}

    @media(max-width:1200px) {}

    @media (max-width:1150px) {
        .header {
            padding: 0 2%;
        }
    }

    @media (max-width:1024px) {
        .header .left {
            width: 180px;
        }

        .header .right {
            width: 78%;
        }

        .header .right ul li {
            font-size: 16px;
        }

        .projectIntroItemBox .projectIntroItemList01 a li {
            font-size: 18px;
        }

        #b5 .items {
            padding: 80px 30px 20px;
        }

        #b8 .items {
            padding: 50px 30px 10px;
        }

        #b8 {
            background-size: cover;
        }
    }

    @media (max-width:1000px) {
        #b5 .items .sub_tab_nav .nav {
            width: 450px;
        }
    }


    @media (max-width:700px) {
        #b5 .items .sub_tab_nav .nav {
            width: 400px;
        }
    }

    @media (max-width:500px) {
        #b5 .items .sub_tab_nav .nav {
            width: 285px;
        }
    }

    #b5 .items .sub_tab_nav li:first-child {
        margin-right: 0.3rem;
        margin-bottom: 15px;
    }

    @media(max-width:768px) {
        .header {
            display: none;
        }


        #mobile_head {
            display: block;
        }

        .bannerBox {
            margin-top: 1rem;
        }

        .bannerBox .pc_banner {
            display: none;
        }

        .bannerBox .mobile_banner {
            display: block;
        }

        .bannerTitleBlock {
            display: none;
        }

        .mobileBannerTitleBlock {
            display: block;
        }

        #qualityBox .sixAuthoritiesTitle {
            font-size: 0.4rem;
        }

        #qualityBox {
            padding: 0.4rem 0 2.4rem;
            box-sizing: border-box;
            background: url(../images/mobile_sixAuthoritiesImg.png) no-repeat;
            background-size: cover;
        }

        #qualityBox .six_pc {
            display: none;
        }

        #qualityBox .six_mobile {
            display: block;
            width: 92%;
            margin: 0 auto;
        }

        #qualityBox .text_box {
            margin: 0.5rem 0;
        }

        #title {
            padding: 0.4rem 0;
        }

        #title .t {
            font-size: 0.52rem;
        }

        #title .sub {
            font-size: 0.24rem;
        }

        #title .line {
            width: 0.5rem;
            height: 2px;
        }

        #b1 {
            background: url(../images/mobile_projectBanner.png) no-repeat;
            padding: 0.4rem 0 1rem;
            background-size: cover;
        }

        .projectIntroBlock .projectIntroImg {
            width: 35%;
            margin-right: 0.2rem;
        }

        .projectIntroBlock .projectIntroCont {
            font-size: 0.24rem;
            line-height: 2;
            float: none;
            width: 100%;
            text-align: justify;
        }

        .projectIntroItemTitle {
            background: url(../images/triangleYellow.png) no-repeat left center;
            background-size: 0.15rem;
            font-size: 0.3rem;
            line-height: 0.5rem;
            padding-left: 0.3rem;
            margin-top: 0.3rem;
        }

        .projectIntroItemBox .projectIntroItemList01 {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .projectIntroItemBox .projectIntroItemList01 a {
            width: 49%;
            margin: 0.3rem 0 0 !important;
        }

        .projectIntroItemBox .projectIntroItemList01 a:nth-child(2n) {
            float: right;
        }

        .projectIntroItemBox .projectIntroItemList01 a li {
            font-size: 0.2rem;
            line-height: 0.6rem;
            word-break: keep-all;
        }

        #b2 {
            background: url(../images/mobile_projectFeaturesBanner.png) no-repeat top center;
            background-size: 100% 100%;
            padding: 1rem 0 1.7rem;
            margin-top: -1.1rem;
        }

        #b2 .tab_nav li {
            padding: 0.2rem 0;
            font-size: 0.28rem;
        }

        #b2 .tab_nav li img {
            width: 0.7rem;
        }

        #b2 .tab_nav li .sanjiao {
            border-width: 0.24rem;
            margin-left: -0.24rem;
            bottom: -0.45rem;
        }

        #b2 .tab_nav li p {
            margin-top: 0.1rem;
        }

        #b2 .items {
            height: 3.5rem;
        }

        #b2 .items .item p.p1 {
            font-size: 0.24rem;
            line-height: 2;
        }

        #b2 .items .item {
            display: none;
            padding: 0;
            width: 90%;
            margin: 0 auto;
        }

        #b2 .tab_nav {
            margin-top: 0.2rem;
        }

        #b4 {
            background: url(../images/mobile_preachingApplicationBanner.png) no-repeat;
            background-size: cover;
            padding: 0.4rem 0 0.6rem;
            margin-top: -0.7rem;
        }

        #b4 .table,
        #b6 .table {
            font-size: 0.18rem;
            border-radius: 10px;
        }

        #b4 .table tr th,
        #b6 .table tr th {
            padding: 0.2rem 0;
        }

        #b4 .table tr td,
        #b6 .table tr td {
            padding: 0.2rem 0;
        }

        #b4 .table tr td a,
        #b6 .table tr td a {
            display: inline-block;
            color: #f8b62d;
            width: 1.1rem;
            height: 0.38rem;
            line-height: 0.37rem;
            border: 1px solid #f8b62d;
            border-radius: 100px;
        }

        #b4 .table tr th p,
        #b6 .table tr th p {
            border-right: 1px solid rgb(55, 55, 55)
        }

        #b4 .zu {
            font-size: 0.24rem;
            color: #000;
            line-height: 2;
            text-align: justify;
            margin-top: 30px;
        }

        .downloadLink,
        #b4 .downloadLink {
            padding: 0.15rem 0.9rem 0.18rem;
            /* line-height: 0.7rem; */
            font-size: 0.36rem;
            margin: 0.6rem auto 0;
        }

        .downloadLink img {
            width: 0.4rem;
        }

        #b5 {
            background: url(../images/mobile_introductionBg.png) no-repeat;
            background-size: 100% 100%;
            padding: 0.2rem 0 1.3rem;
        }

        #b5 .introductionBox .introductionImg {
            width: 100%;
            text-align: center;
            float: none;
            margin-bottom: 0.2rem;
        }

        #b5 .introductionBox .introductionCont {
            float: none;
            width: 100%;
            font-size: 0.24rem;
            line-height: 2;
        }

        #b5 .applyAdmissionBox .tab_nav {
            margin: 0.4rem 0 0.2rem;
            position: relative;
            z-index: 10;
        }

        #b2 .tab_nav li .sanjiao {
            border-width: 0.24rem;
            margin-left: -0.24rem;
            bottom: -0.45rem;
        }

        #b5 .applyAdmissionBox .tab_nav li {
            font-size: 0.3rem;
            padding: 0.2rem 0;
            border: none;
        }

        #b5 .applyAdmissionBox .tab_nav li .sanjiao {
            border-width: 0.24rem;
            margin-left: -0.24rem;
            bottom: -0.45rem;
        }

        #b5 .items .sub_tab_nav li {
            width: 2rem;
            height: 0.55rem;
            line-height: 0.5rem;
            font-size: 0.24rem;
        }


        #b5 .items .sub_tab_nav li:first-child {
            margin-right: 0.3rem;
            margin-bottom: 15px;
        }

        #b5 .items {
            padding: 0.7rem 0.25rem 0.2rem;
        }

        #b5 .interviewItems .sub_title .number {
            font-size: 0.24rem;
            width: 0.3rem;
            height: 0.3rem;
            line-height: 0.3rem;
            margin-right: 0.1rem;
        }

        #b5 .interviewItems .sub_title {
            font-size: 0.24rem;
            margin-bottom: 0.2rem;
            font-weight: 550;
        }

        #b5 .interviewItems .text_box .p1 {
            font-size: 0.24rem;
            line-height: 2;
        }

        #b5 .interviewItems1 .text_box .p1 {
            font-size: 0.24rem;
            line-height: 2;
        }

        #b5 .interviewItems1 .sub_title {
            font-size: 0.24rem;
            margin-bottom: 0.2rem;
            font-weight: 550;
        }

        #b5 .interviewItems1 .sub_title .number {
            font-size: 0.24rem;
            width: 0.3rem;
            height: 0.3rem;
            line-height: 0.3rem;
            margin-right: 0.1rem;
        }

        #b5 .interview_sub_item:first-child .text_box .p1 {
            margin-bottom: 0.2rem !important;
        }

        #b5 .interviewItems .text_box {
            padding: 0 0.4rem;
        }

        #b5 .items .sub_tab_nav {
            margin: 0.3rem 0;
        }

        #b5 .interviewItems .text_box .p2 {
            font-size: 0.24rem;
            line-height: 2;
        }

        #b5 .interviewItems .interview_sub_item {
            padding-bottom: 0.2rem;
            margin-bottom: 0.3rem;
        }

        #b5 .interviewItems .interview_sub_item:last-child {
            margin-bottom: 0;
        }

        #b5 .text_box .interview_process {
            margin-top: 0.4rem;
            display: flex;
            justify-content: space-between;
        }

        #b5 .text_box .interview_process li {
            width: 18%;
            font-size: 0.22rem;
        }

        #b5 .text_box .interview_process_items {
            margin-top: 0.5rem;
            padding: 0.3rem 0.35rem;
            border-radius: 10px;
        }

        #b5 .interviewItems .text_box .pb {
            font-size: 0.24rem;
            line-height: 2;
        }

        #b5 .interviewItems1 .text_box .pb {
            font-size: 0.24rem;
            line-height: 2;
        }

        #b5 .text_box .interview_process_item .sanjiao {
            border-width: 0.24rem;
            top: -0.75rem;
            left: 0%;
        }

        #b5 .interviewItems1 .text_box .p2 {
            font-size: 0.24rem;
            line-height: 45px;
            color: #f8b62d;
            box-sizing: border-box;
            text-align: justify;
        }

        #b6 {
            background: url(../images/mobile_earlyRoundApplicationBg.png) no-repeat;
            background-size: cover;
            padding: 0.8rem 0 1.5rem;
            margin-top: -1rem;
        }

        #b6 .table tr th {
            word-break: keep-all;
        }

        #b6 .table tr td .week {
            display: none;
        }

        #b6 .tips {
            font-size: 0.24rem;
            color: #ffffff;
            line-height: 2;
            text-align: justify;
            margin-top: 0.3rem;
        }

        #b7 {
            background: url(../images/mobile_facultyBg.png) no-repeat;
            background-size: cover;
            padding: 0.5rem 0 1rem;
            position: relative;
            z-index: 1;
            margin-top: -0.9rem;
        }

        #b7 .top_text .p1 {
            font-size: 0.24rem;
            margin-bottom: 0.2rem;
        }

        #b7 .teacher_list li {
            margin-bottom: 0;
            width: 50%;
        }

        #b7 .teacher_list li:nth-child(2n) {
            margin-top: 0.6rem;
        }

        #b7 .teacher_list li .hedaer_img {
            width: 35%;
            float: left;
            margin-right: 4%;
        }

        #b7 .teacher_list li .teacher_info {
            width: 61%;
            float: left;
        }

        #b7 .teacher_list li .teacher_info .name {
            font-size: 0.22rem;
        }

        #b7 .teacher_list li .teacher_info .line {
            width: 1.3rem;
            height: 1px;
            margin: 0.1rem 0;
        }

        #b7 .teacher_list li .teacher_info .text {
            font-size: 0.15rem;
            text-align: left;
            margin-left: -0.12rem;
        }

        #b8 {
            background: url(../images/mobile_curriculumBg.png) no-repeat;
            padding: 0.8rem 0 1.3rem;
            margin-top: -0.9rem;
            background-size: 100% 100%;
        }

        #b8 .applyAdmissionBox .tab_nav li {
            font-size: 0.3rem;
            padding: 0.2rem 0;
            border: none;
        }

        #b8 .applyAdmissionBox .tab_nav li .sanjiao {
            border-width: 0.24rem;
            margin-left: -0.24rem;
            bottom: -0.45rem;
        }

        #b8 .items {
            padding: 0.6rem 0.25rem 0.2rem;
        }

        #b8 .items .required_course_list li {
            width: 100%;
            float: none;
            margin-bottom: 0.4rem;
        }

        #b8 .items .required_course_list li .t {
            font-size: 0.28rem;
            padding: 0 0.2rem;
        }

        #b8 .items .required_course_list li .text_box {
            padding: 0.15rem 0.2rem;
            color: #333333;
            line-height: 2;
            font-size: 0.24rem;
        }

        #b8 .items .elective_courses_box .top {
            font-size: 0.24rem;
        }

        #b8 .items .elective_courses_content {
            margin: 0.4rem 0;
        }

        #b8 .items .elective_courses_tab {
            width: 40%;
        }

        #b8 .items .elective_courses_tab li {
            padding: 0.2rem;
            font-size: 0.24rem;
            line-height: 1.875;
        }

        #b8 .items .elective_courses_tab li .sanjiao {
            border-width: 0.24rem;
            right: -0.45rem;
            margin-top: -0.24rem;
        }

        #b8 .items .elective_courses_items {
            width: 60%;
            padding: 0.2rem;
        }

        #b8 .elective_courses_items .desc_content .desc {
            width: 100%;
            float: none;
            font-size: 0.2rem;
            margin-bottom: 0.25rem;
            padding-left: 0.2rem;
            background: url(../images/desc_circle.png) no-repeat left 0.15rem;
            background-size: 0.15rem;
        }

        #b8 .elective_courses_items .desc_content .desc:nth-child(2n) {
            float: none;
        }

        #b8 .elective_courses_items .desc_content {
            display: block;
            overflow: hidden;
        }

        #b8 .applyAdmissionBox .tab_nav {
            margin: 0.1rem 0 0.3rem;
        }

        #b8 .applyAdmissionBoxTwo .tab_nav {
            margin-top: 0.5rem;
        }

        #b8 .applyAdmissionBoxTwo .tab_nav li {
            font-size: 0.24rem;
        }

        #b8 .applyAdmissionBoxTwo .innovation_item .p1 {
            font-size: 0.24rem;
            line-height: 2;
        }

        #b8 .applyAdmissionBoxTwo .innovation_item .tag_list {
            font-size: 0.24rem;
            line-height: 2;
            margin: 0.2rem 0 0;
        }

        #b8 .applyAdmissionBoxTwo .innovation_item .tag_list li {
            margin-right: 0.15rem;
            padding: 0 0.2rem;
            margin-bottom: 0.15rem;
        }

        #b8 .applyAdmissionBoxTwo .innovation_item {
            padding-bottom: 0.2rem;
            margin-bottom: 0.3rem;
        }

        #b8 .applyAdmissionBoxTwo .innovation_item .sub_title {
            font-size: 0.24rem;
            margin-bottom: 0.2rem;
            background: url(../images/innovation_circle.png) no-repeat left 0.1rem;
            background-size: 0.15rem;
            padding-left: 0.25rem;
            font-weight: 550;
        }

        #b8 .applyAdmissionBoxTwo .innovation_item .pb {
            padding: 0 0.2rem;
        }

        #b8 .applyAdmissionBoxTwo .innovation_item:last-child {
            padding-bottom: 0;
        }

        #b9 {
            background: url(../images/mobile_faqBg.png) no-repeat;
            background-size: cover;
            padding: 0.6rem 0;
            margin-top: -0.9rem;
        }

        #b9 .contentBox .faq_tag_list a li {
            border: solid 1px #f8b62d;
            font-size: 0.2rem;
            height: 0.6rem;
            line-height: 0.55rem;
            border-radius: 100px;
            cursor: pointer;
            text-decoration: none;
            color: #f8b62d;
            position: relative;
            z-index: 10;
            padding: 0 0.25rem;
            box-sizing: border-box;
        }

        #b9 .contentBox .faq_tag_list a {
            display: block;
            width: 48%;
            float: left;
            text-decoration: none;
            margin-bottom: 0.2rem;
            position: relative;
        }

        #b9 .contentBox .faq_tag_list a li .sanjiao {
            width: 0;
            height: 0;
            overflow: hidden;
            font-size: 0;
            line-height: 0;
            border-width: 0.12rem;
            border-style: solid dashed dashed dashed;
            border-color: transparent transparent transparent #f8b62d;
            position: absolute;
            right: 0.1rem;
            margin-top: -0.12rem;
            top: 50%;
            opacity: 1;
            transition: all 0.2s;
        }

        #b9 .contentBox .faq_tag_list a:nth-child(2n) {
            float: right;
        }

        #b9 .contentBox .faq_tag_list a:nth-child(2),
        #b9 .contentBox .faq_tag_list a:nth-child(5) {
            margin: 0 0 0.2rem 0;
        }

        #footer .content .left {
            width: 100%;
            float: none;
        }

        #footer .content {
            padding: 0.5rem 0;
        }

        #footer .content .left .p1 {
            font-size: 0.24rem;
            color: #ffffff;
            line-height: 2;
            /* text-align: center; */
        }

        /* @media (max-width: 400px) {
    #footer .content .left .qqzx {
        font-size: 0.24rem;
        color: #ffffff;
        line-height: 2;
        text-align: center;
    }
} */

        #footer .content .left .line {
            display: none;
        }

        #footer .content .right {
            width: 100%;
            float: none;
            /* display: flex; */
            /* justify-content: space-around; */
            margin-top: 0.4rem;
        }

        #footer .content .right .ewm_box img {
            width: 2rem;
        }

        #footer .content .right .ewm_box:first-child {
            margin: 0;
        }

        #footer .content .right .ewm_box .p {
            font-size: 0.22rem;
        }

        #b3 {
            background: url(../images/mobile_onlinePresentationBanner.png) no-repeat;
            background-size: cover;
            padding: 0px 0 1.5rem;
            margin-top: -0.45rem;
        }

        #b3 .swiper-button-next,
        #b3 .swiper-button-prev {
            display: none;
        }

        #b3 .swiper-pagination {
            display: block;
        }

        #footer .pc_ewm {
            display: none;
        }

        #footer .mobile_ewm {
            display: flex;
            justify-content: space-around;
        }

        .backTop {
            width: 0.8rem;
            height: 0.8rem;
            right: 0.2rem;
            bottom: 0.5rem;
            font-size: 0.24rem;
        }

        .backTop img {
            width: 0.4rem;
        }


        /* 设置三角形位置 */
        #b5 .sanjiao.sanjiao1 {
            margin-left: 22%;
        }

        #b5 .sanjiao.sanjiao2 {
            margin-left: 46%;
        }

        #b5 .sanjiao.sanjiao3 {
            margin-left: 69%;
        }

        #b5 .sanjiao.sanjiao4 {
            margin-left: 91%;
        }

        #b5 .sanjiao.sanjiao5 {
            margin-left: 22%;
        }

        #b5 .sanjiao.sanjiao6 {
            margin-left: 46%;
        }

        #b5 .sanjiao.sanjiao7 {
            margin-left: 69%;
        }

        #b5 .sanjiao.sanjiao8 {
            margin-left: 91%;
        }

        #b5 .sanjiao.sanjiao9 {
            margin-left: 45%;
        }

        #b5 .sanjiao.sanjiao10 {
            margin-left: 92%;
        }

    }

    @media (max-width:750px) {}