@charset "UTF-8";
.home_header {
    width: 100%;
    background: url("banner.jpg") no-repeat top center fixed;
    background-size: cover;
    z-index: 1;
} 
.home_header .header_banner {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: linear-gradient(to top, #002F5B, rgba(0, 47, 91, 0)); /* 定义渐变 */
    background-size: 100% 310px;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.header_banner .banner_carousel {
    width: 100%;
    height: 100%;
    z-index: 99;
    padding-top: 22vh;
}
.header_banner .banner_carousel .swiper-wrapper li {
    width: 100%;
    height: 100%;
}
.header_banner .banner_carousel .swiper-wrapper li a {
    color: #002F5B;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_banner .banner_carousel .swiper-wrapper li .carousel_show {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #fff;
    margin: 0 3px;
    opacity: 0.5;
    color: #333;
}
.swiper-pagination-clickable .swiper-pagination-bullet-active {
    opacity: 1;
}
.swiper-button-next,
.swiper-button-prev {
    width: 30px;
    height: 38px;
    background-size: 100% 100%;
    margin-top: 50px;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 120px;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 120px;
}
.carousel_show h1 {
    font-size: 42px;
    font-weight: bold;
    line-height: 84px;
    color: #fff;
}
.carousel_show a.more {
    width: 150px;
    height: 50px;
    line-height: 20px;
    border-radius: 80px;
    background: #fff;
    text-align: center;
    margin-top: 52px;
    font-size: 18px;
    font-weight: bold;
    opacity: 0.7;
}
.banner_bottom {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 10vh;
}
.banner_bottom .roll_prompt {
    position: absolute;
    /*top: -12vh;*/
    right: 110px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    --animate-duration: 1s;
}
.banner_bottom .roll_prompt .mouse {
    display: block;
    width: auto;
    height: 32px;
    animation: screen1 2s linear infinite;
}
.banner_bottom .roll_prompt .prompt {
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    margin-top: 12px;
    width: 64px;
    text-align: center;
}

.carousel_show .button-group {
    display: flex;
    gap: 24px;
    margin-top: 0px;
}




@keyframes screen1 {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
.briefIntroduction {
    width: 974px;
    padding: 0 0 25px 0;
}
.briefIntroduction p {
    font-size: 24px;
    line-height: 42px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}
.home_content {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.number_show > ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.number_show > ul li {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 40px;
}
.number_show > ul li .label {
    font-size: 20px;
    line-height: 32px;
    color: #fff;
    margin-top: 10px;
}
.number_show > ul li .show_top {
    display: flex;
    align-items: baseline;
}
.number_show > ul li .show_top span {
    font-size: 60px;
    line-height: 60px;
    color: #fff;
}
.number_show > ul li .show_top i {
    font-size: 20px;
    line-height: 20px;
    font-style: normal;
    color: #fff;
}
.number_show > ul li.line {
    content: "";
    width: 1px;
    height: 112px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.bounce {
    display: inline-block;
    animation: bounce 0.3s ease;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
.home_content .aboutUs {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #002F5B;
    padding-top: 60px;
    padding-bottom: 140px;
}
.home_content .aboutUs .aboutUs_more {
    width: 160px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #002F5B;
    background: #fff;
    border-radius: 35px;
    margin-top: 73px;
    transition: all 0.36s;
}
.home_content .aboutUs .aboutUs_more:hover{
    background: #25AADE;
    color: #fff;
}
.campusNotice {
    padding: 0 70px;
    display: flex;
    justify-content: center;
}
.campusNotice .notice_list {
    padding: 57px 90px 47px 90px;
    border-radius: 20px;
    background: #F2F5F7;
    display: flex;
    /*gap: 0 calc((100% - 1120px) / 6);*/
    max-width: 1780px;
    margin: -57px auto 0 auto;
}
.campusNotice .notice_list li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25%;
    height: 168px;
    padding-left: 5%;
    margin-left: 5%;
    position: relative;
}
.campusNotice .notice_list li:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: -5%;
    width: 1px;
    height: 100%;
    background: rgba(156, 172, 184, 0.5);
}
.campusNotice .notice_list li:first-child {
    padding-left: 0;
    margin-left: 0;
}
.campusNotice .notice_list li:first-child:before {
    display: none;
}
.campusNotice .notice_list li.line {
    width: 1px;
    height: 176px;
    background: rgba(156, 172, 184, 0.5);
}
.campusNotice .notice_list li .list_top {
    display: flex;
    align-items: center;
}
.campusNotice .notice_list li .list_top a {
    font-size: 16px;
    line-height: 28px;
    color: #002F5B;
}
.campusNotice .notice_list li .list_top .date {
    font-size: 16px;
    line-height: 28px;
    color: #666;
}
.campusNotice .notice_list li .list_top .line {
    width: 1px;
    height: 14px;
    background: #9CACB8;
    margin: 0 12px;
}
.campusNotice .notice_list li .list_title {
    margin-top: 16px;
    flex-grow: 1
}
.campusNotice .notice_list li .list_title a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 32px;
}
.campusNotice .notice_list li .list_details a {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 2px solid #00b8ff;
}
.newsAndEvents {
    width: 1660px;
    margin: 120px auto 0 auto;
    padding-bottom: 140px;
}
.newsAndEvents .col_title {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.newsAndEvents .col_title .col_more {
    width: 160px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #002F5B;
    font-size: 16px;
    color: #fff;
    border-radius: 35px;
    transition: all 0.36s;
}
.newsAndEvents .col_title .col_more:hover{
    background: #25AADE;
}
.activity_carousel {
    margin-top: 60px;
}
.activity_carousel ul li {
    width: 537px;
    /*margin-left: 25px;*/
}
.carousel_fadeRight {
    animation: fadeInRight .8s ease-in-out both;
    animation-delay: .1s
}
.activity_carousel ul li:nth-child(2) {
    animation-delay: .2s
}
.activity_carousel ul li:nth-child(3) {
    animation-delay: .3s
}
.activity_carousel ul li:nth-child(4) {
    animation-delay: .4s
}
.activity_carousel ul li:nth-child(5) {
    animation-delay: .5s
}

.activity_carousel ul li .activity_img {
    padding: 0 30px 30px 30px;
    background: url("bgImg.png") no-repeat bottom center;
}
.activity_carousel ul li .activity_img .imgBox {
    border-radius: 15px;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 300px;
}
.activity_carousel ul li .activity_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .36s ease;
}
.activity_carousel ul li .activity_content {
    height: 196px;
    padding: 0 30px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.activity_carousel ul li .date span {
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
    color: #666;
}
.activity_carousel ul li .activity_title {
    margin-top: 16px;
    flex-grow: 1;
}
.activity_carousel ul li .activity_title {
    display: inline-block;
    font-size: 20px;
    line-height: 42px;
    color: #333;
}
.activity_carousel ul li .activity_details {
    display: inline-block;
    font-size: 16px;
    color: #333;
    line-height: 24px;
    padding-bottom: 6px;
    border-bottom: 2px solid #00b8ff;
}
.activity_carousel ul li a:hover .imgBox img {
    transform: scale(1.05);
}
.activity_carousel ul li a:hover .activity_details {
    color: #25AADE;
}
.activity_carousel .widget{
    margin-top: 60px;
    padding: 0 30px;
    display: flex;
    align-items: center;
}
.activity_carousel .widget .widgetBtn{
    display: flex;
    gap: 0 16px;
    align-items: center;
    height: auto;
}
.widgetBtn .swiper-button-next,
.widgetBtn .swiper-button-prev{
    position: initial;
    width: 44px;
    height: 44px;
    border: 1px solid #002F5B;
    opacity: 1;
    border-radius: 100%;
    cursor: pointer;
    margin-top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}
.widgetBtn .swiper-button-next{
    background-image: url("iconNext.png");
}
.widgetBtn .swiper-button-next:hover{
    background-color: #002F5B;
    background-image: url("iconNext_hover.png");
}
.widgetBtn .swiper-button-prev{
    background-image: url("iconPrev.png");
}
.widgetBtn .swiper-button-prev:hover{
    background-color: #002F5B;
    background-image: url("iconPrev_hover.png");
}
.widgetBtn .swiper-button-next.swiper-button-disabled,
.widgetBtn .swiper-button-prev.swiper-button-disabled{
    background-color: #ddd;
    opacity: 0.4;
}
.activity_carousel .widget .swiper-scrollbar{
    position: initial;
    flex-grow: 1;
    height: 2px;
    background: #CACACA;
    margin-left: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /*opacity: 1!important;*/
}
.activity_carousel .widget .swiper-scrollbar-drag{
    background: #002F5B;
    border-radius: 0;
}
.specialSubject{
    position: relative;
}
.swiper-pagination{
    right: 50px;
}
.specialSubject .swiper-wrapper .swiper-slide{
    height: 940px;
}
.specialSubject .swiper-wrapper .swiper-slide .carousel_img{
    width: 100%;
    height: 100%;
}
.specialSubject .swiper-wrapper .swiper-slide .carousel_img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.specialSubjectCarousel .swiper-pagination{
    width: auto;
    left: auto;
    right: 50px;
    top: 50%;
    display: flex;
    flex-direction: column;
    gap: 6px 0;
}
.specialSubjectCarousel .swiper-pagination-clickable .swiper-pagination-bullet{
    width: 2px;
    height: 30px;
    background: #fff;
    opacity: 0.5;
}
.specialSubjectCarousel .swiper-pagination-clickable .swiper-pagination-bullet-active{
    opacity: 1;
}
.specialSubjectCarousel ul li .linkGo{
    position: absolute;
    top: 155px;
    left: 385px;
}
.specialSubjectCarousel ul li .linkGo .go_con{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.specialSubjectCarousel ul li .linkGo .go_con .con1{
    width: auto;
    height: 160px;
}
.specialSubjectCarousel ul li .linkGo .go_con .con2{
    width: auto;
    height: 60px;
    margin-top: 62px;
}
.specialSubjectCarousel ul li .linkContent{
    position: absolute;
    left: 160px;
    bottom: 110px;
    max-width: 780px;
}
.specialSubjectCarousel ul li .linkContent p{
    font-size: 20px;
    line-height: 35px;
    color: #fff;
}
.specialSubjectCarousel ul li .linkContent .more{
    width: 160px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #002F5B;
    border-radius: 35px;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    margin-top: 47px;
    transition: all 0.36s;
}
.specialSubjectCarousel ul li .linkContent .content_title{
    margin-bottom: 24px;
}
.specialSubjectCarousel ul li .linkContent .content_title a{
    display: inline-block;
    font-size: 40px;
    line-height: 52px;
    color: #fff;
    font-weight: bold;
}
.studyExample{
    padding: 120px 0;
    background: url("bgStudyExample.png") no-repeat bottom center;
    background-size: cover;
}
.studyExample .studyExample_top{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.studyExample .studyExample_top .title img{
    display: block;
    width: auto;
    height: 85px;
}
.studyExample .studyExample_top .describe{
    margin-top: 14px;
    max-width: 935px;
}
.studyExample .studyExample_top .describe p{
    text-align: center;
    font-size: 16px;
    line-height: 28px;
    color: #333;
}

.studyExample_bottom{
    width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
}
.studyExampleCarousel{
    /* width: 1600px;*/

}
.studyExampleCarousel ul{
    display: flex;
    margin-top: 70px;
}
.studyExampleCarousel ul li{
    background: #fff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    width: 333px;
    height: 434px;
    margin-right: 36px;
}
.studyExampleCarousel ul li > a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 43px 67px 20px 67px;
}
.studyExampleCarousel ul li .content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.studyExampleCarousel ul li .content .name{
    font-size: 24px;
    line-height: 42px;
    font-weight: bold;
    color: #222;
}
.studyExampleCarousel ul li .content .imgBox{
    width: 200px;
    height: 200px;
    border-radius: 100%;
    overflow: hidden;
    margin-top: 30px;
}
.studyExampleCarousel ul li .content .imgBox img{
    display: block;
    width: 100%;
    height: 100%;
}
.studyExampleCarousel ul li .content .message{
    font-size: 16px;
    line-height: 28px;
    color: #595757;
    font-weight: 400;
    margin-top: 33px;
    max-width: 172px;
    text-align: center;
}
.studyExampleCarousel ul li .btn-point{
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    width: 70px;
    height: 70px;
}
.studyExampleCarousel ul li .btn-point span:nth-child(1) {
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 70px;
    height: 70px;
    background: #f6f9fc;
    border-radius: 50% 0 0 0;
    transition: bottom .7s cubic-bezier(.785,.135,.15,.86), right .7s cubic-bezier(.785,.135,.15,.86), transform .3s;
}
.studyExampleCarousel ul li .btn-point span:nth-child(1)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 40px;
    height: 40px;
    border-right: none;
    box-sizing: content-box;
    background: radial-gradient(circle at 0 0, transparent 71%, #f6f9fc 70%);
}
.studyExampleCarousel ul li .btn-point span:nth-child(1)::after {
    content: "";
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    border-bottom: none;
    box-sizing: content-box;
    background: radial-gradient(circle at 0 0, transparent 71%, #f6f9fc 70%);
}
.studyExampleCarousel ul li .btn-point span:nth-child(2) {
    overflow: hidden;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    transform: scale(0);
    transform-origin: right bottom;
    transition: transform .6s cubic-bezier(.785,.135,.15,.86);
}
.btn-point span:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #002F5B;
}
.btn-point span:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(iconRight.png) no-repeat center;
    background-size: 25px;
}
.studyExampleCarousel ul li:hover .btn-point span {
    --velocity: 0.8;
}
.studyExampleCarousel ul li:hover .btn-point span:nth-child(1) {
    bottom: 0;
    right: 0;
    transition: bottom calc(.7s * var(--velocity)) cubic-bezier(.785, .135, .15, .86), right calc(.7s * var(--velocity)) cubic-bezier(.785, .135, .15, .86), transform .3s;
    animation: icon-btn-ani calc(1.4s * var(--velocity)) calc(0s * var(--velocity)) both ease-out;
    transform-origin: right bottom
}
.studyExampleCarousel ul li:hover .btn-point span:nth-child(2) {
    overflow: visible;
    transform: scale(1);
    transition: transform calc(.7s * var(--velocity)) calc(.05s * var(--velocity)) cubic-bezier(.785, .135, .15, .86);
}
.studyExampleCarousel ul li:hover .btn-point span:nth-child(2)::before {
    animation: icon-btn-ani calc(1.35s * var(--velocity)) calc(.05s * var(--velocity)) both ease-out;
    transform-origin: right bottom;
}
.studyExampleCarousel ul li:hover .btn-point span:nth-child(2)::after {
    animation: icon-btn-ani calc(1.35s * var(--velocity)) calc(.05s * var(--velocity)) both ease-out;
    transform-origin: right bottom;
}
@keyframes icon-btn-ani {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
    70% {
        transform: scale(.98)
    }
    100% {
        transform: scale(1)
    }
}
.studyExample_bottom .swiper-button-next,
.studyExample_bottom .swiper-button-prev{
    width: 44px;
    height: 44px;
    border: 1px solid #002F5B;
    opacity: 1;
    border-radius: 100%;
    cursor: pointer;
    margin-top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    position: absolute;
}
.studyExample_bottom .swiper-button-prev,
.studyExample_bottom .swiper-container-rtl .swiper-button-next{
    left: 0;
}
.studyExample_bottom .swiper-button-next{
    background-image: url("iconNext.png");
    right: 0;
}
.studyExample_bottom .swiper-button-next:hover{
    background-color: #002F5B;
    background-image: url("iconNext_hover.png");
}
.studyExample_bottom .swiper-button-prev{
    background-image: url("iconPrev.png");
}
.studyExample_bottom .swiper-button-prev:hover{
    background-color: #002F5B;
    background-image: url("iconPrev_hover.png");
}
.studyExample_bottom .swiper-button-next.swiper-button-disabled,
.studyExample_bottom .swiper-button-prev.swiper-button-disabled{
    background-color: #ddd;
    opacity: 0.4;
}
.studyExample .more{
    display: flex;
    justify-content: center;
    margin-top: 80px;
}
.studyExample .more a{
    width: 160px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #002F5B;
    font-size: 16px;
    color: #fff;
    border-radius: 35px;
    transition: all 0.36s;
}
.specialSubjectCarousel ul li .linkContent .more,
.studyExample .more a:hover{
    background-color: #25AADE;
}
.col_link{
    padding: 98px 0;
    background: url("bgLink.jpg") no-repeat center;
    background-size: cover;
}
.col_link ul{
    display: flex;
    width: 1660px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
}
.col_link ul li{
    width: 25%;
    height: 260px;
    transition: all 0.36s;
}
.col_link ul li.active{
    backdrop-filter: blur(10px);
}
.col_link ul li a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 42px;
}
.col_link ul li a h2{
    font-size: 32px;
    height: 56px;
    line-height: 56px;
    font-weight: bold;
    color: #fff;
    transition: all 0.36s;
}
.col_link ul li a span{
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    opacity: 1;
    display: none;
}
.col_link ul li:nth-child(2){
    animation-delay: .2s
}
.col_link ul li:nth-child(3){
    animation-delay: .3s
}
.col_link ul li:nth-child(4){
    animation-delay: .4s
}
.group_school{
    width: 1440px;
    margin: 0 auto;
    padding: 120px 0 60px 0;
    display: none;
}
.group_school_top{
    display: flex;
    justify-content: center;
}
.group_school_top img{
    display: block;
    width: auto;
    height: 90px;
}
.group_school .group_school_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 60px;
}
.group_school .group_school_list li{
    width: 48%;
    margin: 0 1%;
}
.group_school .group_school_list li a{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.group_school .group_school_list li a img{
    display: block;
    width: 100%;
    height: 300px;
    transition: ease 0.4s;
}
.group_school .group_school_list li a:hover img{
    transform:  scale(1.1);
}

/* 移动端 */
@media screen and (max-width: 768px){
    .swiper-button-next,
    .swiper-button-prev{
        display: none;
    }
    .home_header .header_banner{
        height: calc(100vh - 1rem);
        background-size: 100% 40vh;
    }
    .header_banner .banner_carousel{
        padding-top: 1rem;
    }
    .header_banner .banner_carousel .swiper-wrapper li{

    }
    .header_banner .banner_carousel .swiper-wrapper li .carousel_show img{
        width: 80%;
        height: auto;
        display: block;
    }
    .swiper-pagination{
        right: 0;
    }
    .swiper-pagination-clickable .swiper-pagination-bullet{
        width: 0.5rem;
        height: 0.02rem;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
        margin: 0 0.1rem;
    }
    .carousel_show h1{
        font-size: 0.48rem;
        line-height: 0.8rem;
        padding: 0 0.5rem;
    }
    .carousel_show a.more{
        width: 1.8rem;
        height: 0.8rem;
        line-height: 0.2rem;
        font-size: 0.2rem;
        margin-top: 0.8rem;
    }
    .banner_bottom{
        padding-bottom: 2vh;
    }
    .banner_bottom .roll_prompt{
        display: none;
    }
    .briefIntroduction{
        width: 100%;
        padding: 0 0.24rem;
    }
    .briefIntroduction p{
        font-size: 0.32rem;
        line-height: 0.6rem;
    }
    .home_content .aboutUs{
        padding-top: 1rem;
        padding-bottom: 1.2rem;
    }
    .number_show{
        width: 80%;
    }
    .number_show > ul{
        gap: 0;
        justify-content: space-between;
    }
    .number_show > ul li{
        gap: 0.1rem 0;
        margin: 0;
    }
    .number_show > ul li .label{
        font-size: 0.3rem;
        line-height: 0.48rem;
    }
    .number_show > ul li .show_top span{
        font-size: 0.6rem;
        line-height: 0.6rem;
    }
    .number_show > ul li.line{
        width: 0.01rem;
        height: 1rem;
    }
    .number_show > ul li .show_top i{
        font-size: 0.26rem;
        line-height: 0.3rem;
    }
    .home_content .aboutUs .aboutUs_more{
        width: 2rem;
        height: 0.6rem;
        line-height: 0.6rem;
        font-size: 0.26rem;
        border-radius: 0.4rem;
        margin-top: 1rem;
    }
    .campusNotice{
        padding: 0 0.24rem;
    }
    .campusNotice .notice_list{
        flex-direction: column;
        padding: 0.48rem 0.24rem;
        margin-top: -0.5rem;
    }
    .campusNotice .notice_list li{
        width: 100%;
        height: auto;
        padding-left: 0;
        margin-left: 0;
        padding-bottom: 0.3rem;
        padding-top: 0.4rem;
    }
    .campusNotice .notice_list li:before{
        width: 100%;
        height: 0.01rem;
        left: 0;
    }
    .campusNotice .notice_list li:first-child{
        padding-top: 0;
    }
    .campusNotice .notice_list li .list_top a{
        font-size: 0.34rem;
        line-height: 0.48rem;
    }
    .campusNotice .notice_list li .list_top .line{
        width: 0.01rem;
        height: 0.4rem;
        margin: 0 0.2rem;
    }
    .campusNotice .notice_list li .list_top .date{
        font-size: 0.34rem;
        line-height: 0.48rem;
    }
    .campusNotice .notice_list li .list_title{
        font-size: 0.32rem;
        margin-top: 0.24rem;
    }
    .campusNotice .notice_list li .list_title a{
        font-size: 0.32rem;
        line-height: 0.4rem;
    }
    .campusNotice .notice_list li .list_details a{
        font-size: 0.34rem;
        line-height: 0.48rem;
        padding: 0.1rem;
        border-width: 0.02rem;
    }
    .newsAndEvents{
        width: 100%;
        padding: 0 0.24rem;
        margin-top: 0.6rem;
    }
    .newsAndEvents .col_title img{
        width: auto;
        height: 0.6rem;
    }
    .newsAndEvents .col_title .col_more{
        width: 1.6rem;
        height: 0.5rem;
        line-height: 0.5rem;
        font-size: 0.24rem;
        border-radius: 0.4rem;
    }
    .activity_carousel{
        margin-top: 0.4rem;
    }
    .activity_carousel ul li{
        margin-right: 0;
    }
    .activity_carousel ul li a{
        display: block;
        width: 100%;
        height: 100%;
    }
    .activity_carousel ul li .activity_img{
        padding: 0 0.3rem 0.3rem 0.3rem;
        background-size: 100% auto;
    }
    .activity_carousel ul li .activity_img .imgBox{
        border-radius: 0.2rem;
        height: 4.2rem;
    }
    .activity_carousel ul li .activity_content{
        height: 2.42rem;
        padding: 0 0.48rem;
        margin-top: 0.2rem;
    }
    .activity_carousel ul li .date{
        display: flex;
        align-items: center;
    }
    .activity_carousel ul li .date span{
        font-size: 0.28rem;
        line-height: 0.42rem;
    }
    .activity_carousel ul li .activity_title{
        font-size: 0.32rem;
        line-height: 0.48rem;
    }
    .activity_carousel ul li .activity_details{
        font-size: 0.28rem;
        line-height: 0.36rem;
        padding-bottom: 0.1rem;
        border-width: 0.02rem;
        margin-top: 0.4rem;
    }
    .activity_carousel .widget{
        display: none;
    }



    .specialSubject{
        margin-top: 0.4rem;
    }
    .specialSubject .swiper-wrapper{
        height: auto;
    }
    .specialSubject .swiper-wrapper .swiper-slide{
        height: 9rem;
    }
    .specialSubjectCarousel .swiper-pagination{
        top: auto;
        bottom: 0.4rem;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        gap: 0 0.1rem;
        flex-direction: row;
    }
    .specialSubjectCarousel .swiper-pagination-clickable .swiper-pagination-bullet{
        width: 0.4rem;
        height: 0.02rem;
        margin: 0;
    }
    .specialSubjectCarousel .swiper-slide .carousel_img img{
        display: block;
        width: auto;
        height: 100%;
        object-fit: cover;
    }
    .specialSubjectCarousel ul li .linkGo{
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        padding: 1rem 0.24rem 0.24rem 0.8rem;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.4);
    }
    .specialSubjectCarousel ul li .linkGo .go_con .con1{
        height: 1.6rem;
    }
    .specialSubjectCarousel ul li .linkGo .go_con .con2{
        height: 0.6rem;
        margin-top: 0.62rem;
    }
    .specialSubjectCarousel ul li .linkContent{
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        bottom: auto;
        padding: 2rem 0.24rem 0.24rem 0.24rem;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.4);
    }
    .specialSubjectCarousel ul li .linkContent .content_title{
        margin-bottom: 0.4rem;
        display: flex;
        align-items: center;
    }
    .specialSubjectCarousel ul li .linkContent .content_title a{
        font-size: 0.52rem;
        line-height: 0.72rem;
    }
    .specialSubjectCarousel ul li .linkContent p{
        font-size: 0.32rem;
        line-height: 0.48rem;
    }
    .specialSubjectCarousel ul li .linkContent .more{
        width: 1.6rem;
        height: 0.5rem;
        line-height: 0.5rem;
        font-size: 0.24rem;
        border-radius: 0.4rem;
        margin-top: 0.4rem;
    }
    .studyExample{
        padding: 1rem 0;
    }
    .studyExample .studyExample_top .title img{
        height: 0.8rem;
    }
    .studyExample .studyExample_top .describe{
        max-width: 100%;
        margin-top: 0.4rem;
        padding: 0 0.24rem;
    }
    .studyExample .studyExample_top .describe p{
        font-size: 0.22rem;
        line-height: 0.36rem;
    }
    .studyExample_bottom{
        width: 100%;
        padding: 0 0.24rem;
    }
    .studyExampleCarousel ul{
        margin-top: 0.48rem;
    }
    .studyExampleCarousel ul li{
        margin-right: 0;
        height: 4.5rem;
    }
    .studyExampleCarousel ul li > a{
        padding: 0.48rem 0.24rem 0.24rem 0.24rem;
    }
    .studyExampleCarousel ul li .content .name{
        font-size: 0.3rem;
        line-height: 0.42rem;
    }
    .studyExampleCarousel ul li .content .imgBox{
        width: 2rem;
        height: 2rem;
        margin-top: 0.16rem;
    }
    .studyExampleCarousel ul li .content .imgBox img{
        width: 100%;
        height: 100%;
        display: block;
    }
    .studyExampleCarousel ul li .content .message{
        font-size: 0.24rem;
        line-height: 0.32rem;
        margin-top: 0.32rem;
        max-width: 90%;
    }
    .studyExampleCarousel ul li .btn-point{
        width: 0.8rem;
        height: 0.8rem;
    }
    .studyExampleCarousel ul li .btn-point span:nth-child(1){
        width: 0.8rem;
        height: 0.8rem;
    }
    .studyExampleCarousel ul li .btn-point span:nth-child(2){
        width: 0.6rem;
        height: 0.6rem;
    }
    .studyExample_bottom .swiper-button-next,
    .studyExample_bottom .swiper-button-prev{
        display: none;
    }
    .studyExample .more{
        margin-top: 0.8rem;
    }
    .studyExample .more a{
        width: 1.6rem;
        height: 0.5rem;
        line-height: 0.5rem;
        font-size: 0.24rem;
        border-radius: 0.4rem;
    }


    .col_link{
        padding: 0.8rem 0.24rem;
    }
    .col_link ul{
        width: 100%;
        flex-direction: column;
    }
    .col_link ul li{
        width: 100%;
        height: auto;
        padding: 0.4rem 0.2rem;
    }
    .col_link ul li a{
        padding: 0 0.4rem;
    }
    .col_link ul li a h2{
        font-size: 0.38rem;
        height: 0.8rem;
        line-height: 0.8rem;
    }
    .col_link ul li a span{
        font-size: 0.28rem;
        line-height: 0.48rem;
        margin-top: 0.16rem;
    }
    .group_school{
        width: 100%;
        padding: 0.4rem 0.24rem 0.6rem 0.24rem;
    }
    .group_school_top img{
        height: 0.8rem;
    }
    .group_school .group_school_list{
        margin-top: 0.2rem;
        flex-direction: column;
        align-items: center;
    }
    .group_school .group_school_list li{
        width: 100%;
        margin: 0.4rem 0 0 0;
    }
    .group_school .group_school_list li a img{
        height: auto;
    }
}