.list-header {
    display: flex;
    width: 100%;
    background-color: var(--color-primary);
    /* height: 150px; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.list-header-container {
    width: 100%;
    max-width: 1350px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.list-header-logo {
    width: 50%;
    height: auto;
}

.list-header-logo img {
    /* height: 80px; */
    width: 100%;
    height: 100%;
}

.nav {
    border-top: 1.5px solid #ffffffaa;
}

.ny-banner {
    width: 100%;
    aspect-ratio: 16/5;
    height: auto;
}

.ny-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 100%;
}

.list-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #efefef url(../images/nrback-list1.png) no-repeat bottom center;
    background-size: 100% auto;
    min-height: 0;
    /* 高度由内容和背景图片共同决定 */
    position: relative;
    justify-content: center;
}

.list-box {
    width: 100%;
    max-width: 1350px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    margin-top: 50px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.list-left {
    flex: 0 0 20%;
    height: auto;
    /* min-height: 680px; */
    background: #eeeeee url(../images/list-right-back.png) no-repeat bottom center;
    background-size: 100% auto;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08), 0 1.5px 4px 0 rgba(0, 0, 0, 0.06);
}

.list-title {
    width: 100%;
    height: 80px;
    background: url(../images/nydqwz.png) no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-title h1 {
    font-size: 1.7rem;
    color: #fff;
    font-weight: 600;
}

.list-nav {
    width: 100%;
    min-height: 400px;
}

.list-nav-list li {
    width: 100%;
    /* height: 70px; */
    border-bottom: 1px solid #a1a1a1d8;
    /* 顶级菜单行默认表现为块级，标题与按钮在同一行 */
    font-size: 1.3rem;
    color: #3a3a3aed;
    position: relative;
}

.list-nav-list li:last-child {
    border-bottom: none;
}

/* 顶级菜单行使用 Grid，第一行放标题与按钮，第二行放子菜单 */
.list-nav-list>li {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-auto-rows: auto;
    align-items: center;
    text-align: center;
}

/* 顶级菜单标题 */
.list-nav-list>li>a {
    display: block;
    padding: 14px 16px;
    grid-column: 1;
}

/* 展开/收起按钮 */
.list-nav-list-toggle {
    grid-column: 2;
    justify-self: end;
    margin-right: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    line-height: 1;
    padding: 6px;
    transition: transform .2s ease;
}

/* 子菜单容器（默认收起） */
.list-nav-sublist {
    display: none;
    background: #fff;
    grid-column: 1 / -1;
}

.list-nav-sublist li a {
    display: block;
    padding: 10px 16px 10px 24px;
    font-size: 1.05rem;
    color: #333;
}

.list-nav-sublist li a:hover {
    background: #f5f5f5;
    color: #000;
}

.list-nav-sublist li {
    border-bottom: none;
}

/* 打开状态：显示子菜单，并旋转展开按钮 */
.list-nav-list>li.open>.list-nav-sublist,
.list-nav-list>li.active>.list-nav-sublist {
    display: block;
}

.list-nav-list>li.open>.list-nav-list-toggle,
.list-nav-list>li.active>.list-nav-list-toggle {
    transform: rotate(90deg);
}

/* 高亮 */
.list-nav-list>li.open>a,
.list-nav-list>li.active>a,
.list-nav-list a.active {
    color: #0641bf;
    font-weight: 600;
}

.list-nav-list li.active>a {
    color: #0641bf;
}

.list-right {
    flex: 0 0 78%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.list-dqwz {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.1rem;
    color: #666;
    background-color: #f8f6f6;
    flex-direction: column;
}

.list-dqwz img {
    margin-left: 20px;
    margin-right: 10px;
    width: 13px;
}

.list-dqwz-map {
    font-size: 1rem;
    text-indent: 0;
}

.list-content {
    width: 100%;
    min-height: 400px;
    margin-top: 30px;
}

.list-content li {
    min-height: 50px;
    border-bottom: #3a3a3a 0.5px solid;
    display: flex;
    font-size: 1.1rem;
    align-items: center;
    color: #212121;
    transition: color 0.2s, font-size 0.2s, transform 0.2s;
}

.list-content li:hover {
    color: #0641bf;
    font-size: 1.15rem;
    transform: scale(1.02);
}

.list-content span {
    margin-right: 15px;
    color: #0641bf;
}

.pagination {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.pagination-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 14px;
    margin: 0 3px;
    border: 1px solid #d1d1d1;
    background: #fff;
    color: #333;
    font-size: 1.08rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(.4, 0, .2, 1);
    outline: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #0641bf;
    color: #fff;
    border-color: #0641bf;
}

.pagination-btn[disabled] {
    background: #f5f5f5;
    color: #bbb;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

.pagination span {
    margin: 0 4px;
    color: #bbb;
    font-size: 1.05rem;
    user-select: none;
}
/* 跳转输入框 */
.pagination-input {
    width: 50px;
    height: 36px;
    border: 1px solid #d1d1d1;
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
    margin-left: 8px;
    outline: none;
    transition: border-color 0.2s;
}

.pagination-input:focus {
    border-color: #0641bf;
}

/* 跳转按钮沿用 pagination-btn */
.footer-list {
    background: url(../images/listfooter.png) no-repeat center top;
    background-size: 100% auto;
}

.list-dqwz-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    align-items: center;
    /* border-bottom: #bbb 1px solid; */
}

.list-share-ejdh {
    width: 100%;
    display: flex;
    margin-top: 10px;
}

.list-share-ejdh-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.list-share-ejdh-list-toggle {
    grid-column: 2;
    justify-self: end;
    margin-right: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #666;
    font-size: 15px;
    line-height: 1;
    padding: 6px;
    transition: transform .2s cubic-bezier(.4, 0, .2, 1), color .2s;
    outline: none;
    display: inline-flex;
    align-items: center;
}

.list-share-ejdh-list-toggle:focus {
    color: #0641bf;
    background: #f0f6ff;
    border-radius: 4px;
}

.list-share-ejdh-list li {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-bottom: #bbb 1px solid;
    position: relative;
    padding: 0;
}

.list-share-ejdh-list>li>a {
    display: block;
    padding: 14px 16px;
    grid-column: 1;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    text-decoration: none;
}

.list-share-ejdh-list>li>.list-share-ejdh-list-toggle {
    grid-column: 2;
}

.list-share-ejdh-sublist {
    display: none;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
    margin: 0 0 10px 0;
    padding: 0 0 8px 24px;
    list-style: none;
    grid-column: 1 / -1;
}

.list-share-ejdh-sublist li {
    border-bottom: none;
}

.list-content a {
    color: #5e5c5c;
}

/* 单篇正文 */
.list-content-dpzw p {
    font-size: 1.1rem;
    line-height: 2rem;
    color: #333;
    margin: 5px 0;
    text-indent: 2em;

}

.list-content-dpzw span {
    font-size: 1.1rem;
    line-height: 2rem;
    color: #333;
    margin: 0;



}

.list-content-dpzw img {
    width: 65%;
    display: block;
    margin-left: auto;
    margin-right: auto;

}

/* 带导航内容页 */
.list-content-nry {
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.list-content-nry p {
    font-size: 1.1rem;
    line-height: 2rem;
    color: #333;
    margin: 5px 0;
    text-indent: 2em;

}

.list-content-nry span {
    font-size: 1.1rem;
    line-height: 2rem;
    color: #333;
    margin: 0;



}

.list-content-nry img {
    width: 65%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;

}
.list-content-nry h1{
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
    text-align: center;
}
.list-content-nry h2{
    font-size: 1.3rem;

    font-weight: 500;
}
 .list-content-nry-time span{
    font-size: 1rem;
    color: #666;
    margin-right: 15px;
    display: inline-block;
    line-height: 2rem;
    text-indent: 0;
 }

.list-nrybddh{
    flex: 100% !important;
}


.list-content-nry-file {
    width: 100%;
    margin-top: 24px;
    padding: 16px 20px;
    background: #f9fafc6e; /* 淡灰背景，和正文区分 */
    border: 1px solid #e5eaf0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.list-content-nry-content{
     width: 100%;
height: auto;
}


/* 标题 */
.list-content-nry-file h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.list-content-nry-file h4::before {
    content: "📎"; /* 标题前的图标 */
    font-size: 1.2rem;
}

/* 列表 */
.list-content-nry-file ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list-content-nry-file li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    line-height: 1.6;
}

/* 每个附件前的小图标 */
.list-content-nry-file li::before {
    content: "📄";
    font-size: 1rem;
    color: #0641bf;
}

/* 链接样式 */
.list-content-nry-file a {
    font-size: 1rem;
    color: #0641bf;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

.list-content-nry-file a:hover {
    color: #042c8c;
    text-decoration: underline;
}











.list-content-nry-btn {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 16px 0;
}

/* 基础按钮 */
.list-content-nry-prev,
.list-content-nry-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 42px;
    padding: 0 20px;
    background: linear-gradient(135deg, #0641bf, #295fd8); /* 渐变背景 */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(6,65,191,0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* 文字和链接保持统一颜色 */
.list-content-nry-prev a,
.list-content-nry-next a {
    color: #fff !important ;
    text-decoration: none;
    font-weight: 500;
text-decoration: none!important;
}

/* hover 动效 */
.list-content-nry-prev:hover,
.list-content-nry-next:hover {
    background: linear-gradient(135deg, #042c8c, #1e4bb5);
    box-shadow: 0 4px 12px rgba(6,65,191,0.25);
    transform: translateY(-2px); /* 微浮动 */
}

/* 点击反馈 */
.list-content-nry-prev:active,
.list-content-nry-next:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(6,65,191,0.15);
}

/* 禁用状态 */
.list-content-nry-prev:disabled,
.list-content-nry-next:disabled {
    background: #e0e0e0;
    color: #aaa;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* 小屏适配：按钮改为满宽 */
@media (max-width: 600px) {
    .list-content-nry-btn {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .list-content-nry-prev,
    .list-content-nry-next {
        width: 100%;
        justify-content: center;
    }
}




















/* 学院领导 */

.list-content-xyld{
   display: flex;
   gap: 40px;
   flex-direction: row;
}

.list-content-xyld-list{
    list-style: none;
    width: 48%;
    display: flex;
    flex-direction: column;
}
.list-content-xyld-list-a{
    display: flex;
    flex-direction: column;
    width: 100%;
    height:100%;
    
}
.list-content-xyld-box {
    width: 100%;
    height: 100%;

}
.list-content-xyld-list li {
    position: relative; /* 必须给伪元素定位 */
    display: flex;
    border: 1px solid #d8d3d3;
    margin-bottom: 10px;
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
    padding-left: 30px;
    align-items: center;
    height: 150px;
}

.list-content-xyld-list li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-top: 1px solid #d8d3d3;   /* 上边框 */
    border-left: 1px solid #d8d3d3;  /* 左边框 */
    clip-path: polygon(0 0, 30px 0, 0 30px); /* 裁成三角形 */
    background: #d8d3d3; /* 背景色要和容器背景一致，避免透出 */
}
/* 新增下边框 */
.list-content-xyld-list li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;        /* 宽度撑满整个 li */
    height: 2px;        /* 下边框高度 */
    background-color: #0641bf; /* 蓝色实线 */
}

.list-content-xyld-list h1{
    font-size: 1.5rem;
    color: #000;
    margin-top: 20px;
}
.list-content-xyld-box-ddd {
    width: 50%;
    height: 1px;
    background-color: #0641bf;
    position: relative; /* 让伪元素定位基于容器 */
    margin-top: 10px;
}

.list-content-xyld-box-ddd::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* 垂直居中 */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0641bf;
}
.list-content-xyld-list a{
    width: 100%;
}

/* 管理团队 */
.list-gltd-content{
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-top: 30px;
}
.list-gltd-content-box{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 30px;
    margin-top: 40px;
}
.list-gltd-content-title{
    width: 100%;
    border-bottom: #0641bf 1px solid;
    height: 40px;
}

.list-gltd-content-title h1{
    font-size: 1.2rem;
    color: #fff;
    line-height: 40px;
    background-color: #0641bf;
    width: 200px;
    padding-left: 30px;
}

.list-gltd-content-ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 两列，等宽 */
    gap: 20px; /* 行间、列间间隔都为 20px */
    list-style: none; /* 如果是 ul，去掉默认点 */
    padding: 0;
    margin-top: 30px;
}

.list-content-gltd-list {
    width: 100%;
    padding-left: 30px;
    border: #d8d3d3 1px solid;
    display: block; /* 确保 a 链接填满 li */
    height: 100%;
    transition: all 0.3s ease; /* 过渡效果 */
}

/* 鼠标悬停整体卡片效果 */
.list-gltd-content-li {
    transition: all 0.3s ease;
}

.list-gltd-content-li:hover {
    transform: translateY(-6px);  /* 轻微上浮 */
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15); /* 阴影 */
    border-radius: 6px; /* 圆角（可选） */
}

/* 悬停时背景渐变高亮 */
.list-gltd-content-li:hover .list-content-gltd-list {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

/* 悬停时标题颜色变化 */
.list-gltd-content-li:hover .list-content-gltd-list h1 {
    color: #042c8c;
}

/* 标题 */
.list-content-gltd-list h1 {
    position: relative; /* 伪元素定位的关键 */
    font-size: 1.5rem;
    color: #0641bf;
    font-weight: 600;
    margin-top: 20px;
    width: 80%;
    padding-bottom: 8px; /* 给下划线留点空间 */
    border-bottom: #d8d3d3 1px solid;
    transition: color 0.3s ease;
}

/* 横线 */
.list-content-gltd-list h1::after {
    content: "";
    position: absolute;
    bottom: 0;       /* 靠下 */
    left: 0;         /* 左对齐 */
    width: 30%;      /* 宽度 30% */
    height: 2px;     /* 高度 2px */
    background-color: #0641bf; /* 蓝色横线 */
    transition: background-color 0.3s ease;
}

/* 圆点 */
.list-content-gltd-list h1::before {
    content: "";
    position: absolute;
    bottom: -2.5px;    /* 紧贴横线下边，也可调成 0 */
    left: 0;           /* 左对齐 */
    width: 8px;
    height: 8px;
    background-color: #0641bf;
    border-radius: 50%; /* 圆形 */
    transition: background-color 0.3s ease;
}

/* 悬停时横线和圆点颜色也跟随变化 */
.list-gltd-content-li:hover .list-content-gltd-list h1::after,
.list-gltd-content-li:hover .list-content-gltd-list h1::before {
    background-color: #042c8c;
}

.list-content-gltd-list p {
    font-size: 1.1rem;
    line-height: 1.8rem;
    color: #333;
    margin: 5px 0;
    text-indent: 0;
}

/* 带图标题列表 */
.tp-list{
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-top: 30px;
}
.tp-list-ul{
display: grid;
    grid-template-columns: repeat(1, 1fr); 
    gap: 20px; /* 行间、列间间隔都为 20px */
    list-style: none; /* 如果是 ul，去掉默认点 */
    padding: 0;
    /* margin-top: 30px; */
}
.tp-list-li{ 
    width: 100%;
    /* margin-bottom: 5px; */
    position: relative;
}
.tp-list-li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #c5c5c5;
    bottom: -10px;
    width: 100%;
}

   .tp-list-a{ 
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: #333;

    /* padding: 10px; */
    height: 180px;
    transition: all 0.3s ease; /* 过渡效果 */
   }

.tp-list-img
{
    width: 250px;
    height: 150px;
}
.tp-list-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.tp-list-text{
    width: 71%;
    padding-left: 30px;
}
.tp-list-text h1{
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.tp-list-text p{
    font-size: 0.9rem;
    margin: 0;
    color: #666;
}

.tp-list-text p:nth-child(3){
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}










@keyframes ejdhFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------- 响应式 ----------- */
@media screen and (max-width: 1400px) {
    .list-header-container {
        width: 90%;
    }

    .list-box {
        width: 90%;
    }

    .footer-list {
        background-size: auto;
    }
}

@media screen and (max-width: 1250px) {
    .list-left {
        min-width: 210px;
    }

    .list-header-logo {
        width: 40%;
    }

    .list-right {
        flex: 0 0 69%;
    }

    .list-content li {
        height: auto;
        font-size: 1rem;
    }

    .list-content span {
        white-space: nowrap;
    }
}

@media screen and (max-width: 1000px) {
    .list-header-container {
        flex-direction: column-reverse;
        justify-content: flex-end;
        height: auto;
    }

    .list-header-logo {
        width: 60%;
    }

    .list-header-logo img {
        height: auto;
    }
}



@media screen and (max-width: 900px) {
    .list-left {
        display: none;
    }

    .list-right {
        width: 100%;
        flex: 0 0 100%;
    }

    .list-content li:hover {
        color: #0641bf;
        font-size: 1.05rem;
        transform: scale(1.02);
    }

    .list-dqwz-share {
        display: flex;
        align-items: center;
        margin-right: 15px;
        position: relative;
    }

    .list-dqwz-share img {
        width: 20px;
        cursor: pointer;
        transition: transform 0.18s cubic-bezier(.4, 0, .2, 1);
        animation: breath 1.6s infinite ease-in-out;
        position: relative;
    }

    .list-dqwz-share .share-tip {
        display: none;
        position: absolute;
        left: -150%;
        top: 50%;
        transform: translateY(-50%);
        background: #fff;
        color: #0641bf;
        font-size: 0.98rem;
        padding: 2px 10px;
        border-radius: 4px;
        box-shadow: 0 2px 8px 0 rgba(6, 65, 191, 0.10);
        white-space: nowrap;
        z-index: 10;
        pointer-events: none;
        border: 1px solid #e0eaff;
    }

    .list-content span {
        margin-right: 5px
    }

    .list-dqwz-share:hover .share-tip {
        display: block;
    }

    .list-dqwz-share img:active~.share-tip {
        display: none;
    }

    .list-dqwz-share img:hover,
    .list-dqwz-share img:active {
        animation-play-state: paused;
    }

    .list-dqwz-share img:hover {
        transform: scale(1.18);
    }

    .list-dqwz-share img:active {
        transform: scale(1);
    }

    @keyframes breath {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.12);
        }

        100% {
            transform: scale(1);
        }
    }

    .list-dqwz {
        justify-content: space-between;
    }

    .list-dqwz-dw {
        display: flex;
        align-items: center;
    }


    .list-header {
        min-height: 92px;
    }

}

/* 大于900px隐藏分享按钮 */
@media screen and (min-width: 901px) {
    .list-dqwz-share {
        display: none !important;
    }

    .list-share-ejdh {
        display: none !important;
    }
}

@media screen and (max-width:680px) {
    .footer {
        width: 100%;
        background: url(../images/footerback.png) no-repeat top / cover;
    }

    .list-content-dpzw img {
        width: 95%;
    }
    .list-content-nry img {
        width: 95%;
    }
    .list-gltd-content-ul{
        grid-template-columns: repeat(1, 1fr);
    }
    .tp-list-a{
        flex-direction: column;
        height: auto;
    }
    .tp-list-img{
        width: 50%;
    }
    .tp-list-text{
        width: 100%;
        padding-left: 0;
    }
.list-content-dpzw video{
width: 100%;
height: auto;
}
}

@media screen and (max-width: 490px) {
    .header-links ul li {
        margin: 0 10px;
    }

    .header-links ul li+li::before {
        display: none;
    }



}