.ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.scrollbar-no::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
    color: transparent;
    background: transparent;
    -webkit-appearance: none;
}

.page-back-top {
    background: #fff;
    cursor: pointer;
    position: fixed;
    z-index: 99;
    transform: scale(0);
    transition: 0.3s transform cubic-bezier(0.25, 0.8, 0.5, 1);
    width: 0.925rem;
    height: 0.925rem;
    right: 1.25rem;
    bottom: 1.25rem;
    box-shadow: 0 0.025rem 0.2rem 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.1rem;
}
.page-back-ai {
    background: #fff;
    cursor: pointer;
    position: fixed;
    z-index: 99;
    transform: scale(1);
    transition: 0.3s transform cubic-bezier(0.25, 0.8, 0.5, 1);
    width: 0.925rem;
    height: 0.925rem;
    right: 1.25rem;
    bottom:0.0rem;
    box-shadow: 0 0.025rem 0.2rem 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.1rem;
}

.page-back-top:hover {
    background-color: #E9F1FC;
}

.page-back-top.is-active {
    transform: scale(1);
}

.page-back-top i {
    display: block;
    background-image: url("../../img/common/icon-back-top.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 0.32rem;
    height: 0.32rem;
    margin: 0 auto 0.05rem;
}
.page-back-ai i {
    display: block;
    background-image: url("../../img/Ai.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 0.62rem;
    height: 0.62rem;
    margin: 0 auto 0.05rem;
}

.page-back-top span {
    color: #666;
    line-height: 1;
    font-size: 0.175rem;
}

.card {
    width: 100%;
    background-color: #fff;
    border-radius: 0.1rem;
    margin-bottom: .3rem;
}

.card .title {
    height: 0.675rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e9f1fc;
    padding: 0 0.2rem;
    border-radius: 0.1rem;
    font-size: 0.225rem;
    color: #014B96;
    font-weight: bold;
}

.card .title .more {
    font-size: 0.175rem;
    color: #737373;
    font-weight: normal;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.card .title .more img {
    width: 0.125rem;
    height: 0.125rem;
    margin-right: 0.025rem;
}

.card .tab {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding-top: 0.1875rem;
    padding-left: 1rem;
}

.card .tab-item {
    height: 100%;
    font-size: 0.2rem;
    color: #3A3A3A;
    font-weight: normal;
    padding: 0.125rem 0.15rem;
    cursor: pointer;
    transition: all 0.3s;
}

.card .tab-item:hover {
    background-color: #fff;
    border-radius: 0.1rem 0.1rem 0 0;
}

.card .tab .is-active {
    background-color: #fff;
    border-radius: 0.1rem 0.1rem 0 0;
}

.card .mob-tab {
    display: none;
}

/* 头部导航 */
.mobile-nav {
    display: none;
}

.mobile_menu {
    display: none;
}

.top-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.0125rem solid #4e84be;
    height: 1.2rem;
    padding: 0 1.65rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.top-nav .logo {
    height: 0.825rem;
    width: auto;
}

.top-nav .navbar-menu {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 0.25rem;
}

.top-nav .navbar-menu-item {
    height: 100%;
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-nav .navbar-menu-item .title {
    font-size: 0.2rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-nav .navbar-menu-item .title .icon {
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.05rem;
}

.top-nav .navbar-menu-item .title .head {
    width: 0.425rem;
    height: 0.425rem;
    border-radius: 50%;
    margin-right: 0.05rem;
}

.top-nav .navbar-menu-item:hover {
    position: relative;
}

.top-nav .navbar-menu-item:hover::after {
    content: "";
    width: 0.625rem;
    height: 0.025rem;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: toWidth 0.3s linear;
}

.top-nav .navbar-menu .is-active {
    position: relative;
}

.top-nav .navbar-menu .is-active::after {
    content: "";
    width: 0.625rem;
    height: 0.025rem;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: toWidth 0.3s linear;
}

@keyframes toWidth {
    0% {
        width: 0;
    }
    100% {
        width: 0.625rem;
    }
}

.top-nav.has-bg {
    background-color: #1F4D9C;
    box-shadow: 0 0 6px 3px #1F4D9C;
}

.large-h {
    height: 7.5rem;
    background: url(../../img/index/header.png) no-repeat center / 100% 100%;
    padding-top: 1.2rem;
}

.small-h {
    height: 4.5rem;
    background: url(../../img/index/header.png) no-repeat center / 100% 100%;
    padding-top: 1.2rem;
}

.small-h .center-text {
    height: 100%;
    width: 100%;
    font-size: 0.625rem;
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.layui-pager {
    display: flex;
    justify-content: center;
    user-select: none;
}

.layui-pager .layui-laypage a {
    color: #333;
    border: 1px solid #eee;
}

.layui-pager .layui-laypage-em {
    background: #005BAC !important;
}

/* 底部 */
.footer {
    margin-top: 0.75rem;
}

.footer .count {
    width: 100%;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.975rem 1.875rem 1.275rem 1.875rem;
}

.footer .count .item {
    display: flex;
    align-items: center;
}

.footer .count .item .left {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.15rem;
}

.footer .count .item .right .num {
    font-size: 0.4375rem;
    line-height: 0.5rem;
    color: #2847C6;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
}

.footer .count .item .right .num span {
    font-size: 0.3rem;
}

.footer .count .item .right .text {
    font-size: 0.225rem;
    color: #736F6F;
    font-weight: bold;
}

.footer .nav {
    width: 100%;
    display: flex;
    background-color: #212121;
    padding: 0.75rem 1.875rem;
}

.footer .nav .left {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.footer .nav .left .item {
    width: 15%;
}

.footer .nav .left .item-name {
    font-size: 0.225rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.footer .nav .left .item-list li {
    font-size: 0.175rem;
    color: #B5B5B5;
    margin-bottom: 0.15rem;
}
.footer .nav .left .item-list li a{ color: #B5B5B5;}

.footer .nav .left .item-list li:nth-last-child(1) {
    margin-bottom: 0;
}

.footer .nav .left .item-list li:hover {
    color: #fff;
}

.footer .nav .right {
    width: 16%;
}

.footer .nav .right .tel {
    margin-bottom: 0.4rem;
}

.footer .nav .right .tel .text {
    font-size: 0.225rem;
    color: #FFFFFF;
}

.footer .nav .right .tel .num {
    font-size: 0.35rem;
    color: #FFFFFF;
    font-weight: bold;
}

.footer .nav .right .qrcode {
    display: flex;
}

.footer .nav .right .qrcode .item {
    margin-right: 0.375rem;
}

.footer .nav .right .qrcode .item img {
    width: 1.35rem;
    height: 1.35rem;
    margin-bottom: 0.15rem;
}

.footer .nav .right .qrcode .item .text {
    font-size: 0.175rem;
    color: #A6A6A6;
}

.footer .bottom {
    padding: 0.3rem 0;
    font-size: 0.175rem;
    color: #B5B5B5;
    text-align: center;
    background-color: #1C1C1C;
}

.mask {
    display: none;
}

.searchs {
    padding-top: 100px;
    padding-bottom: 100px;
}

.searchs-b {
    font-size: 24px;
    line-height: 1.2;
    margin-top: 20px;
    color: #666;
}

.max1400 {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
}

@media screen and (max-width: 768px) {
    .max1040, .max1300, .max1400, .max1600, .max1800 {
        padding: 0 .3rem;
    }
    .searchs{
        padding-top: .7rem;
        padding-bottom: .7rem;
    }
    .searchs-b{
        font-size: .32rem;
        margin-top: .2rem;
    }
    .header {
        margin-top: 0.65rem;
    }

    .top-nav {
        display: none;
    }

    .large-h {
        padding-top: 0;
    }

    .small-h {
        height: 2rem;
        padding-top: 0;
    }

    .small-h .center-text {
        height: 100%;
        font-size: 0.35rem;
        gap: 0.25rem;
    }

    .page-back-top {
        right: 0.2rem;
        bottom: 1.2rem;
        width: 0.6rem;
        height: 0.6rem;
        background-color: #fff !important;
        box-shadow: 0 0.125rem 1rem 0 rgba(0, 0, 0, 0.15);
    }
    .page-back-ai {
        right: 0.2rem;
        bottom: 1.2rem;
        width: 0.6rem;
        height: 0.6rem;
        background-color: #fff !important;
        box-shadow: 0 0.125rem 1rem 0 rgba(0, 0, 0, 0.15);
    }


    .page-back-top i {
        width: 0.25rem;
        height: 0.25rem;
    }
    .page-back-ai i {
        width: 0.55rem;
        height: 0.55rem;
    }

    .page-back-top span {
        font-size: 0.15rem;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-nav {
        width: 100%;
        height: 0.65rem;
        background-color: #1F4D9C;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 0.3rem;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
    }

    .mobile-nav-left {
        height: 70%;
        width: auto;
    }

    .mobile-nav-right {
        width: 0.3rem;
        height: 0.3rem;
    }

    .mobile-nav-right img {
        display: block;
        width: 100%;
        height: 100%;
    }

    .mobile_menu {
        position: fixed;
        top: 0.65rem;
        left: 0;
        width: 100%;
        height: calc(100% - 0.65rem);
        max-height: calc(100% - 0.65rem);
        background: #f5f5f5;
        padding: 0.2rem 0.3rem;
        overflow: auto;
        z-index: 99;
    }

    .mobile_menu li {
        position: relative;
        margin: 0.0625rem;
        border-bottom: 1px solid #dcdcdc;
        line-height: 0.5rem;
        font-size: 0.175rem;
    }

    .mobile_menu li.cur {
        color: white;
    }

    .mobile_menu li a {
        display: block;
        width: 100%;
        padding: 0 0.2rem;
        color: black;
    }

    .mobile_menu li ul li {
        line-height: 0.5rem;
    }

    .mobile_menu li ul li a {
        display: block;
        width: 100%;
        color: #7a7a7a;
        padding: 0 0.4rem;
    }

    .mobile_menu li ul li:nth-last-child(1) {
        border: none;
    }

    .mobile_menu .li_show > .icon_add {
        position: relative;
    }

    .mobile_menu .li_show > .icon_add::before {
        content: "";
        width: 0.2rem;
        height: 2px;
        background-color: #014B96;
        position: absolute;
        right: 0%;
        top: calc(50% - 1px);
    }

    .mobile_menu .li_show > .icon_add::after {
        content: "";
        width: 0.2rem;
        height: 2px;
        background-color: #014B96;
        position: absolute;
        right: 0;
        top: calc(50% - 1px);
        transform: rotate(90deg);
        transform-origin: center;
        transition: all 0.3s;
    }

    .mobile_menu .li_show.cur > .icon_add::after {
        transform: rotate(0deg);
    }

    .card .tab {
        display: none;
    }

    .card .mob-tab {
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .card .mob-tab .box {
        display: flex;
        overflow-x: auto;
    }

    .card .mob-tab .box::-webkit-scrollbar {
        display: none;
        /* Chrome Safari */
    }

    .card .mob-tab .box .tab-item {
        flex: 0 0 auto;
        padding: 0.15rem 0.2rem;
        text-align: center;
        white-space: nowrap;
        color: #666;
        font-size: 0.175rem;
        position: relative;
        cursor: pointer;
    }

    .card .mob-tab .box .tab-item.is-active {
        color: #014B96;
        font-weight: bold;
        position: relative;
    }

    .card .mob-tab .box .tab-item.is-active::after {
        content: "";
        display: block;
        width: 0.5rem;
        height: 2px;
        background-color: #014B96;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer {
        margin-top: 0;
    }

    .footer .count {
        padding: 0.5rem 0.2rem;
        flex-wrap: wrap;
        row-gap: 0.25rem;
    }

    .footer .count .item {
        width: 50%;
        justify-content: center;
    }

    .footer .count .item .left {
        width: 0.4rem;
        height: 0.4rem;
        margin-right: 0.1rem;
    }

    .footer .count .item .right .num {
        font-size: 0.25rem;
        line-height: 0.3rem;
    }

    .footer .count .item .right .num span {
        font-size: 0.2rem;
    }

    .footer .count .item .right .text {
        font-size: 0.175rem;
    }

    .footer .nav {
        padding: 0.25rem;
    }

    .footer .nav .left {
        display: none;
    }

    .footer .nav .right {
        width: 100%;
    }

    .footer .nav .right .tel .text {
        margin-bottom: 0.1rem;
    }

    .footer .nav .right .qrcode .item {
        width: 50%;
        margin-right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer .bottom {
        padding: 0.15rem 0.2rem;
    }

    .layui-pager .layui-laypage-prev,
    .layui-pager .layui-laypage-next {
        display: none;
    }

    /* 遮罩层 */
    .BckHidden {
        overflow: hidden;
        height: 100vh;
    }

    .mask {
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        display: none;
    }

    .mask .popup {
        width: 85%;
        height: 100%;
        background-color: #fff;
        margin-left: 15%;
        animation: moveIn 0.6s ease;
        overflow-y: auto;
        position: relative;
    }

    .mask .popup .popup_t {
        padding: 0.4rem 0 0.125rem;
        position: relative;
    }

    .mask .popup .popup_t .title {
        font-size: 16px;
        color: #333333;
        font-weight: bold;
        text-align: center;
    }

    .mask .popup .popup_t img {
        position: absolute;
        right: 0.2rem;
        top: 0.25rem;
        width: 0.2rem;
        height: 0.2rem;
    }

    .mask .popup .filter_con {
        width: 100%;
        height: 100;
        padding: 0.2rem 0.25rem;
    }

    .mask .popup .filter_con .filter_item .title {
        font-size: 0.2rem;
        color: #333333;
        font-weight: bold;
        margin-bottom: 0.15rem;
    }

    .mask .popup .filter_con .filter_item .filter_box {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.1rem;
        margin-bottom: 0.25rem;
    }

    .mask .popup .filter_con .filter_item .filter_box .item {
        font-size: 0.175rem;
        color: #363A44;
        padding: 4px 0.15rem;
        background: #F5F5F5;
        text-align: center;
    }

    .mask .popup .filter_con .filter_item .filter_box .filter_sel {
        background-color: #1888FF;
        color: #fff;
    }

    .mask .popup .filter_con .filter_item .date-box {
        width: 100%;
        height: 0.5rem;
        border: 1px solid #A8A8A8;
        border-radius: 0.05rem;
        display: flex;
        align-items: center;
        padding: 0 0.125rem;
        margin-bottom: 0.25rem;
    }

    .mask .popup .filter_con .filter_item .date-box-ipt {
        flex: 1;
        font-size: 0.175rem;
    }

    .mask .popup .filter_con .filter_item .date-box .icon {
        width: 0.25rem;
        height: 0.25rem;
    }

    .mask .popup .popup_b {
        width: 100%;
        padding: 0.1rem 0.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid #DDDDDD;
        /*position: absolute;*/
        bottom: 0;
        left: 0;
    }

    .mask .popup .popup_b .btn {
        padding: 0.1rem 0;
        text-align: center;
        border: 1px solid #1888FF;
        border-radius: 0.375rem;
        color: #1888FF;
    }

    .mask .popup .popup_b .cancel {
        width: 35%;
        padding: 0.1rem 0;
        color: #686B73;
        font-size: 0.175rem;
        text-align: center;
        border: 1px solid #B9BCBF;
        border-radius: 0.1rem;
        margin-right: 5%;
    }

    .mask .popup .popup_b .confirm {
        background-color: #1888FF;
        color: #fff;
        width: 60%;
        padding: 0.1rem 0;
        font-size: 0.175rem;
        text-align: center;
        border-radius: 0.1rem;
        border: 1px solid #1888FF;
    }

    @keyframes moveIn {
        0% {
            margin-left: 100%;
        }
        100% {
            margin-left: 15%;
        }
    }
}
