/* 页面样式 - 基于reset.css，100px=1rem */

/* 文本超出省略号公共样式 */
.text-ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.text-ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

/* 引入字体 */
@font-face {
    font-family: 'FZ YanSJW';
    src: url('../fonts/FZ_YanSJW.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* 顶部导航栏 */
.top-header {
    background: url("../images/topbg.png") no-repeat center top,linear-gradient(to right,#33428f 0%,#2fb4aa 100%);
    padding: 0.24rem 0;
    color: #fff;
    background-size: cover;
}

.top-header .w16 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.logo {
    width: 4.05rem;
    height: 0.82rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    font-size: 0.33rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 0.02rem;
    letter-spacing: 0.16rem;
}

.logo-text p {
    font-size: 0.14rem;
    color: #fff;
    line-height: 1.4;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 0.12rem;
}
.link-item{
    display: flex;
    align-items: center;
    gap: 0.05rem;
    color: #ffffff;
    font-size: 0.16rem;
}
.link-item img{
    height: 0.15rem;
}
.separator {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.14rem;
}

.link-item {
    font-size: 0.14rem;
    color: #fff;
    transition: opacity 0.3s;
}

.link-item:hover {
    opacity: 0.8;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0.08rem;
    border-radius: 0.4rem;
    overflow: hidden;
}

.search-box  .qwss{
    width: 3.11rem;
    height: 0.4rem;
    padding: 0 0.38rem 0 0.24rem;
    border-radius: 0.04rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.14rem;
}

.search-box .qwss::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-icon {
    position: absolute;
    right: 0.2rem;
    width: 0.18rem;
    height: 0.18rem;
    cursor: pointer;
}

/* 主导航栏 */
.main-nav {
    background:linear-gradient(to right,#33428f 0%,#2fb4aa 100%);
    padding: 0;
    border-top: 0.01rem solid rgba(255, 255, 255, 0.1);
}

.main-nav .w16 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.nav-item-wrapper {
    position: relative;
}

.nav-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.15rem;
    padding: 0 0.1rem;
}

.nav-item {
    padding: 0.14rem 0.28rem;
    color: #fff;
    font-size: 0.18rem;
    transition: color 0.3s;
    position: relative;
    text-decoration: none;
    display: block;
}

.nav-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(51, 66, 143, 0.98);
    min-width: 1.8rem;
    padding: 0.12rem 0;
    margin: 0;
    list-style: none;
    display: none;
    z-index: 1000;
    box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.3);
    border-radius: 0.06rem;
    white-space: nowrap;
}

.nav-item-wrapper:hover .nav-submenu {
    display: block;
}

.nav-submenu li {
    margin: 0;
}

.nav-submenu li a {
    display: block;
    padding: 0.12rem 0.2rem;
    color: #fff;
    font-size: 0.16rem;
    text-decoration: none;
    transition: all 0.3s;
    line-height: 1.6;
    text-align: center;
}

.nav-submenu li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 1);
    padding-left: 0.32rem;
}

/* Hero 区域 */
.hero-section {
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: 5.85rem;
}

.hero-swiper .swiper-slide {
    height: 5.85rem;
    width: 100%;
    object-fit: cover;
}
.hero-swiper .swiper-slide img{
    width: 100%;
    height: 100%;
}


/* Swiper 分页器和导航按钮样式 */
.hero-swiper .swiper-pagination {
    display: none;
}

.hero-swiper .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 0.4rem;
    height: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(52, 80, 148, 0.9);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 0.16rem;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* 鼠标移入轮播区域时显示导航按钮，并向中间靠拢一点 */
.hero-swiper:hover .swiper-button-next,
.hero-swiper:hover .swiper-button-prev {
    opacity: 1;
}

.hero-swiper .swiper-button-prev {
    left: 0.4rem;
}

.hero-swiper .swiper-button-next {
    right: 0.4rem;
}

/* 三个信息框 */
.info-boxes {
    margin-top: -0.54rem;
    position: relative;
    z-index: 2;
}

.info-boxes .w16 {
    display: flex;
    justify-content: space-around;
    gap: 0.56rem;
}

.info-box {
    flex: 1;
    background: #fff;
    height: 1.29rem;
    border-radius: 0.25rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 0.06rem solid #355796;
    box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;

}

.info-box:hover {
    transform: translateY(-0.06rem);
    box-shadow: 0 0.08rem 0.2rem rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 0.56rem;
    height: 0.56rem;
    margin: 0 auto 0.16rem;
    font-size: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box img {
    height: 0.6rem;
}

.info-box h3 {
    font-size: 0.2rem;
    margin-bottom: 0.08rem;
    font-weight: 600;
    color: #355796;
}

.info-box p {
    font-size: 0.14rem;
    color: #666;
}



/* 新闻和政策 */
.news-policy {
    padding: 0.4rem 0;
    background: #fff;
}

.news-policy .w16 {
    display: flex;
    gap: 0.4rem;
    justify-content: space-between;
}

.news-section,
.policy-section {
    width: 7.62rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
    padding-bottom: 0.12rem;
}

.section-title-left {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.title-squares {
    display: flex;
    flex-direction: column;
    gap: 0.02rem;
    margin-top: 0.02rem;
}

.square {
    width: 0.12rem;
    height: 0.12rem;
    display: block;
}

.square-top {
    background: #2eb5aa;
}

.square-bottom {
    background: #345094;
}
.title-text{
    display: flex;
    align-items: center;
    gap: 0.05rem;
    font-family: 'FZ YanSJW', 'Microsoft YaHei', sans-serif;
}
.title-text h3 {
    font-size: 0.40rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    font-family: 'FZ YanSJW', 'Microsoft YaHei', sans-serif;
}

.title-text h3 .char-zhaosheng {
    background: linear-gradient(to right, #33428f 0%, #2fb4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'FZ YanSJW', 'Microsoft YaHei', sans-serif;
}

.title-sub {
    display: flex;
    flex-direction: column;
    font-family: 'FZ YanSJW', 'Microsoft YaHei', sans-serif;
}

.title-sub .char-dongtai {
    color: #4a7fb8;
    font-size: 0.22rem;
    font-weight: 600;
    font-family: 'FZ YanSJW', 'Microsoft YaHei', sans-serif;
}

.title-sub p {
    font-size: 0.12rem;
    color: #666;
    margin: 0;
}

.more-link {
    display: flex;
    align-items: center;
    gap: 0.05rem;
    font-size: 0.16rem;
    color: #33428f;
    text-decoration: none;
    font-weight: 600;
}

.more-link img {
    width: 0.25rem;
    height: 0.09rem;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 0.15rem 0 0.18rem;
    border-bottom: 0.01rem solid #eee;
    gap: 0.08rem;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}


.news-item .date {
    display: flex;
    align-items: center;
    gap: 0.04rem;
}

.time-icon {
    width: 0.16rem;
    height: 0.16rem;
}

.date {
    font-size: 0.16rem;
    color: #083c9d;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.date {
    position: relative;
    transition: padding-left 0.3s ease;
}

.date::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0.02rem;
    background: #083c9d;
    transition: width 0.3s ease;
}

.news-title {
    font-size: 0.2rem;
    color: #1d1d1d;
    flex: 1;
    transition: color 0.3s;
    line-height: 1.6;
    width: 100%;
}

.news-item:hover .date {
    padding-left: 0.2rem;
}

.news-item:hover .date::before {
    width: 0.15rem;
}

.news-item:hover .news-title {
    color: #4a90e2;
}

.policy-list {
    display: flex;
    flex-direction: column;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    margin-bottom: 0.2rem;
}


.policy-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.policy-left {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;

}

.policy-tag {
    background: #33428f;
    color: #ffffff;
    width: 0.78rem;
    height: 0.46rem;
    font-size: 0.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-date {
    background: #2fb4aa;
    color: #ffffff;
    width: 0.78rem;
    height: 0.3rem;
    line-height: 0.3rem;
    text-align: center;
    font-size: 0.14rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    border-bottom: 0.01rem solid #eee ;
    padding-left: 0.15rem;
    height: 0.76rem;
    width: 0;
}

.policy-title {
    font-size: 0.2rem;
    color: #1d1d1d;
    font-weight: 500;
    line-height: 1.8;
    transition: color 0.3s;
}

.policy-desc {
    font-size: 0.16rem;
    color: #8f8f8f;
}

.policy-item:hover .policy-title {
    color: #4a90e2;
}

/* 院系专业 */
.departments {
    padding: 0.4rem 0;
    background: #f3f5f8 url('../images/bannerbg.png') no-repeat center top;
    background-size: contain;
    width: 100%;
}

.section-title-center {
    display: flex;
    justify-content: center;
    margin-bottom: 0.24rem;
}

.dept-title .square-top,
.dept-title .square-bottom {
    background: #fff;
}

.dept-title .title-text h3 {
    color: #fff !important;
}

.dept-title .title-text h3 .char-zhaosheng {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
    color: #fff !important;
}

.dept-title .title-sub .char-dongtai {
    color: #fff !important;
}

.dept-title .title-sub p {
    color: rgba(255, 255, 255, 0.8) !important;
}



.body {
    margin-top: 0.44rem;
    height: 4.15rem;
    box-sizing: border-box;
    background: #ffffff;
    padding: 0.2rem;
}

/* 院系专业：横向手风琴 */
.dept-accordion {
    display: flex;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.12rem; /* 官网同款：条与条之间留空白 */
    background: transparent;
    border-radius: 0.08rem;
    /* 避免动画期间任何越界造成“重叠观感” */
    overflow: hidden;
}
/* 仅标签条模式：隐藏右侧面板，各学院条均分整行宽度（恢复旧版：去掉 HTML 上 ul 的 dept-accordion--panels-hidden） */
.dept-accordion.dept-accordion--panels-hidden .dept-accordion-item {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    transition: background 0.3s ease;
}

.dept-accordion.dept-accordion--panels-hidden .dept-acc-tab {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
}

.dept-accordion.dept-accordion--panels-hidden .dept-acc-panel {
    display: none !important;
}

.dept-accordion-item {
    display: flex;
    height: 100%;
    /* 用 width 过渡（更接近官网，避免 flex 切换导致闪烁） */
    flex: 0 0 auto;
    width: 0.63rem; /* 默认只露出竖条，展开宽度由 JS 计算注入 */
    /* 减慢过渡速度，更平滑 */
    transition: width 1.2s ease-in-out;
    background: #eef2f7;
    border-radius: 0.08rem;
    overflow: hidden; /* 单条内部仍保持裁切 */
    will-change: width; /* 优化性能 */
    position: relative; /* 便于定位 */
}

/* 动画期间禁用所有项的鼠标事件，彻底避免偏移导致的误触 */
.dept-accordion.transitioning .dept-accordion-item .dept-acc-tab {
    pointer-events: none;
}

/* 官网是间距分隔，不需要 border 线分隔 */

.dept-acc-tab {
    flex: 0 0 0.63rem;
    width: 0.63rem; /* 竖条固定窄宽：避免 active 时整块变蓝 */
    height: 100%;
    background: #eef2f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.2rem;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.3s ease;
    overflow: hidden;
}

.dept-acc-icon {
    width: 0.36rem;
    height: 0.36rem;
    object-fit: contain;
    margin-bottom: 0.12rem;
}

.dept-acc-tab h3 {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #333;
    font-family: "Microsoft YaHei";
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 0.22rem;
    margin: 0;
}

.dept-acc-panel {
    flex: 1 1 auto;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    /* 面板本身：轻微渐显，避免突然闪现 */
    transition: opacity 0.25s ease;
    will-change: opacity;
    visibility: hidden;
    pointer-events: none;
    position: relative; /* 便于内部固定宽度内容裁切展开 */
}

.dept-acc-panel-inner {
    height: 100%;
    box-sizing: border-box;
    padding: 0.26rem 0.2rem;
    background: #eef2f7;
    /* 默认占满（激活时由 JS 写入固定最终宽度，避免动画期文字重排"变形"） */
    width: 100%;
    max-width: none;
    /* 内容：从左往右滑入 + 渐显（更像"打开"） */
    opacity: 0;
    transform: translateX(-0.26rem);
    /* 减慢右侧内容出现速度 */
    transition: transform 1.0s ease-in-out,
    opacity 0.5s ease;
    will-change: transform, opacity;
}

.dept-accordion-item.active .dept-acc-tab {
    background: linear-gradient(180deg, #0a55bb 0%, #1968d4 100%);
}

.dept-accordion-item.active .dept-acc-tab h3 {
    color: #fff;
}

.dept-accordion-item.active .dept-acc-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dept-accordion-item.active .dept-acc-panel-inner {
    opacity: 1;
    transform: translateX(0);
    /* 让内容稍晚于宽度展开出现，避免"瞬间出字" */
    transition-delay: 0.2s;
}

.dept-header {
    display: flex;
    align-items: center;
    gap: 0.12rem;
    margin-bottom: 0.12rem;
}
.dept-header  h3{font-size:0.2rem;}
.dept-header-icon {
    width: 0.36rem;
    height: 0.36rem;
    flex-shrink: 0;
}

.dept-header-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 右侧垂直标签列表 */
/* （已废弃）旧的 tabs 结构样式已移除，避免干扰 */

.dept-content-panel .dept-header h3 {
    color: #282828;
    font-family: "Microsoft YaHei";
    font-size: 0.22rem;
    font-weight: 400;
    line-height: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
}

.blue-short-line {
    text-align: left;
    width: 0.44rem;
    height: 0.02rem;
    background: #0a55bb;
    margin: 0.12rem 0;
    border: none;
    display:none;
}

/* 展开面板正文：占满宽度，避免右侧大片空白 */
.dept-acc-panel-inner p,
.dept-content-panel p {
    width: 100%;
    color: #38383b;
    font-family: "Microsoft YaHei";
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 0.3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin: 0;
    display: none;
}

.dept-content-panel hr {
    height: 1px;
    background: #d6def1;
    margin: 0.16rem 0;
    border: none;
}

.major-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.major-list li a {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    font-size: 0.16rem;
    color: #0a55bb;
    font-family: "Microsoft YaHei";
    line-height: 1.8;
    margin-bottom: 0.08rem;
}

/* 官网同款：展开面板里的专业列表两列排布 */
.dept-acc-panel-inner .major-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.1rem;
    row-gap: 0.12rem;
    margin-top: 0.08rem;
}

.dept-acc-panel-inner .major-list li a {
    margin-bottom: 0;
}

.major-bullet {
    width: 0.06rem;
    height: 0.12rem; /* 两个方块的高度 */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 0;
    margin-top: 0.02rem; /* 上方间距 */
}

/* 第一个方块 - 上方的 */
.major-bullet::before {
    content: '';
    width: 0.06rem;
    height: 0.06rem;
    background: #2fb4aa;
    display: block;
    flex-shrink: 0;
    position: relative;
    bottom: 0.01rem;
}

/* 第二个方块 - 下方的 */
.major-bullet::after {
    content: '';
    width: 0.06rem;
    height: 0.06rem;
    background: #33428f;
    display: block;
    flex-shrink: 0;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.links a {
    flex: 0 0 50%;
    padding-right: 0.05rem;
    box-sizing: border-box;
    transition: all 0.5s;
    margin-bottom: 0.2rem;
}

.links a:hover {
    padding-left: 0.05rem;
    padding-right: 0;
}

.links img {
    width: 0.18rem;
    height: 0.18rem;
}

.links a h4:hover {
    text-overflow: clip;
    white-space: normal;
    overflow: visible;
}

.links h4 {
    color: #0a55bb;
    font-family: "Source Han Sans CN";
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 1.5;
    transition: all 0.5s;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
}


/* 校园风采 */
.campus-showcase {
    padding: 0.4rem 0;
    background: #f3f5f8;
}

.campus-showcase .section-header {
    margin-bottom: 0.24rem;
}

.campus-showcase .campus-showcase-header {
    border-bottom: none;
    padding-bottom: 0;
}

.campus-showcase .campus-title .title-text h3 {
    font-size: 0.28rem;
    font-weight: 600;
    color: #2c66c0;
    font-family: 'FZ YanSJW', 'Microsoft YaHei', sans-serif;
}

.campus-showcase .campus-title .title-sub p {
    color: rgba(44, 102, 192, 0.75);
    font-size: 0.12rem;
    margin: 0;
}

.more-link.more-link-dots {
    color: #2c66c0;
}

.showcase-content {
    display: flex;
    gap: 0.32rem;
}

.video-section {
    width: 8rem;
    height: 5.13rem;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    /* @index.html:693 作为背景图 */
    background: url("../images/videobg.png") center / cover no-repeat;
    height: 5.39rem;
}

.video-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.56rem;
    height: 0.56rem;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 2; /* 垂直居中显示在遮罩上方 */
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0.16rem 0.18rem;
    text-align: center;
    font-size: 0.15rem;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.01rem;
}

.gallery-section {
    flex: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.13rem;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
    object-fit: cover;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.gallery-grid a:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2;height:2.6rem; }
.gallery-grid a:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2;height:2.6rem; }
.gallery-grid a:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; height:2.6rem;}
.gallery-grid a:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3;height:2.6rem; }

/* 底部横幅图 */
.bottom-banner {
    width: 100%;
    background: #f3f5f8;
}

.bottom-banner-img {
    display: block;
    width: 100%;
    height: auto;
}

/* 页脚 */
.footer {
    background: url("../images/bottombg.png") center / cover no-repeat;
    color: #fff;
    padding: 0.4rem 0 0.4rem;
    position: relative;
}



.footer .w16 {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 0.48rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
    width: 3.2rem;
}

.footer-left a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.24rem;
    height: 0.52rem;
    font-size: 0.15rem;
    color: #fff;
    text-decoration: none;
    border: 0.01rem solid rgba(255, 255, 255, 0.7);
    border-radius: 0.02rem;
    background: rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.footer-left a:hover {
    background: rgba(0, 0, 0, 0.18);
    border-color: #ffffff;
    transform: translateY(-0.02rem);
}

.footer-left a::after {
    content: ">";
    font-size: 0.18rem;
}

.footer-center {
    flex: 1;
    margin-left: 0.6rem;
}

.footer-center h4 {
    font-size: 0.24rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.05rem;
}

.footer-center p {
    font-size: 0.18rem;
    margin-bottom: 0.08rem;
    line-height: 2;
}

.footer-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-qr {
    display: flex;
    gap: 0.24rem;
    justify-content: flex-end;
    align-items: center;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    height: 1.1rem;
    margin-bottom: 0.08rem;
    padding: 0.04rem;
    border-radius: 0.04rem;
}

.qr-item p {
    font-size: 0.14rem;
}

.footer-bottom {
    height: 0.68rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #3695a8 0%, #3a579f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    font-size: 0.16rem;
    color: #ffffff;
}

/* 轮播区域右侧固定招生特刊标签 */
.fixed-book-tag {
    position: absolute;
    right: 0;
    bottom: 10%;
    transform: translateY(-50%);
    z-index: 5;
    width: 1.72rem;
    height: 0.8rem;
    padding-left: 0.34rem;
    padding-right: 0.18rem;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    background: #234a9d;
    border-radius: 0.4rem 0 0 0.4rem;
    box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.25);
}

.fixed-book-icon {
    position: absolute;
    left: 0rem;
    top: 10%;
    transform: translateY(-50%);
    width: 0.64rem;
    height: auto;
}

.fixed-book-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    padding-left: 0.35rem;
    align-items: center;
}

.fixed-book-year {
    font-size: 0.20rem;
    color: #ffffff;
    font-weight: 500;
}

.fixed-book-title {
    font-size: 0.20rem;
    color: #ffffff;
    font-weight: 600;
}

/* 右侧浮动侧边栏 */
.floating-sidebar {
    position: fixed;
    right: 0.18rem;
    bottom: 2%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 0.86rem;
    padding: 0.4rem 0.12rem 0.14rem;
    border-radius: 0.2rem;
    background: linear-gradient(to right, #3a68a2, #468ec5);
    box-sizing: border-box;
}

.sidebar-head {
    position: absolute;
    top: -0.48rem;
    left: 50%;
    transform: translateX(-50%);
}

.sidebar-head img {
    width: 1rem;
    height: auto;
    display: block;
}

.sidebar-body {
    display: flex;
    flex-direction: column;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    padding: 0.18rem 0;
}

/* 元素之间增加间距，并用细线分隔 */
.sidebar-item + .sidebar-item {
    border-top: 0.01rem solid rgba(255, 255, 255, 0.35);
}

.sidebar-item:hover {
    transform: translateY(-0.04rem);
}

.sidebar-item img {
    width: 0.26rem;
    height: 0.26rem;
    margin-bottom: 0.02rem;
}

.sidebar-item span {
    font-size: 0.2rem;
    color: #fff;
}

.sidebar-item.has-tooltip .sidebar-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    /* 留一点空隙，让白色框和按钮之间有距离 */
    transform: translateY(-50%) translateX(-0.2rem);
    background: #ffffff;
    color: #333;
    padding: 0.16rem 0.2rem;
    border-radius: 0.08rem;
    box-shadow: 0 0.06rem 0.18rem rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

/* 气泡内若用 span，勿继承侧栏「QQ群」等标签的白色字，否则白底上不可见 */
.sidebar-item.has-tooltip .sidebar-tooltip span {
    color: #333;
}

.sidebar-item.has-tooltip .sidebar-tooltip::after {
    content: "";
    position: absolute;
    /* 白色框右侧的小箭头，指向按钮 */
    right: -0.06rem;
    top: 50%;
    width: 0.12rem;
    height: 0.12rem;
    background: #ffffff;
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0.04rem 0 0.12rem rgba(0, 0, 0, 0.05);
}

.sidebar-item.has-tooltip:hover .sidebar-tooltip {
    opacity: 1;
    visibility: visible;
    /* hover 时再稍微往左移动一点，显得更自然 */
    transform: translateY(-50%) translateX(-0.24rem);
}

/* QQ 两行号码需换行并与号码列对齐：父级 sidebar-tooltip 默认 nowrap，此处必须放开 */
.sidebar-item.has-tooltip .sidebar-tooltip.sidebar-tooltip--qq {
    white-space: normal;
}

.sidebar-qq-grid {
    display: inline-grid;
    grid-template-columns: max-content max-content;
    column-gap: 0.08rem;
    align-items: start;
    font-size: 0.20rem;
    line-height: 1.6;
    font-weight: 600;
}

.sidebar-tooltip-text p {
    margin: 0;
    font-size: 0.20rem;
    line-height: 1.6;
    font-weight: 600;
}

.sidebar-tooltip-image img {
    width: 1.3rem;
    height: auto;
    display: block;
}

.ban {
    width: 100%;
    position: relative;
    z-index: 10;
}

.ban > img {
    width: 100%;
    max-height: 6.4rem;
}


.ban .yjlm {
    position: absolute;
    left: 0%;
    top: 30%;
    width: 100%;
}

.ban .yjlm h2 {
    font-size: 0.48rem;
    color: #fff;
    margin-bottom: 0.1rem;
}

.adress a, .adress {
    font-size: 0.16rem;
    color: #666;
}

.adress {
    background: url(../images/home1.png) no-repeat left center;
    padding-left: 0.18rem;
    line-height: 0.65rem;
    white-space: nowrap;
    background-size: 0.18rem 0.18rem;
}

.adress a {
    padding: 0 0.08rem;
}

.adress a:hover {
    color: #3a4a9d
}

.ban .ejlm {
    height: 0.7rem;
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0.16rem 0.29rem 0px rgba(58, 74, 157, 0.11);
    /* 往上叠到图片边缘，消除中间那条白缝 */
    margin-top: -0.35rem;
}

.ban .ejlm .w15 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ban .ejlm ul {
    height: 0.7rem;
    flex: 1;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

/* 自定义滚动条样式，显示美观的细线条滚动条 */
.ban .ejlm ul::-webkit-scrollbar {
    height: 1px; /* 滚动条高度，更细 */
}

.ban .ejlm ul::-webkit-scrollbar-track {
    background: #f8f8f8; /* 滚动条轨道背景，更浅 */
    border-radius: 1px; /* 轨道圆角 */
}

.ban .ejlm ul::-webkit-scrollbar-thumb {
    background: #33428f; /* 滚动条滑块颜色，使用页面主题蓝色 */
    border-radius: 1px; /* 滚动条滑块圆角 */
    transition: background 0.3s ease; /* 过渡效果 */
}

.ban .ejlm ul::-webkit-scrollbar-thumb:hover {
    background: #2fb4aa; /* 滚动条滑块悬停颜色，使用页面主题绿色 */
}

/* 为 Firefox 设置滚动条样式 */
.ban .ejlm ul {
    scrollbar-width: thin; /* 滚动条宽度 */
    scrollbar-color: #33428f #f8f8f8; /* 滚动条滑块和轨道颜色 */
}


.ban .ejlm ul li {
    line-height: 0.7rem;
    height: 100%;
    flex-shrink: 0;
    white-space: nowrap;
}

.ban .ejlm ul li a {
    color: #333;
}

.ejlm ul {
    justify-content: flex-start;
    align-items: center;
}

.ejlm li {
    font-size: 0.18rem;
    line-height: 0.3rem;
}

.ejlm li a {
    color: #fff;
    transition: 0.5s;
    display: block;
    padding: 0 0.28rem;
}

.ban .ejlm li.active a, .ban .ejlm li.active:hover a {
    color: #fff;
    background: #3a4a9d;
}

.ban .ejlm li:hover a {
    color: #3a4a9d;
}

.inner {
    padding: 1rem 0;
}

.inner .ejlm {
    display: none;
}

.sjlm ul {
    height: 0.7rem;
}

.sjlm ul li {
    line-height: 0.7rem;
    height: 100%;
    margin-right: 5px;
}

.sjlm ul li a {
    color: #333;
    background: #f2f2f2;
    font-size: .18rem;
}

.sjlm {
    background: none;
    box-shadow: none;
    width: 583px;
    margin: 0 auto;
    margin-bottom: 0.5rem;
}

.sjlm ul {
    justify-content: flex-start;
    align-items: center;
}

.sjlm h2 {
    width: 100%;
    color: #fff;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: 0.22rem !important;

    padding: 0 0.2rem;
}

.ejlm li {
    font-size: 0.16rem;
    line-height: 0.3rem;
}

.sjlm li a {
    color: #fff;
    padding-bottom: 0.2rem;
    transition: 0.5s;
    display: block;
    padding: 0 0.4rem;
    display: block;
    font-family: Microsoft Yahei;
}

.sjlm li.active a {
    color: #3a4a9d;
    border-bottom: 5px solid #3a4a9d; /*! padding: 0 inherit; */
    font-size: .18rem; /* font-weight: 700; */
}

.sjlm li:hover a {
    color: #3a4a9d;
    border-bottom: 5px solid #3a4a9d;
}

.ejlm h2 {
    width: 100%;
    color: #fff;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: 0.22rem !important;
    background: url(../images/cd.png) no-repeat right 0.2rem center #3a4a9d;
    padding: 0 0.2rem;
}


.list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.list li {
    width: 48.75%;
    margin-bottom: 0.5rem;
}

.list li .kxdt-l {
    width: 1.08rem;
    height: 1.08rem;
    background: #3a4a9d;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    transition: 0.5s;
    padding: 0 0.15rem;
    border-top-left-radius: 0.05rem;
    border-bottom-left-radius: 0.05rem;
}

.list li a {
    width: 100%;
    /* 覆盖 flex-jcsb 的 space-between，避免左右中间出现空隙 */
    display: flex;
    justify-content: flex-start;
}

.list li .kxdt-r {
    width: calc(100% - 1.08rem);
    background: #f8f8f8;
    padding: 0.2rem 0.3rem 0.2rem 0.3rem;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list li .kxdt-l p {
    color: #fff;
    font-size: 0.25rem;
    line-height: 1.6;
    transition: 0.5s;
    font-weight: bold;
}

.list li .kxdt-l span {
    color: #fff;
    font-size: 0.18rem;
    line-height: 1.2;
    transition: 0.5s;
}

.list li h3 {
    word-break: break-word;
    font-size: 0.18rem;
    color: #222;
    line-height: 0.26rem;
    transition: 0.5s;
    min-height: .52rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list li h4 {
    font-size: 0.14rem;
    color: #666;
    line-height: 0.24rem;
    max-height: 0.72rem \0;
    transition: 0.5s;
    margin: .1rem 0;
}





.info {
    color: black;
}


/* content */
.content {
}

.tbsc {
    overflow-x: auto;
}

.tbsc table {
    width: 800px;
    margin: 0 auto;
}

.cont-ny {
    justify-content: space-between;
}

.new-cont {
    width: 100%;
}


.new-cont h2 {
    color: #333;
    font-size: 0.28rem;
    line-height: 0.38rem;
    font-family: "黑体";
    text-align: center;
    font-weight: bold;
}

.new-cont h3 {
    color: #555;
    font-size: 0.22rem;
    line-height: 0.38rem;
    font-family: "黑体";
    text-align: center;
    font-weight: bold;
}

.cont-tit {
    margin: 0.3rem 0 0.4rem;
    padding-bottom: 0.1rem;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.cont-titl {
    width: calc(100% - 0.1rem);
    text-align: center;
    display: flex;
    justify-content: center;
}

.cont-tit span {
    font-size: 0.14rem;
    color: #666666;
    margin: 0 0.1rem 0 0;
    line-height: 0.3rem;
    display: flex;
    align-items: center;
}

.cont-tit span img {
    display: inline-block;
    margin-right: 0.05rem;
    max-width: 0.17rem;
}

.article {
    padding-bottom: 0.5rem;
}

.article p {
    word-break: break-word;
    font-size: 0.16rem;
    color: #222;
    line-height: 0.3rem;
    text-indent: 2em;
    margin-bottom: 0.2rem;
    text-align: justify;
    text-justify: distribute;
}

.article span {
    word-break: break-word;
    font-size: 0.16rem;
    color: #222;
    line-height: 0.3rem;
    text-indent: 2em;
    margin-bottom: 0.2rem;
    text-align: justify;
    text-justify: distribute;
}

.article table p {
    word-break: break-word;
    font-size: 0.16rem;
    color: #222;
    line-height: 0.3rem;
    text-indent: 0em;
    margin-bottom: 0rem;
}

.article p img {
    display: inline-block;
   max-width:100%;
}

.article video {
    max-width: 100%;
    margin: 5px auto;
    height: auto;
}

.sticky {
    position: sticky;
    top: 0;
}


.pages {
    padding-top: 0.3rem;
    border-top: 1px solid #d6d0d0;
}

.pages p {
    margin-bottom: 0.1rem;
    font-size: 0.16rem;
    color: #333;
    line-height: 0.32rem;
    transition: 0.5s;
}

.pages p a {
    color: #333;
    transition: 0.5s;
    padding-left: 0.1rem;
    transition: 0.5s;
}



.list_sp {
    margin: 0 -.13rem;
}

.list_sp li {
    width: 25%;
    padding: 0 .13rem;
    margin-bottom: .5rem;
    transition: transform 0.3s ease;
}

.list_sp li a {
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 0.05rem;
    transition: all 0.3s ease;
}

.list_sp li a:hover {
    transform: translateY(-0.05rem);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.2);
}

.list_sp li .img .img_hezi {
    padding-bottom: 65.71%;
}

.list_sp li a .img {
    overflow: hidden;
    position: relative;
    height: 2.5rem;
}

.list_sp li a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.list_sp li a:hover .img img {
    transform: scale(1.1);
}

.list_sp li a .top {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    text-align: center;
    padding: 0 .15rem .12rem;
    background: url(../images/list_sp_t.png) center 101% no-repeat;
    background-size: 100% auto;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.list_sp li a:hover .top {
    opacity: 0.95;
}

.list_sp li a .top h5 {
    font-size: .16rem;
    color: #fff;
    line-height: 1.5;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}


.video-wrapper {
    cursor: pointer;
}

body.is-video-modal-open {
    overflow: hidden;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.video-modal.open {
    display: block;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.video-modal-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(10.8rem, calc(100vw - 0.6rem));
    height: min(6.2rem, calc(100vh - 0.8rem));
    background: #000;
    border-radius: 0.12rem;
    overflow: hidden;
    box-shadow: 0 0.18rem 0.6rem rgba(0, 0, 0, 0.35);
}

.video-modal-close {
    position: absolute;
    right: 0.12rem;
    top: 0.12rem;
    width: 0.44rem;
    height: 0.44rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.28rem;
    line-height: 0.44rem;
    cursor: pointer;
    z-index: 1;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.26);
}

.video-modal-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

@media screen and (max-width: 759px) {
    .article p,.article span{
    word-break: break-word;
    font-size:  unset;
    color: unset;
    line-height: unset;
    text-indent: unset;
    margin-bottom:unset;
    text-align: justify;
    text-justify: distribute;
}
}