@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;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Microsoft YaHei', 'PingFang SC', 'SimSun', sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
} */


.banner {
    width: 100vw;
    height: auto;

}

.bannerbg {
    width: 100%;
    height: auto;
    background-size: cover;
    /* 背景图片覆盖容器 */
    background-position: center;
    /* 居中显示 */
    background-repeat: no-repeat;
    /* 不重复 */

}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    /* 半透明白色下边框 */
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1350px;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo {
    width: 506px;
    height: 47px;
}

.navlist {
    width: 100%;
    margin-left: 50px;
}

.navlist>ul {
    display: flex;
    width: 100%;
}

.navlist>ul>li {
    width: 16%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    position: relative;
}

.navlist>ul>li>a {
    position: relative;
    transition: all 0.3s ease;
    /* 添加平滑过渡效果 */
}

.navlist>ul>li>a:hover::after {
    content: '';
    position: absolute;
    bottom: -10px;
    /* 下划线距离文字 10px */
    left: 0;
    width: 100%;
    /* 与链接宽度一致 */
    height: 2px;
    /* 下划线高度 */
    background-color: #fff;
    /* 白色下划线 */
    opacity: 1;
    /* 显示下划线 */
    transition: all 0.3s ease;
    /* 平滑过渡 */
}

.navlist>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    /* 初始宽度为 0 */
    height: 2px;
    background-color: #fff;
    opacity: 0;
    /* 初始透明 */
    transition: all 0.3s ease;
    /* 平滑过渡 */
}

/* 二级菜单容器样式 */
.navlist2 {
    display: none;
    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);
}

/* 悬停显示二级菜单 */
.navlist ul li:hover .navlist2 {
    display: block;
}

/* 二级菜单 ul 样式 */
.navlist2-ul {
    display: flex;
    /* 横向排列 */
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.navlist2-ul li {
    padding: 10px 20px;
    white-space: nowrap;
    /* 防止文字换行 */
    width: 100% !important;
    text-align: center;
}

/* 二级菜单链接样式 */
.navlist2-ul li a {
    display: block;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
}

/* 悬停效果 */
.navlist2-ul li:hover {
    background-color: #9920b1;
}

.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;
}

.banner-text {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    /* 居中对齐 */
    position: absolute;
    left: 0;
    right: 0;
    top: 230px;
    /* 距离.header底部50px */
}

.banner-text h1 {
    font-size: 72px;
    color: #fff;
}

.banner-text h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 400;
}

.banner-text-more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 294px;
    height: 73px;
    margin-top: 50px;
    background-color: #5e2a8ccf;
    border-radius: 50px;
    color: #fff;
    font-size: 21px;
    text-decoration: none;
    /* 去除链接下划线 */
    padding: 0;
    /* 去掉内边距 */
}

.banner-text-more a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner,
.ztyj {
    margin: 0;
    /* 移除外边距 */
    padding: 0;
    /* 移除内边距 */
}

.arrow {
    width: 95px;
    height: 8px;
    border-bottom: 1.5px solid white;
    position: relative;
    margin-left: 20px;
    /* 控制箭头和文字的间距 */
}

.arrow:after {
    content: '';
    position: absolute;
    top: 30%;
    right: -2px;
    width: 13px;
    height: 1.5px;
    background-color: white;
    transform: rotate(45deg);
    /* 旋转45度，使其呈斜线 */
    transform-origin: center;
}

.ztyj {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f7f7f7;
    position: relative;
    top: -5px;
}

.ztyj-content {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    /* 居中对齐 */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* 使子元素相对定位 */
}

.ztyj-content-title {
    margin-top: 40px;
    color: #873299;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    /* 设置为相对定位 */
    padding-bottom: 10px;

}

.ztyj-content-title::before {
    content: '';
    display: block;
    width: 42px;
    height: 2px;
    background: #873299;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 99%;
    /* 紧贴after线 */
    margin-top: 0;
    border-radius: 1px;
    z-index: 1;
}

.ztyj-content-title::after {
    content: '';
    display: block;
    width: 108px;
    height: 2px;
    background: #873299;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 1px;
    border-radius: 1px;
    z-index: 0;
}

.ztyj-content-title h2 {
    font-size: 21px;
    text-transform: uppercase;
    /* 将字母转换为大写 */
    font-family: 'Source Han Serif SC', serif;
    font-weight: bold;
}

.ztyj-content-title h1 {
    font-size: 55px;
    font-weight: 400;
}

.ztyj-content-title-more {
    position: absolute;
    /* 绝对定位 */
    right: 0;
    /* 向右对齐 */
    top: 8%;
    /* 垂直居中 */
    /*  transform: translateY(-50%); 垂直居中对齐 */
}

.ztyj-content-title-more-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ztyj-content-title-more-text p {
    font-size: 16px;
    color: #873299;
    margin-right: 5px;
}

.ztyj-content-list {
    display: flex;
    margin-top: 50px;
    margin-bottom: 35px;
}

.ztyj-content-list ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 940px;
}

.ztyj-content-list-li {
    width: 430px;
    height: 450px;
    background-color: #fff;
    overflow: hidden;
    transition: background-color 0.3s;
    /* 添加背景色过渡动画 */
    margin: 10px;
}

.ztyj-content-list-li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.ztyj-content-list-img {
    width: 430px;
    height: 271px;
    overflow: hidden;
}

.ztyj-content-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 自动裁剪图片并保持比例 */
    object-position: center;
    /* 图片内容居中显示 */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* 缩放动画 */
}

.ztyj-content-list-li:hover img {
    transform: scale(1.08);
    /* 鼠标悬停时放大 */
}

.ztyj-content-list-text {
    width: 90%;

}

.ztyj-content-list-time {
    font-size: 13px;
    color: #873299;
    margin-top: 20px;
    border: 1px solid #873299;
    border-radius: 30px;
    padding: 2px 16px;
    display: inline-block;
}

.ztyj-content-list-text h3 {
    font-size: 21px;
    margin-top: 15px;
    color: #272727;
    font-weight: 400;
}

.ztyj-content-list-text p {
    font-size: 16px;
    color: #3e3a3a;
    margin-top: 10px;
    white-space: nowrap;
    /* 不换行 */
    overflow: hidden;
    /* 超出隐藏 */
    text-overflow: ellipsis;
    /* 超出部分显示省略号 */
}

.ztyj-content-list-more {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    align-items: center;
    flex-direction: row;
}

.ztyj-content-list-more p {
    font-size: 16px;
    color: #532758;
}

.ztyj-content-list-li:hover {
    background-color: #873299;
}

.ztyj-content-list-li:hover .ztyj-content-list-text h3,
.ztyj-content-list-li:hover .ztyj-content-list-more p,
.ztyj-content-list-li:hover .ztyj-content-list-text p {
    color: #fff;
    transition: color 0.3s;
    /* 添加字体颜色过渡动画 */
}

.ztyj-content-list-li:hover .ztyj-content-list-time {
    background-color: #fff;
    color: #873299;
    transition: background-color 0.3s, color 0.3s;
}

.kckf {
    background: url(../../img/zjjjh/images/kckf.jpg) no-repeat top center;
    width: 100vw;
    position: relative;
    top: -5px;

}

.kckf-content {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    /* 居中对齐 */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* 使子元素相对定位 */
}

.kckf-content-title {
    margin-top: 180px;
    color: #873299;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    /* 设置为相对定位 */
    padding-bottom: 10px;
    margin-bottom: 50px;
}

.kckf-content-title::after {
    content: '';
    display: block;
    width: 42px;
    height: 2px;
    background: #873299;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 99%;
    /* 紧贴after线 */
    margin-top: 0;
    border-radius: 1px;
    z-index: 1;
}

.kckf-content-title::before {
    content: '';
    display: block;
    width: 108px;
    height: 2px;
    background: #873299;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 1px;
    border-radius: 1px;
    z-index: 0;
}

.kckf-content-title h2 {
    font-size: 21px;
    text-transform: uppercase;
    /* 将字母转换为大写 */
    font-family: 'Source Han Serif SC', serif;
    font-weight: bold;
}

.kckf-content-title h1 {
    font-size: 55px;
    font-weight: 400;
}

.kckf-content-title-more {
    position: absolute;
    /* 绝对定位 */
    right: 0;
    /* 向右对齐 */
    top: 22%;
    /* 垂直居中 */
    /*  transform: translateY(-50%); 垂直居中对齐 */
}

.kckf-content-title-more-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kckf-content-title-more-text p {
    font-size: 16px;
    color: #873299;
    margin-right: 5px;
}

.kckf-content-list {
    display: flex;
    width: 100%;
    margin-bottom: 50px;
}

.kckf-content-list-li {
    width: 233px;
    height: 504px;
    position: relative;
    margin: 6px;
    margin-top: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    /* 确保内容超出容器时被裁剪 */
}

.kckf-content-list-li3 {
    width: 354px;
    height: 519px;
    position: relative;
    margin: 6px;
    transition: all 0.3s ease;
    overflow: hidden;
    /* 确保内容超出容器时被裁剪 */
}

.kckf-content-list-li3::before,
.kckf-content-list-li3::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 14px;
    background: #873299;
    z-index: 1;
}

.kckf-content-list-li3::before {
    top: 0;
}

.kckf-content-list-li3::after {
    bottom: 0;
}

.kckf-content-list-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 233px;
    background: url(../../img/zjjjh/images/kckfjb.png) no-repeat center center;
    background-size: cover;
    /* 保证背景图片覆盖 */
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
}

.kckf-content-list-text3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 233px;
    background: url(../../img/zjjjh/images/kckfjb.png) repeat-x center center;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
}

.kckf-content-list-text h1,
.kckf-content-list-text3 h1 {
    font-size: 20px;
    color: #fff;
    margin-left: 20px;
}

.kckf-content-list-text h2,
.kckf-content-list-text3 h2 {
    font-size: 14px;
    color: #fff;
    margin-left: 20px;
    margin-bottom: 30px;
}

.kckf-content-list-more {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.kckf-content-list-more3 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    color: #fff;
}

.kckf-content-list-li img {
    width: 100%;
    /* 使图片自动填充 */
    height: 100%;
    object-fit: cover;
    /* 保持图片覆盖且裁剪 */
    transition: transform 0.3s ease;
    /* 添加平滑过渡 */
}

/* 鼠标悬停时放大图片 */
.kckf-content-list-li3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* 添加平滑过渡 */

}

.kckf-content-list-li3 img {
    transform: scale(1.08);
}

.shsj {
    background: url(../../img/zjjjh/images/background3.jpg) no-repeat top center;
    width: 100vw;

    display: flex;
    justify-content: center;
    position: relative;
    top: -5px;
}

.shsj-content {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    /* 居中对齐 */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* 使子元素相对定位 */
    margin-top: 150px;
}

.shsj-content-title {
    margin-top: 40px;
    color: #873299;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    /* 设置为相对定位 */
    padding-bottom: 10px;
}

.shsj-content-title::after {
    content: '';
    display: block;
    width: 42px;
    height: 2px;
    background: #873299;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 99%;
    /* 紧贴after线 */
    margin-top: 0;
    border-radius: 1px;
    z-index: 1;

}

.shsj-content-title::before {
    content: '';
    display: block;
    width: 108px;
    height: 2px;
    background: #873299;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 1px;
    border-radius: 1px;
    z-index: 0;
}

.shsj-content-title h2 {
    font-size: 21px;
    text-transform: uppercase;
    /* 将字母转换为大写 */
    font-family: 'Source Han Serif SC', serif;
    font-weight: bold;
}

.shsj-content-title h1 {
    font-size: 55px;
    font-weight: 400;
}

.shsj-content-title-more {
    position: absolute;
    /* 绝对定位 */
    right: 0;
    /* 向右对齐 */
    top: 22%;
    /* 垂直居中 */
    /*  transform: translateY(-50%); 垂直居中对齐 */
}

.shsj-content-title-more-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shsj-content-title-more-text p {
    font-size: 16px;
    color: #873299;
    margin-right: 5px;
}

.shsj-content-list {
    display: flex;
    margin-top: 100px;
    width: 100%;

}

.shsj-content-list-ul {
    display: flex;
    width: 100%;
}

.shsj-content-list-li {
    width: 435px;
    height: 485px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 0.5px solid #532758;
    margin: 10px;
}

.shsj-content-list-li-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shsj-content-list-li-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* 缩放动画 */
}

.shsj-content-list-li:hover .shsj-content-list-li-img img {
    transform: scale(1.08);
    /* 鼠标悬停时放大 */
}

.shsj-content-list-li-text {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 95%;
    justify-content: space-evenly;
}

.shsj-content-list-li-text h1 {
    font-size: 21px;
    color: #272727;
    font-weight: 400;
    margin-left: 20px;

}

.shsj-content-list-li-text p {
    font-size: 16px;
    color: #3e3a3a;
    margin-left: 20px;
    margin-top: 10px;
    white-space: nowrap;
    /* 不换行 */
    overflow: hidden;
    /* 超出隐藏 */
    text-overflow: ellipsis;
    /* 超出部分显示省略号 */
}

.shsj-content-list-li-text-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shsj-content-list-li-text-more-p1 {
    font-size: 12px;
    color: #3e3a3a;
    margin-left: 20px;
}

.shsj-content-list-li-text-more-p2 {
    font-size: 16px;
    color: #873299;

}

.shsj-content-list-li:hover {
    background: #873299;
}

.shsj-content-list-li:hover .shsj-content-list-li-text h1,
.shsj-content-list-li:hover .shsj-content-list-li-text p,
.shsj-content-list-li:hover .shsj-content-list-li-text-more-p1,
.shsj-content-list-li:hover .shsj-content-list-li-text-more-p2 {
    color: #fff;
    transition: color 0.3s;
}

.footer {
    width: 100vw;
    background: url(../../img/zjjjh/images/footer.jpg) no-repeat top center;
    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;
}

.footer-content-left p {
    font-size: 16px;
    margin-bottom: 10px;
}

.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;
}

.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;
}

@media screen and (max-width: 1300px) {
    .nav {
        width: 95%;
    }

    .banner-text {
        width: 95%;
        top: 170px;
    }

    .banner-text h1 {
        font-size: 45px;
    }

    .banner-text h2 {
        font-size: 30px;
    }

    .banner-text-more {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 200px;
        height: 60px;
        margin-top: 20px;
        background-color: #5e2a8ccf;
        border-radius: 50px;
        color: #fff;
        font-size: 14px;
        text-decoration: none;
        padding: 0;
    }

    .arrow {
        width: 50px;
    }

    .ztyj-content {
        width: 95%;
    }

    .ztyj-content-list-li {
        width: 370px;
        height: 420px;
    }

    .ztyj-content-list-time {
        margin-top: 15px;
    }

    .ztyj-content-list-more {
        margin-top: 0px;
    }

    .ztyj-content-list-text h3 {
        font-size: 18px;
        margin-top: 10px;
    }

    .ztyj-content-list-text p {
        font-size: 14px;
        margin-top: 5px;
    }

    .ztyj-content-title::before {
        top: 100%;
    }

    .kckf-content {
        width: 95%;
    }

    .shsj-content {
        width: 95%;
    }

    .footer-content {
        width: 95%;
    }
}

@media screen and (max-width: 1100px) {
    .navlist ul li {
        font-size: 16px;
    }

    .logo img {
        width: 100%;
        height: auto;
    }

    .ztyj-content-list ul {
        justify-content: center;
    }

    .shsj-content-list-li {
        width: 300px;
        height: 410px;
    }

    .shsj-content-list-ul {
        justify-content: center;
    }

    .shsj-content-list-li-text h1 {
        font-size: 18px;
    }

    .shsj-content-list-li-text p {
        font-size: 14px;
    }

    .shsj-content-list-li-text-more-p2 {
        font-size: 14px;
    }

    .kckf-content-list-text h1,
    .kckf-content-list-text3 h1 {
        font-size: 18px;
        color: #fff;
        margin-left: 14px;
    }

    .hide-on-small {
        display: none;
    }

    .kckf-content-list {
        justify-content: center;
    }
}

@media screen and (max-width: 900px) {
    .header {
        height: 75px;
    }

    .logo {
        height: auto;
    }

    .banner-text {
        top: 110px;
    }

    .banner-text h1 {
        font-size: 30px;
    }

    .banner-text h2 {
        font-size: 20px;
    }

    .banner-text-more {
        width: 150px;
        height: 50px;
        margin-top: 15px;
    }

    .banner-text-more a {
        font-size: 12px;
    }

    .arrow {
        width: 35px;
    }

    .arrow:after {
        top: 50%;
        right: 0px;
        width: 7px;
    }

    .ztyj-content-title h2 {
        font-size: 16px;
    }

    .ztyj-content-title h1 {
        font-size: 40px;
    }

    .ztyj-content-title::after {
        width: 75px;
    }

    .ztyj-content-title::before {
        width: 30px;
    }

    .kckf-content-title h2 {
        font-size: 16px;
    }

    .kckf-content-title h1 {
        font-size: 40px;
    }

    .kckf-content-title::after {
        width: 30px;
    }

    .kckf-content-title::before {
        width: 75px;
    }

    .shsj-content-title h2 {
        font-size: 16px;
    }

    .shsj-content-title h1 {
        font-size: 40px;
    }

    .shsj-content-title::after {
        width: 30px;
    }

    .shsj-content-title::before {
        width: 75px;
    }

    .footer-content-logo img {
        width: 350px
    }

    .footer-content-left h1 {
        font-size: 20px;
    }

    .footer-content-right h1 {
        font-size: 20px;
    }

    .footer-content-left p {
        font-size: 14px;
    }

    .footer-content-right-ul a {
        font-size: 14px;
    }

    .footer-bottom-content {
        font-size: 12px;
    }

    .footer-bottom {
        height: 45px;
    }

    .ztyj-content-title-more {
        top: 3%;
        z-index: 2;
    }

    .shsj-content-title-more {
        top: 10%;
    }
}

@media screen and (max-width: 768px) {
    .navlist {
        display: none;
    }

    .nav {
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .kckf-content-list {
        flex-direction: column;
        align-items: center;
    }

    .hide-on-small {
        display: flex;
    }

    .kckf-content-title-more {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 280px;
    }

    .shsj-content-list-ul {
        flex-direction: column;
        align-items: center;
    }

    .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: 30px
    }

    .ztyj-content-title-more {

        left: 50%;
        transform: translateX(-50%);
        top: 140px;
        z-index: 2;
    }

    .shsj-content-title-more {

        left: 50%;
        transform: translateX(-50%);
        top: 150px;
    }

    .logo {
        width: 350px;
    }

    .banner-text h1 {
        font-size: 24px;
    }

    .banner-text h2 {
        font-size: 14px;
    }

    .banner-text {
        top: 78px;
    }

    .banner-text-more {
        width: 115px;
        height: 35px;
        margin-top: 10px;
    }

    .arrow {
        width: 26px;
    }
}
@media screen and (max-width: 660px) {
    .ztyj-content-list-li {
        width: 315px;
        height: 410px;
    }
    .ztyj-content-list-img{
        width: 315px;
       height: 250px;
    }
    .ztyj-content-title-more-text p{
        font-size: 14px;
    }
    .kckf-content-title-more-text p{
        font-size: 14px;
    }
    .shsj-content-title-more-text p{
        font-size: 14px;
    }
    .banner-text{
        display: none;
    }
    .logo {
        width: 260px;
    }
}
