/* 配置全局css类名 */
div,
p,
span,
h1,
h2,
h3,
h4,
h5,
dl,
ol,
ul {
    margin: 0;
    padding: 0;
}

a,
a:hover {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

html {
    font-size: 16px;
}

body {
    font-size: 1rem;
    background-color: #F9F9F9;
    font-family: "Microsoft YaHei", "PingFang_Light";
    font-weight: 300;
}

/* 字体大小 */
.fs-12 {
    font-size: 0.75rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.fs-16 {
    font-size: 1rem;
}

.fs-18 {
    font-size: 1.125rem;
}

.fs-20 {
    font-size: 1.25rem;
}

.fs-22 {
    font-size: 1.375rem
}

.fs-24 {
    font-size: 1.5rem;
}

.fs-30 {
    font-size: 1.875rem;
}

.fs-32 {
    font-size: 2rem;
}

.fs-34 {
    font-size: 2.125rem;
}

.fs-36 {
    font-size: 2.25rem;
}

.fs-40 {
    font-size: 2.5rem;
}

.fs-45 {
    font-size: 2.8125rem;
}

/* 页面级 */
.page {
    padding-top: 7.1875rem;
}

/* 布局满行 */
.panel-full {
    width: 100%;
}

/* 布局版心 */
.panel {
    width: calc(100% - 18rem);
    margin: 0 auto;
    box-sizing: border-box;
}

/* 布局左右 */
.panel-content {
    width: calc(100% - 18rem);
    margin: 0 auto;
    box-sizing: border-box;
}

/* panel布局底部虚线边框 */
.panel-bb {
    border-bottom: 1px dashed #e3e3e3;
}

.title-warp {
    text-align: center;
    line-height: 1;
}

.title-warp h4 {
    margin: 0 0 3.625rem;
}

.title-warp h4 span {
    color: #C4112F;
}

.text-ellipsis-single {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-ellipsis-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-ellipsis-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.invalid-feedback {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media screen and (max-width: 680px) {

    /* 页面级 */
    .page {
        padding-top: 5rem;
    }

    /* 布局满行 */
    .panel-full {
        width: 100%;
    }

    /* 布局版心 */
    .panel {
        width: calc(100% - 4rem);
        margin: 0 auto;
        box-sizing: border-box;
    }

    /* 布局左右 */
    .panel-content {
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    /* 字体大小 */
    .fs-12 {
        font-size: 0.75rem;
    }

    .fs-14 {
        font-size: 0.875rem;
    }

    .fs-16 {
        font-size: 1rem;
    }

    .fs-18 {
        font-size: 1.125rem;
    }

    .fs-20 {
        font-size: 1.25rem;
    }

    .fs-22 {
        font-size: 1.375rem;
    }

    .fs-24 {
        font-size: 1.5rem;
    }

    .fs-30 {
        font-size: calc(1.875rem * 0.8);
        ;
    }

    .fs-32 {
        font-size: calc(2rem * 0.8);
    }

    .fs-34 {
        font-size: calc(2.125rem * 0.8);
    }

    .fs-36 {
        font-size: calc(2.25rem * 0.8);
    }

    .fs-40 {
        font-size: calc(2.5rem * 0.8);
    }

    .fs-45 {
        font-size: calc(2.8125rem * 0.8);
    }
}



/* header头部 */
.header-pc {
    height: 7.1875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8.9375rem;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 3px 0px 3px 0px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #E3E3E3;
}

.header-pc .logo {
    display: inline-flex;
    flex-shrink: 0;
    color: #000;

}

.header-pc .logo img {
    width: 12rem;
    margin-right: 0.3125rem;
}

.header-pc>nav {
    width: 100%;
    height: 100%;
}

.header-pc>nav>ul {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.header-pc>nav>ul>li {
    list-style: none;
    margin: 0 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-pc>nav>ul>li>a {
    color: #000;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #fff;
}

.header-pc>nav>ul>li>.active {
    color: #C51030;
    border-color: #C51030;
}

.header-pc .tool-warp {
    flex-shrink: 0;
    margin-top: -0.3125rem;
    display: flex;
    align-items: center;
}

.header-pc .tool-warp .telphone {
    color: #C51030;
    margin-right: 3.625rem;
    font-weight: 700;
}

.header-pc .tool-warp .dropdown a {
    background-color: transparent;
    color: #959595;
    border: none;
}

.header-pc .tool-warp .dropdown a:focus {
    box-shadow: none;
}

.header-pc .tool-warp .dropdown.show>a {
    color: #C51030;
}

.header-pc .tool-warp .dropdown.show>a::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-bottom: .3em solid;
    border-right: .3em solid transparent;
    border-top: 0;
    border-left: .3em solid transparent;
}


.header-pc .tool-warp .dropdown .dropdown-menu {
    margin: 0;
    padding: 1.875rem 1.625rem;
    width: 15.625rem;
    height: 20rem;
    top: 3.8rem !important;
    background: #FFFFFF;
    border: none;
    border-radius: 0;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.102);
    position: relative;
}

.header-pc .tool-warp .dropdown .dropdown-menu::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-bottom: 1rem solid #fff;
    position: absolute;
    top: -0.9rem;
    left: 4.5rem;
}

.header-pc .tool-warp .dropdown .dropdown-item {
    font-size: 0.875rem;
    color: #959595;
    border-bottom: dashed 1px #E3E3E3;
    padding: 1rem 0 0.25rem;
}

.header-pc .tool-warp .dropdown .dropdown-item:hover {
    color: #C51030;
}

.header-pc .tool-warp .dropdown .dropdown-item:first-of-type {
    padding-top: 0;
}

/* 移动端-头部 */
.header-mobile {
    height: 5rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 3px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.header-mobile .logo {
    display: inline-flex;
    flex-shrink: 0;
    color: #000;
}

.header-mobile .logo img {
    width: 12rem;
    margin-right: 0.3125rem;
}

/* footer */
.footer-warp footer {
    padding: 0 15.5rem;
    height: 43.75rem;
    background: #e3e3e3;
    display: flex;
    justify-content: space-between
}

.footer-warp .footer-left {
    display: flex;
    flex-direction: column;
    padding-top: 7.625rem;
}

.footer-warp .footer-left .footer-nav {
    display: flex;
}

.footer-warp .footer-left .nav-col {
    display: flex;
    flex-direction: column;
    margin-right: 5.625rem;
}

.footer-warp .footer-left .nav-col:last-child {
    margin-right: 0;
}

.footer-warp .footer-left .nav-col h5 {
    font-size: 1rem;
}

.footer-warp .footer-left .nav-col a {
    font-size: 0.75rem;
    margin-top: 1.25rem;
    color: #333;
}

.footer-warp .footer-left .consult {
    margin-top: 7.875rem;
    width: 8rem;
    height: 3.125rem;
    background-color: #C51030;
    color: #fff;
    border-radius: 3.125rem;
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: width 0.5s;
}

.footer-warp .footer-left .consult:hover {
    width: 14rem;
}

.footer-warp .footer-left .consult:active {
    transform: scale(0.98);
}

.footer-warp .footer-left .consult i {
    font-size: 1.375rem;
    margin-right: 0.625rem;
}

.footer-warp .footer-right {
    padding-top: 7.75rem;
}

.footer-warp .footer-right h2 {
    padding-bottom: 0.625rem;
}

.footer-warp .footer-right>p {
    margin-top: 1.75rem;
}

.footer-warp .footer-right .contact-pane {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.25rem;
    grid-row-gap: 0.5rem;
    margin-top: 0.625rem;
}

.footer-warp .footer-right .contact-pane div:nth-child(1) i {
    margin-right: 0.625rem;
}

.footer-warp .footer-right .contact-pane div:nth-child(2) a,
.footer-warp .footer-right .contact-pane div:nth-child(1) a,
.footer-warp .footer-right .contact-pane div:nth-child(2),
.footer-warp .footer-right .contact-pane div:nth-child(1) {
    color: #C51030;
    display: flex;
    align-items: center;
    line-height: 1;
    font-weight: bold;
}

.footer-warp .footer-right .contact-row {
    line-height: 1;
    margin-top: 0.25rem;

}

.footer-warp .footer-right .contact-row i {
    color: #C51030;
    margin-right: 0.625rem
}

.footer-warp .footer-right .qrcode-warp {
    display: flex;
    margin-top: 1.625rem;
}

.footer-warp .footer-right .qrcode-warp>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.footer-warp .footer-right .qrcode-warp img {
    width: 7.875rem;
    height: 7.875rem;
}

.footer-warp .footer-right .qrcode-warp>div:last-of-type img {
    background-color: #fff;
    border: 0.625rem solid #fff;
}

.footer-warp .copeyright {
    height: 3.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* pc端二级下拉面板设置样式 */
.modal-backdrop {
    display: none !important;
}

/* pc端二级下拉面板设置样式 */
.custom-dropdown-toggle {
    padding: 0 0.4rem;
}

@keyframes opacitY {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.pc-nav-warp .dropdown:hover .dropdown-panel {
    display: block;
    opacity: 1;
    /* 鼠标悬停时透明度变为 1 */
    visibility: visible;
    /* 鼠标悬停时可见 */
    animation: opacitY 0.3s linear;
}

/* 自定义下拉面板样式 */
.pc-nav-warp .dropdown-panel {
    /* display: none; */
    position: fixed;
    z-index: 999;
    width: 70.5rem;
    height: 38.75rem;
    left: 50%;
    top: 7.2rem;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
}

.head-menu-warp {
    display: flex;
    height: 100%;
    background-color: #f9f9f9;
}

.head-menu-warp a {
    height: auto;
}

.head-menu-warp .head-menu-list {
    height: 100%;
    width: 17.2rem;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.head-menu-warp h4 {
    font-size: 1rem;
    padding: 2rem 1.75rem 1.5rem 1.5rem;
    font-weight: 500;
}


.head-menu-list>.nav>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.75rem 1rem 1.5rem;
}

.head-menu-list>.nav>li .iconfont {
    font-size: 1.4rem;
}

.head-menu-list>.nav>li>a.active {
    background-color: #fff;
    color: #C4112F;
}


.head-menu-warp .head-menu-content {
    width: 100%;
    display: flex;
    padding: 0 1.875rem;
    flex-direction: column;
    height: 100%;
}

.head-menu-warp .head-menu-content.fade:not(.show) {
    opacity: 1;
    display: none;
}

.head-menu-warp .head-menu-content .title {
    border-bottom: 1px solid #C51030;
    display: flex;
    justify-content: center;
}

.head-menu-warp .head-menu-content .title h4 {
    color: #C51030;
    text-align: center;
    line-height: 1;
    padding: 1.375rem 0;
    font-size: 1rem;
    font-size: 500;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.head-menu-warp .menu-content-warp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    overflow-y: auto;
    height: auto;
    overflow-y: auto;
    flex-shrink: 0;
    margin-top: 1rem;
}


.head-menu-warp .menu-content-warp .menu-content-pane {
    display: flex;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #e3e3e3;
    padding-top: 1rem;
}

.head-menu-warp .menu-content-warp .service-menu-content-pane:nth-child(2n-1) {
    padding-right: 1rem;
    box-sizing: border-box;
}


.service-menu-content-pane .img-warp {
    width: 9.875rem;
    height: 5.875rem;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.service-menu-content-pane .img-warp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}

.service-menu-content-pane .service-content-info {
    display: flex;
    flex-direction: column;
    padding-left: 1.25rem;
    width: calc(100% - 9.875rem);
}

.service-menu-content-pane .service-content-info a {
    display: block;
    width: 100%;
    white-space: nowrap;
    /* 不换行 */
    overflow: hidden;
    /* 超出隐藏 */
    text-overflow: ellipsis;
    padding-bottom: 1rem;
    flex-shrink: 0;
}

.service-menu-content-pane .service-content-info .tag-warp>span {
    display: inline-flex;
    padding: 0.2rem 0.3rem;
    font-size: 0.75rem;
    background-color: #e3e3e3;
    margin-right: 0.625rem;
    margin-top: 0.625rem;
    align-items: center;
    cursor: default;
}

.service-menu-content-pane .service-content-info .tag-warp>span:nth-child(2n) {
    margin-right: 0;
}

.head-menu-warp .service-menu-warp.case-menu-warp {
    grid-template-columns: 100%;
}

.head-menu-warp .service-menu-warp.case-menu-warp .case-menu-content-pane {
    padding-left: 0 !important;
}

.head-menu-warp .service-menu-warp.case-menu-warp .case-menu-content-pane .service-content-info {
    width: 50%;
}

.head-menu-warp .service-menu-warp.case-menu-warp .case-menu-content-pane .service-content-info .tag-warp>span:nth-child(2n) {

    margin-right: 0.625rem;
}



.service-menu-content-pane:hover .img-warp img {
    width: 120%;
    height: 120%;
}

.service-menu-content-pane:hover .service-content-info a {
    color: #C51030;
}

.service-menu-content-pane .service-content-info a:hover {
    /* text-decoration: underline; */
}

/* 媒体查询最大宽度680px */
@media screen and (max-width: 680px) {
    .footer-warp footer {
        padding: 0 2rem 4rem;
        flex-direction: column;
        height: auto;
    }

    .footer-warp .footer-left {
        display: flex;
        flex-direction: column-reverse;
        padding-top: 4rem;
    }

    .footer-warp .footer-left .consult {
        margin-top: 0;
        width: 10rem;
        margin-bottom: 2rem;
    }

    .footer-warp .footer-right {
        padding-top: 4rem;
    }

    .footer-warp .footer-left .footer-nav {
        display: flex;
        justify-content: space-between;
    }

    .footer-warp .footer-left .nav-col {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .footer-warp .footer-left .nav-col a {
        font-size: 1rem;
    }


}



/* 移动端导航弹出框 */
.modal-slide-left.modal.fade .modal-dialog {
    transform: translateX(-100%);
    /* 初始位置在左侧外部 */
    transition: transform 0.3s ease-out;
}

.modal-slide-left.modal.fade.show .modal-dialog {
    transform: translateX(0);
    /* 显示时移动到中心 */
}

.mobile-nav-modal {
    padding-right: 0 !important;
}

.mobile-nav-modal .modal-dialog {
    margin: 0;
    width: 100%;
    max-width: 640px;
}

.mobile-nav-modal .modal-dialog .modal-content {
    border-radius: 0;
    border-color: #eee;
}

.mobile-nav-modal .modal-dialog .modal-header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 1rem;
}

.mobile-nav-modal .modal-dialog .modal-title {
    font-size: 1.5rem;
    line-height: 1;
}

.mobile-nav-modal .modal-dialog .close {
    font-size: 1.5rem;
    height: 5rem;
    width: 5rem;
}

.mobile-nav-modal .modal-dialog .close span {
    font-size: 2rem;
}

.mobile-nav-modal .mobile-nav {
    font-size: 1.5rem;
}

.mobile-nav .navbar-nav {
    width: 100%;
}

.mobile-nav .navbar-nav .nav-item {
    border-bottom: 1px dashed #eee;
}

.mobile-nav .navbar-nav .nav-link {
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .navbar-nav .nav-link::after {
    border-top: .5rem solid;
    border-right: .5rem solid transparent;
    border-bottom: 0;
    border-left: .5rem solid transparent;
}

.mobile-nav .navbar-nav .dropdown-menu {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    padding-left: 2rem;
}

.mobile-nav .navbar-nav .dropdown-submenu {
    padding-left: 2rem;
}

.mobile-nav .navbar-nav .dropdown-item {
    padding: 1rem 1rem;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(67 66 66 / 90%);
}

.mobile-nav .navbar-nav .dropdown-item::after {
    border-top: .5rem solid;
    border-right: .5rem solid transparent;
    border-bottom: 0;
    border-left: .5rem solid transparent;
}

.mobile-nav .navbar-nav .dropdown-item:active {
    color: black;
    text-decoration: none;
    background-color: transparent;
}


/* 分页样式 */
.custom-pagination {
    margin-top: 7.5rem;
}

.custom-pagination .pagination .page-item {
    margin: 0 0.3125rem;
}

.custom-pagination .pagination .page-item a {
    width: 3.75rem;
    height: 3.75rem;
    background-color: #F9F9F9;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 0;
    flex-shrink: 0;
    border: none;
}

.custom-pagination .pagination .page-item:hover {
    box-shadow: 0px 3px 6px 0px #E5E5E5;
}

.custom-pagination .pagination .page-item .page-link:focus {
    box-shadow: none;
    outline: none;
}

.custom-pagination .pagination .page-item:active a,
.custom-pagination .pagination .page-item.active a {
    background-color: #C4112F;
    color: #fff;
    border-color: #C4112F;
}


.custom-pagination .pagination .page-item:first-of-type,
.custom-pagination .pagination .page-item:last-of-type {}

.custom-pagination .pagination .page-item:first-of-type a,
.custom-pagination .pagination .page-item:last-of-type a {
    width: 3.125rem;
    height: 3.75rem;
    background-color: #fff;
    font-size: 2rem;
    border: 1px solid #f5f5f5;
}

.custom-pagination .pagination .page-item i.iconfont {
    font-size: 2.5rem;
    color: #959595;
}

/* 浮动侧边栏 */
.float-side-warp {
    width: 3.125rem;
    height: 15.625rem;
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: -3px 3px 9px rgba(0, 0, 0, 0.08);
}

.float-side-warp .float-item {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    background-color: #C51030;
    border: none;
}

.float-side-warp .float-item a span {
    display: none;
}

.float-side-warp .float-item:hover {
    background-color: #fff;
}

.float-side-warp .float-item:hover:not(:last-of-type) i {
    display: none;
}

.float-side-warp .float-item:hover span {
    display: inline-block;
    font-weight: bold;
}

.float-side-warp .float-item:hover a,
.float-side-warp .float-item:hover i {
    color: #C51030;
}

.float-side-warp .float-item a {
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0 0.4rem;
    text-align: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    align-items: center;
    box-sizing: content-box;
}

.float-side-warp .float-item:last-of-type a {
    border: none;
}

.float-side-warp .float-item .iconfont {
    font-size: 1.5rem;
    color: #fff;
}

.float-side-warp .dropdown:hover .dropdown-panel {
    display: block;
}

/* 自定义下拉面板样式 */
.float-side-warp .dropdown-panel {
    display: none;
    position: fixed;
    z-index: 999;
    width: 11.5rem;
    height: 14rem;
    right: 3.125rem;
    background-color: #fff;
    /* box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.102); */
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.302);
    top: 60%;
    transform: translateY(-8.4rem);
}


.float-side-warp .qrcode-warp {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.float-side-warp .qrcode-warp p {
    font-size: 0.75rem;
    margin-top: 0.625rem;
    text-align: center;
}

.float-side-warp .qrcode-warp img {
    width: 7.25rem;
    height: 7.25rem;
    object-fit: contain;
}

.float-side-warp .telphone-warp {
    height: 100%;
}

.float-side-warp .telphone-warp .telphone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50%;
    margin: 0 1.5rem;
}

.float-side-warp .telphone-warp .telphone-item:first-of-type {
    border-bottom: 1px dashed #E3E3E3;
}


.float-side-warp .telphone-warp .content {
    width: 100%;
    font-size: 1rem;
    color: #C51030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.float-side-warp .telphone-warp .content i {
    display: inline-block !important;
    color: #C51030;
    font-size: 1.2rem;
}

.float-side-warp .telphone-warp .tip {
    width: 100%;
    font-size: 0.5rem;
    white-space: nowrap;
    margin-top: 0.1rem;
}

.float-side-warp .telphone-warp .telphone-item:last-of-type .tip {
    margin-left: -4px;
}

/* .float-side-warp .wechat-warp img {} */




.custom-carousel {
    height: 41.25rem;
}

.custom-carousel .carousel-indicators li {
    background-color: #959595;
    opacity: 0.5;
    width: 3.125rem;
    height: 2px;
    margin-left: 0.625rem;
    margin-right: 0.625rem;
    border-bottom-width: 3.125rem;
}

.custom-carousel .carousel-indicators li.active {
    background-color: #C4112F;
    opacity: 1;
}


.custom-carousel .carousel-item,
.custom-carousel .carousel-inner {
    height: 100%;
}


.custom-carousel .carousel-item .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.125rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.17em;
}


/* 文章面板公共样式 */


.article {
    background-color: #fff;
    border: .5px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .4s;
}

.article:after {
    background-color: #c51030;
    bottom: -1px;
    content: "";
    display: inline-block;
    height: .25rem;
    left: -1px;
    position: absolute;
    transition: height .3s;
    width: calc(100% + 2px);
}

.article .img-warp {
    background-color: #959595;
    height: 16.375rem;
    overflow: hidden;
}

.article .img-warp img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .3s;
    width: 100%;
}

.article a {
    align-items: center;
    display: inline-block;
    padding: 1.5rem 0 0 1.25rem;
    width: 100%;
}

.article>p {
    cursor: default;
    height: 3.8rem;
    line-height: 1.5;
    margin: 2rem 1.25rem 0;

}

.article-tool {
    align-items: center;
    display: flex;
    height: 6rem;
    justify-content: space-between;
    padding: 0 1.25rem;
    transition: transform .3s;
}

.article-tool span {
    color: #959595;
    font-size: .875rem;
}

.article:hover .img-warp img {
    transform: scale(1.2);
}

.article:hover>a {
    color: #c51030;
}

.article:hover:after {
    height: .625rem;
}


form .form-alert {
    width: 100%;
    text-align: center;
    padding: 4rem 0;
    font-size: 1.4rem;
    border-radius: 10px;
}

form .form-alert-success {
    background-color: #C51030;
    color: #fff;
}

form .form-alert-failure {
    background-color: #fef0f0;
    color: #f56c6c;
}



.hui-content-warp {
    background-color: #fff;
    height: 58.5rem;
}

.hui-content-warp .title-warp {
    text-align: center;
    line-height: 1;
    padding-top: 7.9375rem;
}

.hui-content-warp .title-warp h4 {
    margin: 0 0 3.625rem;
}

.hui-content-warp .title-warp h4 span {
    color: #C4112F;
}

.hui-content-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1rem;
    margin-top: 7.75rem;
}

.hui-content-list ul {
    display: flex;
    flex-direction: column;
    height: 27.75rem;
    box-sizing: border-box;
    border: 1px solid #E3E3E3;
    padding: 2rem 1.5rem;
    background-color: #F9F9F9;
}

.hui-content-list ul li {
    line-height: 1;
    list-style: none;
    font-size: 0.75rem;
}

.hui-content-list ul li.sub-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.875rem;
}

.hui-content-list ul li.sub-title .iconfont {
    font-size: 3.625rem;
    color: #C4112F;
}

.hui-content-list ul li.sub-title span {
    margin-bottom: 0.25rem;
}

.hui-content-list ul li:nth-child(n+2) {
    margin-bottom: 1.375rem;
}

.hui-content-list ul li:nth-child(n+2) i {
    font-size: 0.875rem;
}

.hui-content-list ul.active,
.hui-content-list ul.active a,
.hui-content-list ul:hover,
.hui-content-list ul:hover a {
    border-color: #C51030;
    color: #C51030;
}


/* 媒体查询屏幕小于680 触发移动端样式 */
@media screen and (max-width: 680px) {

    .hui-content-warp {
        height: auto;
        padding: 0;
    }

    .hui-content-warp .title-warp {
        padding-top: 4rem;
    }

    .hui-content-list {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-gap: 1rem;
        margin-top: 4rem;
        padding-bottom: 4rem;
    }

    .hui-content-list ul {
        width: 100%;
        flex-shrink: 0;
    }

    .hui-content-list ul li.sub-title {
        margin-bottom: 1.5rem;
    }

    .hui-content-list ul li a {
        line-height: 2;
    }


    .custom-carousel {
        height: 16rem;
    }

    .custom-carousel .carousel-item,
    .custom-carousel .carousel-inner {
        height: 100%;
    }

    .custom-carousel .carousel-item img {
        height: 100%;
        object-fit: cover;
    }

    .custom-carousel .carousel-indicators li {
        border-bottom-width: 10px;
    }
}