@charset "utf-8";

html, body {
    background: rgba(248, 248, 248, 1);
}

/* 头部开始 */
.home-page {
    font-size: 1.4rem;
    position: relative;
}

.top-header {
    width: 100%;
    position: relative;
    background: rgba(35, 97, 172, 1);
}

.top-header-content {
    position: relative;
    z-index: 10;
    height: 15rem;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 160rem;
    margin: 0 auto;
    background: rgba(35, 97, 172, 1);
}

.top-header-content .menu {
    display: none;
}

.top-header .logo {
    margin-left: 3rem;
    max-width: 51.64rem;
    max-height: 7rem;
}

.top-header .logo-link {
    cursor: pointer;
}

.dept-logo {
    display: flex;
    align-items: center;
}

.dept-logo .site-title {
    margin-left: 2.1rem;
    color: #ffffff;
    font-size: 4rem;
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
}

.dept-logo .site-title-sub {
    margin-left: 2.1rem;
    color: #ffffff;
    font-size: 1.4rem;
    font-family: "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
}

/* 快捷导航 */
.nav-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.1rem 0;
    align-items: center;
    position: relative;
}

.nav-box .top {
    display: flex;
    justify-content: flex-end;
    padding: 0.18rem 0 0;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-bottom: -0.08rem;
    font-size: 1.4rem;
}

.fast-box {
    display: flex;
    margin: 0 -0.07rem;
    align-items: center;
}

.fast-box li {
    padding: 0 .7rem;
    font-size: 1.4rem;
    color: #fff;
}

.fast-box li a {
    cursor: pointer;
}


.fast-box li a:hover {
    opacity: .5;
}

.top-search {
    margin-left: 1.6rem;
    margin-right: 2.5rem;
    cursor: pointer;
}

.top-search i {
    font-size: 2.4rem;
    color: rgba(255, 255, 255, .8);
}

.top-search i:hover {
    font-size: 2.4rem;
    color: rgba(255, 255, 255, .6);
}

/* 导航菜单样式 */

.nav-menu {
    position: relative;
    z-index: 9999;
    background: rgba(11, 78, 159, 1);
}

.nav-container {
    width: 160rem;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 160rem;
}

.nav-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.nav-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: .3rem;
    background-color: rgba(255, 255, 255, .6);
    transition: all 0.3s ease;
    z-index: 1; /* 确保不被遮挡 */
}

/* 悬停时展开宽度 */
.nav-item:hover:after {
    width: 100%;
}


.nav-link {
    display: block;
    padding: 0 2.5rem;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    line-height: 6rem;
    transition: background-color 0.3s;
}


/* 当hover一级菜单或其子菜单时，保持一级菜单的hover效果 */
.nav-item:hover > .nav-link {
    color: rgba(35, 97, 172, 1);
    background: #ffffff;
    font-weight: bold;
}

/* 二级菜单样式 */
.submenu {
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 18rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
    background-color: rgba(255, 255, 255, .8);
    text-align: center;
    display: none;
}

.nav-item:hover .submenu {
    display: block;
}

.submenu-item {
    position: relative;
}

.submenu-link {
    font-size: 1.4rem;
    display: block;
    padding: 1rem;
    color: #000;
    text-decoration: none;
    transition: background-color 0.3s;
}

/* 当hover二级菜单或其子菜单时，保持二级菜单的hover效果 */
.submenu-item:hover > .submenu-link {
    background-color: rgba(255, 255, 255, .9);
}

/* 三级菜单样式 */
.subsubmenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 18rem;
    background-color: rgba(255, 255, 255, .8);
    text-align: center;
    display: none;
}

.submenu-item:hover .subsubmenu {
    display: block;
}

.subsubmenu-link {
    font-size: 1.4rem;
    display: block;
    padding: 1rem;
    color: #000;
    text-decoration: none;
    transition: background-color 0.3s;
}

.subsubmenu-link:hover {
    background-color: #f5f5f5;
}

/* 打开菜单页 */
.menu {
    margin-left: 1.8rem;
    cursor: pointer;
}

.menu-btn {
    width: 6rem;
    height: 6.8rem;
    background: #B5D7FF;
    border-radius: 1.5rem 0rem 0rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-btn .btn-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    margin-top: .5rem;
}

.menu-btn .btn-icon .line {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 1);
}

/* Swiper轮播样式 头部轮播图 */
.banner {
    width: 160rem;
    height: 59rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.6s ease;
    flex-shrink: 0;
}

.banner .swiper-slide {
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
}


.banner .swiper-slide img {
    width: 120rem;
    height: 59rem;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
}


.banner .swiper-pagination {
    bottom: 2.5rem;
    width: 120rem;
    margin-left: 40rem;
}


.banner .swiper-pagination-bullet {
    width: 2rem;
    height: 2rem;
    background: 0 0;
    opacity: 1;
    margin: 0 !important;
    transition: .5s;
    position: relative;
    cursor: pointer;
}

.banner .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: #ffffff;
    border-radius: 50%;
    transition: .5s;
    top: 50%;
    left: 50%;
    opacity: 1;
}

.banner .swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: rgba(35, 97, 172, 1);
    border-radius: 50%;
    transition: .5s;
    top: 50%;
    left: 50%;
    opacity: 0;
    background-size: 100%;
    transform: scale(0);
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    opacity: 0;
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    opacity: 1;
    transform: scale(1);
}

.banner .slide-left {
    width: 40rem;
    height: 59rem;
    background: linear-gradient(56deg, #2361AC 50%, #1F5CA5 50%);
    mix-blend-mode: multiply;
    color: white;
    text-align: left;
}

.banner .slide-right {
    overflow: hidden;
    position: relative;
}

.banner .slide-right img {
    width: 120rem;
    height: 59rem;
    object-fit: cover;
    vertical-align: middle;
}

.banner .banner-news-body {
    padding: 3rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, .1);
}

.banner .banner-news-title {
    width: 34rem;
    font-weight: 600;
    font-size: 2rem;
    color: #FFFFFF;
    line-height: 3.1rem;
    margin: 3rem 0;
}

.banner .banner-news-date {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: bold;
    font-size: 2.2rem;
}

.banner .banner-news-content {
    height: 22rem;
    font-size: 1.8rem;
    text-indent: 2em;
    line-height: 4.4rem;
    text-align: justify;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, .6);
}

.banner .banner-news-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner .banner-news-detail span {
    color: #FFFFFF;
    font-size: 1.4rem;
}

.banner .pagination-container {
    display: flex;
    overflow-x: auto;
    gap: 3.8rem;
    padding: 3rem 3rem 0 3rem;
    width: 40rem;
    position: absolute;
    z-index: 99;
    left: 0;
    top: 48.6rem;
    scrollbar-width: thin;
}

.banner .pagination-container::-webkit-scrollbar {
    height: 0;
}

.banner .pagination-bullet {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-size: 3.8rem;
    color: rgba(255, 255, 255, .5);
    line-height: 4.1rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding-bottom: 2.7rem;
}

.banner .pagination-bullet.active {
    color: white;
    font-weight: bold;
    border-bottom: 0.6rem solid rgba(255, 196, 0, 1);
}

.banner-bg {
    display: block;
    position: absolute;
    width: 192rem;
    height: 59rem;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.6;
}

.banner-bg-m {
    display: none;
}

/* 顶部轮播结束 */

/* 导航页 开始 */
.navigation-page {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    background: #2361AC;
    display: none;
}

.navigation-page .fast-box li a {
    font-size: 2.4rem;
}

.back-img {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
    z-index: -1;
}

.navigation-bg {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .67);
}

/* 菜单 */
.nav-page-container {
    padding: 24rem 6rem 6rem 6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 100vw;
    z-index: 3;
    transform-origin: bottom left;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.nav-column {
    flex: 1;
    width: 16.4rem;
    text-align: center;
}

.nav-column h3 {
    color: #ffffff;
    font-size: 2.8rem;
    padding: 1.5rem 0;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: .2rem;
}

.nav-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: .2rem;
    background: linear-gradient( 90deg, rgba(255,255,255,0) 0%, #FFFFFF 51%, rgba(255,255,255,0) 100%);
}

.nav-column ul {
    list-style: none;
}

.nav-column li {
    margin: 2.5rem 0;
}

.nav-column a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: 2rem;

    transition: color 0.3s;
}

.nav-column a:hover {
    color: white;
}

.nav-column .has-submenu {
    position: relative;
    cursor: pointer;
}

/* 三级菜单 */
.nav-column .has-submenu {
    position: static; /* 确保不触发脱离 */
    display: block;
}

/* 三级菜单列表：块级显示，正常流布局 */
.nav-column .has-submenu .sub-page-submenu {
    display: block;
    /*padding-left: 2.5rem;*/
    margin: 0.6rem 0 0 0;
    font-size: 1.8rem;
    color: #aaa;
    list-style: none;
}

/* 三级菜单项 */
.nav-column .has-submenu .sub-page-submenu li {
    margin: 0.5rem 0;
}

.nav-column .has-submenu .sub-page-submenu a {
    color: rgba(255, 255, 255, .5);
    font-size: 1.6rem;
    text-decoration: none;
    text-align: left;
    transition: color 0.3s;
    display: inline-block;
    padding: 0.2rem 0;
}

.nav-column .has-submenu .sub-page-submenu a:hover {
    color: #ffffff;
}

/* 确保父级 li 高度被子内容撑开 */
.nav-column .has-submenu {
    min-height: auto;
    overflow: visible;
}

.nav-column .has-submenu:hover > a,
.sub-page-submenu a {
    color: #ffffff;
}

.slide-out {
    animation: fadeOut 0.6s ease-out forwards;
}

.slide-in {
    animation: fadeIn 0.6s ease forwards;
}

/* 隐藏时设置样式 */
.hidden {
    opacity: 0;
    visibility: hidden;
}

.mobile-navigation-page {
    display: none;
}

/* 导航页 结束 */

/* 栏目标题 开始 */

.row-head-box2 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
    z-index: 2;
}

.row-head-box2 .row-head-top {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.row-head-box2 .row-head-top .img-body {
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-head-box2 .row-head-top img {
    width: 11rem;
    height: 6.87rem;

}

.row-head-box2 .row-head-top span {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    line-height: 6.87rem;
    font-weight: 400;
    font-size: 6rem;
    color: #2361AC;
    text-align: center;
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
}

.row-head-box2 .title-en-text {
    margin-top: 1.5rem;
    line-height: 4.2rem;
    font-weight: 800;
    font-size: 3rem;
    /*color: rgba(0, 0, 0, .1);*/
    color: rgba(35, 97, 172, .3);
    text-align: center;
    font-style: normal;
    text-transform: none;
}


.row-head-more {
    margin-top: 5rem;
    width: 19.1rem;
    height: 5.6rem;
    background: rgba(35, 97, 172, .1);
    border-radius: 17.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.row-head-more .row-head-more-text {
    width: 11.5rem;
    line-height: 2.5rem;
    font-weight: 800;
    font-size: 1.8rem;
    color: #2361AC;
    text-align: center;
    padding-left: .4rem;
    z-index: 2;
}

.row-head-more .row-head-more-icon {
    border-radius: 17.6rem;
    background: rgba(35, 97, 172, .1);
    width: 7.6rem;
    height: 5.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.row-head-more .row-head-more-icon i {
    color: #2361AC;
    font-size: 1.2rem;
    z-index: 2;
}
/* 栏目标题 结束 */

/* 智能搜索模块 开始 */
.smart-search-section {
    width: 100%;
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(35, 97, 172, 0.08) 0%, rgba(35, 97, 172, 0.15) 50%, rgba(35, 97, 172, 0.08) 100%);
}

.smart-search-container {
    width: 160rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.smart-search-body {
    margin-top: 4rem;
    background: linear-gradient(180deg, rgba(35, 97, 172, 0.06) 0%, rgba(35, 97, 172, 0.12) 100%);
    
    background-image: url("../images/lib-search-bg.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: left top;
    border-radius: 1.5rem;
    overflow: hidden;
}

/* 顶部菜单组 */
.search-tab-header {
    display: flex;
    background: rgba(255, 255, 255, 1);
    border-radius: 1.5rem 1.5rem 0 0;
    overflow: hidden;
}

.search-tab-item {
    flex: 1;
    padding: 2rem 3rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333333;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 0.3rem solid transparent;
    position: relative;
}

.search-tab-item:hover {
    color: rgba(35, 97, 172, 1);
    background: rgba(35, 97, 172, 0.05);
}

.search-tab-item.active {
    color: #ffffff;
    background: rgba(35, 97, 172, 1);
    border-bottom-color: rgba(255, 170, 0, 1);
}

.search-tab-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.1rem;
    height: 2rem;
    background: rgba(221, 221, 221, 1);
}

.search-tab-item.active::after {
    display: none;
}

/* 搜索输入区域 */
.search-input-area {
    padding: 5rem 8rem;
}

.search-form {
    width: 100%;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.search-input {
    flex: 1;
    height: 6rem;
    padding: 0 3rem;
    font-size: 1.8rem;
    color: #333333;
    background: rgba(255, 255, 255, 1);
    border: 0.2rem solid rgba(35, 97, 172, 0.3);
    border-radius: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #999999;
}

.search-input:focus {
    border-color: rgba(35, 97, 172, 1);
    box-shadow: 0 0 1rem rgba(35, 97, 172, 0.2);
}

/* 搜索选择框 */
.search-select {
    min-width: 14rem;
    height: 6rem;
    padding: 0 2rem;
    font-size: 1.6rem;
    color: #333333;
    background: rgba(255, 255, 255, 1);
    border: 0.2rem solid rgba(35, 97, 172, 0.3);
    border-radius: 1rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 4rem;
}

.search-select:focus {
    border-color: rgba(35, 97, 172, 1);
    box-shadow: 0 0 1rem rgba(35, 97, 172, 0.2);
}

/* 资源类型过滤器 */
.search-type-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.search-type-filter .type-item {
    padding: 1rem 2rem;
    font-size: 1.4rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-type-filter .type-item:hover {
    background: rgba(255, 255, 255, 0.35);
}

.search-type-filter .type-item.active {
    background: rgba(255, 255, 255, 0.95);
    color: rgba(35, 97, 172, 1);
    font-weight: bold;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 14rem;
    height: 6rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    background: rgba(35, 97, 172, 1);
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(28, 78, 138, 1);
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(35, 97, 172, 0.4);
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn i {
    font-size: 2rem;
}

.search-tip {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 2.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
/* 智能搜索模块 结束 */

/* 第一行 栏目 头条新闻 开始 */
.home-row-1 {
    position: relative;
    width: 192rem;
    padding: 10rem 0;
}

.row-1-bg {
    display: block;
    position: absolute;
    top: 0;
    width: 192rem;
    height: auto;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
    mix-blend-mode: luminosity;
}

.row-1-bg-m {
    display: none;
}

.row-1-body {
    width: 160rem;
    margin: 0 auto;
}

.row-1-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-1-body img {
    width: 79.8rem;
    height: 55.4rem;
    object-fit: cover;
    vertical-align: middle;
}

.article-content {
    width: 61.6rem;
    flex: 1;
    padding:0 9rem;
}

.article-content .time {
    line-height: 3.3rem;
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: bold;
    font-size: 3rem;
    color: #000000;
}

.article-content .title {
    margin: 3rem 0;
    font-weight: bold;
    font-size: 2.4rem;
    color: #000000;
    line-height: 4.8rem;
}

.article-content .summary {
    height: 24rem;
    font-weight: 400;
    font-size: 1.8rem;
    color: #999999;
    line-height: 3rem;
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 5rem;
}

.article-content .view-detail {
    font-size: 1.8rem;
    color: #2361AC;
    line-height: 3rem;
}

.article-content .view-detail:nth-child(2){
    display: none;
}

.row-1-bottom {
    display: flex;
    gap: 4.1rem;
    margin-top: 4rem;
}

.row-1-bottom-content {
    flex: 1;
    padding: 4rem 4rem 3rem 4rem;
    background: #FFFFFF;
}

.row-1-bottom-content .time {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    font-size: 2.2rem;
    color: #999999;
    line-height: 2.4rem;
}

.row-1-bottom-content .title {
    font-weight: 600;
    font-size: 2rem;
    color: #191919;
    line-height: 3.1rem;
    margin: 3rem 0;
    height: 6.2rem;
}

.row-1-bottom-content .summary {
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    line-height: 3rem;
    text-align: justify;
    height: 8.4rem;
}

.row-1-bottom-content .view-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 0.1rem solid #DDDDDD;
}

.row-1-bottom-content .view-detail span {
    font-size: 1.4rem;
    color: #333333;
    line-height: 2rem;
}
/* 第一行 栏目 结束 */

/* 第二行 栏目 开始 */
.home-row-2 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10rem 0;
    background: #ffffff;
    flex-direction: column;
    position: relative;
}

.row-2-bg {
    display: block;
    position: absolute;
    top: 0;
    width: 192rem;
    height: auto;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
}

.row-2-bg-m {
    display: none;
}

.home-row-2 .content {
    width: 160rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 78rem 78rem;
    gap: 4rem;
}

.home-row-2 .content .card {
    display: flex;
    align-items: center;
    padding: 5rem;
    background: #FFFFFF;
    border-radius: 0rem 1.5rem 0rem 1.5rem;
    border: 0.1rem solid #EEEEEE;
    transition: transform 0.3s ease,background-color 0.8s ease;
    position: relative;
    z-index: 2;
}

.home-row-2 .content .card .card-left {
    padding-right: 5rem;
}

.home-row-2 .content .card .card-date {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #191919;
    transition: transform 0.3s ease,color 0.5s ease;
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
}

.home-row-2 .content .card .card-date .date-day {
    font-size: 5rem;
    line-height: 5rem;
    margin-bottom: .6rem;
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;

}

.home-row-2 .content .card .card-date .date-year {
    font-size: 2rem;
    line-height: 2rem;
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;

}

.home-row-2 .content .card .card-right {
    padding-left: 5rem;
    width: calc(100% - 11rem);
    border-left: .1rem solid rgba(221, 221, 221, 1);
}

.home-row-2 .content .card .card-title {
    font-weight: bold;
    font-size: 2rem;
    color: #000000;
    transition: transform 0.3s ease,color 0.5s ease;
    margin-bottom: 1rem;
}


.home-row-2 .content .card .card-summary {
    font-size: 1.6rem;
    color: #000000;
    transition: transform 0.3s ease,color 0.5s ease;
    line-height: 2.4rem;
}

.home-row-2 .content .card:hover {
    background: #2361AC;
    box-shadow: 0 10px 10px rgba(35, 97, 172, 0.39);
}

.home-row-2 .content .card:hover:before {
    content: "";
    background-image: url("../images/index-tzgg-pg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 17rem;
    opacity: .4;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.home-row-2 .content .card:hover .date-day
,.home-row-2 .content .card:hover .date-year
,.home-row-2 .content .card:hover .card-title
,.home-row-2 .content .card:hover .card-summary {
    color: #ffffff;
}

.home-row-2 .content .card:hover .card-right {
    border-left: .1rem solid #2361AC;
}

/* 第二行 栏目 结束 */

/* 第三行 栏目 开始 */
.home-row-3 {
    position: relative;
    width: 100%;
    padding: 10rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.row-3-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
}

.row-3-bg-m {
    display: none;
}

.home-col-3 {
    width: 160rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.home-col-3 .swiper-slide {
    background-size: cover;
    background-position: center;

}

.home-col-3 .swiper-slide img {
    width: 51.4rem;
    height: 41.8rem;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 1.5rem 1.5rem 0 0;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.home-col-3 .row-3-article {
    margin-top: 40.8rem;
    width: 51.4rem;
    background: linear-gradient(to bottom, rgba(236, 245, 255, 1), rgba(255, 255, 255, 1) 20%);
    border-radius: 1.5rem;
    z-index: 2;
    padding: 4rem;
    position: relative;
}

.home-col-3 .swiper-slide:not(:last-child) img
,.home-col-3 .swiper-slide:not(:last-child) .row-3-article {
    margin-right: 2.9rem;
}

.row-3-article .title {
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 2.4rem;
    color: #000000;
    margin-bottom: 2rem;
    text-align: left;
}

.row-3-article .summary {
    font-size: 1.8rem;
    color: #000000;
    line-height: 3rem;
    height: 9rem;
    margin-bottom: 4rem;
    text-align: justify;
}

.row-3-article .more {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row-3-article .more .date{
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: 500;
    font-size: 3rem;
    color: #191919;
    line-height: 3.3rem;
}

.row-3-article .more .view-detail {
    font-weight: 400;
    font-size: 2rem;
    color: #2361AC;
    line-height: 3.3rem;
    cursor: pointer;
}

.home-col-3 .swiper-navigation-icon {
    display: none;
}

.col3-swiper-button {
    width: 100%;
    text-align: center;
    margin: 5rem auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: absolute;
    top: 50%;
}

.col3-swiper-button .col3-swiper-button-prev {
    width: 5.6rem;
    height: 5.6rem;
    background: rgba(35, 97, 172, .5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    margin-left: 4.5rem;
}

.col3-swiper-button .col3-swiper-button-next {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(35, 97, 172, .5);
    color: rgba(255, 255, 255, 1);
    margin-right: 4.5rem;
}

.col3-swiper-button .col3-swiper-button-prev:hover
,.col3-swiper-button .col3-swiper-button-next:hover {
    background: rgba(35, 97, 172, 1);
    color: rgba(255, 255, 255, 1);
}

.col3-swiper-button .col3-swiper-button-prev i {
    display: inline-block;
    margin-right: .6rem;
    line-height: 5.6rem;
    font-size: 1.4rem;
    transform: scaleX(-1);
    margin-top: .4rem;
}

.col3-swiper-button .col3-swiper-button-next i {
    display: inline-block;
    margin-left: .6rem;
    line-height: 5.6rem;
    font-size: 1.4rem;
    margin-top: .4rem;
}

/* 第三行 栏目 结束 */

/* 第四行 栏目 开始 */
.home-row-4 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10rem 0;
    flex-direction: column;
    position: relative;
}

.row-4-bg {
    display: block;
    position: absolute;
    top: 0;
    width: 192rem;
    height: auto;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
}

.row-4-bg-m {
    display: none;
}

.home-row-4 .content {
    width: 160rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 78rem 78rem;
    gap: 4rem;
}

.home-row-4 .content .card {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: #FFFFFF;
    border-radius: 0rem 1.5rem 0rem 1.5rem;
    transition: transform 0.3s ease,background-color 0.8s ease;
    position: relative;
    z-index: 2;

}

.home-row-4 .content .card .card-date {
    flex-shrink: 0;
    color: #191919;
    padding-right: 4rem;
    font-size: 2.6rem;
    line-height: 3.3rem;
    font-weight: bold;
    transition: transform 0.3s ease,color 0.5s ease;
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
}

.home-row-4 .content .card .card-title {
    border-left: .1rem solid rgba(238, 238, 238, 1);
    padding-left: 4rem;
    width: auto;
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 3.3rem;
    color: #191919;
    transition: transform 0.3s ease,color 0.5s ease;
}

.home-row-4 .content .card .card-more {
    flex-shrink: 0;
    margin-left: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 3.3rem;
    background: rgba(35, 97, 172, .1);
    border-radius: 14.7rem;
}

.home-row-4 .content .card .card-more i {
    font-size: 1.4rem;
    color: rgba(35, 97, 172, 1);
}

.home-row-4 .content .card:hover {
    background: #2361AC;
    box-shadow: 0 10px 10px rgba(35, 97, 172, 0.39);
}

.home-row-4 .content .card:hover .card-date
,.home-row-4 .content .card:hover .card-title
,.home-row-4 .content .card:hover .card-summary {
    color: #ffffff;
}

.home-row-4 .content .card:hover .card-more {
     background: #ffffff;
}

/* 第四行 栏目 结束 */

/* 第五行 服务指南 开始 */
.home-row-5 {
    width: 100vw;
    height: 62.8rem;
    background-image: url("../images/index-service.svg");
    background-repeat: no-repeat;
    background-size: 151.2rem 62.8rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}


.row-5-bg {
    position: absolute;
    top: 0;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
    width: 151.2rem;
    height: 62.8rem;
    mix-blend-mode: Color-burn;
}

.row-5-bg-m {
    display: none;
}

section.home-row-5:last-of-type {
    margin-bottom: 10rem;
}

section.home-row-5:nth-of-type(4) {
    margin-top: 10rem;
}

.home-row-5 .row-head-box2 {
    margin-left: 16rem;
    display: block;
    margin-bottom: 0;
}

.home-row-5 .row-head-top span {
    color: #ffffff;
}

.home-row-5 .title-en-text {
    color: rgba(255, 255, 255, .3);
}


.home-row-5 .row-head-more {
    margin-top: 16rem;
    width: 19.1rem;
    height: 5.6rem;
    background: rgba(255, 255, 255, .1);
    border-radius: 17.6rem;
    display: flex;
    cursor: pointer;
    z-index: 2;
}

.home-row-5 .row-head-more .row-head-more-text {
    width: 11.5rem;
    line-height: 2.5rem;
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
    text-align: center;
    padding-left: .4rem;
    z-index: 2;
}

.home-row-5 .row-head-more .row-head-more-icon {
    border-radius: 17.6rem;
    background: rgba(255, 255, 255, .1);
    width: 7.6rem;
    height: 5.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.home-row-5 .row-head-more .row-head-more-icon i {
    color: #ffffff;
    font-size: 1.2rem;
    z-index: 2;
}

.home-row-5 .content {
    width: 112rem;
    padding: 8rem 12rem;
    margin-right: 16rem;
    border-radius: 1.5rem;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 1) 60%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 4rem;

}

.home-row-5 .content .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-row-5 .card .card-img {
    width: 14rem;
    height: 8.1rem;
    object-fit: cover;
    margin-bottom: 1rem;
}


.home-row-5 .card .card-title {
    font-weight: 800;
    font-size: 2rem;
    color: #191919;
    line-height: 3rem;
    text-align: center;
    width: 26.6rem;
}

/* 第五行 时间轴 结束 */

/* 第六行 部门风采 开始 */
.home-row-6 {
    display: flex;
    width: 160rem;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    padding: 10rem 0;
    flex-direction: column;
    position: relative;
}

.row-6-bg {
    display: block;
    position: absolute;
    top: 0;
    width: 192rem;
    height: auto;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
}

.row-6-bg-m {
    display: none;
}

.home-row-6 .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.home-row-6 .card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.home-row-6 .card img {
    width: 100%;
    height: 51.4rem;
    object-fit: cover;
    display: block;
}

.home-row-6 a:nth-child(1) {
    grid-column: span 2;
}

.home-row-6 .slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 17.8rem;
    padding: 11.4rem 4rem 4rem 4rem;
    margin: 0;
    background: linear-gradient(to top, rgba(57, 59, 61, 1), rgba(35, 97, 172, 0));
    color: white;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1;
    box-sizing: border-box;
}

/* 第六行 部门风采 结束 */

/* 页脚 开始 */
.home-footer {
    width: 100%;
    padding-top: 2rem;
    position: relative;
    background: #2361AC;
    z-index: 99;
}

.footer-box {
    width: 160rem;
    margin: 0 auto 0rem auto;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-logo {
    margin-right: 7rem;
}
.footer-logo .logo{
    cursor: pointer;
    width: 36.8rem;
    height: 5rem;
}

.footer-logo .phone{
    width: 100%;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: justify;
}

.footer-logo .phone span {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 1);
}

.footer-logo .phone .phone-tip {
    font-family: "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
}

.contact-info{
    color: rgba(255, 255, 255, 1);
}

.contact-info .contact-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 5rem;
    align-items: center;
    justify-content: space-between;
    margin: 3rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.footer-qrcode {
    z-index: 10;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-qrcode img {
    width: 10rem;
    height: 10rem;
}

.footer-qrcode p {
    text-align: center;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    line-height: 4.8rem;
}

.footer-copyright {
    border-top: .1rem solid rgba(255, 255, 255, .1);
    text-align: center;
    font-weight: 400;
    font-size: 1.4rem;
    color: #FFFFFF;
    line-height: 6rem;
    letter-spacing: .2rem;
}

.home-footer .copyable {
    cursor: pointer;
}

.home-footer .navigable {
    cursor: pointer;
}

.footer-copyright a {
    color: #FFFFFF;
}

.copy-notification {
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    color: #2361AC;
    padding: .8rem 1.6rem;
    border-radius: .4rem;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 1.4rem;
    white-space: nowrap;
    pointer-events: none;
}

/* 三角箭头 */
.copy-notification::after {
    content: '';
    position: absolute;
    top: calc( 100% - .1rem);
    left: 50%;
    transform: translateX(-50%);
    border-width: .6rem;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.copy-notification.show {
    opacity: 1;
}

/* 页脚 结束 */

/* ------------- 详情页样式 ---------------- */

/* 头部1 开始 */
.home-page.home-detail-page {
    height: 80rem;
}

.home-page.home-detail-page:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 34.1rem;
    z-index: 4;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
}

.detail-head-img {
    position: absolute;
    width: 100%;
    height: 80rem;
    pointer-events: none;

}

img.detail-head-img {
    width: 100%;
    height: 65rem;
    object-fit: cover;
    pointer-events: none;
    background-position: center;
    vertical-align: middle;
}

.detail-page-title {
    margin: 0 auto;
    position: absolute;
    z-index: 5;
    bottom: 8rem;
    left: 16rem;
    text-align: left;
}

.detail-page-title .zh-title {
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    font-size: 6rem;
    color: #FFFFFF;
    letter-spacing: 1rem;
}

.detail-page-title .en-title {
    color: rgba(255, 255, 255, .8);
    font-size: 3rem;
}

.detail-nav {
    width: 100%;
    background-image: url("../images/d-nav-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 7.2rem;
    box-shadow: 0 1.6rem 3rem 0 rgba(35, 97, 172, .1);
}

/* 设置ul的宽度为160rem并移除默认的列表样式 */
.detail-nav ul {
    width: 160rem;
    height: 7.2rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
}

/* 设置li的内边距 */
.detail-nav li {
    cursor: pointer;
    height: 100%;
    padding: 0rem 3.3rem;
    display: inline-block;
    line-height: 7.2rem;
    font-size: 1.8rem;
    color: #000000;
    min-width: 14.2rem;
    text-align: center;
}

.detail-nav li:hover {
    background: rgba(35, 97, 172, .6);
    color: rgba(255, 255, 255, 1);
}

/* 当li被选中时应用蓝色背景 */
.detail-nav li.active {
    font-weight: bold;
    background: rgba(35, 97, 172, .9);
    color: rgba(255, 255, 255, 1);
}

/* 头部1 结束 */

/* 尾部1 开始 */
.detail-page-bottom {
    background: #ffffff;
}

.detail-page-bottom .home-row-8 {
    margin: 0 auto;
    padding: 8rem 0 6rem 0;
}
/* 尾部1 结束 */

/* 学院简介 开始 */
.xygk-content p {
    font-weight: 400;
    font-size: 2rem;
    line-height: 3.2rem;
    text-align: left;
    margin-bottom: 3rem;
    text-align: justify;
}

.xygk-content p:last-child {
    margin-bottom: 0;
}

.xygk-row-1 {
    width: 160rem;
    margin: 0 auto;
    padding: 10rem 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.xygk-row-1 .xygk-detail-1-left {
    width: 85rem;
}

.xygk-row-1 .xygk-title {
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    font-size: 4rem;
    line-height: 4rem;
    color: rgba(35, 97, 172, 1);
    margin-bottom: 4rem;
}

.xygk-row-1 .xygk-content p {
    color: #191919;
}

.xygk-detail-1-right {
    position: relative;
}

.xygk-detail-1-bg {
    width: 16.31rem;
    height: 25.98rem;
    z-index: -1;
    position: absolute;
    left: -8.2rem;
    top: 7.9rem;
}

.xygk-detail-1-img {
    width: 65.5rem;
    height: 41.8rem;
}

/* 第二行内容 */
.xygk-row-2 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    background: #2361AC;
    background-image: url("../images/d2-bg.webp");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    position: relative;
}

.xygk-row-2 .xygk-detail-2-left {
    width: 63.6rem;
}

.xygk-row-2 .xygk-content {
}

.xygk-row-2 .xygk-content p {
    color: #ffffff;
}

.xygk-detail-2-right {
    padding: 10rem;
    width: 105rem;
}

img.xygk-detail-2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    display: block;
}

/* 第三段 */

.xygk-row-3 {
    width: 160rem;
    margin: 0 auto;
    padding: 10rem 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
    position: relative;
}

.xygk-row-3::after {
    content: "";
    width: 36.1rem;
    height: 44.2rem;
    position: absolute;
    top: 0;
    z-index: -1;
    right: -16rem;
    background: rgba(35, 97, 172, .1);
}

.xygk-row-3 .xygk-detail-3-left {
    width: 85rem;
}

.xygk-row-3 .xygk-content p {
    color: #191919;
}

.xygk-detail-3-right {
    position: relative;
}

.xygk-detail-3-bg {
    width: 16.31rem;
    height: 25.98rem;
    z-index: -1;
    position: absolute;
    left: -8.2rem;
    top: 7.9rem;
}

.xygk-detail-3-img {
    width: 65.5rem;
    height: 59.2rem;
}


/* 院校概况 结束 */

/* 历史沿革 开始 */
/* 时间轴容器 */

.timeline-box {
    position: relative;
    margin-top: 30rem;
}

.lsyg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.lsyg-logo {
    position: absolute;
    top: 14.8rem;
    right: 16rem;
    width: 51.64rem;
    height: auto;
}

.timeline {
    position: relative;
    max-width: 160rem;
    margin: 0 auto;
}

/* 时间轴主轴线 */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: .4rem;
    background: linear-gradient(to bottom, #2361AC, #DDDDDD);
    transform: translateX(-50%);
}

/*
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0.4rem;
    background: linear-gradient(to bottom, #2361AC, #DDDDDD);
    -webkit-mask: repeating-linear-gradient(
    to bottom,
    #000 0px,
          #000 1rem,
                transparent 1rem,
                             transparent 2rem
    );
    mask: repeating-linear-gradient(
    to bottom,
    black 0,
    black 1rem,
           transparent 1rem,
                        transparent 2rem
    );
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}
*/

/* 时间轴项 */
.timeline li {
    padding: 10rem 0;
    position: relative;
    width: 50%;
    margin-top: -30rem;
}

/* 奇数项：左侧 */
.timeline li:nth-child(odd) {
    left: 0;
}

/* 偶数项：右侧 */
.timeline li:nth-child(even) {
    left: 50%;
}

/* 内容块 */
.timeline-content {
    transition: transform 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-5px);
    color: #2361AC!important;
}

.timeline-content .timeline-text {
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 3.2rem;
}


.timeline li:nth-child(odd) .timeline-content {
    text-align: left;
}

.timeline li:nth-child(even) .timeline-content {
    text-align: right;
}

/* 节点圆点 */
.timeline li::after {
    content: '';
    position: absolute;
    width: 1.6rem;
    height: 1.6rem;
    background: #FFFFFF;
    border: 0.2rem solid #2361AC;
    border-radius: 50%;
    top: 17.5rem;
    z-index: 2;
}

.timeline li:nth-child(odd)::after {
    right: -1rem;
}

.timeline li:nth-child(even)::after {
    left: -1rem;
}

/* 渐变连接线 */
.timeline-connector {
    position: absolute;
    height: .2rem;
    top: 18.3rem;
    z-index: 1;
}

.timeline li:nth-child(odd) .timeline-connector {
    right: .6rem;
    width: 17.8rem;
    background: linear-gradient(297deg, #2361AC 0%, rgba(35,97,172,0) 100%);
}

.timeline li:nth-child(even) .timeline-connector {
    left: .6rem;
    width: 17.8rem;
    background: linear-gradient(63deg, #2361AC 0%, rgba(35,97,172,0) 100%);
}

/* 图片 */
.timeline-img {
    width: 55rem;
    height:  36rem;
    object-fit: cover;
    border: .8rem solid #DDDDDD;
    transition: .6s;
}

.timeline-content:hover .timeline-img {
    border: .8rem solid #2361AC;
    transition: .6s;
}

/* 日期样式 */
.timeline-date {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: bold;
    font-size: 5rem;
    line-height: 5rem;
    display: inline-block;
}

.timeline-date-year {
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 3.2rem;
}


/* 头部布局 */
.timeline-header {
    display: flex;
    align-items: start;
    margin-bottom: 3rem;
}



.timeline li:nth-child(odd) .timeline-header {
    justify-content: flex-start;
}

.timeline li:nth-child(even) .timeline-header {
    justify-content: flex-end;
}

.timeline li:nth-child(odd) .timeline-header .timeline-img {
    margin-right: 5.4rem;
}

.timeline li:nth-child(even) .timeline-header .timeline-img {
    margin-left: 5.4rem;
    order: 2;
}

.timeline li:nth-child(odd) .timeline-text {
    padding-right: 8rem;
}

.timeline li:nth-child(even) .timeline-text {
    padding-left: 8rem;
}
/* 历史沿革 结束 */

/* 现任领导 开始 */
.leader-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 24.1rem 0 10rem 0;
}

.leader-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: luminosity;
    background-image: url("../images/leader-page-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.leader-section-title {
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    text-align: center;
    color: rgba(0, 0, 0, 1);
    font-size: 4rem;
    position: absolute;
    top: 10rem;
    left: 50%;
    width: 160rem;
    transform: translateX(-50%);
}

.leader-section-title:before {
    content: "";
    background-image: url("../images/leader-page-title-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 16rem;
    height: 10rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.leader-section-title .title-tag {
    color: rgba(35, 97, 172, 1);
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
}

.leader-grid-container {
    width: 160rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.leader-card {
    min-height: 12rem;
    padding: 4rem;
    background: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 6rem;
}

.leader-card:hover {
    transform: scale(1.05);
    z-index: 99;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.leader-card::before {
    content: '';
    position: absolute;
    top: -6rem;
    left: 0;
    width: 100%;
    height: 6rem;
    background: #2361AC;
    z-index: 1;
}

.leader-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: -6rem;
    width: 20rem;
    height: 6rem;
    background-image: url("../images/leader-title-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    z-index: 2;
}

.leader-title {
    min-width: 25.45rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 4rem;
    position: relative;
    z-index: 1;
    font-size: 3rem;
    color: #2361AC;
    line-height: 3rem;
    border-right: 0.1rem solid #DDDDDD;
}

.leader-name {
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    color: #000000;
    line-height: 3rem;
    margin-left: 9.5rem;
}

.leader-detail {
    display: flex;
}

.leader-position {
    display: flex;
    align-items: end;
    justify-content: start;
    min-width: 38.2rem;
    padding-left: 9.5rem;
    position: relative;
    z-index: 1;
}

.leader-role {
    line-height: 3rem;
    font-size: 2.8rem;
    color: #2361AC;
    flex-shrink: 0;
}

.leader-person {
    line-height: 3rem;
    font-size: 2.8rem;
    color: #000000;
    margin-left: 5rem;
}

.leader-person span{
    margin-right: 5rem;
}

/* 自动判断是否需要完整宽度 */
.leader-card:nth-child(n+3) {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
/* 现任领导 结束 */

/* 机构设置 开始 */
.org-container {
    width: 100%;
    position: relative;
    z-index: 1;
    background-image: url("../images/jgsz-page-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 24.1rem 0 10rem 0;
}

.org-box {
    width: 160rem;
    margin: 0 auto 20rem auto;
    display: flex;
}

.org-box:last-child {
    margin-bottom: 0;
}

.org-title {
    color: rgba(35, 97, 172, 1);
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 4rem;
    font-weight: 400;
    position: relative;
}

.org-title:before {
    content: "";
    top: .6rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    width: 6.4rem;
    height: 4rem;
    background-image: url("../images/title-bg.webp");
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.org-content {
    margin-left: 5rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5.3rem;
}

.org-item {
    background-color: rgba(239, 244, 248, 1);
    padding: 4rem;
    height: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: .1rem solid rgba(255, 255, 255, 1);
    box-shadow: 0rem 1.6rem 1.1rem 0.1rem rgba(73, 100, 122, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-size: 2.8rem;
    color: #000000;
}

.org-item:hover {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: .6rem solid rgba(255, 170, 0, 1);
    background: rgba(35, 97, 172, 1);
    box-shadow: 0rem 1.6rem 1.1rem 0.1rem rgba(35, 97, 172, 0.2);

    color: #ffffff;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* 机构设置 结束 */

/* 学院文化 开始 */
.culture-container {
    width: 100%;
}

/* 校徽 */
.parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 130%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    opacity: .3;
    z-index: -1;
}

.culture-item1 {
    padding: 0rem 4rem 4rem 16rem; /* 上左右间距，给浮动留空间 */
    width: 100%;
    position: relative;
}

/* 文本容器：自动填充剩余空间，文字环绕图片 */
.culture-text {
    width: 160rem;
    min-height: calc(100vh - 42.6rem);
    font-weight: 400;
    line-height: 4.6rem;
    color: #000000;
}

.culture-text-top {
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    padding: 4rem 4rem 4rem 16rem;
    background: rgba(35, 97, 172, .1);
    color: rgba(35, 97, 172, 1);
    min-height: 46.2rem;
    margin-left: -16rem;
}

.culture-text-title {
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-size: 5rem;
    line-height: 12rem;
}

.culture-text .culture-text-summary {
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-size: 3rem;
    line-height: 6rem;
}

.culture-text article {
    margin-top: 4rem;
}

.culture-text article p {
    margin-bottom: 3rem;
    font-weight: 400;
    font-size: 2.4rem;
    color: #000000;
    line-height: 4.6rem;
    text-align: justify;
}

.culture-text article p:last-child {
    margin-bottom: 0;
}

/* 图片盒子：浮动到右上角 */
.culture-img-box {
    position: relative;
    float: right; /* 浮动到右侧 */
    z-index: 1;
    margin: 0 -11.2rem 3rem 9rem;
    /* 添加形状环绕 */
    shape-outside: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); /* 修改为正方形环绕 */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); /* 视觉上裁剪为正方形（可选） */
    display: flex;
}

.culture-img-box .culture-img1 {
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46.2rem;
    height: 46.2rem;
    background-image: url("../images/xywh-xh-bg1.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.culture-img-box .culture-img2 {
    margin-left: 6rem;
    background: rgba(35, 97, 172, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46.2rem;
    height: 46.2rem;
    background-image: url("../images/xywh-xh-bg2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.culture-img-box .culture-img1 img {
    width: 28rem;
    height: 28rem;
    box-shadow: 0 0 6rem rgba(35, 97, 172, .3);
    border-radius: 50%;
}

.culture-img-box .culture-img2 img {
    width: 28rem;
    height: 28rem;
    box-shadow: 0 0 6rem rgba(255, 255, 255, .3);
    border-radius: 50%;
}

/* 标题 */
.culture-nav {
    width: 100%;
    text-align: center;
    height: 34.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-nav ul {
    white-space: nowrap;
}

.culture-nav ul li {
    display: inline-block;
    margin: 0 5rem;
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-size: 4rem;
    color: #000000;
    position: relative;
    cursor: pointer;
}

.culture-nav ul li.active {
    font-size: 6rem;
    color: rgba(35, 97, 172, 1);
}

.culture-nav ul li.active:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5rem;
    width: 8.2rem;
    height: 5rem;
    background-image: url("../images/title-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    z-index: -1;
}

.culture-item2-img {
    background: #ffffff;
    width: 100rem;
    height: 46.2rem;
    background-image: url("../images/xywh-xh-bg1.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.culture-item2-img img {
    width: 48rem;
    height: auto;
}

.culture-item2-img img:first-child {
    margin-left: -28rem;
    margin-bottom: 5rem;
}
.culture-item2-img img:last-child {
    margin-left: 20rem;
}

/* 学院文化 结束 */

/* 专业设置 开始 */
.major-container {
    width: 100%;
}
.major-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: luminosity;
    background-image: url("../images/zysz-page-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* 标题 */
.major-nav {
    width: 100%;
    text-align: center;
    height: 19.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.major-nav ul {
    white-space: nowrap;
}

.major-nav ul li {
    display: inline-block;
    margin: 0 5rem;
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-size: 3rem;
    color: #000000;
    position: relative;
    cursor: pointer;
}

.major-nav ul li:hover {
    font-size: 3.4rem;
    color: rgba(35, 97, 172, 1);
}

.major-nav ul li:hover:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2.8rem;
    width: 4.8rem;
    height: 3rem;
    background-image: url("../images/title-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    z-index: -1;
}

.major-dept-box {
    width: 160rem;
    height: 58rem;
    margin: 0 auto 6rem auto;
    padding: 2rem;
    background: #2361AC;
    background-image: url("../images/zysz-dept-bg.png");
    background-repeat: no-repeat;
    background-size: 21.91rem;
    background-position: calc(0rem - 6.7rem) center;
    display: flex;
}

.major-dept-title {
    padding-left: 5rem;
    width: 14.8rem;
    color: rgba(255, 255, 255, 1);
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
}

.major-dept-content {
    flex: 1;
    display: flex;
    gap: 1.6rem;
}

.major-dept-content a {
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0.2rem solid rgba(255, 255, 255, .2);
    padding: 10rem 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* 奇数项：左侧 */
.major-dept-content a:nth-child(odd) {
    background: rgba(255, 255, 255, .1);
}

/* 偶数项：右侧 */
.major-dept-content a:nth-child(even) {
    background: none;
}

.major-dept-content a:before {
    content: '';
    width: 18.67rem;
    height: 2rem;
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("../images/zysz-line2.png");
    background-repeat: no-repeat;
    background-size: 100%;
}

.major-dept-content a:after {
    content: '';
    width: 18.67rem;
    height: 2rem;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background-image: url("../images/zysz-line2.png");
    background-repeat: no-repeat;
    background-size: 100%;
}

.major-dept-content a:hover {
    transition: all 0.3s ease;
    background-image: url("../images/zysz-active-bg.jpg");
    background-repeat: no-repeat;
    color: #2361AC;
    background-size: 100% 54rem;
    background-position: right bottom;
}

.major-dept-content a:hover:before
,.major-dept-content a:hover:after {
    transition: all 0.3s ease;
    background-image: url("../images/zysz-line.png");
}

.major-dept-content a span{
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: 2.8rem;
    color: #FFFFFF;
}

.major-dept-content a:hover span {
    transition: all 0.3s ease;
    color: #2361AC;
}
/*  专业设置 结束 */

/*  专业介绍 开始 */
.major-desc-container {
    width: 100%;
    position: relative;
    padding-bottom: 10rem;
}

.major-desc-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/xywh-page-bg3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: .3;
}
.major-desc-title {
    width: 100%;
    text-align: center;
    height:22.1rem;
    line-height: 22.1rem;
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-size: 4rem;
    color: #000000;
    position: relative;
}

.major-desc-title:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 16rem;
    height: 10rem;
    background-image: url("../images/title-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    z-index: -1;
}

.major-desc-box{
    display: flex;
    width: 160rem;
    min-height: 100rem;
    margin: 0 auto;
}

.major-desc-left {
    background: rgba(255, 255, 255, .5);
    position: relative;
}

.major-desc-left:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5rem;
    transform: translateX(-50%);
    width: 20rem;
    height: 20rem;
    background-image: url("../images/hhmc-logo-blue.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    z-index: -1;
    opacity: .2;
}

.major-desc-img {
    width: 60rem;
    padding: 5rem;
    position: relative;
}

.major-desc-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60rem;
    height: 16rem;
    background: #2361AC;
    background-image: url("../images/zyjs-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    z-index: 1;
}

.major-desc-img img {
    position: relative;
    width: 50rem;
    height: 22rem;
    z-index: 3;
}

.major-desc-list {
    text-align: left;
    position: relative;
}

.major-desc-list li{
    padding: 0 5rem;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    color: #000000;
    line-height: 4rem;
    height: 4rem;
    position: relative;
    border-left: .4rem solid rgba(255, 255, 255, .5);
    cursor: pointer;
}

.major-desc-list li:hover
,.major-desc-list li.active {
    border-left: .4rem solid rgba(35, 97, 172, 1);
    color: rgba(35, 97, 172, 1);
    font-weight: bold;
}

.major-desc-list li.active:after {
    content: '';
    position: absolute;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 1.4rem;
    background-image: url("../images/arrows-right.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 2;
}

.major-desc-right {
    width: 100%;
    padding: 0 5rem 5rem 5rem;
    background: rgba(255, 255, 255, 1);
    border-right: 1.6rem solid rgba(35, 97, 172, 1);
}

.major-desc-article-title {
    font-weight: bold;
    font-size: 2.4rem;
    color: #000000;
    margin: 4rem 2rem 2rem 2rem;
}

.major-desc-article-content {
    font-weight: 400;
    font-size: 2rem;
    color: #000000;
    line-height: 3.4rem;
    text-align: justify;
}
/*  专业介绍 结束 */

/* 新闻列表 开始 */
.news-list-container {
    width: 160rem;
    margin: 5rem auto 10rem auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
}

.news-list-item {
    background: rgba(255, 255, 255, 1);
    width: 100%;
    height: 21rem;
    cursor: pointer;
    border-radius: 0rem  1.5rem  0rem  1.5rem;
    display: flex;
}

.news-list-item:hover:before {
    content: "";
    background-image: url("../images/index-tzgg-pg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 17rem;
    opacity: .4;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.news-list-item:hover {
    background: #2361AC;
    transform: scale(1.01);
    color: #ffffff!important;
}

.news-list-img {
    flex-shrink: 0;
    height: 100%;
    width: 34rem;
    object-fit: cover;
    border-radius: 0rem  1.5rem  0rem  1.5rem;
}

.news-list-content {
    margin: 5.4rem 0rem;
    padding: 0 5rem;
    border-right: #EEEEEE solid .1rem;
    flex: 1;
    width: 106.6rem;
}

.news-list-content .news-list-title {
    position: relative;
    font-weight: bold;
    font-size: 2.4rem;
    color: #333333;
    line-height: 3rem;
    height: 3rem;
    text-align: left;
    margin-bottom: 2rem;
}

.news-list-content .news-list-summary {
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 2.6rem;
    height: 5.2rem;
    text-align: justify;
}

.news-list-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 0 6.1rem 0 5rem;
}

.news-list-time1 {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: bold;
    font-size: 4.4rem;
    line-height: 4.4rem;
    color: #333333;
}

.news-list-time2 {
    margin-top: 2rem;
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: normal;
    font-size: 3rem;
    line-height: 3rem;
    color: #333333;
}

.news-list-item:hover .news-list-content .news-list-title
,.news-list-item:hover .news-list-content .news-list-summary
,.news-list-item:hover .news-list-time1
,.news-list-item:hover .news-list-time2 {
    color: #FFFFFF;
}

.list-pager {
    width: 100%;
    text-align: center;
    margin-bottom: 10rem;
}
/* 新闻列表 结束 */

/* 分页 开始 */
.paginationjs-pages ul {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 160rem;
    margin: 0 auto;
    gap: 1.5rem;
}

.paginationjs-pages ul li {
    cursor: pointer;
}

.paginationjs-pages ul li.active {
    color: #ffffff;
    background: rgba(35, 97, 172, 1);
}

.paginationjs-prev {
    width: 5rem;
    height: 5rem;
    padding-right: .4rem;
    line-height: 4.6rem;
    text-align: center;
    font-size: 2.4rem;
    color: #191919;
    background: #ffffff;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 1rem;
}

.paginationjs-next {
    width: 5rem;
    height: 5rem;
    padding-left: .4rem;
    line-height: 4.6rem;
    text-align: center;
    font-size: 2.4rem;
    color: #ffffff;
    background: rgba(35, 97, 172, 1);
    border-radius: 50%;
    font-weight: bold;
    margin-left: 1rem;
}

.paginationjs-page {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 1.6rem;
    color: #191919;
    background: #ffffff;
    border-radius: 50%;
    font-weight: bold;
}

.paginationjs-pages ul li.paginationjs-ellipsis {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 1.6rem;
    color: #191919;
    background: #ffffff;
    border-radius: 50%;
    font-weight: bold;
    cursor: not-allowed;
}

/* 分页 结束 */

/* 新闻列表2 开始 */
.news-list2-container {
    width: 160rem;
    margin: 10rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.news-list2-item {
    background: rgba(255, 255, 255, 1);
    width: 100%;
    height: 66.8rem;
    padding: 4rem;
    cursor: pointer;
}

.news-list2-item:hover {
    background: rgba(35, 97, 172, 1);
    transform: scale(1.05);
}

.news-list2-time {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: bold;
    line-height: 2.2rem;
    font-size: 2.2rem;
    color: #999999;
}

.news-list2-title {
    position: relative;
    font-weight: 800;
    font-size: 2rem;
    color: #191919;
    line-height: 3rem;
    height: 6rem;
    text-align: left;
    margin: 3rem 0;
}

.news-list2-img {
    width: 100%;
    height: 25rem;
}

.news-list2-summary {
    font-weight: 400;
    height: 9rem;
    text-align: justify;
    margin-top: 3rem;
    font-size: 1.8rem;
    color: #666666;
    line-height: 3rem;
}

.news-list2-bottom {
    margin-top: 3rem;
    border-top: 0.1rem solid #DDDDDD;
    padding-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-list2-bottom span {
    font-size: 1.4rem;
    line-height: 1.4rem;
    color: #333333;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;


}

.news-list2-bottom i {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-list2-item:hover .news-list2-title
,.news-list2-item:hover .news-list2-summary
,.news-list2-item:hover .news-list2-bottom i
,.news-list2-item:hover .news-list2-time
,.news-list2-item:hover .news-list2-bottom span{
    color: #ffffff;
}

.list-pager {
    width: 100%;
    text-align: center;
    margin-bottom: 10rem;
}
/* 新闻列表2 结束 */

/* 在线留言 开始 */
.comment-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.comment-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 66.6rem;
    mix-blend-mode: luminosity;
    background-image: url("../images/zxly-page-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    z-index: -1;
}

.comment-title {
    width: 100%;
    text-align: center;
    height:22.1rem;
    line-height: 22.1rem;
    font-family: "Alimama-DongFangDaKai", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-size: 4rem;
    color: #000000;
    position: relative;
}

.comment-title:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 16rem;
    height: 10rem;
    background-image: url("../images/title-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    z-index: -1;
}

.comment-box {
    width: 160rem;
    margin: 0 auto;
    background: #ffffff;
    position: relative;
    padding: 4rem;
    min-height: 66rem;
}

.comment-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55rem;
    background: linear-gradient( 180deg, #2361AC 0%, rgba(35,97,172,0) 100%);
    border-radius: 0rem 0rem 0rem 0rem;
    opacity: 0.1;
}

.comment-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.comment-top-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-top-title img {
    width: 3.2rem;
    height: 3rem;
    margin-right: 2.3rem;
}

.comment-top-title span {
    font-weight: 800;
    font-size: 2.8rem;
    color: #2361AC;
}

.comment-top-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 4rem;
    z-index: 2;
}

/* 隐藏 radio 输入框，但保持其功能 */
.comment-top-button input[type="radio"] {
    display: none;
}

/* 将 label 当作按钮使用，继承原有 button 样式 */
.comment-top-button label {
    border: 0;
    padding: 0 2.3rem;
    border-radius: .5rem;
    background: rgba(35, 97, 172, .1);
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 4rem;
    color: #2361AC;
    cursor: pointer;
    margin: 0;
    user-select: none;
    z-index: 2;
}

/* 选中状态：当 radio 被选中时，对应的 label 高亮 */
.comment-top-button input[type="radio"]:checked + label {
    background: rgba(35, 97, 172, 1); /* 与 hover 相同的高亮色 */
    color: #FFFFFF;
}

.comment-input {
    position: relative;
    margin-top: 4rem;
    z-index: 2;
}

.comment-input textarea {
    width: 100%;
    height: 50rem;
    font-weight: 400;
    font-size: 2.4rem;
    color: #333333;
    line-height: 4.8rem;
    padding: 3rem 3rem 10rem 3rem;
    border: .2rem solid #ffffff;
    border-radius: 0;
    box-sizing: border-box;
    display: block;
    z-index: 2;
    resize: none;
    background: rgba(248, 248, 248, 1);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.comment-input textarea::-webkit-scrollbar {
    display: none;
}


.comment-input button {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16rem;
    height: 7rem;
    font-weight: bold;
    font-size: 1.8rem;
    color: #FFFFFF;
    text-align: center;
    line-height: 7rem;
    background-color: #2361AC;
    border: none;
    cursor: pointer;
    z-index: 2;
}

.comment-input button:hover {
    opacity: .8;
}


.reply-box {
    width: 160rem;
    margin: 4rem auto 10rem auto;
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
}

.reply-item {
    min-height: 38.3rem;
    background: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    transition: .5s;
}

.replay-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #666;
}

.reply-type {
    background-color: rgba(35, 97, 172, .1);
    color: rgba(35, 97, 172, 1);
    padding: 0 1.2rem;
    border-radius: .5rem;
    font-size: 1.8rem;
    line-height: 3rem;
    font-weight: bold;
}

.reply-time {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    font-size: 2.2rem;
    line-height: 3rem;
    color: #999999;
}

.reply-title {
    padding: 2rem 0 3rem 0;
    font-weight: 800;
    font-size: 2rem;
    color: #191919;
    line-height: 3.4rem;
    min-height: 11.8rem;
    border-bottom: .1rem solid rgba(238, 238, 238, 1);
}

.reply-summary {
    padding-top: 3rem;
    font-size: 2rem;
    color: #333333;
    line-height: 3.4rem;
}

.reply-answer {
    color: rgba(35, 97, 172, 1);
    font-size: 2rem;
    font-weight: bold;
}

.reply-item:hover {
    background: rgba(35, 97, 172, 1);
    transform: scale(1.05);
    transition: .5s;
}

.reply-item:hover .reply-type {
    background: rgba(255, 255, 255, .1);
}

.reply-item:hover .reply-type
,.reply-item:hover .reply-time
,.reply-item:hover .reply-title
,.reply-item:hover .reply-summary
,.reply-item:hover .reply-answer{
    color: #ffffff;
}
/* 在线留言 结束 */


/* 新闻详情 开始 */
.news-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.news-container::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 108rem;
    mix-blend-mode: luminosity;
    background-image: url("../images/news-page-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
}

.news-main-box {
    width: 160rem;
    margin: 5rem auto 10rem auto;
    display: flex;
    gap: 3rem;
}

.news-box {
    background: #ffffff;
    padding: 4rem;
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
    flex: 1;
}

.news-detail {
    font-weight: 800;
    font-size: 2.8rem;
    color: #191919;
    text-align: center;
}

.news-title {
    line-height: 4.8rem;
    padding-bottom: 2rem;
}

.news-source {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-top: 1.7rem;
    justify-content: center;
    padding-bottom: 3rem;
    border-bottom: .1rem solid rgba(35, 97, 172, .1);
}

.news-source span {
    font-weight: 400;
    font-size: 2rem;
    color: #999999;
}

.news-content {
    overflow-x: hidden;
    margin-top: 4rem;
    min-height: 120rem;
}

.news-content img {
    max-width: 100%;
    max-height: 100%;
}

.news-content video {
    max-width: 100%;
    max-height: 100%;
}

.news-content iframe {
    max-width: 100%;
}

.news-content p {
    margin-top: 3rem;
    font-weight: 400;
    font-size: 1.8rem;
    color: #333333;
    line-height: 3rem;
    text-align: justify;
}

.news-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6rem;
}

.news-bottom .news-bottom-left {
    width: 53.5rem;
    font-weight: 400;
    font-size: 1.8rem;
    color: #191919;
    line-height: 6rem;
    height: 6rem;
    padding: 0 3rem;
    border-radius: 1rem;
    border: .1rem solid rgba(221, 221, 221, 1);
    cursor: pointer;
}

.news-bottom .news-bottom-left:hover {
    color: #ffffff;
    background: rgba(35, 97, 172, 1);
}

.news-bottom .news-bottom-left span:first-child {
    margin-right: 2rem;
}

.news-bottom .news-bottom-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 4rem;
}

.news-bottom .news-bottom-right .news-share-item {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    cursor: pointer;
}


.news-bottom .news-bottom-right .news-share-item img {
    width: 3.2rem;
    height: 3.2rem;
}

.news-bottom .news-bottom-right .news-share-item span {
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    line-height: 4rem;
}

.news-bottom .news-bottom-right .news-share-item:hover span {
    color: rgba(35, 97, 172, 1);
}

/* 文章附件 */
.news-attachments {
    margin-top: 6rem;
    padding: 2rem;
    border-radius: 1rem;
    border: .1rem solid rgba(221, 221, 221, 1);
}

.attachments-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #333;
}

.attachments-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: .6rem;
    overflow: hidden;
    box-shadow: 0 .2rem .4rem rgba(0, 0, 0, 0.1);
}

.attachments-table th,
.attachments-table td {
    padding: 2rem 1rem;
    text-align: left;
    border-bottom: .1rem solid rgba(221, 221, 221, 1)
}

.attachments-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
    font-size: 1.4rem;
    text-align: center;
}

.attachments-table td {
    font-size: 1.8rem;
    font-weight: normal;
}

.attachments-table tr:last-child td {
    border-bottom: none;
}

.attachments-table tr:hover {
    background-color: #f8f9fa;
}

.attachment-download-btn {
    width: 100%;
    display: block;
    align-items: center;
    padding: 1rem;
    background-color: rgba(35, 97, 172, .6);
    color: #fff;
    text-decoration: none;
    border-radius: .6rem;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    text-align: center;
}

.attachment-download-btn:hover {
    background-color: rgba(35, 97, 172, 1);
    text-decoration: none;
    color: #fff;
}

.attachments-table td:nth-child(1) {
    width: 6rem;
    text-align: center;
    color: #666666;
}

.attachments-table td:nth-child(2) {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}

.attachments-table td:nth-child(3) {
    width: 15rem;
    color: #666666;
    text-align: center;
}

.attachments-table td:nth-child(4) {
    width: 8rem;
    text-align: center;
    color: #666666;
}

.attachments-table td:nth-child(5) {
    width: 12rem;
    text-align: center;
}

/* 右边扩展 */
.news-extend {
    flex-shrink: 0;
    width: 38rem;
}

.news-hot-box {
    padding: 3rem 3rem 0 3rem;
    position: relative;
    background: linear-gradient( 180deg, #FFDFDF 0%, #FFFFFF 25%);

}

.news-hot-box:after {
    content: "";
    position: absolute;
    top: 2.1rem;
    right: 1.9rem;
    width: 7.46rem;
    height: 8.89rem;
    background-image: url("../images/icon-hot-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.news-box-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: #191919;
    position: relative;
}

.hot-item {
    padding: 3rem 0;
    border-bottom: .1rem solid rgba(238, 238, 238, 1);
    display: flex;
    align-items: start;
    gap: 1.4rem;
    cursor: pointer;
}

.hot-item:hover {
    background: rgba(35, 97, 172, .02);
}

.hot-item:last-child {
    border-bottom: none;
}

.hot-item .hot-rank {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: bold;
    font-size: 4.4rem;
    line-height: 4.4rem;
    flex-shrink: 0;
    color: #999999;
}

.hot-item:nth-child(2) .hot-rank {
    color: #E53C3C!important;
}

.hot-item:nth-child(3) .hot-rank {
    color: #FD9030!important;
}

.hot-item:nth-child(4) .hot-rank {
    color: #F7BF42!important;
}

.hot-item .hot-detail {
    flex: 1;

}

.hot-title {
    font-weight: 400;
    font-size: 1.8rem;
    color: #191919;
    line-height: 2.3rem;
    height: 4.6rem;
}

.hot-detail .hot-bottom {
    display: flex;
    align-items: center;
    gap: 7rem;
    margin-top: 2rem;
}

.hot-detail .hot-bottom .hot-time {
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
}

.hot-detail .hot-bottom .hot-count {
    font-weight: 400;
    font-size: 1.6rem;
    color: #E37100;
    position: relative;
}

.hot-detail .hot-bottom .hot-count:before {
    content: "";
    position: absolute;
    left: -2.4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.4rem;
    height: 1.6rem;
    background-image: url("../images/icon-hot.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* 最新动态 */
.news-new-box {
    margin-top: 3rem;
    padding: 3rem 3rem 0 3rem;
    position: relative;
    background: linear-gradient( 180deg, #E2EFFF 0%, #FFFFFF 25%, rgba(255,255,255,0) 100%);

}

.news-new-box:after {
    content: "";
    position: absolute;
    top: 2.1rem;
    right: 1.9rem;
    width: 7.46rem;
    height: 8.89rem;
    background-image: url("../images/icon-news-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.news-new-box .new-item {
    padding: 3rem 0;
    border-bottom: .1rem solid rgba(238, 238, 238, 1);
    cursor: pointer;
}


.news-new-box .new-item:hover {
    background: rgba(35, 97, 172, .02);
}

.news-new-box .new-item img {
    width: 32rem;
    height: 20rem;
    margin-bottom: 2rem;
}

.news-new-box .new-item p {
    font-weight: 400;
    font-size: 2rem;
    color: #000000;
    line-height: 3rem;
    height: 6rem;
}

.news-new-box .new-item:nth-child(2) p {
    font-weight: bold;
}

/* 新闻详情 结束 */

/* 搜索 开始 */
.search-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 65rem;
}

.search-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 66.6rem;
    mix-blend-mode: luminosity;
    background-image: url("../images/zxly-page-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    z-index: -1;
}

.search-main-box {
    width: 160rem;
    margin: 0rem auto 10rem auto;
    display: flex;
    gap: 3rem;
}

.search-box {
    flex: 1;
    background: #ffffff;
    padding: 0rem 4rem;
    font-weight: 400;
    font-size: 1.8rem;
    color: #666666;
    line-height: 3rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.search-res-item {
    padding: 4rem 0;
    border-bottom: .1rem solid rgba(238, 238, 238, 1);
    cursor: pointer;
}

.search-res-item:last-child {
    border-bottom: none;
}

.search-res-item:hover .res-title-text {
    color: rgba(35, 97, 172, 1);
}

.search-res-title {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.search-res-title .res-tag {
    background: rgba(35, 97, 172, 1);
    border-radius: .5rem;
    padding: 0 3rem;
    height: 4rem;
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 4rem;
    flex-shrink: 0;
}

.search-res-title .res-title-text {
    font-size: 2.8rem;
    color: #191919;
    line-height: 4rem;
}

.search-res-summary {
    font-size: 1.8rem;
    color: #666666;
    line-height: 3rem;
    text-align: justify;
    margin-top: 3rem;
    height: 9rem;
}

.search-res-bottom {
    margin-top: 3rem;
    font-size: 1.8rem;
    color: #000000;
    line-height: 3rem;
}

.search-tip-box {
    width: 119rem;
    margin-left: 16rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 12.8rem;
}

.search-tip-box .search-tip-num {
    font-weight: 400;
    font-size: 2rem;
    color: #000000;
}

.search-tip-box .search-tip-num span {
    color: rgba(35, 97, 172, 1);
}

/* 时间下拉选择 */

.time-filter i {
    margin-left: 1.5rem;
    font-weight: 400;
    font-size: 2rem;
    color: #000000;
}
/* 容器相对定位，用于浮动面板定位 */
.time-filter {
    width: 40rem;
    position: relative;
    display: inline-block;
}

.time-filter-header {
    font-weight: 400;
    font-size: 2rem;
    color: #000000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    cursor: pointer;

}

.time-filter-header .icon-more{
    font-size: 1.2rem;
    margin-left: 1.5rem;
    transform: rotate(90deg);
}

.time-filter-header.active .icon-more {
    transform: rotate(270deg);
}

/* 下拉面板：浮动在上方，脱离文档流 */
.time-filter-body {
    display: none;
    position: absolute;
    top: 120%; /* 紧贴 header 下方 */
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    border: .1rem solid #d9e6f2;
    border-top: none;
    border-radius: 0 0 .5rem .5rem;
    box-shadow: 0 .4rem 1.2rem rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 2rem;
    box-sizing: border-box;
}

.time-filter-body.active {
    display: block;
}

.preset-options {
    margin-bottom: 2rem;
}

.preset-options label {
    display: block;
    padding: 1rem 0;
    color: #333333;
    cursor: pointer;
    font-size: 1.8rem;
}

.preset-options label:hover {
    color: rgba(35, 97, 172, 1);
}

.custom-range label {
    display: block;
    margin: 1rem 0;
    font-size: 1.8rem;
    color: #333;
}

.date-input {
    width: 100%;
    padding: 1rem;
    border: .1rem solid rgba(35, 97, 172, .6);
    border-radius: .5rem;
    font-size: 1.8rem;
    box-sizing: border-box;
}

.apply-btn {
    border: none;
    width: 100%;
    padding: 1rem;
    background-color: rgba(35, 97, 172, 1);
    color: #FFFFFF;
    border-radius: .5rem;
    font-size: 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 2rem;
}

.apply-btn:hover {
    background-color: rgba(35, 97, 172, .8);
}

.do-search-box {
    position: absolute;
    top: 55rem;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    gap: 3rem;
    z-index: 9;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.do-search-box.active {
    opacity: 1;
    visibility: visible;
}

.do-search-box .search-input {
    position: relative;
    width: 60rem;
    height: 6rem;
    background: rgba(255, 255, 255, .8);
    font-size: 2rem;
    border: .1rem solid rgba(255, 255, 255, 1);
    border-radius: .5rem;
    padding: 2rem 2rem 2rem 6rem;
}

.do-search-box .iconfont {
    color: rgba(35, 97, 172, 1);
    top: 50%;
    transform: translateY(-50%);
    left: .5em;
    font-size: 2.4rem;
    position: absolute;
    z-index: 9;
}

.do-search-box .search-btn {
    min-width: 16rem;
    text-align: center;
    height: 6rem;
    color: #ffffff;
    border: none;
    background: rgba(35, 97, 172, 1);
    cursor: pointer;
    border-radius: .5rem;
    font-size: 2.2rem;
}

.do-search-box .search-btn:hover {
    opacity: .8;
}

.do-search-box .power-search-btn {
    min-width: 16rem;
    text-align: center;
    height: 6rem;
    color: rgba(35, 97, 172, 1);
    background: rgba(255, 255, 255, .3);
    border: none;
    cursor: pointer;
    border-radius: .5rem;
    font-size: 2.2rem;
}

.do-search-box .power-search-btn:hover {
    background: rgba(255, 255, 255, .6);
}

.detail-page-title.title-center {
    margin: 0 auto;
    position: absolute;
    z-index: 5;
    top: 25rem;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}

/* 高级搜索 */
.do-power-search-box {
    position: absolute;
    top: 40rem;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 9;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    background: rgba(255, 255, 255, .6);
    padding: 3rem;
    border-radius: 1rem;
    display: flex;
}

.do-power-search-box.active {
    opacity: 1;
    visibility: visible;
}

.do-power-search-box .search-input {
    position: relative;
    width: 60rem;
    height: 6rem;
    background: rgba(255, 255, 255, .8);
    font-size: 2rem;
    border: .1rem solid rgba(255, 255, 255, 1);
    border-radius: .5rem;
    padding: 2rem 2rem 2rem 6rem;
}

.do-power-search-box .iconfont {
    color: rgba(35, 97, 172, 1);
    top: 50%;
    transform: translateY(-50%);
    left: .5em;
    font-size: 2.4rem;
    position: absolute;
    z-index: 9;
}

.do-power-search-box .search-btn {
    min-width: 16rem;
    text-align: center;
    height: 6rem;
    color: #ffffff;
    border: none;
    background: rgba(35, 97, 172, 1);
    cursor: pointer;
    border-radius: .5rem;
}

.do-power-search-box .search-btn:hover {
    opacity: .8;
}

.do-power-search-box .power-search-btn {
    min-width: 16rem;
    text-align: center;
    height: 6rem;
    color: rgba(35, 97, 172, 1);
    background: rgba(255, 255, 255, .3);
    border: none;
    cursor: pointer;
    border-radius: .5rem;
}

.do-power-search-box .power-search-btn:hover {
    background: rgba(255, 255, 255, .6);
}

.search-condition-box {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 100%;
}

.condition-content {
}

.condition-title {
    color: #333333;
    font-size: 2.4rem;
    font-weight: bold;
    min-width: 18rem;
    text-align: right;
}

.condition-input {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 2rem;
}

.condition-input div {
    color: #000000;
    font-size: 2rem;
    width: 32rem;
    text-align: right;
}

.search-input2 {
    position: relative;
    width: 40rem;
    height: 4rem;
    background: rgba(255, 255, 255, .8);
    font-size: 2rem;
    border: .1rem solid rgba(255, 255, 255, 1);
    border-radius: .5rem;
    padding: 2rem 2rem 2rem 2rem;
}

.condition-radio-box label {
    font-size: 2rem;
    color: #000000;

}

.condition-radio-box input[type="radio"] {
    width: 2rem;
    height: 2rem;
    margin-bottom: -.2rem;
    margin-right: .4rem;
    margin-left: 2rem;
    /* 可选：移除默认样式 */
    appearance: none;
    -webkit-appearance: none;
    border-radius: 50%;
    border: .2rem solid #999;
    background: #fff;
}

.condition-radio-box input[type="radio"]:checked {
    background: rgba(35, 97, 172, 1);
    border-color: #FFFFFF;
}

.do-power-search-box .search-btn {
    margin-right: 3rem;
    font-size: 2rem;
}

.do-power-search-box .power-search-btn {
    font-size: 2rem;
}
/* 搜索 结束 */

/* 面包屑 开始 */
.breadcrumb-box {
    display: flex;
    align-items: center;
    width: 160rem;
    padding-top: 5rem;
    margin: 0 auto;

}

.breadcrumb-box .breadcrumb-icon {
    width: 2rem;
    height: auto;
    margin-right: 1rem;
}

.breadcrumb-box .breadcrumb-item {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333333;
}

.breadcrumb-box .breadcrumb-right {
    width: 1.4rem;
    height: auto;
    margin:0 1rem;
}

.breadcrumb-box .breadcrumb-item.actice {
    color: #2361AC;
}

/* 面包屑 结束 */
