@font-face {
    font-family: 'sysong';
    src: url('../fonts/SourceHanSerifCN-Bold-2.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    unicode-range: U+4E00-U+9FFF, U+3400-U+4DBF; /* 常用汉字 */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
}
:root {
    --pc-header-height-top: 120px;
    --pc-header-height-bottom: 65px;
    --header-h5-height: 65px;
}
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
html,body {
    font-size: 16px;
    color: #333333;
    scroll-behavior: smooth;
    letter-spacing: 1px;
}
.animate-section {
    opacity: 0;
    transition: all 0.8s ease;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
}
.button {
    cursor: pointer;
}
button {
    outline: none;
    border: none;
    background: none;
}
input {
    height: 40px;
    background: #FFFFFF;
    border-radius: 10px;
    outline: none;
    border: none;
    padding: 0 10px;
}
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 48px;
    height: 48px;
    background: #AC272A;
    border-radius: 4px;
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: solid 2px #fff;
    border-top: solid 2px #fff;
    transform: rotate(-45deg);
    margin-top: 5px;
}
.back-to-top:active {
    transform: scale(0.95);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top[data-show="false"] {
    display: none !important;
}
.breadcrumb {
    width: 100%;
    height: 103px;
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
}
.breadcrumb .text {
    max-width: 1420px;
    padding: 0 10px;
    flex: 1;
    margin: 0 auto;
    color: #888888;
}

/* 头部 */
.side-nav {
    display: none;
}
.header-h5 {
    display: none;
}
.pages-header-top,
.header-h5 {
    background-color: #FFFFFF;
}
.pages-header-top .header-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--pc-header-height-top);
}
.pages-header-top .header-main .header-main-l {
    display: flex;
    align-items: center;
}
.pages-header-top .header-main .header-main-l .logo {
    width: 318px;
}
.pages-header-top .header-main .header-main-l .title {
    color: #AC272A;
    padding-left: 32px;
    margin-left: 40px;
    border-left: 1px solid rgba(172, 39, 42, 0.3);
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pages-header-top .header-main .header-main-l .title .text1 {
    font-weight: bold;
    font-size: 29px;
}
.pages-header-top .header-main .header-main-l .title .text2 {
    font-size: 11.5px;
    margin-top: 5px;
}
.pages-header-top .header-main .header-main-r {
    display: flex;
    align-items: center;
}
.pages-header-top .header-main .header-main-r .input-box {
    width: 300px;
    height: 46px;
    border-radius: 23px;
    border: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.pages-header-top .header-main .header-main-r .input-box input {
    flex: 1;
    padding-left: 30px;
}
.pages-header-top .header-main .header-main-r .input-box input::placeholder {
    color: #bbb;
}
.pages-header-top .header-main .header-main-r .input-box button {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pages-header-top .header-main .header-main-r .input-box img {
    width: 17px;
    margin-right: 20px;
    cursor: pointer;
}
.pages-header-bottom {
    height: var(--pc-header-height-bottom);
    background: #AC272A;
    /* position: sticky; */
    top: 0;
    z-index: 999;
}
.pages-header-bottom .header-main {
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    max-width: 1200px;
}
.pages-header-bottom .header-main > a {
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FFFFFF;
    transition: .3s;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
}
.pages-header-bottom .header-main > a img {
    width: 100px;
    height: 32px;
}
.pages-header-bottom .header-main > a:hover,
.pages-header-bottom .header-main > a.active {
    background-color: #841F21;
}

/* 底部 */
footer {
    background-color: #AC272A;
    color: #FFFFFF;
}
.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.footer-wrapper .footer-top {
    height: 75px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
}
.footer-wrapper .footer-top .lists {
    display: flex;
    margin-left: 20px;
}
.footer-wrapper .footer-top .lists .item {
    padding-right: 20px;
    margin-right: 20px;
    border-right: solid 1px rgba(255, 255, 255, 0.3);
}
.footer-wrapper .footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-wrapper .footer-bottom .left {
    max-width: 300px;
}
.footer-wrapper .footer-bottom .left img {
    width: 100%;
}
.footer-wrapper .footer-bottom .center {
    flex: 1;
    justify-content: center;
    margin-left: 60px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer-wrapper .footer-bottom .center > p:nth-of-type(1) {
    font-size: 18px;
}
.footer-wrapper .footer-bottom .center > div {
    display: flex;
    gap: 10px;
}
.footer-wrapper .footer-bottom .center > a {
    letter-spacing: 0px;
}
/* .footer-wrapper .footer-bottom .center */
.footer-wrapper .footer-bottom .right {
    padding-left: 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    height: 100px;
    gap: 10px;
    align-items: center;
}
.footer-wrapper .footer-bottom .right .icon-box {
    width: 38.8px;
    height: 38.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}
.footer-wrapper .footer-bottom .right .icon-box img {
    width: 25px;
    height: 18px;
    object-fit: contain;
}
/* 通用页面标题 */
.pages-title {
    display: flex;
    align-items: flex-end;
    margin: 0 auto;
    max-width: max-content;
}
.pages-title .pages-title-left {
    font-family: sysong;
    font-weight: bold;
    font-size: 72px;
    color: #AC272A;
    margin-right: 10px;
    line-height: 1;
}
.pages-title .pages-title-text1 {
    font-size: 14px;
    display: flex;
    align-items: center;
    color: #AC272A;
    letter-spacing: 0;
    line-height: 1;
}
.pages-title .pages-title-text1::after {
    content: '';
    height: 1px;
    background-color: #AC272A;
    margin-left: 10px;
    flex: 1;
}
.pages-title .pages-title-text2 {
    font-weight: 800;
    font-size: 38px;
    line-height: 1;
    font-family: sysong;
    margin-top: 5px;
}

/* 标题二 */
.pages-title2 {
    margin: 74px auto 0;
    text-align: center;
}
.pages-title2 .text {
    font-weight: bold;
    font-size: 36px;
    position: relative;
    padding-bottom: 22px;
    font-family: sysong;
}
.pages-title2 .text::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #AC272A;
}
/* 公共banner */
.public-banner {
    height: 450px;
    width: 100%;
    position: relative;
}
.public-banner .img-box {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.public-banner .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 公共导航 */
.public-nav {
    height: 80px;
    background-color: #F5F5F5;
}
.public-nav .wrapper {
    max-width: 1420px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}
.public-nav .wrapper .left {
    display: flex;
    align-items: center;
    height: 100%;
}
.public-nav .wrapper .left .item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100%;
    border-right: 1px solid #E5E5E5;
}
.public-nav .wrapper .left .item.active {
    background: url(../images/bg5.png) no-repeat;
    background-size: cover;
    color: #FFFFFF;
    background-color: #AC272A;
}
.public-nav .wrapper .right {
    color: #666666;
    font-size: 14px;
}

/* 分页 */
.paging-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px 0 120px 0;
}
#pages {
    display: flex;
    list-style: none;
    gap: 15px;
    padding: 10px;
}
.paging-list li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.paging-list li > * {
    border: solid 1px #DCDCDC;
}
.paging-list a, .paging-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #888888;
    transition: all 0.3s ease;
    padding: 5px 10px;
}
.paging-list a:hover::before {
    border-color: white;
}
.paging-list li a:hover {
    background-color: #AC272A;
    color: white;
    border: solid 1px #AC272A;
}
.paging-list .active span {
    background-color: #AC272A;
    border: solid 1px #AC272A;
    color: white;
    cursor: default;
}
.paging-list .disabled span {
    color: #bdc3c7;
    cursor: not-allowed;
    background-color: #f5f6fa;
}

/* ···首页start··· */
.index-pages .banner {
    height: 600px;
}
.index-pages .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
.index-pages .banner .swiper-button-prev,
.index-pages .banner .swiper-button-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.index-pages .banner .swiper-button-prev {
    left: 5%;
}
.index-pages .banner .swiper-button-next {
    right: 5%;
}
.index-pages .banner .swiper-button-prev:hover,
.index-pages .banner .swiper-button-next:hover {
    background-color: #AC272A;
}
.index-pages .banner .swiper-button-prev::after,
.index-pages .banner .swiper-button-next::after,
.index-pages .banner .swiper-button-prev svg,
.index-pages .banner .swiper-button-next svg {
    content: none;
    display: none;
}
.index-pages .banner .swiper-button-prev::before,
.index-pages .banner .swiper-button-next::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.index-pages .banner .swiper-button-prev::before {
    transform: rotate(-135deg);
    margin-left: 2px;
}
.index-pages .banner .swiper-button-next::before {
    transform: rotate(45deg);
    margin-right: 2px;
}
.index-pages .banner .swiper-pagination {
    bottom: 30px;
}
.index-pages .banner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    opacity: 0.3;
    margin: 0 10px;
}
.index-pages .banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #AC272A;
    opacity: 1;
}
.index-pages .block1 {
    padding: 110px 0 156px;
    background: url(../images/bg1.png) no-repeat bottom;
    background-size: cover;
    overflow: hidden;
}
.index-pages .block1 .block-main {
    margin: 80px auto 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
}
.index-pages .block1 .block-main .left {
    flex: 1;
    width: 0;
}
.index-pages .block1 .block-main .left .left-wrapper {
    display: block;
    max-width: 680px;
    margin-left: auto;
    padding-left: 10px;
}
.index-pages .block1 .block-main .left .img-box {
    width: 100%;
    height: 480px;
    border-radius: 60px 0 0 0;
    overflow: hidden;
}
.index-pages .block1 .block-main .left .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}
.index-pages .block1 .block-main .left .left-wrapper:hover .img-box img {
    transform: scale(1.05);
}
.index-pages .block1 .block-main .left .text-box {
    height: 120px;
    display: flex;
    background-color: #FFFFFF;
    align-items: center;
    justify-content: space-between;
}
.index-pages .block1 .block-main .left .text-box p {
    padding: 0 60px 0 40px;
    font-weight: bold;
    font-size: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.index-pages .block1 .block-main .left .text-box span {
    color: #AC272A;
}
.index-pages .block1 .block-main .left .text-box .date-box {
    width: 120px;
    background-color: #AC272A;
    color: #FFFFFF;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.index-pages .block1 .block-main .left .text-box .date-box .text1 {
    font-size: 60px;
    line-height: 1;
}
.index-pages .block1 .block-main .right {
    flex: 1;
    min-width: 0;
    position: relative;
}
.index-pages .block1 .block-main .right-top {
    margin-right: 10px;
    height: 280px;
    background: #FFFFFF;
    border-radius: 60px 0 60px 0;
    max-width: 680px;
    overflow: hidden;
}
.index-pages .block1 .block-main .right-top .swiper {
    height: 100%;
}
.index-pages .block1 .block-main .right-top .swiper-slide {
    display: flex;
    height: 100%;
    background-color: #FFFFFF;
}
.index-pages .block1 .block-main .right-top .swiper-slide .date-box {
    flex: 1;
    max-width: 104px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #EEEEEE;
}
.index-pages .block1 .block-main .right-top .swiper-slide .date-box > div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #AC272A;
}
.index-pages .block1 .block-main .right-top .swiper-slide .date-box .date-box__text1 {
    font-size: 40px;
}
.index-pages .block1 .block-main .right-top .swiper-slide .date-box .date-box__text2 {
    font-size: 14px;
    margin-top: 10px;
}
.index-pages .block1 .block-main .right-top .swiper-slide .content-box {
    flex: 1;
    max-width: 575px;
    padding: 40px 64px 40px 30px;
}
.index-pages .block1 .block-main .right-top .swiper-slide .content-box__text1 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 800;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.index-pages .block1 .block-main .right-top .swiper-slide .content-box__text2 {
    padding-top: 25px;
    color: #777777;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    border-top: 1px solid #EEEEEE;
}
.index-pages .block1 .block-main .right-bottom {
    margin-top: 40px;
    height: 280px;
}
.index-pages .block1 .block-main .right-bottom .swiper-slide {
    width: 460px;
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 30px 0 30px 0;
    margin-right: 40px;
}
.index-pages .block1 .block-main .right-bottom .swiper-slide .img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.index-pages .block1 .block-main .right-bottom .swiper-slide .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-pages .block1 .block-main .right-bottom .swiper-slide .text {
    position: absolute;
    bottom: 0px;
    padding-left: 30px;
    padding-right: 50px;
    padding-bottom: 20px;
    padding-top: 20px;
    color: #FFFFFF;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.index-pages .block2 {
    position: relative;
}
.index-pages .block2 .block-wrapper {
    max-width: 1420px;
    padding: 0 10px;
    margin: 0 auto;
    display: flex;
    padding-bottom: 127px;
}
.index-pages .block2 .left {
    flex: 1;
}
.index-pages .block2 .left .block-title {
    width: 31.8%;
    height: 150px;
    background: #AC272A;
    border-radius: 0 75px 75px 0;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    z-index: 1;
}
.index-pages .block2 .left .pages-title {
    margin-left: auto;
    margin-right: 21.5%;
    transform: translateY(-5px);
}
.index-pages .block2 .left .pages-title .pages-title-left,
.index-pages .block2 .left .pages-title .pages-title-text1,
.index-pages .block2 .left .pages-title .pages-title-text2 {
    color: #FFFFFF;
}
.index-pages .block2 .left .pages-title .pages-title-text1::after {
    background-color: #FFFFFF;
}
.index-pages .block2 .left .block-main-bg {
    background: url(../images/bg2.png) no-repeat;
    background-size: cover;
    box-shadow: 0px 0px 40px 0px rgba(172,39,42,0.22);
    border-top-right-radius: 100px;
    margin-top: 75px;
    padding-top: 145px;
    padding-bottom: 75px;
    position: absolute;
    width: 54%;
    height: calc(100% - 127px - 75px);
    left: 0;
    z-index: 0;
}
.index-pages .block2 .left .left-main {
    max-width: 750px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-right: 50px;
    position: relative;
    z-index: 2;
    padding-top: 220px;
}
.index-pages .block2 .left .left-main .item {
    display: flex;
    align-items: center;
}
.index-pages .block2 .left .left-main .item .icon-box {
    width: 53px;
    height: 53px;
    background: url(../images/i7.png) no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #AC272A;
    flex-shrink: 0;
    padding-left: 2px;
}
.index-pages .block2 .left .left-main .item .text-d {
    margin-left: 16px;
    margin-right: 30px;
    font-size: 18px;
    color: #AC272A;
    flex-shrink: 0;
}
.index-pages .block2 .left .left-main .item .text-c {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.index-pages .block2 .right {
    margin-top: 75px;
    display: flex;
    flex-direction: column;
    max-width: 550px;
}
.index-pages .block2 .right .pages-title {
    margin-left: 0;
}
.index-pages .block2 .right .right-main {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.index-pages .block2 .right .item {
    height: 160px;
    background: #F5F5F5;
    border-radius: 30px 0 30px 0;
    padding: 0 53px;
}
.index-pages .block2 .right .item .text1 {
    margin-top: 37px;
    font-weight: bold;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.index-pages .block2 .right .item .text2 {
    color: #777777;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.index-pages .block3 {
    background: url(../images/bg3.png) no-repeat center top;
    padding-top: 200px;
    position: relative;
    background-size: cover;
}
.index-pages .block3 .img-bg {
    position: absolute;
    top: 200px;
    left: 0;
    width: 38.5%;
    height: 830px;
}
.index-pages .block3 .img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-pages .block3 .block-wrapper {
    margin-top: 108px;
    height: 650px;
    display: flex;
    max-width: 1660px;
    margin-left: auto;
    width: 90%;
}
.index-pages .block3 .block-wrapper .left {
    position: relative;
    max-width: 840px;
    width: 0;
    flex: 1;
}
.index-pages .block3 .block-wrapper .left .swiper {
    height: 100%;
    width: 100%;
}
.index-pages .block3 .block-wrapper .left .swiper .swiper-slide {
    padding-left: 120px;
}
.index-pages .block3 .swiper-button-prev {
    right: 11%;
    bottom: 80px;
    top: auto;
    left: auto;
    width: max-content;
}
.index-pages .block3 .swiper-button-next {
    right: 7%;
    top: auto;
    bottom: 80px;
    width: max-content;
}
.index-pages .block3 .swiper-button-prev::after,
.index-pages .block3 .swiper-button-next::after,
.index-pages .block3 .swiper-button-prev svg,
.index-pages .block3 .swiper-button-next svg {
    content: none;
    display: none;
}
.index-pages .block3 .swiper-button-prev::before,
.index-pages .block3 .swiper-button-next::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 1px solid #AC272A;
    border-right: 1px solid #AC272A;
}
.index-pages .block3 .swiper-button-prev::before {
    transform: rotate(-135deg);
    margin-left: 2px;
}
.index-pages .block3 .swiper-button-next::before {
    transform: rotate(45deg);
    margin-right: 2px;
}

.index-pages .block3 .block-wrapper .left-wrapper {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    border-top-left-radius: 100px;
}
.index-pages .block3 .block-wrapper .left-wrapper .text-box {
    padding: 50px 140px 50px 80px;
}
.index-pages .block3 .block-wrapper .left-wrapper .text-box .text1 {
    font-weight: bold;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}
.index-pages .block3 .block-wrapper .left-wrapper .text-box .text2 {
    color: #777777;
    margin-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.index-pages .block3 .block-wrapper .left .img-box {
    position: absolute;
    left: 0px;
    top: 173px;
    width: 83%;
    height: 420px;
    overflow: hidden;
    border-radius: 60px 0 60px 0;
}
.index-pages .block3 .block-wrapper .right {
    max-width: 820px;
    flex: 1;
    background: url(../images/bg4.png) no-repeat;
    background-size: cover;
    padding: 45px 0;
    padding-left: 60px;
}
.index-pages .block3 .block-wrapper .right .item {
    height: 140px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    max-width: 500px;
    display: flex;
    align-items: center;
}
.index-pages .block3 .block-wrapper .right .item .img-box {
    width: 120px;
    height: 80px;
    overflow: hidden;
    flex-shrink: 0;
}
.index-pages .block3 .block-wrapper .right .item .img-box img {
    width: 100%;
    height: 100%;
    background-size: cover;
}
.index-pages .block3 .block-wrapper .right .item .text-box {
    margin-left: 30px;
    color: #FFFFFF;
}
.index-pages .block3 .block-wrapper .right .item .text-box .text-d {
    font-size: 14px;
}
.index-pages .block3 .block-wrapper .right .item .text-box .text-c {
    font-size: 18px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.index-pages .block4 {
    margin: 80px auto;
    max-width: 1420px;
    display: flex;
    gap: 40px;
    padding: 0 10px;
}
.index-pages .block4 .item {
    position: relative;
    height: 200px;
    padding: 0 20px;
    flex: 1;
    border-radius: 30px 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}
.index-pages .block4 .item .text {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}
.index-pages .block4 .item .button {
    margin-top: 25px;
    padding: 4px 28px;
    opacity: 0.5;
    border: 1px solid #FFFFFF;
    border-radius: 16px;
}
.index-pages .block4 .item .img-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: -1;
    overflow: hidden;
    border-radius: 30px 0 30px 0;
}
.index-pages .block4 .item .img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}
.index-pages .block4 .item:hover .img-bg img {
    transform: scale(1.1)
}
/* 首页end */
/* 工作动态start */
.article-work-pages .pages-content {
    max-width: 1420px;
    padding: 0 10px;
    margin: 74px auto 0;
}
.article-work-pages .pages-content .hot-box {
    display: flex;
    align-items: center;
}
.article-work-pages .pages-content .hot-box .left {
    height: 500px;
    max-width: 870px;
    overflow: hidden;
    flex: 1;
}
.article-work-pages .pages-content .hot-box .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-work-pages .pages-content .hot-box .right {
    margin-left: -170px;
    flex: 1;
    box-shadow: 0px 5px 18px 0px rgba(84,84,84,0.15);
    height: 385px;
    position: relative;
    z-index: 1;
    background-color: #FFFFFF;
    max-width: 700px;
    padding: 35px 85px;
}
.article-work-pages .pages-content .hot-box .right .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.article-work-pages .pages-content .hot-box .right .img-bg {
    position: absolute;
    right: 70px;
    top: -48px;
}
.article-work-pages .pages-content .hot-box .right .date-box {
    display: flex;
    align-items: center;
}
.article-work-pages .pages-content .hot-box .right .date-box__left {
    font-weight: bold;
    font-size: 72px;
    color: #CCCCCC;
    line-height: 1;
}
.article-work-pages .pages-content .hot-box .right .date-box__left span {
    display: inline-block;
    height: 50px;
    width: 1px;
    background-color: #DCDCDC;
    transform: rotate(20deg);
    margin: 0 20px 0 10px;
}
.article-work-pages .pages-content .hot-box .right .date-box__right {
    color: #CCCCCC;
}
.article-work-pages .pages-content .hot-box .right .date-box__right .text1 {
    font-size: 24px;
}
.article-work-pages .pages-content .hot-box .right .text-n {
    margin-top: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: bold;
    font-size: 20px;
}
.article-work-pages .pages-content .hot-box .right .text-c {
    margin-top: 25px;
    color: #666666;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
}
.article-work-pages .pages-content .hot-box .right .icon-box {
    position: absolute;
    bottom: 65px;
    left: 85px;
}
.article-work-pages .pages-content .lists {
    display: grid;
    gap: 70px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    margin-top: 70px;
}
.article-work-pages .pages-content .lists .item {
    transition: .8s;
}
.article-work-pages .pages-content .lists .item .img-box {
    height: 253px;
    overflow: hidden;
}
.article-work-pages .pages-content .lists .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-work-pages .pages-content .lists .item .text-box {
    padding-top: 20px;
    transition: .8s;
}
.article-work-pages .pages-content .lists .item .text-box .text-n {
    font-weight: bold;
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.article-work-pages .pages-content .lists .item .text-box .text-c {
    font-size: 14px;
    margin-top: 10px;
    color: #666666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.article-work-pages .pages-content .lists .item .text-box .text-d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.article-work-pages .pages-content .lists .item .text-box .text-d__left {
    display: flex;
    align-items: flex-end;
    color: #CCCCCC;
}
.article-work-pages .pages-content .lists .item .text-box .text-d__text1 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
}
.article-work-pages .pages-content .lists .item .text-box .text-d__text1 span {
    font-weight: 400;
    line-height: 1;
}
.article-work-pages .pages-content .lists .item .text-box .text-d__text2 {
    line-height: 1;
}
.details-pages {
    background-color: #F5F5F5;
}
.details-pages .block-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 70px 120px;
    background-color: #FFFFFF;
}
.details-pages .block-main .title {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
}
.details-pages .block-main .info {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 50px;
    color: #888888;
    padding-bottom: 40px;
    border-bottom: solid 1px #E5E5E5;
}
.details-pages .block-main .content {
    margin-top: 40px;
}
.details-pages .block-main .content img {
    display: block;
    max-width: 100%;
    margin: 50px auto;
}
.details-pages .paging {
    max-width: 1420px;
    padding: 37px 10px 130px;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}
.details-pages .paging .disabled,
.details-pages .paging span {
    color: #888888;
}
/* 工作动态end */
/* 质量评价等新闻列表start */
.article-pages .pages-content {
    max-width: 1400px;
    margin: 40px auto 0;
}
.article-pages .pages-content .item:first-of-type {
    border-top: solid 1px #E5E5E5;
}
.article-pages .pages-content .item {
    padding: 30px 0;
    display: flex;
    border-bottom: solid 1px #E5E5E5;
    position: relative;
    /* height: 210px; */
    transition: .5s;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}
.article-pages .pages-content .item .item-line {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -1px;
    height: 1px;
    background-color: #542561;
    width: 0;
    left: 0;
    transition: all .5s;
}
.article-pages .pages-content .item .left {
    max-width: 220px;
    flex: 1;
}
.article-pages .pages-content .item .left .text-m {
    font-size: 30px;
    font-weight: bold;
}
.article-pages .pages-content .item .left .text-y {
    color: #AAAAAA;
}
.article-pages .pages-content .item .left .line {
    display: none;
    width: 61px;
    height: 1px;
    background: #DCDCDC;
    margin-top: 28px;
}
.article-pages .pages-content .item .center {
    width: 400px;
    height: 230px;
}
.article-pages .pages-content .item .center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-pages .pages-content .item .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 880px;
}
.article-pages .pages-content .item .right .text-n {
    font-weight: 500;
    font-size: 20px;
    color: #222222;
    transition: .5s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.article-pages .pages-content .item .right .text-c {
    display: none;
    color: #222222;
    opacity: 0.6;
    margin-top: 20px;
    flex: 1;
    /* overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; */
}
.article-pages .pages-content .item .button {
    margin-top: 10px;
}
.article-pages .pages-content .item:hover {
    background-color: #AC292C;
    max-width: 1300px;
    padding: 30px 5%;
    width: 100%;
}
.article-pages .pages-content .item:hover * {
    color: #FFFFFF !important;
    transition: .5s;
}
/* 质量评价等新闻列表end */
/* 下载中心start */
.download-pages .pages-content {
    margin: 42px auto 0;
    max-width: 1220px;
    padding: 0 10px;
}
.download-pages .pages-content .item {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EEEEEE;
}
.download-pages .pages-content .item .left {
    display: flex;
    align-items: center;
}
.download-pages .pages-content .item img {
    margin-right: 10px;
}
.download-pages .pages-content .item .right {
    font-size: 14px;
    color: #AC272A;
}
/* 下载中心end */

/* 阳光服务start */
.sevice-pages .pages-text {
    text-align: center;
    max-width: 1000px;
    padding: 0 10px;
    margin: 0 auto;
    margin-top: 38px;
    font-size: 14px;
    color: #555555;
}
.sevice-pages .main-box {
    max-width: 1040px;
    margin: 60px auto 150px;
    padding: 0 10px;
}
.sevice-pages .form-group {
    margin-bottom: 20px;
}
.sevice-pages .radio-label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}
.sevice-pages .radio-group {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}
.sevice-pages .radio-item .layui-form-radio {
    margin: 0;
    padding: 0;
}
.sevice-pages .input-row input {
    flex: 1;
    padding: 0 15px;
    border-radius: 6px;
    border: solid 1px #e5e5e5;
    height: 60px;
    width: 0;
}
.sevice-pages .input-row {
    display: flex;
    gap: 20px;
}
.sevice-pages .textarea-wrapper {
    position: relative;
}
.sevice-pages textarea {
    width: 100%;
    padding: 8px 8px 20px;
    border-radius: 6px;
    resize: none;
    border: none;
    outline: none;
    border: solid 1px #e5e5e5;
}
.sevice-pages button {
    max-width: 400px;
    height: 60px;
    background: #AC292C;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto 0;
    color: #FFFFFF;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
}
.sevice-pages button:hover {
    background-color: #AC272A;
}
.sevice-pages input::placeholder,
.sevice-pages textarea::placeholder {
    color: #CCCCCC;
}
.layui-form-radio:hover>*, .layui-form-radioed, .layui-form-radioed>i {
    color: #AC292C;
}
.sevice-pages .input-row input,
.sevice-pages .textarea-wrapper textarea {
    transition: all .5s;
}
.sevice-pages .input-row input:focus,
.sevice-pages .textarea-wrapper textarea:focus {
    box-shadow: 0px 0px 15px 0px rgba(172,39,42,0.15);
    border: 1px solid #AC292C;
}
/* 阳光服务 */

