@font-face {
    font-family: 'Source Han Serif SC';
    /*src: url('../fonts/SourceHanSerifCN-Bold-2.otf') format('opentype');*/
    font-weight: bold;
    font-style: normal;
}



@font-face {
    font-family: 'Source Han Serif SC';
    /*src: url('../fonts/SourceHanSerifCN-Light-5.otf') format('opentype');*/
    font-weight: 300;
    /* Light */
    font-style: normal;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', 'PingFang SC', 'SimSun', sans-serif;
    /*font-size: 21px;*/
    color: #333;
}

body {
    background-color: #f5f5f5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #000;
}

ul,
ol {
    list-style: none;
}

.header {
    height: 120px;
    width: 100vw;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-box {
    height: 100%;
    width: 100%;
    max-width: 1350px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 496px;
    height: auto;
}

.nav {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.submemu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #873299de;
    z-index: 10;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-list>li {
    width: 16%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    position: relative;
    ;
}

.nav-list>li>a {
    position: relative;
    display: inline-block;
    padding: 10px 0;
    font-size: 20px;
    color: #595757;
}

.nav-list>li>a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #873299de;
    transition: width 0.3s ease;
}

.nav-list>li>a:hover::after {
    width: 100%;
}

.submemu-list {
    display: none;
    /* 横向排列 */
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.submemu-list>li {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.submemu-list>li:hover {
    background-color: #a81f33;
}

.submemu-list>li>a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
}

.nav-list>li:hover .submemu-list {
    display: flex;
    /* 显示子菜单 */
}


/* 二级菜单 */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
    position: absolute;
    right: 25px;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -10px);
}

/* === 移动端主菜单容器（固定全屏弹出） === */
.mobile-nav {
    background: linear-gradient(180deg, #9b4ac6 0%, #873299 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    border-radius: 0 0 10px 10px;
    max-height: 0;
    /* 初始收起 */
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    position: fixed;
    /* 固定在视口 */
    top: 75px;
    left: 0;
    width: 100%;
    z-index: 999;
    /* 覆盖最上层 */
}

/* 展开状态：占满整屏高度 */
.mobile-nav.show {
    max-height: 100vh;
    /* 全屏高度 */
    opacity: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 一级菜单项分隔线 */
.mobile-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

/* 一级菜单链接 */
.mobile-nav ul li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: .5px;
}


/* 悬停高亮 */
.mobile-nav ul li a:hover {
    background: rgba(255, 255, 255, .10);
}


/* === 二级子菜单 === */
.submenu {
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, .04);
    /* 极浅紫灰区分 */
}

.submenu li {
    width: 100%;
}

/* 展开状态 */
.has-submenu.open .submenu {
    max-height: 500px;
    /* 估算最大高度，必要时增大 */
    opacity: 1;
    transform: translateY(0);
}

.has-submenu>a::after {
    content: '▼';
    float: right;
    font-size: 12px;
    margin-left: 10px;
}

/* 二级菜单链接样式 */
.submenu li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #f8f8f8;
}

.submenu li a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}


.nybanner {
    width: 100vw;
}

.nybanner img {
    width: 100%;
    height: auto;
}

.nav-left {
    width: 338px;
    height: 437px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: url(../../img/zjjjh/images/nav-left.png) no-repeat center;
    background-size: cover;
    position: relative;
    margin-top: -140px;
    flex-direction: column;
}

.nylist {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.nylist-content {
    width: 100%;
    max-width: 1350px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

.nav-left-title {
    width: 100%;
    height: 160px;
    background-color: #873299;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
    /* 控制图标和文字之间间距 */
    border-bottom: 5px solid #d168e7;
}

.nav-left-title img {
    width: 56px;
    height: 59px;
    flex-shrink: 0;
}

.nav-left-title-text h1 {
    font-size: 44px;
    color: #fff;
    font-weight: 400;
    line-height: 1;
}

.nav-left-list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.nav-left-list-li {
    width: 95%;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.nav-left-list-li:nth-child(1)::after,
.nav-left-list-li:nth-child(2)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1%;
    display: block;
    width: 98%;
    height: 1px;
    background: repeating-linear-gradient(to right,
            #873299,
            #873299 2px,
            transparent 2px,
            transparent 4px);
}

.nav-left-list-li h2 {
    font-size: 30px;
    color: #595757;
    font-weight: 400;

}

.nav-left-list-li p {
    font-size: 16px;
    color: #595757;
    font-weight: 400;
}

.nylist-right {
    width: 970px;
    display: flex;
    justify-content: flex-start;
    min-height: 600px;
    flex-direction: column;
}

.nylist-right-li-content {
    width: 970px;
}

.nylist-right-dqwz {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nylist-right-dqwz a:hover {
    color: #873299;
}

.nylist-right-li1 {
    width: 950px;
    height: 242px;
    background-image: url(../../img/zjjjh/images/list-list1.png);
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    border: 0.5px solid #9b9b9b29;
    margin-bottom: 20px;
}

.nylist-right-li-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nylist-right-li-content-img {
    width: 352px;
    height: 232px;
    object-fit: cover;
    margin-left: 24px;

}
.nylist-right-li-content-img img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.nylist-right-li-content-time{
    width: 150px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.nylist-right-li-content-time h3{
    font-size: 31px;
    color: #873299;
   font-family: 'Source Han Serif SC', serif;
}
.nylist-right-li-content-time h4{
    font-size: 25px;
    color: #873299;
    font-family: 'Source Han Serif SC', serif;
    margin-bottom: 40px;
}
.nylist-right-li-content-text-left{
    width: 25px;
}
.nylist-right-li-content-text{
    width: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.nylist-right-li-content-text h1{
    font-size: 20px;
    color: #272727;
    margin-bottom: 20px;
    display: -webkit-line-clamp;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nylist-right-li-content-text p{
    font-size: 15px;
    color: #5e5d5c;
    line-height: 1.5;
}


.nylist-right-li2 {
    width: 950px;
    height: 242px;
    background-image: url(../../img/zjjjh/images/list-list2.png);
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    border: 0.5px solid #9b9b9b29;
    margin-bottom: 20px;
}
.pagination {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 5px;
  font-family: "Microsoft YaHei", sans-serif;
  width: 100%;
  justify-content: center;
}

/*.page-btn,*/
/*.jump-btn {*/
/*  padding: 3px 10px;*/
/*  border: 1px solid #ccc;*/
/*  background-color: #fff;*/
/*  color: #333;*/
/*  cursor: pointer;*/
/*}*/

/*.page-btn.disabled {*/
/*  color: #aaa;*/
/*  border: 1px solid #eee;*/
/*  background-color: #f9f9f9;*/
/*  cursor: not-allowed;*/
/*}*/

.current {
  padding: 3px 10px;
  background-color: #873299;
  color: #fff;
  border: 1px solid #873299;
}

/*.page-info {*/
/*  margin: 0 5px;*/
/*}*/

/*.page-input {*/
/*  width: 35px;*/
/*  padding: 2px 5px;*/
/*  border: 1px solid #ccc;*/
/*  text-align: center;*/
/*}*/

.jump-btn {
  border: 1px solid #333;
  background-color: #fff;
}
.footer {
    width: 100vw;
    background: url(../../img/zjjjh/images/footer.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
}

.footer-content {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    /* 居中对齐 */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    /* 使子元素相对定位 */
    margin-top: 200px;
}

.footer-content-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* 顶部白色半透明边框 */
    /*  border-bottom: 1px solid rgba(255,255,255,0.1); 顶部白色半透明边框 */
    padding: 20px 0;
}

.footer-content-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    width: 50%;
}

.footer-content-left-ul {
    display: flex;
    width: 100%;
    justify-content: space-between;

}

.footer-content-left h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 400;
        color: #fff;
}

.footer-content-left p {
    font-size: 16px;
    margin-bottom: 10px;
        color: #fff;
}

.footer-content-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    width: 40%;
}

.footer-content-right-ul {
    width: 100%;
    display: flex;
}

.footer-content-right-ul ul:nth-of-type(2) {
    margin-left: 20px;
}

.footer-content-right h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 400;
        color: #fff;
}

.footer-content-right-ul li {
    position: relative;
    padding-left: 18px;
    /* 给小圆点留空间 */
    margin-bottom: 10px;
}

.footer-content-right-ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
}

.footer-content-right-ul a {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    transition: color 0.3s;
    /* 添加字体颜色过渡动画 */
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    background-color: #532758;
    height: 57px;
}
.footer-bottom p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

@media screen and (max-width: 1300px) {
    .header-box {
        width: 90%;
    }
    .nylist-content {
        width: 90%;
    }
    .nylist-right {
    width: 710px;
    }
    .nylist-right-li1 {
        width: 710px;
    }
    .nylist-right-li2 {
        width: 710px;
    }
    .footer-content {
        width: 90%;
    }
    .footer-bottom {
    width: 100vw;
    }
}
@media screen and (max-width: 1000px) {
    .nav{
        margin-left: 0;
    }
    .nav-list>li {
        width: 20%;
    }
    .logo {
        width: 600px;
    }
    .logo img{
        width: 100%;
        height: auto;
    }
    .nav-left-title-text h1 {
        font-size: 24px;
    }
    .nav-left-title img {
        width: 30px;
        height: auto;
    }
    .nav-left-title{
        height: 90px;
    }
    .nav-left {
    width: 190px;
    height: 395px;
    }
    .nav-left-list-li h2{
        font-size: 24px;
    }
    .nav-left-list-li p{
        font-size: 14px;
    }
    .nylist-right-li-content-img {
        overflow: hidden;
        width: 340px !important;
        height: 190px !important;
    }
    .nylist-right-li-content-img img{
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }
    .nylist-right-li1{
        height: 190px;
    }
    .nylist-right-li2{
        height: 190px;
    }
    .nylist-right-li-content-time h3{
        font-size: 26px;
    }
    .nylist-right-li-content-time h4{
        font-size: 20px;
    }
    .nylist-right-li-content-text p {
        font-size: 14px;
        display: -webkit-line-clamp;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}
@media screen and (max-width: 768px) { 
    .nylist-right-li-content-img{
        display: none;
    }
        .nylist-right-li1 {
        width: 460px;
        justify-content: center;
    }
    .nylist-right-li2 {
        width: 460px;
        justify-content: center;
    }
    .nylist-right {
        width: 460px;
    }
    .nav{
        display: none;
    }
    .header-box {
        justify-content: center;
    }
    .logo {
        width: auto;
        height: auto;
    }
    .menu-toggle {
        display: flex;
        z-index: 10;
    }
    .menu-toggle span{
        background: #873299;
    }
    .header{
        height: 75px;
    }
    .nav-left{
        margin-top: -90px;
    }
        .footer-content {
        align-items: center;
    }

    .footer-content-text {
        flex-direction: column;
    }

    .footer-content-left-ul {
        flex-direction: column;
    }

    .footer {
        width: 100vw;
        background: url(../../img/zjjjh/images/footer.jpg) no-repeat center center;
        background-size: cover;
        /* 背景图覆盖整个容器 */
        background-attachment: scroll;
        /* 避免固定可能造成的问题 */
        display: flex;
        justify-content: flex-start;
    }

    .footer-content-right-ul {
        flex-direction: column;
    }

    .footer-content-right-ul ul:nth-of-type(2) {
        margin-left: 0px;
    }

    .footer-content-right {
        width: 50%;
    }

    .footer-content-logo {
        margin-top: 40px
    }
    .footer-content-logo img {
        width: 100%;
        height: auto;
    }
}

/*分页样式*/
.Pages {
    overflow: hidden;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 12px;
    color: #333333;
    text-align: center;
    display: flex;
    justify-content: center;
}

.pagesCon {
    display: block;
    text-align: center;
    width: 100%;
}


.pagesCon div {
    display: inline-flex;
    align-items: center;     /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    margin-left: 20px;
    gap: 5px;                /* 子元素之间的间距 */
}



.pageNum {
    width: 22px;
    height: 22px;
    line-height: 19px;
    border: 1px solid #873299;
    border-radius: 2.5px;
    background-color: #fff;
    color: #873299;
    cursor: pointer;
    display: inline-flex;
    align-items: center;   /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    text-align: center;    /* 确保文本内容居中 */
    margin: 0 4px;
}

.pageJumpInput {
    display: inline-block;
    vertical-align: middle;
}

.pageLeft {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 19px;
    margin: 0 4px;
}
.pageNum, .pageLeft {
    vertical-align: middle; /* 或 top / bottom，视需求调整 */
}


.pageLeft img {
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: middle;
}

.pageCount select {
    width: 69px;
    height: 27px;
    line-height: 19px;
    border: #873299 1px solid;
    border-radius: 2.5px;
    font-size: 12px;
    color: #333333;
    text-align: center;
    background-color: #fff;
    margin: 0 auto;
    display: block;
    float: none;
}

.pageJumpInput input {
    width: 39px;
    height: 24px;
    border: 1px solid #873299;
    border-radius: 2.5px;
    font-size: 12px;
    color: #333333;
    text-align: center;
    margin: 0 5px; /* 左右各 5px 间距 */
    vertical-align: middle; /* 垂直居中 */
    line-height: 22px; /* 与 height 一致，保证文字垂直居中 */
}


.page-this {
    color: #ffffff;
    background-color: #873299;
    border: 1px solid #873299;
    width: 22px;
    height: 22px;
}

.secondLevelLabel {
    overflow: hidden;
    margin-top: 15px;
    text-align: center;
}

.secondLevelLabelList {
    width: 67px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    color: #717171;
    display: inline-block;
    margin: 0 6px;
    background: #F1F1F1;
    border-radius: 14px;
    cursor: pointer;
}

.secondLevelLabelList—this {
    color: #FFFFFF;
    background-color: #873299;
}

.nylist-right-li-content .nylist-right-li1 {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nylist-right-li-content .nylist-right-li2 {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-list a.active,
.mobile-nav a.active {
    color: #873299;
    font-weight: bold;
}


@media screen and (max-width: 660px) {
    .nylist-content{
        align-items: center;
        flex-direction: column;
    }
    .logo{
        width:  290px;
    }
    .nav-left{
        width: 338px;
        height: 437px;
    }
    .nylist-right {
        width: 90%;
    }
    .nylist-right-li1 {
        width: 100%;
    }
    .nylist-right-li-content{
        justify-content: center;
    }
    .nylist-right-li-content-time{
        width: 65px;
    }
    .nylist-right-li-content-text {
        width: 250px;}
    .nylist-right-li2{
        width: 100%;
        margin-left: 0px;
    }
    .nylist-right-li1{
        width: 100%;
        margin-left: 0px;
    }
    .pagination span{
        font-size: 12px;
    }
    .page-btn.disabled{
        font-size: 12px;
    }
    .jump-btn{
        font-size: 12px;
    }
    .pageJumpInput {
        margin-top: 10px !important;
        margin-left: 0px !important;
    }
    .tdcy-box-content {
        margin-top: 90px !important;
    }
    .tdcy-box-title {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 80% !important;
    }
}

