* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "å¾®è½¯é›…é»‘";
}

a {
    text-decoration: none;
    color: #000;
}

ul,
ol {
    list-style: none;
}

img {
    border: none;
    vertical-align: middle;
}


/* å¤´éƒ¨æ ·å¼ */
.index-header {
    width: 100%;
    height: auto;
}

.index-header-logo {

    width: 100%;
    height: auto;
    background: url("../img/topback.png") no-repeat center center;
    background-size: 100% 100%;
}

.index-header-logo-one {
    width: 1200px;
    margin: 0 auto;
    text-align: right;
    padding-top: 20px;
}

.index-header-logo-one span {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.index-header-logo-two {
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}
.index-header-logo-two img{
    width: 700px;
}
/* èœå• */
.index-header-menu {
    width: 100%;
    height: 60px;
    background: url("../img/menuBack.png");
    background-position: 0 -15px;
    position: relative;
    z-index: 100; /* Ensure menu appears above other content */
}

.index-header-menu-body {
    width: 1200px;
    margin: 0 auto;
}

.main-menu {
    display: flex;
    justify-content: space-between;
    height: 60px;
}

.menu-item {
    display: flex;
    align-items: center;
    position: relative;
}

.menu-item > a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px;
    height: 60px;
    line-height: 60px;
    transition: all 0.3s;
    position: relative;
    display: block;
}

.menu-item > a:hover {
    color: #f0f0f0;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Submenu styles */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 60px;
    left: -23px;
    width: 130px;
    background-color: rgba(4, 123, 81, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    border-radius: 0 0 5px 5px;
    z-index: 100;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    display: block;
    width: 100%;
    text-align: center;
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.submenu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

/* Mobile menu control */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 15px;
    z-index: 101;
    position: absolute;
    right: 15px;
    top: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive menu */
@media screen and (max-width: 1200px) {
    .index-header-menu-body {
        width: 95%;
    }
    
    .main-menu {
        justify-content: space-around;
    }
}

@media screen and (max-width: 992px) {
    .index-header-menu {
        height: auto;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 10px;
    }
    
    .main-menu {
        display: none;
        flex-direction: column;
        height: auto;
        background-color: rgba(4, 123, 81, 0.95);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
    }
    
    .main-menu.active {
        display: flex;
    }
    
    .menu-item {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu-item > a {
        width: 100%;
        padding: 15px;
        height: auto;
        line-height: normal;
    }
    
    .submenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.2);
        padding: 0;
    }
    
    .submenu.active {
        display: block;
    }
}

/* Swiper è½®æ’­å›¾æ ·å¼ */
.index-header-swiper {
    width: 100%;
    position: relative;
}

.index-header-swiper-body {
    width: 100%;
    position: relative;
}

.swiper-slide img.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* åˆ›å»º1200å®½åº¦çš„ç®­å¤´å®¹å™¨ */
.index-header-swiper:before {
    content: "";
    position: absolute;
    width: 1200px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

/* è‡ªå®šä¹‰å¯¼èˆªç®­å¤´ */
.swiper-button-prev,
.swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    background-color: rgba(1, 1, 1, 0.5);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 10;
}

/* è®¾ç½®å·¦å³ç®­å¤´ä½ç½®ï¼Œé™åˆ¶åœ¨1200pxå®½åº¦å†… */
.swiper-button-prev {
    left: calc(50% - 600px) !important;
}

.swiper-button-next {
    right: calc(50% - 600px) !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px !important;
    color: #fff;
    font-weight: bold;
}

/* åˆ†é¡µå™¨æ ·å¼ */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff !important;
    opacity: 1 !important;
    width: 14px !important;
    height: 14px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #047b51 !important;
}


/* æ–°é—»åˆ—è¡¨ */
.index-news-list {
    width: 100%;
    height: auto;
    background: url("../img/indexNewBg.png") no-repeat center center;
    background-size: 100% 100%;
    padding: 40px 0 50px;
    overflow: hidden;
}

.index-news-list-body {
    width: 1400px;
    margin: 0 auto;
}

.index-news-list-one {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 5px;
}

/* æ ‡é¢˜å’Œå³ä¾§å…ƒç´ åŒºåŸŸ */
.index-news-list-one .right-side {
    display: flex;
    align-items: center;
}

.index-news-list-one div {
    font-size: 32px;
    color: #000;
    font-weight: bold;
}

.index-news-list-one a {
    font-size: 16px;
    color: #6c6b6b;
    display: flex;
    align-items: center;
    font-weight: normal;
}

.index-news-list-one a img {
    margin-left: 5px;
    width: 16px;
    height: 16px;
}

/* æ–°é—»ä¸»ä½“å†…å®¹ */
.index-news-list-two {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* å·¦ä¾§å›¾æ–‡æ–°é—» */
.index-news-list-two-left {
    width: 42%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
}

.index-news-list-two-left:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.news-img-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.index-news-list-two-left:hover .news-img-box img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #047b51;
    color: #fff;
    padding: 8px 15px;
    display: flex;
    align-items: center;
}

.news-date span {
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.news-date img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.news-content {
    padding: 20px 15px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #292929;

}

.news-content p {
    font-size: 15px;
    color: #ababab;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* å³ä¾§æ–°é—»åˆ—è¡¨ */
.index-news-list-two-right {
    width: 55%;
    padding-top: 5px;
}

.index-news-list-two-right ul {
    width: 100%;
}

.index-news-list-two-right ul li {
    height: 70px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    transition: all 0.3s;
}

.index-news-list-two-right ul li::after{
    display: block;
    content: '';
    width: 70%;
    height: 10px;
    background: url("../img/hoverLine.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    bottom: -3px;
    left: 0;
    opacity: 0;
    transition: all 0.3s;
}
.index-news-list-two-right ul li:hover{
    border-bottom: none;
}
.index-news-list-two-right ul li:hover::after{
    opacity: 1;
}
.news-item {
    display: flex;
    align-items: center;
    position: relative;
    height: auto;
    line-height: 70px;
}

.news-dot {
    width: auto;
    height: auto;
    /* background: url("../img/listStyle1.png") no-repeat center center; */
    /* background-size:; */
    margin-right: 8px;
    flex-shrink: 0;
}

.news-item a {
    font-size: 16px;
    color: #333;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s;
    padding-right: 100px;
    display: block;
}

.news-item a:hover {
    color: #047b51;
}

.news-time {
    position: absolute;
    right: 0;
    color: #047b51;
    font-size: 14px;
}
.news-title {
    font-size: 18px;
    color: #0c0c0c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 75%;
}

.index-news-list-two-right ul li:first-child{
    height: 50px;
}
.index-news-list-two-right ul li:first-child .news-item{
    line-height: 30px;
}


/* é€šçŸ¥å…¬å‘Šå’Œæ•™å¸ˆé£Žé‡‡æ•´ä½“å¸ƒå±€ */
.index-notice-teacher {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: url("../img/niticoBg.png") no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
}

.index-notice-teacher-body {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

/* é€šçŸ¥å…¬å‘Šéƒ¨åˆ† */
.index-notice {
    width: 800px;
}

.index-notice-body {
    width: 100%;
}

.index-notice-tabs {
    display: flex;
    margin-right: 20px;
}

.index-notice-tabs span {
    display: block;
    padding: 8px 20px;
    margin-right: 10px;
    /* background-color: #047b51; */
    color: #047b51;
    border-radius: 20px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.index-notice-tabs span.active {
    border: 1px solid #047b51;
    color: #047b51;
}

.index-notice-tabs span:not(.active) {
    /* background-color: #fff; */
    color: #047b51;
}
.index-notice-list{
    display: none;
}
.index-notice-list ul li {
    height: 55px;
    /* border-bottom: 1px solid #e5e5e5; */
    position: relative;
    transition: all 0.3s;
}

.index-notice-list ul li:hover .notice-title{
    color: #1a1a1a;
    font-weight: bold;
}


.notice-item {
    display: flex;
    align-items: center;
    position: relative;
    height: auto;
    line-height: 55px;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.notice-icon {
    width: auto;
    height: auto;
    margin-right: 15px;
    flex-shrink: 0;
}
.notice-icon img{
    margin-top: -3px;
}
.notice-title {
    font-size: 18px;
    color: #1a1a1a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 100px;
    width: 80%;
    display: block;
    transition: all 0.5s;
}

.notice-time {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

.notice-time .day {
    font-size: 26px;
    /* font-weight: bold; */
    color: #047b51;
}

.notice-time .year-month {
    font-size: 18px;
    color: #047b51;
    line-height: 60px;
    display: block;
    padding-top: 5px;
}

/* æ•™å¸ˆé£Žé‡‡éƒ¨åˆ† */
.index-teacher {
    width: 540px;
}

.index-teacher-body {
    width: 100%;
}

.index-teacher-show {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.teacher-show-item {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

.teacher-show-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.teacher-img {
    width: 100%;
    height: 315px;
    overflow: hidden;
}

.teacher-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.teacher-show-item:hover .teacher-img img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.teacher-decoration {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background: url("../img/teacherRightPic.png") no-repeat;
    background-size: 100% 110%;
    border-radius: 5px 0 0 5px;
    z-index: 10000;
}

.teacher-info {
    width: calc(100% - 80px);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0));
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    line-height: 60px;
    padding-bottom: 10px;
    border: none;
    box-shadow: none;
}

.teacher-info h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    text-indent: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.read-more {
    color: #047b51;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s;
}

.read-more:hover {
    color: #036341;
}

/* æ•™å¸ˆé£Žé‡‡è½®æ’­æ ·å¼ */
.index-teacher-show {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* æ•™å¸ˆè½®æ’­å¯¼èˆªæŒ‰é’® */
.teacher-swiper-next,
.teacher-swiper-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s;
}

.teacher-swiper-next:after,
.teacher-swiper-prev:after {
    font-size: 16px !important;
    font-weight: bold;
    color: #047b51;
}

.index-teacher-show:hover .teacher-swiper-next,
.index-teacher-show:hover .teacher-swiper-prev {
    opacity: 1;
}

/* æ•™å¸ˆè½®æ’­åˆ†é¡µå™¨ */
.teacher-swiper-pagination {
    position: absolute;
    bottom: 70px !important;
    z-index: 100;
}

.teacher-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.7;
}

.teacher-swiper-pagination .swiper-pagination-bullet-active {
    background: #047b51;
    opacity: 1;
}

/* æŸ¥çœ‹æ›´å¤šæŒ‰é’® */
.view-more {
    display: flex;
    align-items: center;
    color: #6c6b6b;
    font-size: 16px;
    text-decoration: none;
}

.view-more img {
    margin-left: 5px;
    width: 16px;
    height: 16px;
}


/* å­¦æœ¯äº¤æµ */
.index-academic {
    width: 100%;
    background: url("../img/xsjlBg.png") no-repeat;
    background-size: 100% 100%;
    background-position: center top;
    position: relative;
    padding: 40px 0;
    min-height: 600px;
}

.index-academic-body {
    width: 1400px;
    margin: 0 auto;-
    position: relative;
    z-index: 1;
}

.index-academic-content {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* å·¦ä¾§å›¾ç‰‡æ–°é—» */
.index-academic-left {
    width: 48%;
    display: flex;
    justify-content: space-between;
}

.academic-image-item {
    width: 48%;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.academic-image-item:hover {
    transform: translateY(-5px);
}
.academic-image-item:hover .academic-title{
    font-weight: bold;

}
.academic-img-box {
    width: 100%;
    position: relative;

}

.academic-img-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s;
}

.academic-image-item:hover .academic-img-box img {
    transform: scale(1.05);
}

.academic-date {
    position: absolute;
    top: 95%;
    transform: translateY(-25%);
    color: #fff;
    font-size: 18px;
    display: flex;
    background-color: rgba(54, 149, 116, 0.8);
    border-radius: 0px 20px 0 0;
    width: 130px;
    height: 40px;
    line-height: 40px;
    justify-content: center;
}

.academic-date span:first-child {
    font-size: 24px;
    margin-right: 2px;
}

.academic-title {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    height: 200px;
    display: flex;
    align-items: center;
    background: url("../img/xsjlNewPic.png") no-repeat;
    background-size: 100% 100%;
    padding: 0 15px;
}

/* å³ä¾§æ–‡å­—åˆ—è¡¨ */
.index-academic-right {
    width: 49%;
    border-radius: 5px;
}

.index-academic-right ul {
    width: 100%;
}

.index-academic-right ul li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 80px;
    line-height: 80px;
}

.index-academic-right ul li:hover {
    border-bottom-color: #047b51;
}
.index-academic-right ul li:first-child{
    height: 50px;
    line-height: 30px;
}
.index-academic-right ul li:last-child {
    height: 50px;
    line-height: 60px;
    border-bottom: none;
}
.academic-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.academic-list-title {
    width: 75%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #0f0f0f;
    transition: all 0.3s;
    font-size: 18px;
}

.index-academic-right ul li:hover .academic-list-title {
    color: #047b51;
}

.academic-list-date {
    color: #0f0f0f;
    font-size: 16px;
}

.index-academic .index-news-list-one {
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 0;
}

.index-academic .index-news-list-one div {
    font-size: 32px;
    color: #000;
    font-weight: bold;
}


/* ç§‘å­¦ç ”ç©¶å’Œæ°å‡ºæ ¡å‹å­¦ç”Ÿæ¦œæ · */

/* å…±åŒå®¹å™¨æ ·å¼ */
.index-sections-container {
    width: 100%;
    background: url('../img/lastPic.png') no-repeat center;
    background-size: cover;
    padding: 40px 0 80px 0;
    overflow: hidden;
}

.index-sections-body {
    width: 1400px;
    margin: 0 auto;
}

.index-section-item {
    margin-bottom: 60px;
}

.index-section-item:last-child {
    margin-bottom: 0;
}

/* è¡Œå¸ƒå±€ */
.index-section-row {
    display: flex;
    justify-content: space-between;
}

.full-width {
    width: 100%;
}

.half-width {
    width: 48%;
    margin-bottom: 0;
}

/* ç§‘å­¦ç ”ç©¶ */
.research-slides {
    width: 100%;
    margin-top: 30px;
}

.research-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.research-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.research-info {
    position: absolute;
    left: -1px;
    bottom: -1px;
    width: 100%;
    display: flex;
    align-items: center;
}

.research-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.research-icon img {
    max-width: 100%;
    max-height: 100%;
}

.research-title {
    font-size: 19px;
    color: #fff;
    font-weight: bold;
    text-indent: 1em;
}

/* æ°å‡ºæ ¡å‹å’Œå­¦ç”Ÿæ¦œæ ·è½®æ’­ */
.alumni-slides,
.students-slides {
    margin-top: 20px;
}

.alumni-item,
.student-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.alumni-item img,
.student-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.alumni-info,
.student-info {
    position: absolute;
    bottom: -5px;
    left: -1px;
    width: 100%;
    height: 50px;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 100%;
    display: flex;
    align-items: center;

    background: url("../img/lastJcxyPicTitleBG.png") no-repeat;
}

.alumni-name,
.student-name {
    color: #fff;
    font-size: 20px;
    text-indent: 1em;
}

/* è½®æ’­ç®­å¤´å’Œåˆ†é¡µå™¨ */
.researchSwiper .swiper-button-prev,
.researchSwiper .swiper-button-next,
.alumniSwiper .swiper-button-prev,
.alumniSwiper .swiper-button-next,
.studentsSwiper .swiper-button-prev,
.studentsSwiper .swiper-button-next {
    display: none;
}

/* å“åº”å¼å¸ƒå±€ */
@media screen and (max-width: 1440px) {
    .index-sections-body {
        width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .index-section-row {
        flex-direction: column;
    }
    
    .half-width {
        width: 100%;
        margin-bottom: 60px;
    }
    
    .half-width:last-child {
        margin-bottom: 0;
    }
}

/* Footer Styles */
.footer {
    width: 100%;
    background: url('../img/footerBg.png') no-repeat center;
    background-size: cover;
    color: #ffffff;
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-container {
    width: 1400px;
    margin: 0 auto;
}

/* Footer Top - Links */
.footer-top {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.link-item {
    margin-right: 30px;
    color: #fff;
    display: flex;
    align-items: center;
}
.link-item:first-child a{
    font-size: 18px;
    font-weight: bold;
}
.link-item a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.link-item a:hover {
    opacity: 0.8;
}

.link-divider {
    margin: 0 5px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Main */
.footer-main {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer Left - Logo and Title */
.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    width: 700px;
}

.footer-logo img {
    height: auto;
    margin-right: 20px;
    width: 100%;
}

.footer-title h1 {
    font-size: 24px;
    margin: 0 0 5px;
    font-weight: normal;
}

.footer-title h2 {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: normal;
    opacity: 0.9;
}

.footer-title h3 {
    font-size: 18px;
    margin: 0;
    font-weight: normal;
}

/* Footer Right - QR Code and Contact */
.footer-right {
    display: flex;
    align-items: flex-start;
}

.footer-qrcode {
    margin-right: 40px;
    text-align: center;
}

.footer-qrcode img {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
    background-color: #fff;
    padding: 5px;
}

.footer-qrcode p {
    font-size: 14px;
    margin: 0;
}

.footer-contact {
    line-height: 1.8;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-contact strong {
    font-weight: normal;
}

/* Footer Bottom - Copyright */
.footer-bottom {
    padding-top: 20px;
    text-align: center;
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive */
@media screen and (max-width: 1440px) {
    .footer-container {
        width: 95%;
    }
}

@media screen and (max-width: 992px) {
    .footer-main {
        flex-direction: column;
    }
    
    .footer-left, .footer-right {
        margin-bottom: 20px;
    }
    
    .footer-right {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-qrcode {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .link-item {
        margin-bottom: 10px;
    }
    
    .footer-logo {
        flex-direction: column;
    }
    
    .footer-logo img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-title {
        text-align: center;
    }
}

/* å·¦ä¾§å›¾æ–‡æ–°é—»è½®æ’­ */
.news-left-swiper {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.news-slide-item {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-left-pagination {
    position: absolute;
    bottom:30% !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

/* å›¾æ–‡æ–°é—»åˆ†é¡µå™¨ç‚¹çš„æ ·å¼ */
.news-left-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0.7;
    margin: 0 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.news-left-pagination .swiper-pagination-bullet-active {
    background: #047b51;
    opacity: 1;
    width: 10px;
    height: 10px;
}

/* è‡ªå®šä¹‰æ–°é—»è½®æ’­æŒ‡ç¤ºç‚¹ */
.news-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}


.news-dot.active {
    background: #047b51;
    width: 40px;
}

/* æ•™å¸ˆé£Žé‡‡å³ä¾§åˆ‡æ¢æŒ‰é’® */
.teacher-next-button {
    position: absolute;
    right: 12%;
    bottom: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #0baa7a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.teacher-next-button:hover {
    background-color: #099267;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.teacher-next-button i {
    color: #fff;
    font-size: 20px;
}

/* ç§‘å­¦ç ”ç©¶ã€æ°å‡ºæ ¡å‹å’Œå­¦ç”Ÿæ¦œæ ·çš„hoveræ•ˆæžœ */
.research-item .research-img,
.alumni-item img,
.student-item img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.research-item:hover .research-img,
.alumni-item:hover img,
.student-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ä¸ºäº†ç¡®ä¿å›¾åƒçš„å˜æ¢æ•ˆæžœåœ¨å®¹å™¨å†…éƒ¨å¯è§ */
.research-item,
.alumni-item,
.student-item {
    overflow: hidden;
    position: relative;
    display: block;
    transition: box-shadow 0.3s ease;
}

.research-item:hover,
.alumni-item:hover,
.student-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* æœç´¢å¼¹çª—æ ·å¼ */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 123, 81, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.search-popup.active {
    display: flex;
    opacity: 1;
}

.search-popup-content {
    width: 80%;
    max-width: 800px;
    margin: auto;
    padding: 40px;
    position: relative;
}

.search-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.search-popup-header h2 {
    color: #fff;
    font-size: 32px;
    margin: 0;
}

.search-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 50px;
    color: #fff;
    transition: transform 0.3s ease;
}

.search-close-btn:hover {
    transform: rotate(90deg);
}

.search-form {
    display: flex;
    position: relative;
    width: 100%;
}

.search-form input[type="text"] {
    width: 100%;
    padding: 15px 60px 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-form input[type="text"]:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 70px;
    border: none;
    background-color: #047b51;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    font-family: "å¾®è½¯é›…é»‘";
}

.search-btn:hover {
    background-color: #036341;
}

/* ç§»é™¤ä¸éœ€è¦çš„æ ·å¼ */
.search-btn i {
    display: none;
}

/* ç§»é™¤ä¸éœ€è¦çš„ä¼ªå…ƒç´  */
.search-btn::after {
    content: none;
}

/* å“åº”å¼æ ·å¼ */
@media screen and (max-width: 768px) {
    .search-popup-content {
        width: 90%;
        padding: 20px;
    }
    
    .search-popup-header h2 {
        font-size: 24px;
    }
    
    .search-form input[type="text"] {
        padding: 12px 50px 12px 15px;
        font-size: 16px;
    }
    
    .search-btn {
        width: 60px;
        font-size: 14px;
    }
}

/* è®¾ç½®æœç´¢å›¾æ ‡ä¸ºå¯ç‚¹å‡»æ ·å¼ */
#searchTrigger {
    cursor: pointer;
    transition: color 0.3s ease;
}

#searchTrigger:hover {
    color: #ddd;
}