* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root {
    --header-pc-height: 100px;
    --header-h5-height: 60px;
    --theme-color: #ED0219;
}
ul,li {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
button {
    outline: none;
    border: none;
    background: none;
}
input {
    height: 40px;
    background: #FFFFFF;
    border-radius: 10px;
    outline: none;
    border: none;
    padding: 0 10px;
}
select {
    outline: none;
    border: none;
}
html,body {
    font-size: 16px;
    color: #333333;
    scroll-behavior: smooth;
    font-family: 'Montserrat';
}
main {
    overflow: hidden;
}

/* 头部 */
.header-pc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .5s;
}
.header-pc.scrolled,
.header-pc.style2 {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0px 2px 30px 0px rgba(102,102,102,0.15);
}
.header-pc.scrolled .h-wrapper .h-c .nav-item,
.header-pc.style2 .h-wrapper .h-c .nav-item {
    color: #333;
}
.header-pc .h-wrapper {
    display: flex;
    align-items: center;
    height: var(--header-pc-height);
    padding: 0 60px;
    margin: 0 auto;
    gap: 10px;
}
.header-pc .h-wrapper .h-l img:first-of-type {
    display: block;
}
.header-pc .h-wrapper .h-l img:last-of-type {
    display: none;
}
.header-pc.scrolled .h-wrapper .h-l img:first-of-type,
.header-pc.style2 .h-wrapper .h-l img:first-of-type {
    display: none;
}
.header-pc.scrolled .h-wrapper .h-l img:last-of-type,
.header-pc.style2 .h-wrapper .h-l img:last-of-type {
    display: block;
}
.header-pc .h-wrapper .h-c {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    font-size: 1.125rem;
    gap: 50px;
}
.header-pc .h-wrapper .h-c .nav-item {
    white-space: nowrap;
    transition: .3s;
    position: relative;
    color: #fff;
}
.header-pc .h-wrapper .h-c .nav-item::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--theme-color);
    transform: translateX(-50%);
    transition: .3s;
}
.header-pc .h-wrapper .h-c .nav-item:hover::before {
    width: 100%;
}
/* 手机端头部 */
.header-h5 {
    height: var(--header-h5-height);
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    box-shadow: 0px 5px 40px 0px rgba(110,86,172,0.14);
    backdrop-filter: blur(10px) saturate(180%);
    background: rgba(15, 15, 15, 0.7);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}
.header-h5 .header-left {
    display: flex;
    align-items: center;
    height: 100%;
}
.header-h5 .header-left a {
    height: 100%;
}
.header-h5 .header-left .logo img {
    max-height: 100%;
}
/* 搜索框样式 */
.header-center {
    flex-grow: 1; /* 占据剩余空间 */
    margin: 0 15px;
}
.search-box {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    max-width: 280px;
    margin-left: auto;
}
.search-box input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-size: 1rem;
    height: auto;
    outline: none;
    width: 100%;
}
.search-box .search-btn {
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #666;
}

/* 汉堡菜单按钮样式 */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* --- 侧边导航和遮罩层样式 --- */
.side-nav {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.2s ease-in-out;
    z-index: 999;
    padding-top: calc(var(--header-h5-height) + 10px * 2)
}
.side-nav.is-open {
    right: 0;
    overflow-y: auto;
}
.side-nav .nav-link {
    display: flex;
    align-items: center;
    color: #f1f1f1;
    border-bottom: 1px solid var(--el-color-primary-light-7);
    transition: background-color 0.2s;
    font-size: 1rem;
    height: 60px;
    padding: 0 20px;
    background-color: var(--el-color-primary);
}
.side-nav .nav-link > img {
    width: 90px;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 998;
}
.overlay.is-open {
    opacity: 1;
    visibility: visible;
} 

.side-nav .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.side-nav .dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;   /* 箭头宽度 */
    height: 6px;  /* 箭头高度 */
    border-left: 2px solid #fff; /* 左边框 */
    border-bottom: 2px solid #fff; /* 下边框 */
    transform: rotate(-45deg); /* 旋转 -45 度，形成一个指向右下角的箭头 */
    transition: transform 0.3s ease; /* 添加旋转过渡 */
    flex-shrink: 0; /* 防止箭头被压缩 */
}
.side-nav .nav-item-dropdown.is-open > .dropdown-toggle::after {
    transform: rotate(135deg);
}
.side-nav .dropdown-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-in-out;
}
.side-nav .dropdown-wrapper .dropdown-toggle {
    padding-left: 20px;
}
.side-nav .nav-item-dropdown.is-open > .dropdown-wrapper {
    grid-template-rows: 1fr;
}
.side-nav .dropdown-menu {
    /* 必须要给高度不然默认会影藏 */
    height: auto; 
    overflow: hidden; 
    padding: 0;
    margin: 0;
}
.side-nav .dropdown-item {
    display: flex;
    color: #333;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    height: 50px;
    padding-left: 20px;
    background-color: var(--el-color-primary-light-9);
}
.side-nav .dropdown-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 5px;
}
.side-nav .dropdown-item:hover {
    background-color: var(--el-color-primary-light-5);
}
.side-nav .dropdown-menu .dropdown-menu .dropdown-item {
    padding-left: 30px;
}
/* 底部 */
footer {
    background-color: #1B1B1B;
}
footer .footer-wrapper {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
}
footer .footer-t {
    padding: 50px 0 35px;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .footer-t .title {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    gap: 5px;
    flex-shrink: 0;
}
footer .footer-t .list {
    font-size: 0;
    opacity: 0.6;
    color: #FFFFFF;
}
footer .footer-t .list .cell {
    font-size: 0.875rem;
    padding: 0px 20px;
    border-right: 1px #FFFFFF solid;
    white-space: nowrap;
    line-height: 2;
}
footer .footer-t .list .cell:last-of-type {
    border-right: none;
}
footer .footer-c {
    padding: 50px 0 80px;
    display: flex;
    justify-content: space-between;
}
footer .footer-c-l {
    max-width: 350px;
}
footer .footer-c-l img {
    height: 63px;
}
footer .footer-c-c .title,
footer .footer-c-r .title {
    height: 63px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.375rem;
    color: #FFFFFF;
}
footer .footer-c-l .content{
    line-height: 2;
    color: #FFFFFF;
    opacity: 0.6;
    margin-top: 30px;
    font-family: Source Han Sans CN;
}
footer .footer-c-c .list,
footer .footer-c-r .list {
    color: #FFFFFF;
    opacity: 0.6;
    margin-top: 30px;
    font-family: Source Han Sans CN;
    padding-left: 5px;
}
footer .footer-c-c .list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 150px;
    row-gap: 10px;
    column-gap: 50px;
}
footer .footer-c-r {
    max-width: 350px;
}
footer .footer-c-r .list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
footer .footer-c-r .list .cell {
    display: flex;
    gap: 10px;
}
footer .footer-c-r img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-top: 3px;
}
footer .footer-b {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.6;
    font-size: 0.875rem;
    padding: 35px 0 50px;
    border-top: rgba(255, 255, 255, 0.2) solid 1px;
}
/* 分页 */
.paging-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px auto 0;
}
.paging-list .count {
    color: #666666;
}
#pages {
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 10px;
    margin: 0 30px;
}
#pages li {
    display: flex;
    align-items: center;
    justify-content: center;
}
#pages li > * {
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
}
#pages li:first-child > *,
#pages li:last-child > *
{
    font-size: 0;
    position: relative;
}
#pages li:first-child > *::before{
    content: '';
    width: 25%;
    height: 25%;
    border-left: 1px solid #646464;
    border-bottom: 1px solid #646464;
    transform: rotate(45deg);
    margin-left: 6px;
    position: absolute;
}
#pages li:last-child > *::before{
    content: '';
    width: 25%;
    height: 25%;
    border-left: 1px solid #646464;
    border-bottom: 1px solid #646464;
    transform: rotate(-135deg);
    margin-right: 6px;
    position: absolute;
}
#pages a, #pages span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-size: 14px;
}
#pages li a:hover {
    color: var(--theme-color);
}
#pages .active span {
    background-color: var(--theme-color);
    border: solid 1px var(--theme-color);
    color: white;
    cursor: default;
}
#pages .disabled span {
    color: #bdc3c7;
    cursor: not-allowed;
    background-color: #f5f6fa;
}
/* banner */
.public-banner {
    height: 680px;
    position: relative;
    overflow: hidden;
}
.public-banner .img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    will-change: transform;
}
.public-banner .img-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.01);
}
.public-banner .banner-wrapper {
    max-width: 1400px;
    width: 95%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.public-banner .banner-wrapper h4 {
    font-weight: bold;
    font-size: 3rem;
    color: #FFFFFF;
    padding-bottom: 36px;
    position: relative;
}
.public-banner .banner-wrapper h4::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FFFFFF;
}
.public-banner .banner-wrapper p {
    margin-top: 35px;
    color: #FFFFFF;
}
/* 箭头 */
.jt {
    display: flex;
    cursor: pointer;
    position: relative;
    align-items: center;
    width: max-content;
    line-height: 1;
}
.jt::before {
    content: '';
    width: 35px;
    background-color: #FFFFFF;
    height: 1px;
    transition: .5s;
}
.jt::after {
    content: '';
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    margin-left: -11px;
}
a.jt:hover::before {
    width: 50px;
    margin-left: 10px;
}
/* 更多按钮 */
.more-button {
    display: block;
    padding-bottom: 15px;
    border-bottom: solid 1px #333;
    width: 130px;
    overflow: hidden;
}
.more-button .button-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.more-button .jt {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    position: absolute;
    right: 0;
    top: 10px;
    transition: .3s;
}
.more-button .jt::before {
    background-color: #333;
    width: 15px;
}
.more-button .jt::after {
    border-color: #333;
    width: 10px;
    height: 10px;
    margin-left: -11px;
}
.more-button .jt-h {
    top: 40px;
    right: 20px;
}
.more-button:hover .jt {
    transform: translate(20px, -30px) rotate(-45deg);
}
.block-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
}
/* 分享 */
.share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.share .list {
    display: flex;
    align-items: center;
    gap: 20px;
}
.share .list .cell {
    position: relative;
}
.share .list .cell .show {
    width: 44px;
    height: 44px;
    background-color: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.share .list .cell .hide {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transform-origin: top;
    transition: .5s;
}
.share .list .cell:hover .hide {
    transform: translateX(-50%) scale(1);

}
/* 首页start */
.index-pages .banner {
    width: 100%;
    height: 940px;
    position: relative;
    overflow: hidden;
}
.index-pages .banner .swiper {
    width: 100%;
    height: 100%;
    position: relative;
}
.index-pages .banner .swiper-slide {
    overflow: hidden;
    position: relative;
}
.index-pages .banner .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    will-change: transform;
}
.index-pages .banner .slide-bg img {
    transform: scale(1.01);
}
.index-pages .banner .slide-bg .img1 {
    display: block;
}
.index-pages .banner .slide-bg .img2 {
    display: none;
}
.index-pages .banner .slide-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
    color: #fff;
}
.index-pages .banner .slide-content h2 {
    font-size: 4rem;
    color: #FFFFFF;
}
.index-pages .banner .slide-content p {
    /* color: #FFFFFF; */
    font-family: Source Han Sans CN;
    max-width: 580px;
    margin-top: 20px;
}
.index-pages .banner .slide-content .jt {
    margin-top: 80px;
    padding: 5px;
}
/* 1. 初始状态：隐藏、下移 */
.index-pages .banner .slide-content .ani-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}
.index-pages .banner .slide-content .ani-item.swiper-ani-active {
    opacity: 1;
    transform: translateY(0);
}
.index-pages .banner .slide-content .jt.ani-item {
    opacity: 0;
    transform: translateX(-50px);
}
.index-pages .banner .slide-content .jt.ani-item.swiper-ani-active {
    opacity: 1;
    transform: translateX(0px);
}
.index-pages .banner .swiper-pagination {
    position: absolute;
    top: 50%;
    right: 80px;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    gap: 25px;
}
.index-pages .banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    position: relative;
}
.index-pages .banner .swiper-pagination-bullet-active {
    width: 8.8px;
    height: 8.8px;
    background-color: var(--theme-color);
    margin-bottom: calc(40px);
}
.index-pages .banner .swiper-pagination-bullet::before {
    content: '';
    width: 4px;
    height: 0;
    background-color: var(--theme-color);
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translate(-50%, 0);
}
.index-pages .banner .swiper-pagination-bullet-active::before {
    height: 8px;
}
.index-pages .banner .swiper-pagination-bullet::after {
    content: '';
    width: 34px;
    height: 40px;
    background: url(../images/i1.png) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, 0) scale(0);
    transform-origin: top center; 
}
.index-pages .banner .swiper-pagination-bullet-active::after {
    transform: translate(-50%, 0) scale(1);
    transition: .5s;
}
.index-pages .banner .pagination-num {
    position: absolute;
    bottom: 100px;
    z-index: 20;
    left: 13.5%;
}
.index-pages .banner .pagination-num .current {
    color: #FFFFFF;
    font-size: 1.875rem;
    font-family: Arial;
}
.index-pages .banner .pagination-num .separator {
    margin: 0 10px;
}
.index-pages .banner .pagination-num .separator,
.index-pages .banner .pagination-num .total {
    font-size: 1rem;
    color: #FFFFFF;
    opacity: 0.4;
}
.index-pages .block1 {
    padding: 140px 0;
    background: url(../images/bg1.png) no-repeat;
    background-size: 95% auto;
    background-position: 100% calc(100% + 50px);
}
.index-pages .block1 .block-title {
    font-size: 1.15rem;
    color: var(--theme-color);
    display: flex;
    align-items: center;
}
.index-pages .block1 .block-title::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    margin-right: 10px;
    background-color: var(--theme-color);
}
.index-pages .block1 .block-main {
    display: flex;
    margin-top: 30px;
}
.index-pages .block1 .block-main > .left {
    max-width: 870px;
    flex: 1;
    border-right: 1px solid #eeeeee;
    padding-right: 20px;
}
.index-pages .block1 .block-main > .right {
    margin-left: 100px;
}
.index-pages .block1 .block-main > .left .title {
    font-weight: 500;
    font-size: 2.75rem;
}
.index-pages .block1 .block-main > .left .list {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}
.index-pages .block1 .block-main > .left .list .item {
    height: 500px;
    max-width: 330px;
    min-width: 250px;
    flex: 1;
    overflow: hidden;
    position: relative;
}
.index-pages .block1 .block-main > .left .list .item .img-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.index-pages .block1 .block-main > .left .list .item .img-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.index-pages .block1 .block-main > .left .list .item .mask-bg {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.index-pages .block1 .block-main > .left .list .item .mask-bg::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: .5s;
}
.index-pages .block1 .block-main > .left .list .item .mask-bg::after {
    content: '';
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: .8s;
}
.index-pages .block1 .block-main > .left .list .item:hover .mask-bg::after {
    width: 100%;
    height: 100%;
}
.index-pages .block1 .block-main > .left .list .item .content {
    position: relative;
    z-index: 5;
    padding: 40px 50px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
}
.index-pages .block1 .block-main > .left .list .item .content .text {
    margin-top: 30px;
    font-size: 1.25rem;
    min-height: 140px;
    transition: .3s;
}
.index-pages .block1 .block-main > .left .list .item .content .button {
    margin-top: 40px;
    height: 40px;
    width: 140px;
    background-color: var(--theme-color);
    transition: .3s;
    display: flex;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-pages .block1 .block-main > .left .list .item .content .button .jt {
    margin-left: 10px;
}
.index-pages .block1 .block-main > .left .list .item .content .button .jt::before {
    width: 20px;
    transition: .3s;
}
.index-pages .block1 .block-main > .left .list .item .content .button .jt::after {
    transition: .3s;
    width: 7px;
    height: 7px;
    margin-left: -7.5px;
}
.index-pages .block1 .block-main > .left .list .item:nth-of-type(1) .content .icon {
    width: 69px;
    height: 65px;
    background: url(../images/i3.png) no-repeat center;
    background-size: contain;
    transition: .3s;
}
.index-pages .block1 .block-main > .left .list .item:nth-of-type(2) .content .icon {
    width: 64px;
    height: 64px;
    background: url(../images/i4.png) no-repeat center;
    background-size: contain;
    transition: .3s;
}
.index-pages .block1 .block-main > .left .list .item:nth-of-type(1):hover .content .icon {
    background-image: url(../images/i3-1.png);
}
.index-pages .block1 .block-main > .left .list .item:nth-of-type(2):hover .content .icon {
    background-image: url(../images/i4-1.png);
}
.index-pages .block1 .block-main > .left .list .item:hover .content .text {
    color: #333333;
}
.index-pages .block1 .block-main > .left .list .item:hover .content .button {
    background-color: transparent;
    color: #333333;
}
.index-pages .block1 .block-main > .left .list .item:hover .content .button .jt::before {
    background-color: #333333;
}
.index-pages .block1 .block-main > .left .list .item:hover .content .button .jt::after {
    border-color: #333333;
}
.index-pages .block1 .block-main > .right .title .t-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.index-pages .block1 .block-main > .right .title .t-top p {
    font-size: 1.5rem;
    font-weight: 500;
}
.index-pages .block1 .block-main > .right .title .icon {
    width: 88px;
    height: 88px;
    overflow: hidden;
}
.index-pages .block1 .block-main > .right .title .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.index-pages .block1 .block-main > .right .title .t-bottom {
    font-size: 0.875rem;
    color: #666;
}
.index-pages .block1 .block-main > .right .list .item {
    margin-top: 50px;
}
.index-pages .block1 .block-main > .right .list .item .text1 {
    font-size: 0.875rem;
}
.index-pages .block1 .block-main > .right .list .item .text2 {
    display: flex;
    align-items: center;
    font-size: 3.75rem;
    font-family: Arial;
    color: var(--theme-color);
}
.index-pages .block1 .block-wrapper > .more-button {
    margin-top: 80px;
}
.index-pages .block2 {
    height: 804px;
    background: url(../images/bg3.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    /* background-attachment: fixed; */
}
.index-pages .block2 .block-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index-pages .block2 .block-title .left {
    width: 340px;
    height: 340px;
    background-color: var(--theme-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-pages .block2 .block-title .left img {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 0;
    transform: translate(-30px, -50%);
}
.index-pages .block2 .block-title .left p {
    font-weight: 800;
    font-size: 3rem;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}
.index-pages .block2 .block-title .more-button {
    color: #fff;
    border-color: #fff;
}
.index-pages .block2 .block-title .more-button .jt::after {
    border-color: #fff;
}
.index-pages .block2 .block-title .more-button .jt::before {
    background-color: #fff;
}
.index-pages .block2 .block-main p {
    margin-top: 40px;
    font-size: 14rem;
    color: #FBE4B7;
    font-family: Arial;
    font-weight: bold;
    opacity: 0.2;
    line-height: 1;
}
.index-pages .block2 .swiper {
    width: 50%;
    min-height: 420px;
    position: absolute;
    right: 0;
    background: url(../images/bg2.png) no-repeat;
    background-color: #fff;
    background-position: calc(100% - 140px) 100%;
    padding: 100px 6.7%;
}
.index-pages .block2 .swiper .jt::after {
    border-color: #333;
}
.index-pages .block2 .swiper .jt::before {
    background-color: #333;
}
.index-pages .block2 .swiper .swiper-slide {
    background-color: #fff;
    /* overflow: hidden; */
    min-height: 100%;
}
.index-pages .block2 .swiper .item {
    width: 100%;
    height: 100%;
}
.index-pages .block2 .swiper .item .title {
    font-weight: bold;
    font-size: 1.375rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.index-pages .block2 .swiper .item .content {
    margin-top: 40px;
    opacity: 0.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.index-pages .block2 .swiper .item .jt {
    margin-top: 60px;
}
.index-pages .block2 .nav-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% - 100px));
    bottom: -120px;
    display: flex;
    gap: 20px;
}
.index-pages .block2 .swiper-button-prev,
.index-pages .block2 .swiper-button-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #E5E5E5;
    position: static;
    transition: .5s;
}
.index-pages .block2 .swiper-button-prev::after,
.index-pages .block2 .swiper-button-next::after {
    font-size: 1rem;
    color: #444444;
}
.index-pages .block2 .swiper-button-prev:hover,
.index-pages .block2 .swiper-button-next:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.index-pages .block2 .swiper-button-prev:hover::after,
.index-pages .block2 .swiper-button-next:hover::after {
    color: #FFFFFF;
}
.index-pages .block3 {
    padding: 280px 0 120px;
}
.index-pages .block3 .block-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.index-pages .block3 .block-title .left {
    font-weight: 800;
    font-size: 3rem;
}
.index-pages .block3 .block-main {
    margin-top: 40px;
}
.index-pages .block3 .block-main .jt::after {
    border-color: var(--theme-color);
}
.index-pages .block3 .block-main .jt::before {
    background-color: var(--theme-color);
}
.index-pages .block3 .block-main {
    display: grid;
    row-gap: 20px;
    column-gap: 40px;
    /* flex-wrap: wrap; */
    grid-template-columns: repeat(auto-fill, minmax(480px,1fr));
}
.index-pages .block3 .block-main .item {
    /* max-width: 680px;
    min-width: 480px; */
    background: #F8F8F8;
    padding: 35px 60px;
    /* flex: 1; */
    /* flex-wrap: 0; */
}
.index-pages .block3 .block-main .item h4 {
    font-size: 1.25rem;
    font-weight: 500;
    transition: .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.index-pages .block3 .block-main .item p {
    margin-top: 10px;
    opacity: 0.7;
    transition: .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.index-pages .block3 .block-main .item .info {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index-pages .block3 .block-main .item .info .left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.index-pages .block3 .block-main .item .info span {
    opacity: 0.4;
}
.index-pages .block3 .block-main .item:hover h4 {
    color: var(--theme-color);
}
.index-pages .block3 .block-main .item:hover p {
    color: var(--theme-color);
}
.index-pages .block4 {
    padding: 130px 0;
    background-color: #F8F8F8;
}
.index-pages .block4 .block-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index-pages .block4 .block-title .left {
    display: flex;
    align-items: flex-end;
    gap: 80px;
}
.index-pages .block4 .block-title .left .list {
    display: flex;
    gap: 60px;
}
.index-pages .block4 .block-title .left .list .cell {
    padding-bottom: 15px;
    position: relative;
    font-size: 1.15rem;
    opacity: 0.6;
}
.index-pages .block4 .block-title .left .list .cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme-color);
    transition: .3s;
}
.index-pages .block4 .block-title .left .list .cell:hover::after {
    width: 100%
}
.index-pages .block4 .block-title .left .list .cell:hover {
    opacity: 1;
}
.index-pages .block4 .block-title .left > p {
    font-weight: 800;
    font-size: 3rem;
}
.index-pages .block4 .block-main {
    margin-top: 50px;
    display: flex;
    gap: 40px;
}
.index-pages .block4 .block-main .block-l,
.index-pages .block4 .block-main .block-c {
    max-width: 440px;
    height: 520px;
}
.index-pages .block4 .block-main .block-l a,
.index-pages .block4 .block-main .block-c a {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.index-pages .block4 .block-main .block-l {
    background-color: #FFFFFF;
}
.index-pages .block4 .block-main .block-l .img-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.index-pages .block4 .block-main .block-l .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}
.index-pages .block4 .block-main .block-l .text-box {}
.index-pages .block4 .block-main .block-l .info {
    padding: 50px 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index-pages .block4 .block-main .block-l .info .left {
    color: var(--theme-color);
}
.index-pages .block4 .block-main .block-l .info .right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.index-pages .block4 .block-main .block-l .info .right span {
    opacity: 0.4;
}
.index-pages .block4 .block-main .block-l .text-box h4 {
    font-size: 1.25rem;
    padding: 0 40px;
    margin-top: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.index-pages .block4 .block-main .block-l a:hover .img-box img {
    transform: scale(1.1);
}
.index-pages .block4 .block-main .block-c > a {
    background-color: var(--theme-color);
    padding: 0 40px 70px;
    color: #fff;
}
.index-pages .block4 .block-main .block-c .text-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.index-pages .block4 .block-main .block-c .info {
    margin-top: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index-pages .block4 .block-main .block-c .info .left {
    color: #fff;
}
.index-pages .block4 .block-main .block-c .info .right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.index-pages .block4 .block-main .block-c h4 {
    margin-top: 40px;
}
.index-pages .block4 .block-main .block-c .content {
    /* flex: 1; */
    opacity: 0.6;
    font-size: 0.875rem;
    margin-top: 40px;
}
.index-pages .block4 .block-main .block-c .button {
    margin-top: auto;
    width: 120px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-pages .block4 .block-main .block-c .button .jt::after {
    border-color: var(--theme-color);
}
.index-pages .block4 .block-main .block-c .button .jt::before {
    background-color: var(--theme-color);
}
.index-pages .block4 .block-main .block-c > a:hover .jt::before{
    width: 50px;
}
.index-pages .block4 .block-main .block-r {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 35px;
}
.index-pages .block4 .block-main .block-r .item {
    flex: 1;
    border-bottom: solid 1px #E5E5E5;
    transition: .3s;
    max-width: 440px;
}
.index-pages .block4 .block-main .block-r .item h4 {
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.index-pages .block4 .block-main .block-r .item p {
    margin-top: 20px;
    opacity: 0.4;
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.index-pages .block4 .block-main .block-r .item:hover {
    color: var(--theme-color);
}
/* 首页end */

/* 简介start */
.introduction-pages .block {
    padding: 140px 0 195px;
}
.introduction-pages .block .block-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 90px;
}
.introduction-pages .block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.introduction-pages .block .right h5 {
    font-size: 1.875rem;
}
.introduction-pages .block .right h4 {
    font-size: 2.75rem;
}
.introduction-pages .block .right .content {
    margin-top: 60px;
}
.introduction-pages .block .right .content * {
    line-height: 2;
}
/* 简介end */
/* 健康课程 start*/
.course-pages .block {
    padding-bottom: 250px;
}
.course-pages .block h6 {
    color: var(--theme-color);
    font-size: 1.125rem;
    text-align: center;
    font-weight: 400;
    margin-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.course-pages .block h6::after,
.course-pages .block h6::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--theme-color);
    margin: 0 10px;
}
.course-pages .block h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
    color: #000;
}
.course-pages .block .list {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.course-pages .block .list .item {
    flex: 1;
    max-width: 330px;
    height: 500px;
    overflow: hidden;
    position: relative;
    transition: .8s;
}
.course-pages .block .list .item .img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.course-pages .block .list .item .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 35px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.course-pages .block .list .item .content p {
    font-size: 1.25rem;
    font-weight: 500;
}
.course-pages .block .list .item .content .button {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: .6;
}
.course-pages .block .list .item:hover {
    transform: translateY(-30px);
}
.course-pages .block .list .item .jt::before {
    width: 25px;
}
/* 健康课程 end */
/* 工作动态 start */
.work-pages .block {
    padding: 100px 0 120px;
}
.work-pages .block .block-wrapper > h2 {
    color: #222222;
    font-weight: bold;
    font-size: 2.75rem;
    text-align: center;
}
.work-pages .block .block-wrapper > h6 {
    margin-top: 20px;
    font-weight: 400;
    text-align: center;
    font-size: 1rem;
}
.work-pages .block .block-wrapper .hot-item {
    margin-top: 60px;
    background-color: #F8F8F8;
    height: 440px;
    display: flex;
}
.work-pages .block .block-wrapper .hot-item .left {
    overflow: hidden;
    flex: 1;
}
.work-pages .block .block-wrapper .hot-item .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.work-pages .block .block-wrapper .hot-item .right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.work-pages .block .block-wrapper .hot-item .right-inner {
    padding: 0 80px;
}
.work-pages .block .block-wrapper .hot-item .right .bg-text {
    font-weight: bold;
    font-size: 16.875rem;
    color: #5C5C5C;
    font-family: Arial;
    position: absolute;
    right: 60px;
    top: -4.375rem;
    line-height: 1;
}
.work-pages .block .block-wrapper .hot-item .right .date-box {
    display: flex;
    align-items: center;
}
.work-pages .block .block-wrapper .hot-item .right .date-box .day {
    font-family: Arial;
    font-weight: bold;
    font-size: 4.5rem;
    color: #5C5C5C;
    display: flex;
    align-items: center;
}
.work-pages .block .block-wrapper .hot-item .right .date-box .day::after {
    content: '';
    display: block;
    width: 1px;
    height: 4rem;
    background-color: #5C5C5C;
    margin: 0 20px;
    transform: rotate(20deg);
}
.work-pages .block .block-wrapper .hot-item .right .date-box .month {
    font-weight: 400;
    font-size: 1.5rem;
    color: #5C5C5C;
}
.work-pages .block .block-wrapper .hot-item .right .title {
    font-weight: bold;
    font-size: 1.625rem;
}
.work-pages .block .block-wrapper .hot-item .right .desc {
    margin-top: 30px;
    color: #666666;
    font-size: 0.875rem;
}
.work-pages .block .block-wrapper .hot-item .right .jt {
    margin-top: 50px;
}
.work-pages .block .block-wrapper .hot-item .right .jt::after {
    border-color: #3A3E3F;
    border-right: none;
}
.work-pages .block .block-wrapper .hot-item .right .jt::before {
    background-color: #3A3E3F;
}
.work-pages .block .block-wrapper .hot-item:hover .left img {
    transform: scale(1.05);
}
.work-pages .block .block-wrapper .hot-item:hover .right .jt::before {
    width: 50px;
}
.work-pages .block .block-wrapper .list {
    margin-top: 80px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.work-pages .block .block-wrapper .list .item {
    width: calc(33.33% - 80px / 3);
    min-height: 350px;
    background-color: #F8F8F8;
    padding: 60px 55px;
    display: flex;
    flex-direction: column;
    transition: .8s;
}
.work-pages .block .block-wrapper .list .item h4 {
    font-size: 1.125rem;
    font-weight: bold;
}
.work-pages .block .block-wrapper .list .item p {
    margin-top: 20px;
    color: #666;
    font-size: 0.875rem;
    transition: .8s;
}
.work-pages .block .block-wrapper .list .item .info {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.work-pages .block .block-wrapper .list .item .info .date {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: Arial;
    color: #666;
    transition: .8s;
}
.work-pages .block .block-wrapper .list .item .info .date span {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 10px;
}
.work-pages .block .block-wrapper .list .item .info .jt::after {
    border-color: #3A3E3F;
    transition: .8s;
}
.work-pages .block .block-wrapper .list .item .info .jt::before {
    background-color: #3A3E3F;
}
.work-pages .block .block-wrapper .list .item:hover {
    background-color: var(--theme-color);
    color: #FFFFFF;
}
.work-pages .block .block-wrapper .list .item:hover p {
    color: rgba(255, 255, 255, 0.6);
}
.work-pages .block .block-wrapper .list .item:hover .date {
    color: #FFFFFF;
}
.work-pages .block .block-wrapper .list .item:hover .jt::after {
    border-color: #FFFFFF;
}
.work-pages .block .block-wrapper .list .item:hover .jt::before {
    background-color: #FFFFFF;
}
/* 工作动态 end */

/* 详情 start*/
.details-pages .block {
    background-color: #F5F5F5;
    padding-bottom: 120px;
}
.details-pages .block .block-wrapper {
    padding-top: var(--header-pc-height);
}
.details-pages .block .crumb {
    display: flex;
    /* align-items: center; */
    color: #888888;
    font-size: 1rem;
    padding: 40px 0;
}
.details-pages .block .crumb a {
    margin: 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.details-pages .block .crumb a:last-of-type {
    flex: 1;
}
.details-pages .block .content-box {
    background-color: #FFFFFF;
    padding: 60px 80px 90px;
}
.details-pages .block .content-box h4 {
    font-weight: bold;
    text-align: center;
    color: #222222;
    padding: 0 60px;
    font-size: 2.5rem;
}
.details-pages .block .content-box .info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 60px;
    color: #888888;
}
.details-pages .block .content-box .content {
    margin-top: 40px;
    padding: 40px 0 120px;
    border-top: solid 1px #E5E5E5;
    border-bottom: solid 1px #E5E5E5;
}
.details-pages .block .content-box .content img {
    max-width: 100%;
    margin: 40px auto;
    display: block;
}
.details-pages .block .content-box .share {
    margin: 70px auto 0;
}
.details-pages .block .news-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    font-size: 1.125rem;
    color: #222222;
}
.details-pages .block .news-nav span {
    color: #888888;
}
/* 详情 end */
/* 政策法规 start */
.policy-pages .block {
    padding-bottom: 120px;
    padding-top: 80px;
}
.policy-pages .block .block-wrapper > h2 {
    font-weight: 800;
    font-size: 2.75rem;
    color: #222222;
    text-align: center;
}
.policy-pages .block .block-wrapper > h6 {
    margin-top: 15px;
    font-weight: 400;
    color: #222222;
    font-size: 1rem;
    text-align: center;
}
.policy-pages .block .block-wrapper > .list {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    border-top: solid 1px #E5E5E5;
}
.policy-pages .block .block-wrapper > .list .item {
    display: flex;
    align-items: center;
    gap: 140px;
    border-bottom: solid 1px #E5E5E5;
    padding: 40px 8.5%;
    transition: .5s;
}
.policy-pages .block .block-wrapper > .list .item .date {
    flex-shrink: 0;
}
.policy-pages .block .block-wrapper > .list .item .day-month {
    font-size: 1.875rem;
    font-family: Arial;
    font-weight: bold;
}
.policy-pages .block .block-wrapper > .list .item .year {
    font-family: Arial;
    font-weight: 400;
    font-size: 1rem;
    color: #AAAAAA;
    transition: .5s;
}
.policy-pages .block .block-wrapper > .list .item .content {
    font-size: 1.25rem;
    font-weight: 500;
}
.policy-pages .block .block-wrapper > .list .item .button {
    margin-top: 35px;
    font-size: 0.875rem;
}
.policy-pages .block .block-wrapper > .list .item:hover {
    padding: 40px 9.2%;
    background-color: var(--theme-color);
    color: #FFFFFF;
}
.policy-pages .block .block-wrapper > .list .item:hover .year {
    color: #FFFFFF;
}
/* 政策法规 end */
/* 时事新闻 start */
.news-pages .block {
    padding-top: 80px;
    padding-bottom: 120px;
}
.news-pages .block .block-wrapper > h2 {
    font-weight: 800;
    font-size: 2.75rem;
    color: #222222;
    text-align: center;
}
.news-pages .block .block-wrapper > h6 {
    margin-top: 15px;
    font-weight: 400;
    color: #222222;
    font-size: 1rem;
    text-align: center;
}
.news-pages .block .list {
    margin-top: 30px;
}
.news-pages .block .list .item {
    display: flex;
    align-items: center;
    border-bottom: solid 1px #E5E5E5;
    padding: 50px 0;
    transition: .5s;
    position: relative;
}
.news-pages .block .list .item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--theme-color);
    transition: .8s;
}
.news-pages .block .list .item .date {
    flex-shrink: 0;
}
.news-pages .block .list .item .date .day-month {
    font-size: 1.875rem;
    font-family: Arial;
    font-weight: bold;
}
.news-pages .block .list .item .date .year {
    font-family: Arial;
    font-weight: 400;
    font-size: 1rem;
    color: #AAAAAA;
    transition: .5s;
    margin-top: 10px;
    position: relative;
}
.news-pages .block .list .item .date .year::before {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #E5E5E5;
    position: absolute;
    bottom: -28px;
    left: 0;
}
.news-pages .block .list .item .center {
    width: 290px;
    height: 190px;
    overflow: hidden;
    margin-left: 120px;
    min-width: 200px;
}
.news-pages .block .list .item .center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.news-pages .block .list .item .right {
    margin-left: 60px;
    display: flex;
    flex-direction: column;
    min-height: 180px;
    flex: 1;
}
.news-pages .block .list .item .right .title {
    font-weight: bold;
    font-size: 1.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-pages .block .list .item .right .content {
    margin-top: 15px;
    color: rgba(15, 15, 15, 0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-pages .block .list .item .right .button {
    margin-top: auto;
}
.news-pages .block .list .item:hover::after {
    width: 100%;
}
/* 时事新闻 end */
/* 联系我们 start */
.contact-pages .block {
    padding-top: 80px;
}
.contact-pages .block .block-wrapper > h2 {
    font-weight: 800;
    font-size: 2.75rem;
    color: #222222;
    text-align: center;
}
.contact-pages .block .block-wrapper > h6 {
    margin-top: 15px;
    font-weight: 400;
    color: #222222;
    font-size: 1rem;
    text-align: center;
}
.contact-pages .block .block-wrapper .list {
    margin-top: 60px;
    min-height: 280px;
    border-top: #eeeeee solid 1px;
    border-bottom: #eeeeee solid 1px;;
    padding-top: 100px;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
}
.contact-pages .block .block-wrapper .list .item {
    display: flex;
    gap: 20px;
}
.contact-pages .block .block-wrapper .list .item .img-box {
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.contact-pages .block .block-wrapper .list .item p {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 16px;
    color: #666666;
}
.contact-pages .block .block-wrapper .list .item .cell {
    /* line-height: 1; */
    font-weight: bold;
    font-size: 1.125rem;
    font-family: Arial, Helvetica, sans-serif;
}
.contact-pages .block2 {
    margin-top: 80px;
    margin-bottom: 170px;
}
.contact-pages .block2 .block-wrapper {
    display: flex;
    gap: 40px;
}
.contact-pages .block2 .block-wrapper .item {
    position: relative;
    min-height: 380px;
    padding: 60px 80px 60px 40px;
    background-color: #F5F5F5;
    overflow: hidden;
    flex: 1;
}
.contact-pages .block2 .block-wrapper .item .img-bg {
    position: absolute;
    right: -40px;
    bottom: -100px;
    z-index: 0;
}
.contact-pages .block2 .block-wrapper .item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    position: relative;
    max-width: max-content;
    z-index: 1;
    padding: 0 2px;
}
.contact-pages .block2 .block-wrapper .item h3::after {
    content: '';
    height: 5px;
    width: 100%;
    position: absolute;
    bottom: 3px;
    left: 0;
    border-radius: 3px;
    background-color: var(--theme-color);
    z-index: -1;
}
.contact-pages .block2 .block-wrapper .item .content {
    margin-top: 20px;
}
.contact-pages .block2 .block-wrapper .item .content p {
    line-height: 2.5;
}
/* 联系我们 end */

