@charset "utf-8";

.home-page {
    font-size: 1.4rem;
    position: relative;
}

.top-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: 13rem;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

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

.top-header .right {
    display: flex;
    align-items: center;
    padding: 0 0 0 2rem;
    justify-content: space-between;
}

.top-header-fixed {
    position: fixed;
    top: -8rem;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 8rem;
    background: rgba(35, 97, 172, 1);
    transition: top 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 192rem;
}

.top-header-fixed.show {
    top: 0;
}

.top-header-fixed .logo {
    cursor: pointer;
    margin-left: 3rem;
    height: 4rem;
}

.top-header-fixed .right {
    display: flex;
    align-items: center;
    padding: 0 0 0 2rem;
    justify-content: space-between;
}

/* 快捷导航 */
.nav-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.1rem 0;
    align-items: end;
    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-bottom {

}

.nav-menu {
    position: relative;
    z-index: 9999;
}

.nav-container {
    max-width: 120rem;
    margin: 0 auto;
    padding-left: 2rem;
}

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

.nav-item {
    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: 1.5rem 2.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    transition: background-color 0.3s;
}


a.nav-link:hover {
    color: #ffffff;
}

.top-header-fixed .nav-container {
    max-width: 140rem;
}

.top-header-fixed .nav-link {
    padding: 1.5rem 3.5rem;
}

/* 二级菜单样式 */
.submenu {
    position: absolute;
    top: 5.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 18rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .3);
    background-color: rgba(255, 255, 255, .8);
    border-radius: .8rem;
    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;
}

.submenu-link:hover {
    background-color: rgba(255, 255, 255, .9);
    border-radius: .6rem;
}

/* 三级菜单样式 */
.subsubmenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 18rem;
    background-color: rgba(255, 255, 255, .8);
    border-radius: .8rem;
    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;
    border-radius: .6rem;
}

/* 打开菜单页 */
.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-mask {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 4;
    pointer-events: none;

}

img.banner-mask {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    pointer-events: none;
    background-position: center;
    vertical-align: middle;
}

.banner-scroll-mask {
    position: absolute;
    bottom: 0;
    left: calc(50% - 22rem);
    width: 43.2rem;
    height: 21.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
}

.banner-scroll-mask img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    height: 100%;
}

.banner-scroll-mask i {
    color: #ffffff;
    font-size: 1.6rem;
    z-index: 5;
    animation: scrollBounce 2s infinite;
}

.banner-scroll-mask span {
    margin-top: 2rem;
    color: #ffffff;
    font-size: 1.8rem;
    z-index: 5;
    animation: scrollBounce 2s infinite;
    animation-delay: 0.1s;
}

/* 向下滑动跳动动画 */
@keyframes scrollBounce {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(1rem);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner {
    width: 100%;
    height: 100vh;
    margin-top: 0;
}

.banner .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    background-size: cover;
    background-position: center;
}

.banner .swiper-slide a {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
}

.banner .banner-next, .banner-prev {
    width: 7rem;
    height: 7rem;
    background: rgba(35, 97, 172, .5);
    border-radius: 17.6rem 17.6rem 17.6rem 17.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .banner-next:hover, .banner-prev:hover {
    background: rgba(35, 97, 172, .8);
    transition: all 0.3s ease;
}

.banner .swiper-button-prev {
    left: 9rem !important;
}

.banner .swiper-button-next {
    right: 9rem !important;
}

.banner .banner-prev i {
    width: 7rem;
    margin-right: 3rem;
    color: #ffffff;
    font-size: 1.4rem;
    transform: scaleX(-1);
}

.banner .banner-next i {
    width: 7rem;
    margin-left: 3rem;
    color: #ffffff;
    font-size: 1.4rem;
}

.banner .swiper-navigation-icon {
    display: none;
}

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

.banner .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: -1rem;
}

.banner .slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    width: 1.3rem;
    height: 1.3rem;
    background: rgba(255, 255, 255, .7);
    border-radius: 50%;
    transition: .5s;
    top: 50%;
    left: 50%;
    margin: -0.065rem 0 0 -0.065rem;
    opacity: 1;
}

.banner .swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    width: 3.1rem;
    height: 3.1rem;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAAAXNSR0IArs4c6QAACq9JREFUeF7tXYvR3DQQtiuBVBJSCaQSoBJCJSSVkFRiZjWSkXWS9qmHz7qZzM9wPmsf3z6ltfdtfR4tgf3R3C/mtwWAh4NgAWAB4OESeDj7ywMsADxcAg9nf3mABYCHS+Dh7C8PsADwcAk8nP3lARYAHi6Bh7P/WA9wHMfP27bBP/h83/f9+xOx8CgAHMfxy7Ztv2/bBn/TTwDAn/u+f3kKGB4DAG/x/xIV+2nf96/Ea2992ZMAAFb/D1FbCwBEQd3mMu/+FwASjS0PkIfw8gC3MW0iocsD5AW1PMDyAEQTuvllywMsD7CqgAwG3iYE+Do/1+AJbH/ctu03oiP7E7qDtWvfpVn0FgBgunciBtDL3qJSeBcA/MWwblSzxAu+7vv+iXjttJe9CwCgxRs2dnoJGzaQPvRarNU67wKAo5WAkDzg9vK7PQPMTR5rnHy4+zayOQCO4wiZNmTduc8P/z9ht029D/8OAEhkFoeyuBIBuZnILFaKCQA8A6BwKMO4sThsu7rSi2tRIwGw77tIfkp5gf5AZn/DX668UosUMQA3QQ5XaFwtHMaAQxnkEzrHccAuX60HoKGn+FsOACKlU3sRVJoBDJ858lJ7gOM4epRdDuWUhksnelKFfNn3/TOmJa94OIXE9YzYrV/o4RoO3IDlAY7j+MMfqeISp7keRfiAMADeCayueGqooYfEZAmgJIcGMgBGudmIW8gRwOqyocGDoCYcsEDqgRAnxNLNMHc7yCPF5FZlxQ4BEyg/0AzKFx3aZLaLRW1e5hqYJWu/Rz0nGgK8VUG8755gIdwDCCAckT9M5bABMCg8YvyjICiGgImVH5hmgaAlACbykDlAgNcEQGdDZw0AQ0orDNLJ9+RY1woAkysfNZYsAHzpAq7/Dh/UzQET1gC4gYdMdZf1mC8AGFBSWYAMDQcNAHAHD5nK9mXvIgeAOzIGjFZBYAmASRM+iiG9yOgCAGPGIOmAfnWcfMB/Q0Xxq6fWujtWzN6ZACju8jUOj9AG/5aRDcjLSlbQwDpnH1MAWFg/3BxauOhsXaM2KaY8EGaprK32GZggolgkXEPa+/BrB9o1YLi0sE8AGMR+tD1akohnDpJODWNxs6hY9viEMKxzrocB1kA+KfsXS6SixUhWp5HEAND0+U3Oxxm2UElWRRW6B42Fd3QWT9lEwmhTyuoEXwwA6bk6E4YCw0YIR5NCTMDx90a1vthDVjyn1GhPg3UAULi3JgcjPT1gcdqQgJaHGBCMEmNSrwKjJff9cRxSw3VhIAAADilIGj9qAVfQHXbvtCAQn9szSvpMwiOSP1F3OePbuIopAEDiSppYf8qoAuHkpLBgWQA86hNFSvppqvwobEoO6Lg8QAMA09jf2BNUN0QyoLPwPl0MxIdwCQCc9w4AEN9AEre4vzHKCcjhyiDp66Z8DwBJCHcGHAAgKXHYe+ZcxSeZuCRMpUuiIDBK+nrLhjP5HGTiwlMAgCST7MqkR7oFCLBOoSQZjoEmavAojUOSr6gB0J1RDwKJt4rlm80HFKVwfO8ueVEmZ5GEgAsAJDnAEAB4EEg8VhEERsrvkvEXKhaJZ1QngUPQHjWutI2iMx9QtlWBpK5JX8YDSLziBQASFwJ0iJssmpgX5QPabVInBINdye75UNQDkMR/+PmlESTJIuEmaFatVXTt90YZuwtlinsNC4XKxPh/APgbSWfsh3kBRRMkxZXjQQCCYWEwCoWibmWYazTZDZTMpFl6Bst2MeNew5K+yP1LYv8lZ7E6DzA6FFi0bt0Rcy9cLMEcmvQZlMOnvtITQRjjNcMdDQJIZLVTuCEpxAA1LOkzCHsX8FofCr1rQhQDO4CgVFuPVr60Ygs8Xgw1BQCGfEroHu0JJE0RalJ4d95eQlduLsBCgKMFZdYpjJLCoUmfQbMqW7aXRsO0AnSL1eb5Ka5Eeo3R9rE7WOpp+GvkQyENtqeL3coSACy8ACza7CwcBg4jEIz2ZNCgszoun81datPBViDYOA9TwhTL+V7Q2MndfhgIGD0JTCxFHqqPiDFwPcM8QNQssQDykG6n0QRytVtZCgHgdtyj2hQoHGk5UM0AD+7xaQoeAo5YZwoxc+R+r/BkLnGNwuHLxFStCjiZFghwdK0cWqSOB2J3D9PLDCDg7H6mygejQKeD063F04UzypDRyk9dPrW7hwEgW0ZRfmR1DWNqyrn9Qgi5hDNKJzD2BFg8Ha380rY21t3j6GhYaPNtYNBBzROE7e0QBtNJ6HwnEDkWFYOgVJqMbgNjByOkW745cAxJCpHE9pw9JEw0iaeDY3TBxkt47u0M++LYRlYMYuk26hRJYeQJQAfwOeVPTBiz08FUocR5gXvah8W4M8cHp9cyylVNYpsuOzQp9CCASsc9jINZMl6ng/3NuCeCWM+k1Si49lsi4uNbvE1SqOx1XKaDsfhZ0sHouC/dGn2npFAqA5NDocOSIUKigzkdJwCBB5kqKVTMNKing4cdi1IwHSvvjIOMHkcJVEPzAUYOFNN/GQ7F6vsc48PqYSHDMQ8v4BV0O6dJCoWPrruMhlErgJdkCvOz1t8bWCuQ9NKwuvP2sQUAJAdAuieAQkZTDBbpNpgQgrW6e0ZhPuS84J2eDyCdXmJ5LaOksGtL3AIAU08HWyd9WFgyAkG3CknoGdXj4d3avy2SPgIIJGHxkmjWXtSArc/5XgjYSxUgbSY0R7mB8rNJHyZgo6Swy4koYQVzGQ+XxtemCc8o5UctVos5iaYgEMb/M1kNSaAUAE0aIMyNjZoxqwEqdK8pTc1AILT+0ytaTAerhRxLy/CFi2aDHEYgMDcWBV1nI8xqOtjk6dwKhl66clDjYnGe873C0tJlTAZmlOHxdToYqFQyKUa4L2NqL3Lg6EpMR20Ro6QwLAEhAZSAvlQjpckoPL6eCPIAkPQDxAg3Vnygo1kTxhgEQC/rNfDCer/qHdNDodJyMGc8wBy8/wYsMrw3CLJq+PdTdJyMY93Ytc3b04ZhKpcogrxirxCelG7lHc/sPyz+Tm8N69mYkuyeYuDt8T1pPNyi9u3BTLyGWcZPJdxoV5K6nNV1L+Gx9XSwFeG1+3RXfiBGmTT3kE28RrZcr00HS84I9GZqmPIjEFgkzq3lVjy9VQPA7KFguPIjEMycE8jeHu7LwllBYNp9tDC/htWBhjz0TWXV5wNMGuua1fkaSXuDsXhUnZaM8HtSQ4wEAM/c6Fhn0m62km7tPhNUCOTwSAZABALYOdS+yo2jB9SNcW7W61rGKLc1Sax+CAsAUV4QD4ZaM4CWLi0XtL630UFTClmi/QU2AKK8ADwBAKH0Jm4K0blryG8fly4w4neGb/9OyRcpPtxEDIAECACCjz40SMIDKN31weGZPiMU1HPNaBMs7I1wlwd5/bB4DqMaACnlHukACNjwgU8KCFAwEA9/H6FwJGEMIAhGlF4eG8Q3eLkFFy21680BYEnculd7CSwAtJfx1CssAEytnvbELQC0l/HUKywATK2e9sQtALSX8dQrLABMrZ72xC0AtJfx1CssAEytnvbELQC0l/HUKywATK2e9sQtALSX8dQrLABMrZ72xC0AtJfx1CssAEytnvbELQC0l/HUKywATK2e9sQtALSX8dQrLABMrZ72xC0AtJfx1Cv8ByGLQdujzOnqAAAAAElFTkSuQmCC") 50% no-repeat;
    transition: .5s;
    left: calc(50% - 0.9rem);
    top: calc(50% - 1.1rem);
    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);
}

/* 导航页 开始 */
.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;
    cursor: pointer;
}

.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;
}

/* 导航页 结束 */


/* 第一行 栏目 开始 */
.home-row-1 {
    position: relative;
    width: 192rem;
    padding-top: 10.4rem;
}

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

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

.home-row-box-1 {
    width: 160rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.row-head-box {
    width: 160rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5.5rem;
    margin-left: auto;
    margin-right: auto;
    z-index: 9;
}

.row-head-box .row-head-left {
    display: flex;
    align-items: center;
    position: relative;
}

.row-head-box .title-left-text img {
    width: 11rem;
    height: 6.87rem;
    position: absolute;
    left: .6rem;
}

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

.row-head-box .title-right-text {
    height: 5.6rem;
    line-height: 5.6rem;
    font-weight: 800;
    font-size: 4rem;
    color: #000000;
    letter-spacing: .4rem;
}

.row-head-box .title-en-text {
    margin-left: 2rem;
    height: 5.6rem;
    font-weight: 800;
    font-size: 4rem;
    color: rgba(0, 0, 0, .1);
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.row-head-right {
    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;
}

.row-head-right .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;
}

.row-head-right .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;
}

.row-head-right .row-head-more-icon i {
    color: #2361AC;
    font-size: 1.2rem;
}

.home-col-1 {
    width: 37.5rem;
    flex-shrink: 0;
}

.home-col-1-line {
    border-bottom: .1rem solid rgba(238, 238, 238, 1);
    padding: 3rem 0;
    cursor: pointer;
    position: relative;
}

.home-col-1-line:hover {
    color: rgba(35, 97, 172, 0.9);
}

.home-col-1-line::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: .2rem;
    background-color: rgba(35, 97, 172, 0.9);
    transition: width .5s ease-in-out;
}

.home-col-1-line:hover::before {
    width: 100%;
    height: .2rem;
    background-color: rgba(35, 97, 172, 0.9);
    transition: width .5s ease-in-out;
}

.home-col-1-line:first-child {
    padding-top: 0;
}

.home-col-1-line:last-child {
    border-bottom: 0;
}

.home-col-1-line img {
    width: 37.5rem;
    height: 23rem;
    object-fit: cover;
    margin-bottom: 2rem;
}

.home-col-1-line p {
    width: 37.3rem;
    font-size: 2rem;
    color: #333333;
    line-height: 3rem;
    height: 6rem;
    font-weight: 500;
    text-align: justify;
    text-justify: inter-word;
    transition: .5s;
}

.home-col-1-line:hover p {
    color: rgba(35, 97, 172, 0.9);
    font-weight: 600;
    transition: .5s;
}

.home-col-2 {
    width: 75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.6s ease;
    flex-shrink: 0;
}

.home-col-2 .swiper-slide {
    background-size: cover;
    background-position: center;
    cursor: pointer;
}


.home-col-2 .swiper-slide img {
    width: 75rem;
    height: 50rem;
    object-fit: cover;
    vertical-align: middle;
}

.home-col-2 .swiper-slide article {
    padding: 3rem 6.5rem 9rem 6.5rem;
    border-left: .1rem solid rgba(238, 238, 238, 1);
    border-right: .1rem solid rgba(238, 238, 238, 1);
}

.home-col-2 .swiper-slide article .col-2-time {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    line-height: 3.3rem;
    font-weight: bold;
    font-size: 3rem;
    color: #2361AC;
    transition: .5s;
}

.home-col-2 .swiper-slide article .col-2-title {
    font-weight: bold;
    font-size: 2.4rem;
    color: #000000;
    line-height: 3.8rem;
    margin: 3rem 0;
    transition: .5s;
}

.home-col-2 .swiper-slide article .col-2-summary {
    font-size: 1.2rem;
    transition: .5s;
    line-height: 2.1rem;
    height: 8.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
}


/* 鼠标选中 开始 */

.home-col-2 .swiper-slide::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: rgba(35, 97, 172, 1);
    transform-origin: bottom left;
    transition: width 0.6s ease-out, height 0.6s ease-out;
    pointer-events: none;
    z-index: -1;
}

.home-col-2 .swiper-slide:hover::before {
    width: 100%;
    height: 100%;
}

.home-col-2 .swiper-slide:hover .col-2-time {
    color: #ffffff;
    transition: 0.6s;
}

.home-col-2 .swiper-slide:hover .col-2-title {
    color: #ffffff;
    transition: 0.6s;
}

.home-col-2 .swiper-slide:hover .col-2-summary {
    color: #ffffff;
    transition: 0.6s;
}

/* 鼠标选中 结束 */

.home-col-2 .next, .prev {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.home-col-2 .row-1-swiper-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    padding: 0 6rem;
    bottom: 2.5rem;
    z-index: 66;
}

.home-col-2 .swiper-prev {
    color: rgba(35, 97, 172, 1);
    cursor: pointer;

}

.home-col-2 .swiper-next {
    color: rgba(35, 97, 172, 1);
    cursor: pointer;
}

.home-col-2 .swiper-pagination {
    bottom: 2.5rem;
}


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

.home-col-2 .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: rgba(35, 97, 172, .1);
    border-radius: 50%;
    transition: .5s;
    top: 50%;
    left: 50%;
    opacity: 1;
}

.home-col-2 .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);
}

.home-col-2 .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    opacity: 0;
}

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


/* 第一行 栏目 结束 */

/* 第二行 栏目 开始 */
.home-row-2 {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 18.7rem;
}

/* 左侧导航栏 */
.home-row-2 .sidebar {
    width: 40rem;
    height: 72.2rem;
    background: rgba(35, 97, 172, 1);
    color: white;
    border-radius: 0rem 5rem 0rem 0rem;
    padding: 10rem 0rem 0rem 8rem;
    position: relative;
    background-image: url("../images/col2-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home-row-2 .sidebar-item {
    display: flex;
    align-items: center;
    padding-bottom: 11rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 3rem;
    color: #fff;
    font-weight: lighter;
    position: relative;
}

.home-row-2 .sidebar-item:hover {
    color: rgba(255, 255, 255, .6);
}

.home-row-2 .sidebar-item.active {
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: .4rem;
}

.home-row-2 .sidebar-item i {
    font-size: 3rem;
    width: 3rem;
    margin-right: 4.5rem;
}

.home-row-2 .sidebar-item.active i {
    font-size: 4rem;
    margin-right: 4rem;
}

.home-row-2 .sidebar-item .sidebar-active-tag {
    background: #ffffff;
    position: absolute;
    right: -2rem;
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    border: .2rem solid rgba(35, 97, 172, 1);
    z-index: 2;
    display: none;
    box-sizing: border-box;
}

.home-row-2 .sidebar-item .sidebar-active-tag i {
    position: absolute;
    font-size: 1.6rem;
    margin: 0;
    top: .6rem;
    left: 1rem;
    color: rgba(35, 97, 172, 1);
}

.home-row-2 .sidebar-item.active .sidebar-active-tag {
    display: block;
}


.home-row-2 .sidebar-footer {
    margin-left: 7.6rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 3rem;
    color: #fff;
    font-weight: lighter;
    position: relative;
}

.home-row-2 .sidebar-footer span {
    color: #fff;
}

.home-row-2 .sidebar-footer i {
    margin-left: 5.4rem;
    font-size: 2.4rem;
}

/* 右侧内容区域 */
.home-row-2 .content {
    flex: 1;
}

.home-row-2 .content-block {
    flex: 1;
    display: none;
    animation: fadeIn 1s ease;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 5rem 16rem 0rem 5rem;
}

.home-row-2 .content-block.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(1rem);
    }
}


.home-row-2 .card {
    border-radius: 2.5rem;
    background: white;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    border: 0.1rem solid #EEEEEE;
}

.home-row-2 .card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: .4rem;
    height: 0;
    background-color: rgba(35, 97, 172, 0.9);
    transition: height .6s ease-in-out;
}

@keyframes slideDown {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

.home-row-2 .card:hover::before {
    animation: slideDown .6s ease forwards;
}

.home-row-2 .card-title {
    font-weight: bold;
    font-size: 2rem;
    color: #000000;
    line-height: 2.8rem;
    height: 5.6rem;
    margin-bottom: 2.1rem;
}

.home-row-2 .card-content {
    display: -webkit-box;
    height: 9rem;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 3rem;
    line-clamp: 3;
    display: -webkit-box;
}

.home-row-2 .view-detail {
    color: #666666;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.home-row-2 .view-detail a {
    color: #666666;
}

.home-row-2 .view-detail i {
    font-size: 1.4rem;
    text-decoration: none;
    display: inline-block;
    transform: scale(0.6);
}

.home-row-2 .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    line-height: 2.2rem;
    color: #666666;
}

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

.home-row-2 .card:hover .card-header,
.home-row-2 .card:hover .card-title,
.home-row-2 .card:hover .view-detail,
.home-row-2 .card:hover .view-detail a {
    color: rgba(35, 97, 172, .9);
}

.home-row-2 .row-head-right {
    display: none;
}

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

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

/* 第二行 栏目 结束 */

/* 第三行 栏目 开始 */
.home-row-3 {
    position: relative;
    width: 100%;
    padding: 10rem 0;

}

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

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

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

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

.row-head-box2 .title-left-text img {
    width: 11rem;
    height: 6.87rem;
    position: absolute;
    left: .6rem;
}

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

.row-head-box2 .title-right-text {
    height: 5.6rem;
    line-height: 5.6rem;
    font-weight: 800;
    font-size: 4rem;
    color: #000000;
    letter-spacing: .4rem;
}

.row-head-box2 .title-en-text {
    margin-top: 2.5rem;
    height: 5.6rem;
    font-weight: 800;
    font-size: 4rem;
    color: rgba(0, 0, 0, .1);
    text-align: center;
    font-style: normal;
    text-transform: none;
}


.home-col-3 {
    width: 100vw;
    text-align: center;
    position: relative;
    padding-top: 3rem;
}

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

.home-col-3 .swiper-slide img {
    width: 40rem;
    height: 60rem;
    object-fit: cover;
    vertical-align: middle;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    border-radius: 2.5rem;
}


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

.home-col-3 .col3-swiper-button {
    width: 100%;
    text-align: center;
    margin: 5rem auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

/*.home-col-3 .col3-swiper-button .col3-swiper-button-prev
,.home-col-3 .col3-swiper-button .col3-swiper-button-next {
    width: 5.6rem;
    height: 5.6rem;
    background: rgba(35, 97, 172, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(35, 97, 172, 1);
    cursor: pointer;
}

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

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

.home-col-3 .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, 1);
    color: rgba(255, 255, 255, 1);
}

.home-col-3 .col3-swiper-button .col3-swiper-button-prev:hover, .home-col-3 .col3-swiper-button .col3-swiper-button-next:hover {
    opacity: .8;
}

.home-col-3 .col3-swiper-button .col3-swiper-button-prev i {
    margin-right: .6rem;
    line-height: 5.6rem;
    font-size: 1.4rem;
    transform: scaleX(-1);
}

.home-col-3 .col3-swiper-button .col3-swiper-button-next i {
    margin-left: .6rem;
    line-height: 5.6rem;
    font-size: 1.4rem;
}

/* 第三行 栏目 结束 */

/* 第四行 栏目 开始 */
.home-row-box-2 {
    width: 100%;
    padding-left: calc((100% - 160rem) / 2);
    display: flex;
    overflow-x: hidden;
}

.home-col-4 .info-panel {
}

.home-col-4 .info-panel .info-panel-head {
    width: 67.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-col-4 .info-panel .info-panel-head .info-panel-title {
    font-weight: bold;
    font-size: 4rem;
    color: #000000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left top;
}


.home-col-4 .info-panel .info-panel-summary {
    width: 67.2rem;
    margin-top: 3.7rem;
    margin-bottom: 5rem;
    display: -webkit-box;
    height: 16rem;
    font-weight: 400;
    font-size: 2.4rem;
    color: #333333;
    line-height: 4rem;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    text-align: justify;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left top;
}


.home-col-4 .info-panel-title.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.home-col-4 .info-panel-summary.fade-out {
    opacity: 0;
    transform: translateY(-5px);
}

.home-col-4 .info-panel-title.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.home-col-4 .info-panel-summary.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.home-col-4 .col4-swiper-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.home-col-4 .col4-swiper-button .col4-swiper-button-prev, .home-col-4 .col4-swiper-button .col4-swiper-button-next {
    width: 5.6rem;
    height: 5.6rem;
    background: rgba(35, 97, 172, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(35, 97, 172, 1);
    cursor: pointer;
}

.home-col-4 .col4-swiper-button .col4-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, 1);
    color: rgba(255, 255, 255, 1);
}

.home-col-4 .col4-swiper-button .col4-swiper-button-prev:hover, .home-col-4 .col4-swiper-button .col4-swiper-button-next:hover {
    opacity: .8;
}

.home-col-4 .col4-swiper-button .col4-swiper-button-prev i {
    margin-right: .6rem;
    line-height: 5.6rem;
    font-size: 1.4rem;
    transform: scaleX(-1);
}

.home-col-4 .col4-swiper-button .col4-swiper-button-next i {
    margin-left: .6rem;
    line-height: 5.6rem;
    font-size: 1.4rem;
}

/* 切换按钮 */
.home-row-4 {
    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 .view-detail {
    color: rgba(35, 97, 172, .9);
    font-size: 1.8rem;
    text-decoration: none;
    display: flex;
    justify-content: left;
    align-items: center;
}

.home-row-4 .view-detail a {
    color: rgba(35, 97, 172, .9);
}

.home-row-4 .view-detail i {
    margin-left: .4rem;
    font-size: 1.4rem;
    text-decoration: none;
    display: inline-block;
    transform: scale(0.8);
}

.home-col-4-swiper {
    margin-left: 7.5rem;
}

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

.home-col-4 .swiper-slide img {
    width: 32rem;
    height: 32rem;
    object-fit: cover;
    vertical-align: middle;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    background-image: url("../images/leader-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

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

/* 头像 */
.home-col-4 .swiper-slide.swiper-slide-active img {
    border: .6rem solid rgba(35, 97, 172, 1);

}

/* 第四行 栏目 结束 */

/* 第五行 时间轴 开始 */
.home-row-5 {
    width: 100vw;
    margin-top: 17rem;
    position: relative;
}

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

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

.home-row-5 .swiper-slide{
    text-align: center;
    position: relative;
    width: 45.58rem;
    height: 100%;
}

.home-col-5 {
    padding-top: 3rem;
}

.home-col-5 .time-news-box {
    position: relative;
    height: 25.2rem;
    width: 40rem;
    z-index: 0;
    margin: 0 auto;
    cursor: pointer;
}


.home-col-5 .time-news-box::after {
    z-index: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 38, 64, .6); /* 初始的半透明黑色覆盖层 */
    transition: background 0.3s ease; /* 平滑过渡效果 */
}

.home-col-5 .time-news-box:hover::after {
    background: rgba(35, 97, 172, 1);
}

/*.home-col-5 .swiper-slide.swiper-slide-active .time-news-box::after {
    background: rgba(35, 97, 172, 1);
}*/

.home-col-5 .time-news-box .time-news-body{
    position: relative;
    z-index: 3;
    padding: 4rem 3rem 3rem 3rem;
    color: #ffffff;
    text-align: left;
}

.home-col-5 .time-news-body .time-news-title{
    font-weight: bold;
    font-size: 2rem;
    color: #FFFFFF;
    line-height: 2.8rem;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.home-col-5 .time-news-body .time-news-summry{
    margin-top: 2rem;
    margin-bottom: 3rem;
    width: 34rem;
    height: 9rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, .7);
    line-height: 3rem;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    text-align: justify;
    line-clamp: 3;
    display: -webkit-box;
}

.home-col-5 .view-detail a {
    color: rgba(255, 255, 255, .7);
}

.home-col-5 .view-detail i {
    font-size: 1.4rem;
    text-decoration: none;
    display: inline-block;
    transform: scale(0.6);
}

.home-col-5 .time-times {
    display: flex;
    margin-top: 3rem;
}

.time-times {
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-times::before,
.time-times::after {
    content: "";
    flex-grow: 1;
    height: .2rem; /* 线条粗细 */
    background-image: repeating-linear-gradient(
            90deg,
            rgba(35, 97, 172, 0.3) 0,
            rgba(35, 97, 172, 0.3) 1rem, /* 虚线段长度 */
            transparent 1rem,
            transparent 2rem /* 总周期：1rem实线 + 1rem空白 */
    );
}


.home-col-5 .time-times .time-times-info {
    padding: 0 3.2rem;
    position: relative;
    z-index: 1;
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 3.6rem;
    color: #000000;
}

.home-col-5 .swiper-slide:hover .time-times .time-times-info {
    color: rgba(35, 97, 172, 1)!important;
}

/* 用来显示左右补充的时间线 */
.home-col-5 .time-times .time-times-info2 {
    height: 3.6rem;
    padding: 0;
    position: relative;
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 3.6rem;
    color: #000000;
    visibility: hidden;
    z-index: -1;
}

.home-col-5 .time-line-bg {
    margin-top: 1rem;
    margin-bottom: -1rem;
    width: 6.2rem;
    height: 11.9rem;
    position: relative;
    z-index: 2;
}

.home-col-5 .time-line-bg img{
    width: auto;
    height: 11.9rem;
}

.home-col-5 .time-wave-bg{
    width: 45.58rem;
    position: relative;
}

.home-col-5 .time-wave-bg img{
    width: 100%;
    height: 100%;
    z-index: -1;
}

.time-wave-bg.temp {
    margin-top: 43.7rem;
    margin-right: -.2rem;
}

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

/* 第六行 视说 开始 */
.home-row-6 {
    position: relative;
    width: 100%;
    margin-top: -12rem;
    z-index: 10;

}

/* 标题头 */
.home-row-6 .row-head-box {
    margin-bottom: 7.5rem;
}

.home-row-6 .title-left-text span
,.home-row-6 .title-right-text span{
    color: #ffffff;
}

.home-row-6 .title-en-text span{
    color: rgba(255, 255, 255, .1);
}

.home-row-6 .row-head-right {
    background: rgba(255, 255, 255, .1);
}

.home-row-6 .row-head-right .row-head-more-text {
    color: #ffffff;
}

.home-row-6 .row-head-right .row-head-more-icon {
    background: rgba(255, 255, 255, .1);
}

.home-row-6 .row-head-right .row-head-more-icon i {
    color: #ffffff;
}

.row-6-bg {
    display: block;
    position: absolute;
    top: -32rem;
    left: -2.4rem;
    width: calc( 100% + 2.4rem );
    height: 76.4rem;
    z-index: -1;
    object-fit: cover;
    object-position: top;
    pointer-events: none;
    opacity: .1;
}

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

.home-col-6 .swiper-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

.home-col-6 .swiper-carousel .swiper-slide, .swiper-carousel swiper-slide {
    position: relative;
}


.home-col-6 {
    width: 160rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.home-row-6:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30rem;
    background-color: rgba(35, 97, 172, 1);
    z-index: -1;
}

.home-col-6 .swiper-slide {
    background-size: cover;
    background-position: center;
    width: 100rem;
    height: 60rem;
    box-sizing: border-box;
}

.home-col-6 .swiper-slide img {
    width: 100rem;
    height: 60rem;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 2.5rem;
}

.home-col-6 .swiper-slide.swiper-slide-active .slide-img-wrapper {
    position: relative;
}

.home-col-6 .swiper-slide .slide-img-wrapper:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100rem;
    height: 60rem;
    background: rgba(0, 0, 0, .4);
    border-radius: 2.5rem;
    z-index: 2;
}

.home-col-6 .swiper-slide.swiper-slide-active .slide-img-wrapper:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100rem;
    height: 18.7rem;
    background: linear-gradient( 180deg, rgba(35,97,172,0) 0%, #2361AC 100%);
    border-radius: 2.5rem;
    pointer-events: none;
}

/* 视说标题 */

.home-col-6 .swiper-slide .slide-img-wrapper .slide-title {
    display: none;
    pointer-events: none;
}

.home-col-6 .swiper-slide.swiper-slide-active .slide-img-wrapper .slide-title {
    position: absolute;
    width: 100rem;
    padding: 4rem 9rem;
    bottom: 0;
    text-align: center;
    font-weight: bold;
    font-size: 2.4rem;
    color: #FFFFFF;
    z-index: 2;
    display: block;
}


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

.home-col-6 .col6-swiper-button {
    width: 100%;
    position: absolute;
    z-index: 6;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120rem;
    pointer-events: none;
}
.home-col-6 .col6-swiper-button .col6-swiper-button-prev
,.home-col-6 .col6-swiper-button .col6-swiper-button-next {
    width: 5.6rem;
    height: 5.6rem;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(35, 97, 172, 1);
    cursor: pointer;
    pointer-events: all;
}

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

.home-col-6 .col6-swiper-button .col6-swiper-button-prev i {
    margin-right: .6rem;
    line-height: 5.6rem;
    font-size: 1.4rem;
    transform: scaleX(-1);
}

.home-col-6 .col6-swiper-button .col6-swiper-button-next i {
    margin-left: .6rem;
    line-height: 5.6rem;
    font-size: 1.4rem;
}

.home-col-6 .slide-video2 {
    width: 100rem;
    height: 60rem;
    border-radius: 2.5rem;
    object-fit: cover;
    display: inline-block;
}

.home-col-6 img.poster-layer {
    position: absolute;
    width: 100rem;
    height: 60rem;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.home-col-6 .swiper-slide.swiper-slide-active img.poster-layer {
    display: none;
}
/* 第六行 视说 结束 */

/* 第七行 媒体聚焦 开始 */

.home-row-7 {
    position: relative;
    padding: 10rem 0;
}

.home-col-7 {
    width: 160rem;
    margin: 0 auto;
}

.row-7-bg {
    display: block;
    position: absolute;
    top: -30rem;
    width: 100%;
    height: auto;
    z-index: -1;
    object-fit: cover;
    pointer-events: none;
    background: #ffffff;
}

.home-row-7 .row-7-bg-m {
    display: none;
}

.home-row-7 .home-col-7 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 桌面三列 */
    grid-template-rows: 1fr 1fr 1fr;   /* 桌面三行 */
    gap: 3rem;
    height: auto;
}

.home-row-7 .col7-grid-item
,.home-row-7 .col7-grid-item2 {
    position: relative;
    cursor: pointer;
}

.home-row-7 .col7-item1 {
    background: #ffffff;
    grid-column: 1;
    grid-row: 1 / 4; /* 桌面：第一列，跨越三行 */
    height: 60rem;
}

.home-row-7 .col7-item1 img {
    width: 100%;
    height: 37rem;
    object-fit: cover;
}

.col7-item1 .col7-text {
    width: 100%;
    padding: 4rem 4rem 5rem 4rem;
}

.col7-item1 .col7-text .col7-top {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.8rem;
    color: #2361AC;
    font-weight: 400;
}

.col7-item1 .col7-text .col7-top .col7-top-time {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
}

.col7-item1 .col7-text .col7-title {
    font-weight: bold;
    font-size: 2.4rem;
    color: #000000;
    line-height: 4rem;
}

.home-row-7 .col7-item2 {
    grid-column: 2;
    grid-row: 1 / 4; /* 桌面：第二列，跨越三行 */
    color: #ffffff;
    height: 60rem;
    padding: 9rem 4rem 0 4rem;
    background-image: url("../images/col7-item2-bg.jpg");
    background-size: cover;
    background-position: center;
}


.col7-item2 .col7-text .col7-top {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
}

.col7-item2 .col7-text .col7-top .col7-top-time {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
}

.col7-item2 .col7-text .col7-title {
    font-weight: bold;
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 1);
    line-height: 4rem;
}

.col7-item2 .col7-text .col7-summary {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    line-clamp: 7;
    text-align: justify;
    font-size: 1.6rem;
    color: #FFFFFF;
    line-height: 3rem;
    font-weight: 400;
    height: 21rem;
    margin-top: 4rem;
    opacity: .6;
}

.home-row-7 .col7-item3, .col7-item4, .col7-item5 {
    grid-column: 3;
}

.col7-item2 .col7-text .view-detail {
    margin-top: 5rem;
    color: #ffffff;
}

.col7-item2 .col7-text .view-detail a {
    color: #ffffff;
}

.col7-item2 .col7-text .view-detail i {
    font-size: 1.4rem;
    text-decoration: none;
    display: inline-block;
    transform: scale(0.8);
}

.home-row-7 .col7-item3 {
    grid-row: 1;
    display: flex;
}

.home-row-7 .col7-item4 {
    grid-row: 2;
    display: flex;
}

.home-row-7 .col7-item5 {
    grid-row: 3;
    display: flex;
}

.home-row-7 .col7-grid-item2 img {
    width: 24rem;
    height: 18rem;
    object-fit: cover;
}

.col7-grid-item2 .home-row-7 .col7-text {
    margin-left: 2rem;
}

.col7-grid-item2 .col7-title {
    font-weight: 600;
    font-size: 1.8rem;
    color: #000000;
    width: 25.2rem;
}

.col7-grid-item2 .col7-summary {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.8rem;
    height: 5.4rem;
    width: 25.2rem;
    color: #999999;
    text-align: justify;
    margin: 2rem 0;
}

.col7-grid-item2 .col7-text{
    padding: 2rem 0 0 2rem;
}

.col7-grid-item2 .col7-text .view-detail {
    margin-top: 2rem;
    color: rgba(153, 153, 153, 1);
}

.col7-grid-item2 .col7-text .view-detail a {
    color: rgba(153, 153, 153, 1);
    font-size: 1.4rem;
    transform: scale(0.6);
}

.col7-grid-item2 .col7-text .view-detail i {
    font-size: 1.4rem;
    text-decoration: none;
    display: inline-block;
    transform: scale(0.6);
}

/* 第七行 媒体聚焦 结束 */

/* 第八行 常用链接 开始 */
.home-row-8 {
    width: 160rem;
    margin: 8rem auto 6rem auto;
}

.home-col-8 .link-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 5rem;
    width: 90rem;
}

.home-col-8 a:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.home-col-8 a:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.home-col-8 a:nth-child(3) {
    grid-area: 1 / 3 / 2 / 4;
}

.home-col-8 a:nth-child(4) {
    grid-area: 2 / 1 / 3 / 2;
}

.home-col-8 a:nth-child(5) {
    grid-area: 2 / 2 / 3 / 3;
}

.home-col-8 a:nth-child(6) {
    grid-area: 2 / 3 / 3 / 4;
}

.home-col-8 a {
    font-weight: 400;
    font-size: 2.4rem;
    color: #000000;
    line-height: 4.8rem;
    text-align: left;
    font-style: normal;
    text-transform: none;
    padding-bottom: 2rem;
    border-bottom: .2rem solid rgba(221, 221, 221, 1);
    cursor: pointer;
    text-align: center;
}

.home-col-8 a:hover {
    color: #2361AC;
    border-bottom: .2rem solid #2361AC;
    animation: fadeIn .6s ease forwards;
}


.home-row-8 .row-head-box {
    display: block;
}

.home-row-8 .row-head-box2 {
    display: none;
}

/* 第八行 常用链接 结束 */

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

.footer-box {
    width: 160rem;
    margin: 0 auto 5rem 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: 1rem;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
}

.footer-qrcode {
    z-index: 10;
    position: absolute;
    right: 0;
    top: -24rem;
}

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

.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: 80rem;
    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 {
    overflow-x: auto;
    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);
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE和Edge */
}

.detail-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari 和 Opera */
}

/* 设置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;
}

/* 第二行内容 */
.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;
}


/* 院校概况 结束 */

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

.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
, .culture-text .culture-text-summary p{
    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;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
}

/* 隐藏滚动条 */
.major-nav ul::-webkit-scrollbar {
    display: none;
}

.major-nav ul {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.major-nav ul:active {
    cursor: grabbing;
}

.major-nav ul li {
    display: inline-block;
    margin: 0 5rem 2rem 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: 9rem 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: 10rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2rem;
}

.news-list-item {
    background: rgba(255, 255, 255, 1);
    width: 100%;
    height: 47rem;
    padding: 2.4rem 3rem 3rem 3rem;
    cursor: pointer;
    border-top: .6rem solid rgba(255, 255, 255, 1);
}

.news-list-item:hover {
    border-top: .6rem solid rgba(35, 97, 172, 1);
    transform: scale(1.05);
}

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

.news-list-summary {
    border-top: 0.1rem solid #DDDDDD;
    font-weight: 400;
    font-size: 1.6rem;
    color: #666666;
    line-height: 2.6rem;
    height: 25rem;
    text-align: justify;
    padding-top: 4rem;
}

.news-list-img {
    border-top: 0.1rem solid #DDDDDD;
    padding-top: 4rem;
    width: 100%;
    height: 25rem;
    object-fit: cover;
    object-position: center;
}

.news-list-bottom {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-list-time {
    font-family: "D-DIN-PRO", "HarmonyOS-Sans", "PingFang SC", "Arial", "Helvetica", "Microsoft YaHei", sans-serif;
    font-weight: bold;
    font-size: 2.6rem;
    line-height: 2.8rem;
    color: rgba(25, 25, 25, 1);
}

.news-list-more {
    width: 11rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,.1);
    border-radius: 11rem;
    padding: 0 .4rem;
}

.news-list-more span {
    flex: 1;
    font-size: 1.4rem;
    line-height: 2.8rem;
    color: #000000;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.news-list-more i {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    font-size: .6rem;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-list-item:hover .news-list-title
,.news-list-item:hover .news-list-more i
,.news-list-item:hover .news-list-time{
    color: rgba(35, 97, 172, 1);
}

.news-list-item:hover .news-list-more span {
    color: #ffffff;
}

.news-list-item:hover .news-list-more {
    background: rgba(35, 97, 172, 1);
}

.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: 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;
}

.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: 40rem;
    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: 20rem;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}

/* 高级搜索 */
.do-power-search-box {
    position: absolute;
    top: 35rem;
    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;
}
/* 搜索 结束 */

