/* Header 样式 */
.header {
    background: #fff url(../images/topbg.png) no-repeat center top;
    padding: 0.1rem 0;
    background-size: 100% 4.55rem;
}

.logo-area {
    gap: 0.15rem;
}

.logo {
    width: 3.73rem;
    height: 0.85rem;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.school-logo {
    width: 5.91rem;
    height: 0.35rem;
}

.school-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.search-box {
    display: flex;
    align-items: center;
    border: 0.01rem solid #ddd;
    border-radius: 0.4rem;
    padding: 0.05rem 0.1rem;
    background: #fff;
}

.search-input {
    border: none;
    outline: none;
    font-size: 0.14rem;
    padding: 0.05rem 0.1rem;
    width: 1.5rem;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.05rem;
    display: flex;
    align-items: center;
}

.search-btn img {
    width: 0.18rem;
    height: 0.18rem;
}

/* 导航栏样式 */
.nav {
    background: #1a3a7a;
    position: relative;
    z-index: 100;
}

.nav-list {
    list-style: none;
    gap: 0.2rem;
    position: relative;
}

.nav-list > li {
    position: relative;
}

.nav-link {
    color: #fff;
    font-size: 0.16rem;
    padding: 0.2rem 0.2rem;
    display: block;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    border-radius: 0.04rem;
}

/* 二级菜单样式 */
.nav-item-has-children {
    position: relative;
}

.nav-item-has-children > .nav-link::after {
    content: '▼';
    font-size: 0.1rem;
    margin-left: 0.05rem;
    display: inline-block;
    transition: transform 0.3s;
}

.nav-item-has-children:hover > .nav-link::after {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 1.5rem;
    box-shadow: 0 0.04rem 0.12rem rgba(0,0,0,0.15);
    list-style: none;
    padding: 0.1rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.1rem);
    transition: all 0.3s ease;
    z-index: 999;
    border-radius: 0.04rem;
    overflow: hidden;
}

.nav-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    position: relative;
}

.sub-menu a {
    display: block;
    padding: 0.12rem 0.2rem;
    color: #333;
    font-size: 0.14rem;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.sub-menu a:hover {
    background: #1a3a7a;
    color: #fff;
    padding-left: 0.25rem;
}

/* Banner 样式 */
.banner {
    position: relative;
    height: 3.99rem;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
    height: 100%;
}

.banner-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.banner-item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper分页器样式 */
.banner-swiper .swiper-pagination {
    bottom: 0.2rem;
}

.banner-swiper .swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 0.2rem;
    border-radius: 0.04rem;
}

/* 新闻公告和快速链接区域 */
.content-section {
    position: relative;
    padding: 0.4rem 0;
    overflow: hidden;
    background: url("../images/bannerbg.png") center calc(100% + 0.2rem) no-repeat;
}

.content-bg > .w16 {
    position: relative;
    z-index: 2;
}

.news-container {
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

/* 左侧新闻区域：自适应，占除右侧 4.2rem 以外的空间 */
.news-box {
    flex: 1 1 auto;
    min-width: 0;
}
/* 标题与右侧新闻列表同宽对齐（左侧与轮播图等宽占位） */
.news-header-row {
    gap: 0.2rem;
    margin-bottom: 0.2rem;
    align-items: flex-end;
}

.news-header-spacer {
    flex: 0 0 6.3rem;
    width: 6.3rem;
    min-width: 6.3rem;
}

.news-header-right {
    flex: 1 1 auto;
    min-width: 0;
}

.news-header-right .section-header {
    margin-bottom: 0;
    padding-bottom: 0.15rem;
}
/* 右侧通知栏：固定 4.2rem */
.notice-box {
    flex: 0 0 4.2rem;
    max-width: 4.2rem;
}

.section-header {
    margin-bottom: 0.2rem;
    padding-bottom: 0.15rem;
}

.section-title {
    font-size: 0.24rem;
    color: #3a4b9d;
    font-weight: bold;
    display: flex;
    gap: 0.05rem;
    align-items: center;
}

.en-subtitle {
    font-size: 0.12rem;
    color: #a3aacb;
    font-weight: normal;
    font-style: italic;
}

.more-link {
    color: #1a3a7a;
    font-size: 0.14rem;
    text-decoration: none;
    transition: all 0.3s;
}

.more-link:hover {
    color: #3D48B3;
}

.news-content {
    gap: 0.2rem;
    align-items: flex-start;
}

.news-image {
    width: 6.3rem;
    height: 3.5rem;
}

.news-image-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.news-image-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.news-pic-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.news-pic-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-pic-container:hover img {
    transform: scale(1.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.18rem;
    color: #feffff;
    line-height: 1.6;
    padding: 0.15rem 0.1rem;
    background: rgba(58, 75, 157, 0.8);
    z-index: 2;
}

.news-image-swiper .swiper-pagination {
    position: absolute;
    bottom: 0.22rem;
    right: 0.15rem;
    left: auto;
    width: auto;
    z-index: 10;
}

.news-image-swiper .swiper-pagination-bullet {
    width: 0.09rem;
    height: 0.09rem;
    background: #fff;
    opacity: 0.9;
    border-radius: 0;
}

.news-image-swiper .swiper-pagination-bullet-active {
    background: #d87a00;
    opacity: 1;
}

.news-list {
    flex: 1 1 auto;
    min-width: 0;   /* 允许在 flex 中被压缩，避免把整体撑出容器 */
}

.news-item {
    padding: 0.1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.15rem;
}

.news-item:last-child {
    border-bottom: none;
}

/* 首条新闻样式 - 独立标题样式 */
.news-item-first {
    margin-bottom: 0.15rem;
    border-bottom: 0.01rem dashed #e0e0e0;
    height: 0.6rem;
}

.news-link-first {
    font-size: 0.18rem;
    font-weight: bold;
    color: #080808;
    text-decoration: none;
    flex: 1 1 auto;
    transition: all 0.3s;
    line-height: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-width: 0;
}

.news-link-first:hover {
    color: #1a3a7a;
}

.news-date {
    font-size: 0.14rem;
    color: #7b7b7b;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-link {
    font-size: 0.16rem;
    color: #080808;
    text-decoration: none;
    line-height: 1.6;
    flex: 1;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.08rem;
}

.news-link:hover {
    color: #1a3a7a;
}

.news-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.news-icon img {
    width: 0.06rem;
    height: 0.15rem;
    display: block;
}

.news-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 3.5rem;

}

/* 通知公告样式 */
.notice-item {

    display: flex;
    align-items: flex-start;
    gap: 0.15rem;
    margin-bottom: 0.14rem;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-date {
    width: 0.62rem;
    height: 0.56rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.notice-day {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.25rem;
    color: #ffffff;
    width: 100%;
    height: 0.3rem;
    background: #7a9ed3;
}

.notice-month {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.13rem;
    color: #ffffff;
    width: 100%;
    height: 0.26rem;
    background: #3a4b9d;
}

.notice-link {
    font-size: 0.16rem;
    color: #333232;
    text-decoration: none;
    line-height: 0.25rem;
    flex: 1;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-width: 0;
    border-bottom: 0.01rem solid #e0e0e0;
    height: 0.56rem;
}

.notice-link:hover {
    color: #1a3a7a;
}

/* 快速链接区域 */
.links-container {
    position: relative;
    padding: 0.3rem 0;
}

.links-line-wrapper {
    position: absolute;
    top: 0.85rem;
    left: 0;
    right: 0;
    height: 0.01rem;
    display: flex;
    align-items: center;
    z-index: -1;
}

.line-dot {
    width: 0.08rem;
    height: 0.08rem;
    background: #3a4b9d;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 2;
}

.links-line {
    flex: 1;
    height: 0.02rem;
    background: #3a4b9d;
}

.links-items {
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
    justify-content: space-around;
}
.links-items::before {
    content: "";
    width: 0.14rem;
    height: 0.14rem;
    background: #3a4b9d;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.49rem;
}
.links-items::after{
    content: "";
    width: 0.14rem;
    height: 0.14rem;
    background: #3a4b9d;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0.49rem;
}
.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.15rem;
}

.link-item:hover {
    transform: translateY(-0.05rem);
}

.link-circle {
    width: 0.8rem;
    height: 0.8rem;
    border: 0.02rem dashed #3a4b9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.1rem;
    position: relative;
    animation: rotate 25s linear infinite;
    background: white;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.link-icon {
    width: 0.5rem;
    height: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: rotate-reverse 25s linear infinite;

}

@keyframes rotate-reverse {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.link-icon img {
    height: 0.3rem;
}

.link-text {
    font-size: 0.18rem;
    color: #232323;
    text-align: center;
    margin-top: 0.05rem;
    font-weight: 600;
}

/* 页脚样式 */
.footer {
    background: #3a4b9d;
    padding: 0.3rem 0;
    color: #fff;
}

.footer-content {

}

.copyright {
    font-size: 0.16rem;
    color: #ffffff;
}

.qr-code {
    width: 0.8rem;
    height: 0.8rem;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.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: #3a4b9d 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 #3a4b9d;
    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 #3a4b9d;
    color: #3a4b9d;
    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: #3a4b9d;
}
.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;}
}