/* 页面定制样式（基于 reset.css 的 rem 基准） */

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* 头部导航 - 固定定位（默认首页） */
.head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: box-shadow 0.3s ease;
}

/* 内页 head：不固定 */
.head.head-inner {
    position: absolute;
    left: 0;
    top: 0;
}

.head.scrolled {
    box-shadow: 0 0.032rem 0.128rem rgba(0, 0, 0, 0.1);
}

.head-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.24rem 0.64rem;
}

/* head-nav */
.head::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, .6);
    z-index: -1;
    transition: all 0.3s;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.head.on::after {
    height: 100%;
}


.head.on::before {
    bottom: 0;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo1 {
    height: 0.76rem;
    width: auto;
}

/* 右侧区域 */
.h-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 0.64rem;
}

/* 顶部快捷链接 */
.h-link {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin-bottom: 0.2rem;
}

.link-item {
    color: #fff;
    text-decoration: none;
    font-size: 0.16rem;
    display: flex;
    align-items: center;
    gap: 0.04rem;
    padding: 0.04rem 0.08rem;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.link-item:hover {
    opacity: 0.8;
}

.link-item .iconfont {
    font-size: 0.2rem;
    margin-top: 0.02rem;
}

.link-item:nth-child(n+4) .iconfont {
    font-size: 0.14rem;
}

.separator {
    color: #fff;
    margin: 0 0.04rem;
    font-size: 0.14rem;
}

.search-link {
    width: 0.3rem;
    height: 0.3rem;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-link .iconfont {
    margin-top: -0.02rem;
}

/* 主导航菜单 */
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav > ul {
    display: flex;
    list-style: none;
    gap: 0.4rem; /* 一级栏目间隔更大 */
    align-items: center;
}

.nav > ul > li {
    position: relative;
    list-style: none; /* 去掉 li 的点（双保险） */
}

.nav > ul > li > a {
    color: #fff;
    text-decoration: none;
    font-size: 0.2rem;
    padding: 0.08rem 0.24rem;
    display: block;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav > ul > li > a:hover {
    opacity: 0.8;
}

/* 二级导航：白底黑字 */
.ejnav {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0.12rem 0;
    min-width: 1.6rem;
    border-radius: 0.04rem;
    box-shadow: 0 0.06rem 0.2rem rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 1200;
}

.ejnav ul {
    list-style: none;
}

.ejnav li {
    list-style: none;
}

.ejnav a {
    display: block;
    padding: 0.08rem 0.28rem;
    font-size: 0.16rem;
    color: #000;
    white-space: nowrap;
    text-align: center;
    position: relative;
}

.ejnav a:hover {
    color: #1C43CA;
}

.nav > ul > li:hover .ejnav {
    display: block;
}

/* 二级栏目左侧蓝条效果（hover 时出现） */
.ejnav > ul > li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    transition: all 0.5s;
    background: #004cd8;
}

.ejnav > ul > li a::after {
    content: "";
    position: absolute;
    right: .3rem;
    top: 0;
    bottom: 0;
    width: .12rem;
    background-position: -.12rem center;
    background-size: .24rem auto;
    transition: all 0.5s;
}

.ejnav > ul > li a:hover {
    color: #004cd8;
}

.ejnav > ul > li a:hover::before {
    height: .4rem;
}

.ejnav > ul > li a:hover::after {
    /* background-position: 0 center; */
}

/* 轮播图区域 - 占满一屏 */
.banner {
    position: relative;
    /* z-index: 9; */
    overflow: hidden;
}

.banner a {
    display: block;
}

.banner > img {
    display: block;
    width: 100%;
}

.banner .slick {
    position: relative;
    z-index: 9;
}

.banner .slick-slide a {
    display: block;
    position: relative;
    transform: scale(1, 1);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.banner .slick-slide a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../imgs/banner-zz1.png) repeat-x;
    background-position: center top;
    background-size: 100% 2.3rem;
    z-index: 2;
}

.banner .slick-slide a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../imgs/banner-zzc2.png) repeat-x;
    background-position: center bottom;
    z-index: 1;
}

.banner .slick-slide a > img {
    display: block;
    width: 100%;
    height: 100vh;
    opacity: 0;
}

.banner .slick-slide a div {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .slick-slide a div img {
    display: block;
    max-width: 70%;
    max-height: 1.83rem;
    transition: all 1s;
    transform: scale(0);
    opacity: 0;
}

.banner .slick-slide a div img.on {
    opacity: 1;
    transform: scale(1);
}

.banner .slick-slide.slick-current a > img {
    animation: img_scale linear 8s;
}

@keyframes img_scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }

}

.banner .slick .box0 {
    opacity: 1;
    z-index: 0;
    opacity: 1;
    z-index: 0;
    -webkit-animation: box0 7s linear 0s;
    animation: box0 7s linear 0s
}


.banner .slick .slick-current .box2 {
    opacity: 1;
    z-index: 0;
    -webkit-animation: box2 7s linear 0s;
    animation: box2 7s linear 0s
}

.banner .slick .box1 {
    -webkit-animation: box1 1000ms cubic-bezier(0.5, 0, 0.2, 1) 0s;
    animation: box1 1000ms cubic-bezier(0.5, 0, 0.2, 1) 0s;
    z-index: 0
}

@-webkit-keyframes box0 {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    100% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05)
    }
}

@keyframes box0 {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    100% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05)
    }
}

@-webkit-keyframes box1 {
    0% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5);
        opacity: 0
    }
}

@keyframes box1 {
    0% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5);
        opacity: 0
    }
}

@-webkit-keyframes box2 {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    100% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05)
    }
}

@keyframes box2 {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    100% {
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05)
    }
}

.banner .slick-slide p {
    position: absolute;
    left: .6rem;
    bottom: 0.45rem;
    font-size: 0.3rem;
    line-height: .46rem;
    color: #ffffff;
    font-weight: 600;
    max-height: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 9;
}

.banner .slick-prev, .banner .slick-next {
    width: 0.3rem;
    height: 0.36rem;
    top: auto;
    left: auto;
    transform: translateY(0);
    bottom: 0.44rem;
    transition: all 0.5s;
}

.banner .slick-prev {
    background: url(../imgs/banner-l.png) no-repeat;
    background-position: center center;
    background-size: .28rem auto;
    right: 1.28rem;
}

.banner .slick-prev:hover {
    /* transform: translateX(-.1rem); */
    opacity: .6;
}

.banner .slick-next {
    right: .44rem;
    background: url(../imgs/banner-r.png) no-repeat;
    background-position: center center;
    background-size: .28rem auto;
}

.banner .slick-next:hover {
    /* transform: translateX(.1rem); */
    opacity: .6;
}

.banner .slick::after {
    content: "";
    position: absolute;
    right: .98rem;
    bottom: 0.44rem;
    width: 1px;
    height: 0.36rem;
    background-color: #ffffff;
    opacity: 0.58;
}

/* 全屏搜索框 */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    width: 100%;
    max-width: 8rem;
    padding: 0 0.64rem;
}

.search-box {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 0.08rem;
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    padding: 0.2rem 0.6rem 0.2rem 0.3rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.24rem;
    color: #333;
    background: transparent;
    padding: 0;
    line-height: 0.4rem;
}

.search-input::placeholder {
    color: #999;
}

.search-close {
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.32rem;
    height: 0.32rem;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #666;
    font-size: 0.32rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: #333;
}

.wp {
    max-width: 16rem;
    margin: 0 auto;
    width: 94%;
}

.flexjs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@keyframes sca {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes go {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(10px)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes up {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes roted {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.tit1 {
    margin-bottom: .35rem;
    align-items: center
}

.tit1 .ll {
    align-items: center;
    font-size: .32rem;
    color: #283348;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.tit1 .ll:before {
    content: "";
    position: absolute;
    background: url(../imgs/tit1.png) center no-repeat;
    width: .67rem;
    height: .67rem;
    top: -.06rem;
    left: .15rem;
    background-size: contain;
    animation: 10s roted infinite linear;
    z-index: -1
}

.tit1 .ll img {
    height: .51rem;
    margin: 0 .1rem 0 0
}

.more1 {
    align-items: center;
    font-size: .16rem;
    color: #234885;
    transition: .5s
}

.more1 img {
    height: .25rem
}

.more1 i {
    position: relative;
    margin: 0 .1rem 0 .02rem
}

.more1 i::before {
    content: "";
    position: absolute;
    border-top: transparent .025rem solid;
    border-bottom: transparent .025rem solid;
    border-left: #234885 .03rem solid
}

/* 新增样式：渐变中文标题 */
.tit-chinese-gradient {
    font-size: 0.28rem;
    font-weight: 700;
    line-height: 1.2;
    color: #3a4a9d;
    letter-spacing: 0.02rem;
}

/* 新增样式：英文标题和下方线条 */
.tit-english-text {
    font-size: 0.14rem;
    color: #303030;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    margin-top: 0.02rem;
    padding-bottom: 0.06rem;
}

.tit-english-text::after {
    content: "";
    position: absolute;
    top: 44%;
    left: 108%;
    width: 0.2rem;
    height: 0.02rem;
    background: linear-gradient(to right, #3a4a9d 0%, #2eb6aa 100%);
    transform: translateY(-50%);
}

/* 新增样式：装饰性背景元素 */
.tit-decorative {
    position: relative;
}

.tit-decorative > div {
    position: relative;
    z-index: 1;
}


@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(0.03rem, -0.03rem) scale(1.05) rotate(5deg);
    }
    66% {
        transform: translate(-0.02rem, 0.02rem) scale(0.95) rotate(-3deg);
    }
}

/* 新增样式：三个点的菜单图标 */
.menu-dots {
    display: flex;
    gap: 0.06rem;
    align-items: center;
    justify-content: center;
    width: 0.4rem;
    height: 0.4rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.menu-dots:hover {
    opacity: 0.7;
}

.menu-dots .dot {
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    display: block;
}

.menu-dots .dot-left {
    background-color: #1a3a5f;
}

.menu-dots .dot-center {
    background-color: #2d8a9e;
}

.menu-dots .dot-right {
    background-color: #1a3a5f;
}

.home_1 {
    background: url(../imgs/home1.png) center top no-repeat;
    background-size: 100% auto;
}

/*home1_1开始*/
.home1_1 {
    padding: .8rem 0 1rem;
    overflow: hidden;

}

/* 新闻区域布局 */
.home1_1_box {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.35rem;
    align-items: stretch;
}

.home1_left {
    flex: 0 0 60%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.home1_right {
    flex: 1;
    border-radius: 0.06rem;
    padding: 0 0.2rem;
    display: flex;
    flex-direction: column;
}

/* Swiper 新闻轮播样式 */
.news-swiper {
    width: 100%;
    border-radius: 0.06rem;
    overflow: hidden;
    box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.1);
}

.news-slide-item {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #333;
    background: #fff;
    border-radius: 0.06rem;
    overflow: hidden;
}

.news-slide-img {
    width: 100%;
    height: 5.16rem;
    overflow: hidden;
    background: #f0f0f0;
}

.news-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.news-slide-item:hover .news-slide-img img {
    transform: scale(1.05);
}

.news-slide-content {
    padding: 0.24rem 0.3rem;
    background: #fff;
}

.news-slide-date {
    font-size: 0.17rem;
    color: #083c9d;
    display: flex;
    align-items: center;
    gap: 0.06rem;
    margin-bottom: 0.12rem;
    line-height: 1;
}

.news-slide-date .iconfont {
    font-size: 0.17rem;
    color: #083c9d;
}

.news-slide-title {
    font-size: 0.2rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 0.1rem 0;
    color: #1d1d1d;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-slide-desc {
    font-size: 0.18rem;
    line-height: 1.6;
    color: #656565;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-slide-content:hover .news-slide-title {
    color: #083c9d;
}

/* Swiper 分页器样式 */
.news-swiper .swiper-pagination {
    bottom: 0.15rem !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    position: absolute;
    z-index: 10;
}

.news-swiper .swiper-pagination-bullet {
    width: 0.06rem;
    height: 0.06rem;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 0.04rem;
    transition: all 0.3s ease;
}

.news-swiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 0.16rem;
    border-radius: 0.03rem;
}

/* Swiper 导航按钮样式 */
.news-swiper .swiper-button-next,
.news-swiper .swiper-button-prev {
    width: 0.28rem;
    height: 0.28rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    margin-top: 0;
    top: 2.6rem;
    transform: translateY(-50%);
    z-index: 10;
}

.news-swiper .swiper-button-prev {
    left: 0.15rem;
}

.news-swiper .swiper-button-next {
    right: 0.15rem;
}

.news-swiper .swiper-button-next:hover,
.news-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.35);
}

.news-swiper .swiper-button-next::after,
.news-swiper .swiper-button-prev::after {
    font-size: 0.14rem;
    font-weight: bold;
}

/* 新闻列表样式 */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
}

.news-list-item {
    flex: 1;
    display: flex;
    align-items: center;
    margin-bottom: 0.22rem;
    position: relative;

}

/* 底层细线：始终存在的浅蓝色下划线 */
.news-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.01rem;
    background: #083c9d;
}

/* 上层动画线：从左到右展开，使用 #083c9d 颜色 */
.news-list-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.03rem;
    background: #083c9d;
    transition: width 0.4s ease;
}

/* 鼠标移上去时触发动画：线条从左往右"长出来" */
.news-list-item:hover::after {
    width: 100%;
}


.news-item-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    width: 100%;
    height: 100%;
}

.news-item-date {
    font-size: 0.17rem;
    color: #083c9d;
    display: flex;
    align-items: center;
    gap: 0.06rem;
    margin-bottom: 0.18rem;
    line-height: 1;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.news-item-link:hover .news-item-date {
    padding-left: 0.2rem;
}

.news-item-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-item-link:hover .news-item-date::before {
    width: 0.15rem;
}

.news-item-date .iconfont {
    font-size: 0.17rem;
    color: #083c9d;
}

.news-item-title {
    font-size: 0.2rem;
    line-height: 1.6;
    color: #1d1d1d;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
    height: 0.6rem;
    margin-bottom: 0.18rem;
}

.news-item-link:hover .news-item-title {
    color: #083c9d;
}

/*home1_1结束*/

.home_1_3 {
    background: url(../imgs/home2_2.png) no-repeat;
    background-size: contain;
    width: 100%;
    height: 2.27rem;
    margin-top: -1.3rem;
}

/*home1_2开始*/
.home1_2 {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    background: url("../imgs/home2.png") no-repeat;
    background-size: contain;
    height: 8.125rem;
    margin-top: -0.65rem;
    padding: 0.6rem 0;
}

.home1_2_left {
    width: 7rem;
}

.home1_2 .tit1 .ll:before {
    content: "";
    position: absolute;
    background: url(../imgs/tit2.png) center no-repeat;
    width: .67rem;
    height: .67rem;
    top: -.06rem;
    left: .15rem;
    background-size: contain;
    animation: 10s roted infinite linear;
    z-index: -1;
}

/* home1_2 区域标题样式 - 白色 */
.home1_2 .tit-chinese-gradient {
    color: #fff;
}

.home1_2 .tit-english-text {
    color: #fff;
}

.home1_2 .tit-english-text::after {
    background: #fff;
}

/* home1_2 区域三个点样式 - 橙色 */
.home1_2 .menu-dots .dot-left,
.home1_2 .menu-dots .dot-right {
    background-color: #f3981c;
}

.home1_2 .menu-dots .dot-center {
    background-color: #f3981c;
}

/* home1_2_news 区域样式 */
.home1_2_news {
    display: flex;
    gap: 0.3rem;
    width: 100%;
    align-items: stretch;
}

.home1_2_news_left {
    flex: 0 0 60%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.home1_2_news_right {
    flex: 1;
    border-radius: 0.06rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home1_2_news_right::before {
    content: "SHAOXING INSTITUTE OF TECHNOLOGY";
    position: absolute;
    bottom: 0.2rem;
    right: 0.2rem;
    font-size: 0.12rem;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 300;
    letter-spacing: 0.02rem;
    white-space: nowrap;
    pointer-events: none;
    transform: rotate(-90deg);
    transform-origin: bottom right;
}

/* home1_2 Swiper 轮播样式 */
.home1_2-swiper {
    width: 100%;
    height: 5rem;
    position: relative;
}

.home1_2-slide-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.home1_2-slide-img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 5.75rem;
    height: 4.29rem;
    z-index: 1;
    overflow: hidden;
    transform: translateY(-50%);
}

.home1_2-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.home1_2-slide-content {
    position: relative;
    background: #fff;
    padding: 0.44rem 0.3rem 0.24rem 1.7rem;
    width: 55%;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    min-height: 2rem;
    height: 100%;
    z-index: -1;
    transition: box-shadow 0.3s ease;
}

.home1_2-slide-title {
    font-size: 0.18rem;
    font-weight: 700;
    line-height: 1.5;
    color: #474747;
    margin: 0 0 0.12rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.home1_2-slide-desc {
    font-size: 0.16rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 0.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home1_2-slide-date {
    display: flex;
    align-items: flex-end;
    gap: 0.05rem;
}

.home1_2-slide-day {
    font-size: 0.28rem;
    color: #38469a;
    line-height: 1;
}

.home1_2-slide-separator {
    font-size: 0.16rem;
    color: #999;
    line-height: 1;
    margin-bottom: 0.01rem;
}

.home1_2-slide-month {
    font-size: 0.16rem;
    color: #262626;
    line-height: 1;
    margin-bottom: 0.01rem;
}

/* home1_2 轮播项 hover 效果 */
.home1_2-slide-item:hover .home1_2-slide-img img {
    transform: scale(1.05);
}

.home1_2-slide-item:hover .home1_2-slide-content {
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.15);
}

.home1_2-slide-item:hover .home1_2-slide-title {
    color: #38469a;
}

.home1_2-slide-nav {
    position: absolute;
    bottom: 0.45rem;
    right: 0.3rem;
    display: flex;
    gap: 0.15rem;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.home1_2-slide-nav .swiper-button-prev,
.home1_2-slide-nav .swiper-button-next {
    pointer-events: auto;
}

/* home1_2 Swiper 导航按钮样式 */
.home1_2-swiper .swiper-button-next,
.home1_2-swiper .swiper-button-prev {
    position: static;
    width: 0.45rem;
    height: 0.45rem;
    margin: 0;
    color: #f3981c;
    background: #fff;
    border: 1px solid #f3981c;
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
}

.home1_2-swiper .swiper-button-prev {
    left: auto;
}

.home1_2-swiper .swiper-button-next {
    right: auto;
}

.home1_2-swiper .swiper-button-next:hover,
.home1_2-swiper .swiper-button-prev:hover {
    background: #f3981c;
    color: #fff;
}

.home1_2-swiper .swiper-button-next::after,
.home1_2-swiper .swiper-button-prev::after {
    font-size: 0.15rem;
    font-weight: bold;
}

/* home1_2 新闻列表样式 */
.home1_2-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.home1_2-news-item {
    padding: 0.1rem 0;
}


.home1_2-news-link {
    display: flex;
    gap: 0.2rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    padding: 0.15rem 0.2rem;
    border-radius: 0.04rem;
    position: relative;
}

.home1_2-news-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 1);
    margin-left: 1rem;
    height: 55%;
    transform: translateY(-50%);
}

.home1_2-news-link:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.15);
}

.home1_2-news-date {
    flex: 0 0 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.06rem;
    text-align: center;
    padding-right: 0.2rem;
}

.home1_2-news-day {
    font-size: 0.28rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.home1_2-news-month {
    font-size: 0.16rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1;
}

.home1_2-news-title {
    flex: 1;
    font-size: 0.18rem;
    line-height: 1.6;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-left: 0.1rem;
}

.home1_2_right {

}


/*home1_2结束*/


/*home_3开始*/
.home_3 {
    background: #f2f7fd url(../imgs/home3.png) center -1.5rem no-repeat;
    background-size: 100% auto;
    padding: 0.8rem 0;
}

.home_3_container {
    display: flex;
    gap: 0;
    align-items: flex-start;
    position: relative;
    justify-content: space-between;
}

/* 左侧区域 */
.home_3_left {
    flex: 0 0 72%;
    min-width: 0;
    position: relative;
    z-index: 1;
    background: rgba(242, 249, 254, 0.5);
}

.home_3_left .tit1 {
    position: absolute;
    left: 0.33rem;
    top: 0.38rem;
}

.home_3_title {
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 2;
}

.home_3_title .tit-chinese-gradient {
    font-size: 0.5rem;
    font-weight: 700;
    color: #38469a;
    margin-bottom: 0.08rem;
    line-height: 1.2;
}

.home_3_title .tit-english-text {
    font-size: 0.16rem;
    color: #999;
    position: relative;
    padding-bottom: 0.08rem;
    display: inline-block;
}

.home_3_title .tit-english-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.01rem;
    background: #ddd;
}

.home_3-left-swiper {
    width: 100%;
    height: auto;
    min-height: 4.5rem;
    position: relative;
    overflow: hidden;


}

.home_3-left-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 5.55rem;
}

.home_3-left-content {
    padding: 1rem 0.3rem .5rem;
    position: relative;
    z-index: 2;
    border: 0.1rem solid rgba(212, 227, 240, 0.5);
    width: calc(100% - 4.5rem);
    height: 5.55rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.home_3-left-main-title {
    font-size: 0.24rem;
    font-weight: 700;
    color: #2b2a2a;
    line-height: 1.5;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    width: 95%;
    padding-bottom: 0.1rem;
    padding-top: 0.2rem;
}

/* 标题下划线 hover 动画：颜色和粗细从左往右渐变 */
/* 底层细线：始终存在的浅蓝色下划线 */
.home_3-left-main-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.02rem; /* 默认 2px 细线 */
    background: #99baf3;
}

/* 上层动画线：从左到右展开，使用单一更深的蓝色 */
.home_3-left-main-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.03rem; /* 稍粗一点 */
    background: #3a4a9d; /* 比 #99baf3 稍深的蓝色 */
    transition: width 0.4s ease;
}

/* 鼠标移到整块内容或标题上时触发动画：线条从左往右“长出来” */
.home_3-left-content:hover .home_3-left-main-title::after,
.home_3-left-main-title:hover::after {
    width: 100%;
}

/* 同时略微加深标题文字颜色 */
.home_3-left-content:hover .home_3-left-main-title,
.home_3-left-main-title:hover {
    color: #1c244f;
}

.home_3-left-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.3rem 0;
}

.home_3-left-info-list li {
    display: flex;
    align-items: flex-start;
    font-size: 0.16rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 0.12rem;
}

.home_3-left-info-list li img {
    width: 0.18rem;
    color: #38469a;
    margin-right: 0.12rem;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.02rem;
}

.home_3-left-info-list li span {
    flex: 1;
    color: #333;
}

.home_3-left-btn {
    border: 1px solid #f3981c;
    color: #f3981c;
    text-decoration: none;
    font-size: 0.16rem;
    transition: all 0.3s ease;
    margin-top: 0.2rem;
    border-radius: 80px;
    width: 1.06rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0.42rem;
    text-indent: 0.1rem;
}

.home_3-left-btn:hover {
    background: #f3981c;
    color: #fff;
}

.home_3-left-nav {
    position: absolute;
    bottom: 0.5rem;
    left: calc(100% - 5.39rem);
    display: flex;
    z-index: 20;
    width: 0.8rem;
}

.home_3-left-btn-prev {
    width: 0.4rem;
    height: 0.4rem;
    background: #38469a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
    left: 0;
    right: 0;
}


.home_3-left-btn-next {
    width: 0.4rem;
    height: 0.4rem;
    background: #f3981c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
    left: 0;
    right: 0;
}

.home_3-left-btn-prev img,
.home_3-left-btn-next img {
    width: 50%;
    pointer-events: none;
}

.home_3-left-btn-prev:hover {
    background: #2a3a7a;
}

.home_3-left-btn-next:hover {
    background: #e6890a;
}


.home_3-right-content {
    position: absolute;
    right: -0.15rem;
    top: 0;
    width: 5.15rem;
    height: 5.55rem;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0 0.06rem 0.06rem 0;
}

.home_3-right-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.home_3_right_carousel {
    width: 4.36rem;
}

.home_3-right-carousel-swiper {
    width: 100%;
    height: 5.55rem;
    overflow: hidden;
}

.home_3-carousel-banner {
    width: 100%;
    height: 2.71rem;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.home_3-carousel-banner:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.home_3-carousel-img {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.home_3-carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home_3-carousel-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 0.15rem 0;
    background: rgba(0, 0, 0, 0.1);
    color: white;
    width: 100%;
    text-align: center;
}


.home_3-carousel-desc {
    font-size: 0.18rem;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
   overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*home_3结束*/


/*home_4开始*/

.home_4 {
    background: #f2f7fd url(../imgs/home4.png) center top no-repeat;
    background-size: 100%  100%;
    padding: 0.8rem 0;
    min-height: 10rem;
    position: relative;
    overflow: hidden;
}

/* home_4 区域字体颜色 - 与 home1_2 相同 */
.home_4 .tit-chinese-gradient {
    color: #fff;
}

.home_4 .tit-english-text {
    color: #fff;
}

.home_4 .tit-english-text::after {
    background: #fff;
}

.home_4 .tit1 .ll:before {
    content: "";
    position: absolute;
    background: url(../imgs/tit2.png) center no-repeat;
    width: .67rem;
    height: .67rem;
    top: -.06rem;
    left: .15rem;
    background-size: contain;
    animation: 10s roted infinite linear;
    z-index: -1;
}

/* home_4 区域三个点样式 - 与 home1_2 相同（橙色） */
.home_4 .menu-dots .dot-left,
.home_4 .menu-dots .dot-right {
    background-color: #f3981c;
}

.home_4 .menu-dots .dot-center {
    background-color: #f3981c;
}


.home_4_container {
    padding: 0.75rem 0 0;
}

/* 内容区域布局 */
.home_4_content {
    position: relative;
    display: flex;
    gap: 0.4rem;
    align-items: start;
    z-index: 9;
}

/* 卡片列 */
.home_4_cards_column {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 5rem;
    flex: 1;
    z-index: 1;
    justify-content: space-between;
}


/* 小卡片样式 */
.home_4_card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.home_4_card:hover {
    transform: translateY(-0.04rem);
}

.home_4_card_img {
    width: 3.73rem;
    height: 2.25rem;
    overflow: hidden;
    position: relative;
}

.home_4_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home_4_card:hover .home_4_card_img img {
    transform: scale(1.05);
}

.home_4_card_content {
    padding: 0.2rem 0 0;
    width:3.73rem;
}

.home_4_card_title {
    font-size: 0.16rem;
    color: #f3981c;
    margin-bottom: 0.08rem;
}

.home_4_card_name {
    font-size: 0.18rem;
    color: #ffffff;
    margin-bottom: 0.08rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home_4_card_desc {
    font-size: 0.14rem;
    color: #666;
    line-height: 1.5;
}

/* 中央大卡片 */
.home_4_center_card {
    position: absolute;
    left: 50%;
    top: -0.5rem;
    transform: translateX(-50%) !important;
    width: 7.8rem;
    background: rgba(255, 255, 255, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0.08rem 0.32rem rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.home_4_center_img {
    width: 100%;
    height: 4.15rem;
    overflow: hidden;
    position: relative;
}

.home_4_center_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home_4_center_card:hover .home_4_center_img img {
    transform: scale(1.1);
}

.home_4_center_content {
    padding: 0.3rem 0.24rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home_4_center_title {
    font-size: 0.16rem;
    color: #f3981c;
    margin-bottom: 0.12rem;
}

.home_4_center_name {
    font-size: 0.18rem;
    color: #404040;
    margin-bottom: 0.16rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.home_4_center_text {
    font-size: 0.16rem;
    color: #898a8d;
    line-height: 1.8;
    margin-bottom: 0.24rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.home_4_center_btn {
    display: inline-block;
    padding: 0.1rem 0.15rem;
    background: #f3981c;
    color: #fff;
    text-decoration: none;
    border-radius: 0.2rem;
    font-size: 0.16rem;
    align-self: flex-end;
    transition: background 0.3s ease;
    text-indent: 0.1rem;
}

.home_4_center_btn:hover {
    background: #e6890a;
}

#home4-sparkle-canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3.5rem;
    display: block;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* 响应式 */
@media screen and (max-width: 1024px) {
    .home_4_content {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .home_4_left_column,
    .home_4_right_column {
        flex-direction: row;
        gap: 0.3rem;
    }

    .home_4_card {
        flex: 1;
    }

    .home_4_center_card {
        order: -1;
    }
}

/*home_4结束*/


.pic::before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    opacity: .25;
    pointer-events: none;
    /* background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .53) 100%); */
    background: -webkit-linear-gradient(to left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    z-index: 3;
}

.pic:hover:before {
    -webkit-animation: shine 1s;
    animation: shine 1s
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

/* home_5 区域样式 */
.home_5 {
    background: #ebedf5 url(../imgs/home5.png) no-repeat center 0.5rem;
    background-size: contain;
    width: 100%;
    padding: 1.5rem 0 0.1rem;
    position: relative;
}

.home_5_container {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    justify-content: space-between;
}

/* 左侧：媒体绍理新闻列表 */
.home_5_left {
    flex: 1;
    padding: 0.4rem 0;
    border-radius: 0.08rem;
}

.home_5_left_title {
    margin-bottom: 0.3rem;
    position: relative;
}

.home_5_left_title .tit-decorative::before {
    content: "";
    position: absolute;
    left: -0.2rem;
    top: -0.1rem;
    right: -0.2rem;
    bottom: -0.1rem;
    background: linear-gradient(90deg,
    rgba(153, 186, 243, 0.2) 0%,
    rgba(153, 186, 243, 0.1) 50%,
    rgba(153, 186, 243, 0.2) 100%);
    border-radius: 0.04rem;
    z-index: 0;
    opacity: 0.6;
}

.home_5_left_title .tit-decorative > div {
    position: relative;
    z-index: 1;
}

.home_5_news_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home_5_news_item {
    margin-bottom: 0.2rem;
    position: relative;
    border-bottom: 1px solid #c7cce3;
    padding-bottom: 0.2rem;

}

/* 底层细线：始终存在的浅蓝色下划线 */
.home_5_news_item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.01rem;
    background: #c7cce3;
}

/* 上层动画线：从左到右展开，使用 #083c9d 颜色 */
.home_5_news_item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.02rem;
    background: #083c9d;
    transition: width 0.4s ease;
}

/* 鼠标移上去时触发动画：线条从左往右"长出来" */
.home_5_news_item:hover::after {
    width: 100%;
}

.home_5_news_link {
    display: flex;
    gap: 0.15rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.home_5_news_link:hover {
    color: #083c9d;
}

.home_5_news_img {
    width: 1.36rem;
    height: 0.89rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0.04rem;
}

.home_5_news_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home_5_news_link:hover .home_5_news_img img {
    transform: scale(1.1);
}

.home_5_news_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.home_5_news_date {
    font-size: 0.14rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.06rem;
}

.home_5_news_date img {
    width: 0.14rem;
    height: 0.14rem;
    object-fit: contain;
}

.home_5_news_title {
    font-size: 0.18rem;
    line-height: 1.5;
    color: #1d1d1d;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.home_5_news_link:hover .home_5_news_title {
    color: #083c9d;
}

/* 右侧：印象绍理视频播放器 */
.home_5_right {
    flex: 1;
    position: relative;
}

.home_5_right_top {
    display: flex;
    align-items: stretch;
    min-height: 3.5rem;
}

.home_5_right_left {
    flex: 1;
    background-image: linear-gradient(to right, #3976a4 0%, #359da9 100%);
    display: flex;
    padding: 0.4rem 0;
    justify-content: center;
    align-items: baseline;
    position: relative;
}

.home5_logo {
    position: absolute;
    bottom: -0.8rem;
    left: -0.2rem;
}

.home_5_right_left .tit1 {
    margin-right: 0.3rem;
}

/* home_5_right_left 内的标题文字改为白色 */
.home_5_right_left .tit-chinese-gradient {
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
}

.home_5_right_left .tit-english-text {
    color: #fff;
}

.home_5_right_left .tit-english-text::after {
    background: #fff;
}

.home_5_video_container {
    position: relative;
    flex: 2;
    display: flex;
    align-items: center;
}

.home_5_video_player {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../imgs/videobg.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 3.5rem;
    overflow: hidden;
}

/* 透明黑色遮罩层 */
.home_5_video_player::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.home_5_video_thumbnail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_5_video_thumbnail img {
    width: 0.92rem;
}

.home_5_video_play_btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_5_video_play_btn img {
    transition: transform 0.6s ease;
}

.home_5_video_play_btn:hover img {
    transform: rotate(360deg);
}

.home_5_video_text {
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.16rem;
    color: #fff;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.home_5_video_nav {
    position: absolute;
    left: 0.3rem;
    bottom: .4rem;
    display: flex;
    gap: 0.3rem;
    z-index: 10;
}

.home_5_video_nav_prev,
.home_5_video_nav_next {
    width: 0.4rem;
    height: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}


.home_5_video_nav_prev img,
.home_5_video_nav_next img {
    width: 0.21rem;
    height: 0.36rem;
    pointer-events: none;
}

/* 底部：校园图片 */
.home_5_bottom {
    width: 8rem;
    overflow: hidden;
}

.home_5_bottom_swiper {
    width: 100%;
    overflow: hidden;
}

.home_5_bottom_swiper .swiper-slide {
    height: auto;
}

.home_5_bottom_item {
    width: 100%;
    border-radius: 0.08rem;
    overflow: hidden;
    padding: 0.2rem 0;
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    color: inherit;
}

.home_5_bottom_img {
    width: 100%;
    padding-top: 56.25%; /* 16:9 比例 */
    position: relative;
    overflow: hidden;
    border-radius: 0.04rem;
    margin-bottom: 0.15rem;
}

.home_5_bottom_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home_5_bottom_item:hover .home_5_bottom_img img {
    transform: scale(1.1);
}

.home_5_bottom_text {
    font-size: 0.18rem;
    color: #313131;
    text-align: center;
}

/* home_6 区域样式 */
.home_6 {
    width: 100%;
    padding: 0.8rem 0 0;
    background: #f5f6fa;
    position: relative;
    overflow: hidden;
}

.home_6_container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0.6rem 0;
    min-height: 2rem;
}

/* 虚线连接线 - 向右移动动画 */
.home_6_line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 0.02rem;
    transform: translateY(-50%);
    background: rgba(58, 74, 157, 0.9);
    z-index: 1;
    overflow: hidden;
}

.home_6_line::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
            to right,
            transparent 0,
            transparent 0.08rem,
            rgba(245, 246, 255, 1) 0.08rem,
            rgba(245, 246, 255, 1) 0.15rem
    );
    background-size: 0.3rem 100%;
    animation: lineMove 80s linear infinite;
}

@keyframes lineMove {
    0% {
        left: -100%;
    }
    100% {
        left: 0%;
    }
}

/* 节点容器 */
.home_6_nodes {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    padding: 0 0.6rem;
}

/* 单个节点 */
.home_6_node {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    text-decoration: none;
    color: inherit;
}

/* 圆圈容器 - 虚线边框旋转 */
.home_6_node_circle {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0.2rem;
}

.home_6_node_circle::before {
    content: "";
    position: absolute;
    top: -0.02rem;
    left: -0.02rem;
    right: -0.02rem;
    bottom: -0.02rem;
    border-radius: 50%;
    border: 0.02rem dashed rgba(58, 74, 157, 0.9);
    animation: circleRotate 40s linear infinite;
}

@keyframes circleRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 图标 */
.home_6_node_icon {
    width: 0.6rem;
    height: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.home_6_node_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 文字 */
.home_6_node_text {
    font-size: 0.2rem;
    color: #444444;
    text-align: center;
    position: absolute;
    bottom: -0.3rem;
}

/* bottom 底部区域样式 */
.bottom {
    width: 100%;
    position: relative;
    background: #f5f6fa;
}
.inner-bottom{
    background: #fff;
}
/* 上部分：校园建筑背景 */
.bottom_top {
    width: 100%;
    position: relative;
}

.bottom_top_bg {
    width: 100%;
    height: 4rem;
    position: relative;
    overflow: hidden;
}

.bottom_top_bg_item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: url(../imgs/bottom.png) no-repeat;
    background-size: auto 100%;
    background-position: 0 center;
}

.bottom_top_bg_item1 {
    transform: translateX(0);
}

.bottom_top_bg_item2 {
    left: 100%;
    transform: translateX(0);
}


/* 下部分：渐变背景内容区 */
.bottom_bottom {
    width: 100%;
    position: relative;
    padding-top: 0.4rem;
    padding-bottom: 0.3rem;
    z-index: 2;
}

.bottom_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
}

/* 左侧：友情链接 */
.bottom_left {
    flex: 1;
}

.bottom_title {
    font-size: 0.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.bottom_links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.1rem 0.2rem;
}

.bottom_link {
    font-size: 0.16rem;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.bottom_link:hover {
    opacity: 0.8;
}

/* 中间：联系我们 */
.bottom_center {
    flex: 1;
}

.bottom_contact {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.bottom_contact_item {
    font-size: 0.16rem;
    color: #fff;
    line-height: 1.6;
}

/* 右侧：二维码 */
.bottom_right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.bottom_qr_list {
    display: flex;
    gap: 0.3rem;
}

.bottom_qr_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.bottom_qr_img {
    width: 1.25rem;
    height: 1.25rem;
    background: #fff;
    padding: 0.05rem;
    border-radius: 0.04rem;
}

.bottom_qr_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bottom_qr_text {
    font-size: 0.14rem;
    color: #fff;
    text-align: center;
}

/* 版权信息 */
.bottom_copyright {
    width: 100%;
    text-align: center;
    font-size: 0.14rem;
    color: #fff;
    padding-top: 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}


.f_bg {
    height: 3.84rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
}

.f_bg_img {
    width: 31.85rem;
    height: 3.84rem;
}

.f_bg_img image {
    width: 100%;
    height: 100%;
}


.editorial {
    position: absolute;
    top: 0;
    left: 0;
    height: 2.8rem;
    width: 100%;
}

.parallax > use {
    animation: move-forever 12s linear infinite;
    -webkit-animation: move-forever 12s linear infinite;
    -moz-animation: move-forever 12s linear infinite;
    -ms-animation: move-forever 12s linear infinite;
    -o-animation: move-forever 12s linear infinite;
    transform-origin: 50% 50%;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

/* .parallax > use:nth-child(2) {animation-delay: -2s; } */

#clippath {
    transform: translate(409px, 0%);
    width: 3185px;
    animation: move-forever 12s linear infinite;
    -webkit-animation: move-forever 12s linear infinite;
    -moz-animation: move-forever 12s linear infinite;
    -ms-animation: move-forever 12s linear infinite;
    -o-animation: move-forever 12s linear infinite;
    transform-origin: 50% 50%;
}

@keyframes move-forever {
    0% {
        -webkit-transform: translate(409px, 0%);
        -moz-transform: translate(409px, 0%);
        -ms-transform: translate(409px, 0%);
        -o-transform: translate(409px, 0%);
        transform: translate(409px, 0%);
    }
    100% {
        -webkit-transform: translate(59px, 0%);
        -moz-transform: translate(59px, 0%);
        -ms-transform: translate(59px, 0%);
        -o-transform: translate(59px, 0%);
        transform: translate(59px, 0%);
    }
}

@-webkit-keyframes move-forever {
    0% {
        -webkit-transform: translate(409px, 0%);
        -moz-transform: translate(409px, 0%);
        -ms-transform: translate(409px, 0%);
        -o-transform: translate(409px, 0%);
        transform: translate(409px, 0%);
    }
    100% {
        -webkit-transform: translate(59px, 0%);
        -moz-transform: translate(59px, 0%);
        -ms-transform: translate(59px, 0%);
        -o-transform: translate(59px, 0%);
        transform: translate(59px, 0%);
    }
}

@-moz-keyframes move-forever {
    0% {
        -webkit-transform: translate(409px, 0%);
        -moz-transform: translate(409px, 0%);
        -ms-transform: translate(409px, 0%);
        -o-transform: translate(409px, 0%);
        transform: translate(409px, 0%);
    }
    100% {
        -webkit-transform: translate(59px, 0%);
        -moz-transform: translate(59px, 0%);
        -ms-transform: translate(59px, 0%);
        -o-transform: translate(59px, 0%);
        transform: translate(59px, 0%);
    }
}

@-ms-keyframes move-forever {
    0% {
        -webkit-transform: translate(409px, 0%);
        -moz-transform: translate(409px, 0%);
        -ms-transform: translate(409px, 0%);
        -o-transform: translate(409px, 0%);
        transform: translate(409px, 0%);
    }
    100% {
        -webkit-transform: translate(59px, 0%);
        -moz-transform: translate(59px, 0%);
        -ms-transform: translate(59px, 0%);
        -o-transform: translate(59px, 0%);
        transform: translate(59px, 0%);
    }
}

@-o-keyframes move-forever {
    0% {
        -webkit-transform: translate(409px, 0%);
        -moz-transform: translate(409px, 0%);
        -ms-transform: translate(409px, 0%);
        -o-transform: translate(409px, 0%);
        transform: translate(409px, 0%);
    }
    100% {
        -webkit-transform: translate(59px, 0%);
        -moz-transform: translate(59px, 0%);
        -ms-transform: translate(59px, 0%);
        -o-transform: translate(59px, 0%);
        transform: translate(59px, 0%);
    }
}


/* PC端隐藏手机端头部 */
.mobile-header, .mobile {
    display: none;
}


.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: #fff;
}

.adress {
    background: url(../imgs/home.png) no-repeat left center;
    padding-left: 0.15rem;
    line-height: 0.45rem;
}

.adress a {
    padding: 0 0.1rem;
}

.adress a:hover {
    color: #e2be8f
}

.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 ul {
    height: 0.7rem;
}

.ban .ejlm ul li {
    line-height: 0.7rem;
    height: 100%;
}

.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;
    background: url(../imgs/cd.png) no-repeat right 0.2rem center #3a4a9d;
    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(../imgs/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.28rem;
    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;
}


@media screen and (min-width: 1025px) {
    .list li a:hover .kxdt-l {
        background: #2eb6aa;
        box-shadow: 0px 1px 0.18rem 0px rgba(0, 0, 0, 0.29);
    }

    .list li a:hover .kxdt-l p, .list li a:hover .kxdt-l span {
        color: #fff;
    }

    .list li a:hover .kxdt-r {
        background: #3a4a9d;
        box-shadow: 0px 1px 0.18rem 0px rgba(0, 0, 0, 0.29);
    }

    .list li a:hover h3 {
        color: #fff;
    }

    .list li a:hover h4 {
        color: #c9afc5;
    }
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
    .list li {
        width: 100%;
        margin-bottom: 0.2rem;
    }

    .list li .kxdt-l p {
        font-size: 0.3rem;
    }
}

@media screen and (max-width: 420px) {
}

.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: block;
    /* margin-left: -2em; */
    max-width: 100%;
    margin: 0 auto;
}

.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;
}


@media screen and (max-width: 1024px) {
    .new-cont {
        width: 100%;
    }

    .cont-titl {
        width: 100%;
    }

    .cont-tit span {
        margin-right: 0.2rem;
    }
}


/*部门表格*/
.dept-table {
    width: 100%;
    margin: 0.2rem 0;
    display: flex;
    flex-wrap: wrap;
}
.dept-item {
    flex: 0 0 calc(33.333% - 0.06rem);
    border-right: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    padding: 0.15rem;
    text-align: center;
    background-color: #fff;
    font-size: 0.16rem;
    color: #000;
    text-decoration: none;
   display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}
/* 第一行添加上边框 */
.dept-item:nth-of-type(1),
.dept-item:nth-of-type(2),
.dept-item:nth-of-type(3) {
    border-top: 1px solid #d3d3d3;
}
/* 第一列添加左边框 */
.dept-item:nth-of-type(3n+1) {
    border-left: 1px solid #d3d3d3;
}
/* 最后一列保留右边框（作为外边框） */
.dept-item:nth-of-type(3n) {
    border-right: 1px solid #d3d3d3;
}
/* 最后一行保留下边框（作为外边框） */
.dept-item:last-of-type,
.dept-item:nth-last-of-type(2),
.dept-item:nth-last-of-type(3) {
    border-bottom: 1px solid #d3d3d3;
}
.dept-item:nth-of-type(6n+1),
.dept-item:nth-of-type(6n+2),
.dept-item:nth-of-type(6n+3) {
    background-color: #f5f5f5;
}
.dept-item:hover {
    background-color: #e8e8e8;
}