/* 顶部导航 */
.header {
    background: #fff;
    box-shadow: 0 0.02rem 0.1rem rgba(0, 0, 0, 0.1);
}

.header-top {
    background: url('../images/topbg.png') no-repeat top right;
    background-size: 9.84rem 3.56rem;
    padding: 0.2rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo {
    width: 6.31rem;
    height: 0.85rem;
    object-fit: contain;
}


.search-box {
    display: flex;
    align-items: center;
    background: url('../images/searchbg.png') no-repeat center;
    background-size: contain;
    padding: 0.1rem 0.2rem;
    position: relative;
}

.search-input {
    width: 2.5rem;
    height: 0.4rem;
    border: none;
    background: transparent;
    font-size: 0.16rem;
    padding: 0 0.1rem;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    width: 0.21rem;
    height: 0.23rem;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.1rem;
}

.search-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 导航菜单 */
.nav {
    background: #C8102E;
}

.nav-content {
    padding: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    flex: 1;
}

.nav-list a {
    display: block;
    padding: 0.2rem 0.3rem;
    color: #fff;
    text-align: center;
    font-size: 0.18rem;
    transition: background-color 0.3s;
    text-decoration: none;
}

.nav-list a:hover,
.nav-list a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* 二级菜单 */
.nav-item-has-sub {
    position: relative;
}

.nav-sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0.1rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.1rem);
    transition: all 0.3s;
    z-index: 1000;
}

.nav-item-has-sub:hover .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-sub li {
    width: 100%;
}

.nav-sub a {
    display: block;
    padding: 0.12rem 0.2rem;
    color: #333;
    font-size: 0.16rem;
    text-align: left;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-sub a:hover {
    background: #C8102E;
    color: #fff;
}

/* 轮播图 */
.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
    height: 100%;
    padding: 0.2rem 0 0.4rem;
    background: #f5ebe1;
}

.banner-swiper .swiper-slide {
    width: 100%;
    height: 4.53rem;
    object-fit: cover;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: 4.53rem;
    object-fit: cover;
}

.banner-swiper .swiper-pagination {
    bottom: 0.1rem;
}

.banner-swiper .swiper-pagination-bullet {
    width: 0.18rem;
    height: 0.18rem;
    background: #fff;
    opacity: 0.5;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: #C8102E;
    opacity: 1;
}

.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-button-next {
    width: 0.4rem;
    height: 0.4rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.banner-swiper .swiper-button-prev:after,
.banner-swiper .swiper-button-next:after {
    font-size: 0.2rem;
}

/* 主要内容区域 */
.main-content {
    padding: 0.3rem 0 0.4rem;
    background: #ffffff;
}
.main-content1 {
    padding: 0.5rem 0 0.4rem;
    background: #f4f4f4 url("../images/banner1.png") no-repeat  center calc(100% + 2.2rem);
    background-size: cover;
}
.main-content2 {
    padding: 0.5rem 0 0.8rem;
    background: #ffffff url("../images/banner2.png") no-repeat  center calc(100% + 2.4rem);
    background-size: cover;
}


.content-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}



.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    padding-bottom: 0.15rem;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 0.28rem;
    color: #000;
    position: relative;
    background: url("../images/titbg.png") no-repeat left top;
    background-size: 2.04rem 0.36rem;
    flex: 1;
    height: 0.36rem;
    text-indent: 0.75rem;
}
.section-title span{
    margin-top: -0.05rem;
}
.title-bg {
    width: 0.3rem;
    height: 0.3rem;
    object-fit: contain;
}

.more-link {
    width: 1.33rem;
    height: 0.39rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: url("../images/more.png") no-repeat left top;
    background-size: 1.33rem 0.39rem;
    font-size: 0.16rem;
    text-indent: 0.25rem;
}
.more-link1{
    font-size: 0.16rem;
}
/* 学院动态 */
.news-section {
    width: 100%;
}

.section-content {
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
    width: 100%;
}

.news-image-carousel {
    flex: 1;
    min-width: 0;
}

.news-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.news-swiper .swiper-slide {
    position: relative;
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 4.51rem;
}

.news-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.15rem 0.2rem;
    font-size: 0.18rem;
    color: #fff;
    line-height: 1.6;
    text-align: left;
    background: rgba(0, 0, 0, 0.8);
}

.news-swiper .swiper-pagination {
    bottom: 0.2rem;
    right: 0.2rem;
    left: auto;
    width: auto;
    text-align: right;
}

.news-swiper .swiper-pagination-bullet {
    width: 0.3rem;
    height: 0.04rem;
    background: #fff;
    opacity: 1;
    margin: 0 0.05rem;
    border-radius: 0.05rem;
}

.news-swiper .swiper-pagination-bullet-active {
    background: #C8102E;
    opacity: 1;
}

.news-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 0;
}

.news-list li {
    display: flex;
    align-items: center;
    padding: 0 0 0.11rem;
    border-bottom: 0.01rem solid #ece8e8;
    margin-bottom: 0.11rem;
}



.date-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 0.15rem;
    min-width: 0.6rem;
    padding-right: 0.2rem;
    position: relative;
}
.date-wrapper ::after{
    content: "";
    display: block;
    position: absolute;
    width: 0.01rem;
    height: 60%;
    background: #ece8e8;
    top: 20%;
    right: 0;
}

.news-list .date {
    display: block;
    color: #a22e2d;
    font-size: 0.4rem;
    line-height: 1.2;
    margin-bottom: 0.02rem;

}

.news-list .date-month {
    display: block;
    color: #7d7d7d;
    font-size: 0.16rem;
    line-height: 1.2;
}

.news-text {
    flex: 1;
    min-width: 0;
}

.news-link {
    display: block;
    color: #000;
    font-size: 0.18rem;
    line-height: 1.6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-link:hover {
    color: #C8102E;
}

.news-desc {
    margin-top: 0.04rem;
    font-size: 0.15rem;
    color: #6d6d6d;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 通知公告 */
.notice-section {
    flex: 1;
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem;
}

.notice-card {
    background: rgba(255,255,255,0.5);
    box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.1);
   
    overflow: hidden;
}

.notice-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0.25rem;
    text-decoration: none;
    color: inherit;
}

.notice-card:hover {
    box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.15);
}

.notice-content {
    flex: 1;
}

.notice-text {
    margin: 0;
    font-size: 0.18rem;
    color: #1f1e1e;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.notice-divider {
    height: 0.01rem;
    background: #e8e6e6;
    margin: 0.15rem 0;
}
.notice-divider:after {
    content: "";
    width: 20%;
    height: 0.01rem;
    background: #a22e2d;
    left: 0;
    top: 0;
    display: block;
}

.notice-date {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    color: #a7a7a7;
    font-size: 0.16rem;
}

.time-icon {
    width: 0.18rem;
    height: 0.18rem;
    object-fit: contain;
}

/* 教育教学 */
.education-section {
    flex: 1;
}

.education-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.education-list li,
.student-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.28rem;
}

.education-list li:last-child,
.student-list li:last-child{
    margin-bottom: 0;
}

.education-list .date,
.student-list .date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.05rem;
    height: 0.32rem;
    border: 0.01rem solid #a22e2d;
    border-radius: 0.02rem;
    color: #a22e2d;
    font-size: 0.16rem;
}

.education-link,
.student-link {
    flex: 1;
    color: #000;
    font-size: 0.18rem;
    text-decoration: none;
    transition: color 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 0.02rem dashed #d8d1d1;
    height: 0.32rem;
    line-height: 0.28rem;
    text-indent: 0.2rem;
}

.education-link:hover,
.student-link:hover {
    color: #C8102E;
}

/* 学生工作 */
.student-section {
    flex: 1;
}

.student-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 学术科研 */
.research-section {
    flex: 1;
}

.research-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.research-item {
    display: flex;
    align-items: stretch;
    padding: 0;
    margin-bottom: 0.2rem;
}

.research-date {
    width: 1.02rem;
    height: 0.67rem;
    text-align: center;
    margin-right: 0.1rem;
    background: rgba(162,31,26,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.research-date img{
    width: 0.71rem;
    margin: 0.05rem auto;
}
.research-num {
    font-size: 0.2rem;
    color: #a62924;
    font-weight: bold;
    line-height: 1.1;
}

.research-month {
    display: block;
    font-size: 0.16rem;
    color: #a62924;
}

.research-content {
    flex: 1;
    height: 0.67rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;

}
.research-content :after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -0.05rem;
    background: url("../images/line.png") no-repeat left bottom;
    background-size: cover;
    width: 100%;
    height: 0.12rem;
}
.research-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.research-title {
    color: #000;
    font-size: 0.18rem;
    font-weight: 600;
    line-height: 1.6;
    margin-top: -0.1rem;
}

.research-link:hover .research-title {
    color: #C8102E;
}

.research-info {
    font-size: 0.16rem;
    color: #7d7c7c;
    margin-top: 0.02rem;
    white-space: nowrap;
    overflow: hidden;
}
/* 页脚 */
.footer {
    background: #ffffff;
    padding: 0.4rem 0 0.2rem;
}
.footer_nei{
    background: #fcfcfc;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0.3rem;
}

.footer-left {
    flex: 1;
}

.footer-left p {
    margin: 0.1rem 0;
    font-size: 0.16rem;
    color: #1e1e1e;
    line-height: 1.8;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-logo {
    width: 6.31rem;
}



.footer-right {
    flex: 1;
    text-align: right;
}

.links-select {
    padding: 0.1rem 0.9rem 0.1rem 0.1rem;
    color: #000;
    border: 0.01rem solid #d0d0d0;
    border-radius: 0.03rem;
    font-size: 0.14rem;
    cursor: pointer;
}

.footer-copyright {
    text-align: center;
    padding: 0.2rem 0;
    border-top: 0.01rem solid #ededed;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.16rem;
    color: #969392;
}

/* 响应式设计 */
/*@media screen and (max-width: 1024px) {*/
/*    .notice-list {*/
/*        grid-template-columns: 1fr;*/
/*    }*/

/*    .section-content {*/
/*        flex-direction: column;*/
/*    }*/

/*    .news-image-carousel {*/
/*        width: 100%;*/
/*        margin-bottom: 0.2rem;*/
/*    }*/

/*    .news-list {*/
/*        width: 100%;*/
/*    }*/

/*    .content-wrapper {*/
/*        grid-template-columns: 1fr;*/
/*    }*/

/*    .news-section,*/
/*    .notice-section,*/
/*    .education-section,*/
/*    .student-section,*/
/*    .research-section {*/
/*        grid-column: 1 / -1;*/
/*    }*/

/*    .header-content {*/
/*        flex-direction: column;*/
/*        gap: 0.2rem;*/
/*    }*/

/*    .nav-list {*/
/*        flex-wrap: wrap;*/
/*    }*/

/*    .nav-list li {*/
/*        flex: 0 0 50%;*/
/*    }*/

/*    !* 移动端二级菜单样式 *!*/
/*    .nav-sub {*/
/*        position: static;*/
/*        opacity: 1;*/
/*        visibility: visible;*/
/*        transform: none;*/
/*        display: none;*/
/*        box-shadow: none;*/
/*        background: rgba(255, 255, 255, 0.1);*/
/*        margin-top: 0;*/
/*    }*/

/*    .nav-sub.show {*/
/*        display: block;*/
/*    }*/

/*    .nav-sub a {*/
/*        padding-left: 0.3rem;*/
/*        color: rgba(255, 255, 255, 0.9);*/
/*    }*/

/*    .nav-sub a:hover {*/
/*        background: rgba(255, 255, 255, 0.2);*/
/*        color: #fff;*/
/*    }*/

/*    .footer-content {*/
/*        flex-direction: column;*/
/*        gap: 0.3rem;*/
/*    }*/

/*    .footer-right {*/
/*        text-align: left;*/
/*    }*/
/*}*/


.main {
    width: 14rem;
    margin: 0.3rem auto 0.2rem;
    display: flex;
    justify-content: space-between;
    padding: 0 0.1rem;
}

.all_left {
    width: 2.7rem;
    background: #C8102E url(../images/list-top-bg.png) no-repeat top center;
    box-sizing: border-box;
    border-top-left-radius:0.4rem;
    place-self: flex-start;
    background-size: cover;
}

.all_right {
    width: 10.7rem;

}

/*内页左侧*/
.left_list {
    width: 100%;
}

.left_list strong {
    color: #fff;
    display: block;
    font-size: 0.24rem;
    padding: 0.2rem 0.3rem;
    text-align: center;
}

.left_list ul {
    min-height: 2.5rem;
    background-size: 100%;
}

.left_list ul li {
    height: 0.51rem;
    line-height: 0.51rem;
    text-indent: 0.6rem;
    font-size: 0.16rem;
    color: #fff;

}

.left_list UL li a {
    height: 0.51rem;
    font-size: 0.16rem;
    color: #fff;
    display: block;
    background: url("../images/nyicon03.png") no-repeat 0.37rem 0.22rem;
    border-bottom: 0.01rem solid rgba(255, 255, 255, 0.9);
}

.left_list UL li a:hover {
    height: 0.52rem;
    color: white;
    display: block;
    background: url("../images/nyicon04.png") no-repeat 0.37rem 0.22rem;
    background-size: 0.1rem 0.1rem;
    border-bottom: 0.01rem solid #fff ;
}

/*内页右侧*/
.right_tit {
    width: 100%;
    line-height: 0.5rem;
    border-bottom: 0.01rem solid #6c6c6c;
    display: flex;
    justify-content: flex-end;
}

.right_tit h2 {
    font-size: 0.18rem;
    padding: 0 0.1rem 0 0.15rem;
    position: relative;
    text-indent: 0.1rem;
}

.right_tit h2:after {
    position: absolute;
    content: "";
    display: block;
    border-bottom: 0.03rem solid #C8102E;
    width: 100%;
    left: 0;
    bottom: -0.02rem;
}

.right_tit span {
    padding-right: 0.2rem;
    font-size: 0.14rem;
    color: #b5b5b5;
}

.right_tit a {
    color: #b5b5b5;
}

.right_all {
    width: 100%;
    min-height: 5rem;
    padding: 0.3rem 0.2rem;
}

/*关于我们*/
.right_all .content {
    width: 100%;
    line-height: 0.35rem;
}

/*领导人*/
.leader-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
}

.leader-card {
    background: #fff;
    overflow: hidden;
}

.leader-img {
    width: 100%;
    height: 3.2rem;
    overflow: hidden;
    background: #f0f0f0;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 0.2rem 0;
    font-size: 0.16rem;
    color: #333;
    text-align: center;
    line-height: 1.5;
}

/*新闻*/
.newslist {
    width: 100%;
}

.newslist ul li {
    padding: 0.19rem 0;
    overflow: hidden;
    border-bottom: #e6e5e3 0.01rem dashed;
    transition: all 0.3s;
}
.newslist ul li  a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.newslist .gp-img-responsive {
    margin-left: 0.23rem;
    width: 2.24rem;
    max-height: 1.48rem;
    padding: 0;
    overflow: hidden;
}
.newslist .gp-img-responsive img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.newslist li.noImage .gp-img-responsive {
    display:none;
}

.newslist .listText {
    flex: 1;
    padding: 0 0.1rem;
}
.newslist .listText .listTitle {
    display: block;
    font-size: 0.2rem;
    line-height: 0.34rem;
    font-weight: bold;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: all 0.2s ease;
}

.newslist .listText .listCon {
    margin-top: 0.1rem;
    font-size: 0.14rem;
    line-height: 0.26rem;
    color: #999;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.newslist .listDate {
    width: 0.6rem;
    height: 1rem;
    margin-left: 0.19rem;
    margin-right: 0.15rem;
    text-align: center;
}
.newslist .listDate .day {
    line-height: 0.4rem;
    font-size: 0.36rem;
    border-bottom: 0.03rem solid #C8102E;
    color: #C8102E;
    padding-bottom: 0.11rem;
    transition: all 0.3s;
}
.newslist .listDate .year {
    margin-top: 0.08rem;
    font-size: 0.12rem;
    line-height: 0.3rem;
    color: #666;
    transition: all 0.3s;

}
.newslist li.noMargin .listText {
    margin-right: 0;
}
.newslist li:hover {
    background: #C8102E;
}
.newslist li:hover .listText .listTitle, .newslist li:hover .listDate .day, .newslist li:hover .listDate .year {
    color: #fff;
}
.newslist li:hover .listText .listCon {
    color: #eee;
}
.newslist .gp-img-responsive:hover img {
    transform: scale(1.1);
}

.newstitle {
    text-align: center;
    font-size: 0.3rem;
    font-weight: bold;
    color: #333;
    line-height: 0.48rem;
    width: 100%
}

.newssubtitle {
    text-align: center;
    line-height: 0.6rem;
    font-size: 0.14rem;
    width: 100%
}

.newssubtitle span {
    width: 100%
}

.newsx {
    line-height: 0.4rem;
    width: 100%;
    margin-top: 0.05rem;
}

ul.news_list .li3 {
    height: 0.4rem;
    line-height: 0.4rem;
    margin-top: 0;
    border-bottom: 0.01rem dotted #B3B3B3;
    position: relative;
}

ul.news_list .li3 .date {
    width: 0.9rem;
    height: 0.45rem;
    line-height: 0.45rem;
    overflow: hidden;
    text-align: right;
    position: absolute;
    top: 0;
    right: 0;
    text-indent: 0;
    color: #878686;
    font-size: 0.15rem;
    font-family: "微软雅黑"
}

ul.news_list .li3 a {
    font-size: 0.17rem;
    font-family: "微软雅黑";
}

.con {
    padding: 0.1rem;
    line-height: 0.25rem;
    color: #595555;
    font-size: 0.14rem;
}

.fuck {
    font-size: 0.2rem;
    color: black;
    height: 0.4rem;
    line-height: 0.4rem;
    border-bottom: 0.01rem solid #B3B3B3;
    margin-top: 0.1rem;
}

.piclist {
    width: 100%;
}

.piclist ul {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.piclist li {
    width: 2rem;
    background: #f5f5f5;
    height: 2.6rem;
    margin-right: 0.8rem;
    margin-bottom: 0.3rem;
    overflow: hidden;
}

.piclist li:nth-child(4n) {
    margin-right: 0;
}

.piclist li .imgs {
    width: 2rem;
    height: 2rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: #f5f5f5;
}

.piclist li .imgs img {
    width: auto;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
}

.piclist li .imgs:hover img {
    transform: scale(1.1);
}

.piclist li .imgs-tit {
    width: 90%;
    margin: 0 auto;
    font-size: 0.18rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0.6rem;
}
@media screen and (max-width:750px) {
    .newsx span,.newsx p{font-size:0.16rem !important; line-height:1.6 !important; text-indent:2em !important;l}
   .newsx img{max-width:60% !important;}
}