* {
    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: 850px;
}
/* 菜单 */
.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;
}

.footer-logo img {
    height: auto;
    margin-right: 20px;
}

.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;
}