.pc-block {
    display: block;
}
.mb-block {
    display: none;
}

.w1500 {
    width: calc(100% - 5.25rem * 2);
    margin: 0 auto;
}

.more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 1.25rem;
    border-radius: .625rem;
    background: linear-gradient(90deg, #ed384e 0%, #c51025 100%);
    transition: all .6s;
}
.imgcover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.f300 {
    font-weight: 300;
}
.f350 {
    font-weight: 350;
}
.f500 {
    font-weight: 500;
}
.f600 {
    font-weight: 600;
}
.f700 {
    font-weight: 700;
}
.f1f {
    color: #1f1f1f;
}
.line-5 {
    line-height: 1.5;
}
.ellipsis {
    text-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.ellipsis-multiline {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis_3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
header {
    position: fixed;
    width: 100%;
    z-index: 5;
    transition: all .3s;
}
header .header_top {
    width: 100%;
    padding: 0 5.25rem;
    height: .75rem;
    background: linear-gradient(90deg, #24abf8 0%, #0989e1 100%);
}
header .header_top_nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .header_top_nav a {
    margin-left: 1rem;
}

.fix-header {
    height: auto;
}

.pc-header {
    width: 100%;
    display: block;
}

.header_list {
    display: flex;
    align-items: center;
    padding: 0 5.25rem;
    height: 1.5rem;
    background-color: #fff;
    justify-content: space-between;
}

.header_list .header-logo a {
    display: flex;
    width: 5.875rem;
}

.header_list .header-logo a img {
    width: 100%;
}
.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding-left: 5.875rem;
}

.header-nav .ul {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-start;
    transition: all .3s;
    transition-delay: .1s;
    margin-right: 1.4rem;
}

.header-nav .ul .li {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 .875rem;
}

.header-nav .ul .li:last-child {
    margin-right: 0;
}
.header-nav .ul .li:last-child::after {
    display: none;
}
.header-nav .ul a {
    font-weight: 500;
    transition: all .6s ease-in;
}

.header-nav .ul .li .li-nav {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    width: 6rem;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all .3s;
    transform: translateX(-50%) translateY(-20px);
}

@media (min-width: 1024px) {
    .header-nav .ul .li::after {
        content: '';
        position: absolute;
        right: -.875rem;
        top: 50%;
        width: .075rem;
        height: .075rem;
        background-color: rgba(0, 0, 0, .5);
        transform: translateY(-50%);
        transition: all .3s;
    }
}

.header-nav .ul .li .li-nav a {
    margin: .375rem 0;
    display: block;
    text-align: center;
    padding: 0 .5rem;
    padding-bottom: .375rem;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-nav .ul .li .li-nav a path {
    transition: all .3s;
}
.header-nav .ul .li .li-nav > a:last-child {
    margin-bottom: 0;
}
.header-nav .ul .li .li-nav a:last-child {
    margin-bottom: 0;
}
.header-nav .ul .li .li-nav .lib {
    margin-bottom: 0;
}
.header-nav .ul .li .li-nav .lib.cur {
    color: #c40e24;
}
.header-nav .ul .li .li-nav .lib.cur path {
    fill: #c40e24;
}
.header-nav .ul .li .li-nav .libbox {
    opacity: 0;
    visibility: hidden;
    left: 6rem;
    bottom: -2.75rem;
    width: 5rem;
    background: #fff;
    transform: translateY(.5rem);
    transition: all .3s;
}
.header-nav .ul .li.cur .li-nav  .libbox {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-end {
    display: flex;
    align-items: center;
    height: 100%;
}
.header-end .svg_icon:nth-child(1) {
    margin-left: 0;
}
.header-end .svg_icon {
    width: 0.75rem;
    height: 100%;
    flex-shrink: 0;
    margin-left: .45rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-end .svg_icon svg {
    width: 100%;
    height: 0.75rem;
}
.header-end  .svg_icon .lunage_hide {
    position: absolute;
    left: 50%;
    top: 100%;
    height: auto;
    transform: translateX(-50%);
    display: none;
    width: 2.5rem;
    background: #f3f3f3;
    box-shadow: 0 0 .075rem #666;
}
.header-end  .svg_icon .lunage_hide a {
    display: block;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: .25rem;
}
.header-end  .svg_icon .lunage_hide a img {
    height: .55rem;
    margin-right: .25rem;
}
.header-end .want {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: .45rem;
}
.header-end .more {
    width: 2.7rem;
    height: .75rem;
}
.header-end .more svg {
    width: .225rem;
    height: .175rem;
}
.header-end .more span {
    margin-right: .2rem;
}
.header-end .want_hide {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    width: 5rem;
    background-color: #fff;
    transform: translateX(-50%);
    display: none;
}
.header-end .want_hide a {
    margin: .375rem 0;
    padding: 0 .25rem;
    padding-bottom: .375rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s;
    border-bottom: 1px solid #e3e3e3;
}
.header-end .want_hide a svg {
    width: .3rem;
    height: .3rem;
}
.header-end .want_hide a path {
    transition: all .3s;
}

.header-end .want_hide a:last-child {
    margin-bottom: 0;
}
.header-end .want_hide a:hover {
    color: #c40e24;
}
.header-end .want_hide a:hover path {
    fill: #c40e24;
}
@media (min-width: 1024px) {
    .header-nav .ul .li:hover .li-nav {
        transform: translateX(-50%) translateY(0rem);
        opacity: 1;
        visibility: visible;
    }

    .header-nav .ul .li.active::after,
    .header-nav .ul .li:hover::after {
        opacity: 1;
        visibility: visible;
    }

    .header-nav .ul .li.active > a,
    .header-nav .ul .li:hover > a {
        color: #c40e24;
    }

    .header-nav .ul .li .li-nav a:hover {
        color: #c40e24;
    }
    .header-nav .ul .li .li-nav a:hover svg path {
        fill: #c40e24;
    }
    .header-nav {
        width: calc(100% - 5.875rem);
    }
}

.m-header .nume {
    width: 30px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    margin-top: 4px;
}

.m-header .nume .line {
    width: 100%;
    height: 3px;
    background-color: #c40e24;
    position: absolute;
    border-radius: .25rem;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1),
        background-color 0.5s 0s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

.m-header .nume .line1 {
    top: 0;
}

.m-header .nume .line2 {
    top: 9px;
}

.m-header .nume .line3 {
    top: 18px;
}

.m-header .nume.cur {
    transform: rotateY(-180deg);
}

.m-header .nume.cur .line1 {
    transform: rotate(45deg);
    transform: translate3d(0, 8px, 0) rotate(45deg);
}

.m-header .nume.cur .line2 {
    opacity: 0;
}

.wrapheader {
    display: none;
}

.m-header .nume.cur .line3 {
    transform: rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.m-header {
    display: none;
    height: 100%;
}

.wrapheader {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.wrapheader .header-nav {
    display: none;
}


.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-header {
    height: 2.25rem;
}

footer {
    width: 100%;
    overflow: hidden;
    background: #f6f7f9;
}

footer .w1500 {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 5.25rem 0;
    border-bottom: .025rem solid rgba(0, 0, 0, .1);
}
footer .w1500:nth-child(1) {
    padding-bottom: .65rem;
    padding-top: 2.2rem;
}
footer .w1500:nth-child(2) {
    padding-bottom: .2rem;
    padding-top: 1.125rem;
}
.footer_left {
    margin-right: 6rem;
}
.footer_left .footer_logo {
    width: 5.775rem;
    margin-bottom: 1.9rem;
}
.footer_left .footer_logo img {
    width: 100%;
}
.footer_left  .tel_emial {
    margin-bottom: 1.75rem;
    width: 7.625rem;
}

.footer_left  .tel_emial .tel {
    margin-bottom: .4rem;
}
.footer_left  .tel_emial .tel .t6 {
    border-radius: .15rem;
    background: linear-gradient(90deg, rgba(43, 182, 255, .7) 0%, rgba(8, 136, 226, .7) 100%);
    padding: .2rem .25rem;
}
.footer_left  .tel_emial .eml .t6 {
    border-radius: .15rem;
    background: linear-gradient(90deg, rgba(9, 212, 153, .7) 0%, rgba(2, 167, 122, .7) 100%);
    padding: .2rem .25rem;
}
.footer_left  .tel_emial .lis .t6 {
    margin-bottom: .175rem;
}
.footer_left  .cont_icon .t6 {
    margin-bottom: .525rem;
    line-height: normal;
    color: rgba(0, 0, 0, .7);
}
.footer_left  .cont_icon .icon_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer_left  .cont_icon .icon_box a {
    width: 1.275rem;
    height: 1.275rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-right: .575rem;
    justify-content: center;
    overflow: hidden;
}
.footer_left .cont_icon .icon_box a img {
    width: 100%;
    transition: all .6s;
}
.footer_left .cont_icon .icon_box a:hover img {
    transform: scale(1.1);
}
.footer_left  .cont_icon .icon1 {
    background-image: linear-gradient(180deg, #f5ab52 0%, #f08204 100%);
}
.footer_left  .cont_icon .icon2 {
    background-image: linear-gradient(180deg, #2cb7ff 0%, #098ae2 100%);
}
.footer_left  .cont_icon .icon3 {
    background-image: linear-gradient(180deg, #fe9494 0%, #e75648 100%);
}
.footer_left  .cont_icon .icon_box .icon4 {
    background-image: linear-gradient(180deg, #09d299 0%, #01a87a 100%);
}

footer .w1500 .ulnav {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: calc(100% - 5.775rem - 6rem);
}
footer .w1500 .ulnav .li {
    width: 46%;
    margin-bottom: .675rem;
    padding-left: 1rem;
}
footer .w1500 .ulnav .li:first-child,
footer .w1500 .ulnav .li:nth-child(4) {
    width: 34%;
    padding-left: 0;
}
footer .w1500 .ulnav .li:nth-child(3n),
footer .w1500 .ulnav .li:last-child {
    width: 20%;
    padding-left: 1rem;
}
footer .w1500 .ulnav .li > .tit-22 {
    margin-bottom: .5rem;
}

footer .w1500 .ulnav a {
    display: block;
    line-height: 1.5;
}

footer .w1500 .ulnav a:last-child {
    margin-bottom: 0;
}
footer .w1500:nth-child(2) p,
footer .w1500:nth-child(2) p a {
    color: #494847;
}
footer .w1500:nth-child(2) p:nth-child(1) span a {
    text-decoration-line: underline;
    text-decoration-style: solid;
}
footer .w1500:nth-child(2) p:last-child {
    position: relative;
}
footer .w1500:nth-child(2) p:last-child a {
    text-decoration-line: underline;
    text-decoration-style: solid;
}
footer .w1500:nth-child(2) p:last-child a {
    position: relative;
}
footer .w1500:nth-child(2) p:last-child .line {
    display: inline-block;
    width: .025rem;
    height: .275rem;
    content: '';
    background: #ccc;
    margin: 0 .25rem;
}
footer .w1500:nth-child(2) p span a {
    margin-right: .25rem;
    display: inline-block;
}

@media (max-width: 996px) and (max-width: 1080px) {
    .header-nav {
    }

    .header-nav .ul {
        margin-right: 7rem;
    }
}

@media (max-width: 996px) {
    .m-header {
        display: flex;
        align-items: center;
    }

    .m-header .search {
        width: .55rem;
        height: .55rem;
        margin: 0 .55rem;
    }

    .m-header .lunage {
        font-size: .55rem;
    }

    .pc-header {
        display: none;
    }

    .pc-block {
        display: none;
    }

    .mb-block {
        display: block;
    }

    .header_list > .header-nav {
        display: none;
    }

    .header_list {
        height: 1.5rem;
        padding: 0 6%;
    }

    .header_list .header-logo a {
        /* width: 3.725rem; */
        width: 4.5rem;
    }

    .fix-header {
        height: 1.5rem;
    }

    .header-nav.cur {
        display: flex;
    }

    .sub-banner {
        height: 7rem;
    }

    .sub-banner .banner_nav {
        display: none;
    }

    .wrapheader .header-nav {
        display: block;
        background-color: #fff;
        overflow: auto;
    }

    .wrapheader {
        display: none;
        display: none;
        position: absolute;
        left: 0;
        flex-direction: column-reverse;
        top: 1.475rem;
        width: 100%;
        opacity: 1;
        visibility: visible;
        height: calc(100vh - 1.5rem);
        border-top: 1px solid rgba(0, 0, 0, .1);
    }

    .header-nav {
        position: relative;
        left: auto;
        flex-direction: column-reverse;
        top: auto;
        height: 100%;
        width: 100%;
        padding: 0 0%;
        padding-top: 0rem;
    }

    .header-nav .ul {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
    }
    .header-nav .ul .lis,
    .header-nav .ul .li {
        width: 100%;
        height: auto;
        margin-right: 0;
        display: block;
        padding: 0;
        margin: 0;
        justify-content: flex-start;
    }
    .header-nav .ul .lis > a {
        position: relative;
        padding: .5rem 6%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-nav .ul .lis > a.cur svg {
        transform: rotate(90deg);
    }
    .header-nav .ul .lis > a.cur path {
        fill: rgb(196, 14, 36);
    }
    .header-nav .ul .lis svg {
        width: .5rem;
        height: .5rem;
        transition: all .6s;
    }
    .wrapheader .header-nav .ul .li > a {
        position: relative;
        padding: .5rem 6%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .wrapheader .header-nav .ul .li > a svg {
        width: .5rem;
        height: .5rem;
    }

    .header-nav .ul .li a {
        display: block;
        width: 100%;
        padding: .5rem 0;
        border-bottom: 1px solid rgba(225, 225, 225);
    }

    .header-nav .ul .li::after {
        display: none;
    }
    .header-nav .ul .lis .li-nav,
    .header-nav .ul .li .li-nav {
        left: 0;
        transform: translateX(0);
        padding: 0;
        position: relative;
        display: none;
        opacity: 1;
        width: 100%;
        top: auto;
        visibility: visible;
        transform: translateY(0);
        transition: none;
    }
    .header-nav .ul .lis .li-nav a,
    .header-nav .ul .li .li-nav a {
        text-align: left;
        text-indent: 2em;
        border-bottom: none;
        display: block;
    }
    .header-nav .ul .li .li-nav .libox a {
        text-indent: 4em;
    }
    .header-nav .ul .li .li-nav .libox a:first-child {
        padding-top: 0.25rem;
    }
    .header-nav .ul .li.cur {
        position: relative;
        width: 100%;
    }

    .header-nav .search {
        width: 100%;
        margin-bottom: .5rem;
    }

    .header-nav .search > span {
        display: none !important;
    }

    .header-nav .search span {
        width: auto;
    }

    .header-nav .search form {
        position: relative;
        width: 100%;
        top: 0;
        transform: translateY(0);
        padding-left: 0;
        padding-right: 0;
        height: auto;
        opacity: 1;
        visibility: visible;
        padding-right: .5rem;
    }

    .header-nav .search form input {
        width: 90%;
    }

    .w1700 {
        width: 92%;
        margin: 0 auto;
    }
}

@media (max-width: 996px) {
    .fixed-header {
        height: 1.5rem;
    }

    footer .w1500:nth-child(1) {
        height: auto;
        padding: .7353rem 1.0882rem;
        align-items: center;
        justify-content: center;
    }

    .header-nav .search form {
        top: auto;
    }

    .header-nav .search {
        height: auto;
        width: auto;
    }
}

.swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    line-height: 1;
    z-index: 1;
}
.swiper-pagination .swiper-pagination-bullet {
    width: .25rem;
    height: .25rem;
    margin: 1.5rem .375rem 0 !important;
    opacity: .1;
}
.swiper-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(180deg, #eb364c 0%, #c71227 100%) !important;
    opacity: 1;
}

.slide_search {
    position: fixed;
    left: 0;
    top: 2.25rem;
    width: 100%;
    height: auto;
    background: #f6f7f9;
    border-top: 1px solid #e9e9e9;
    display: none;
}
.slide_search .form {
    width: 100%;
    background-color: #fff;
    padding: 1.5rem 12.75rem;
}
.slide_search .form .input_search {
    width: 100%;
    height: 1.25rem;
    border-radius: .15rem;
    border: 1px solid rgba(229, 229, 229, 0.80);
    background: #f6f7f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .125rem 0 .75rem;
}
.slide_search .form input {
    width: 80%;
    background-color: transparent;
    height: 100%;
}
.slide_search .form input::placeholder {
    color: rgba(153, 153, 153, 0.6);
}
.slide_search .form button {
    width: 1rem;
    height: 1rem;
    border-radius: .15rem;
    background: #c40e24;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide_search .form button  svg {
    width: .5rem;
    height: .5rem;
}
.slide_search  .tit-30 {
    margin-bottom: 1rem;
}
.slide_search label {
    display: block;
    margin-bottom: .5rem;
}
.slide_search .freq {
    width: 100%;
    height: auto;
    padding: 1.2rem 12.75rem 1.05rem;
    margin: 0 auto;
}
.slide_search .freq  .tit-24 {
    margin-bottom: .5rem;
}
.slide_search .freq  .li {
    display: flex;
    align-items: center;
    line-height: 1.25rem;
}
.slide_search .freq  .li svg {
    margin-top: .1rem;
    width: .3rem;
    height: .3rem;
    margin-left: .125rem;
}

header.cur {
    transition: all .6s;
    transform: translateY(-.75rem);
    border-bottom: .025rem solid rgba(0, 0, 0, .1);
}

.header-end  .svg_icon a:hover {
    color: #c40e24;
}

.more:hover {
    background: linear-gradient(90deg, #24abf8 0%, #0989e1 100%);
}

.more svg {
    width: .4rem;
    height: .4rem;
}
.slide_search .form button:hover {
    background: linear-gradient(90deg, #24abf8 0%, #0989e1 100%);
}
.slide_search .freq .li:hover,
footer .w1500 .ulnav a:hover {
    color: #c40e24;
}

.side_right_navBox {
    position: fixed;
    right: 0;
    top: 60%;
    z-index: 3;
    display: none;
}

.side_right_navBox a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    margin-bottom: .05rem;
    border-radius: .1rem;
    background: linear-gradient(180deg, #37b8fd 0%, #0b8be3 100%);
}
.side_right_navBox > a,
.side_right_navBox .tel {
    transition: all .3s;
}
.side_right_navBox .tel_box {
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
}
.side_right_navBox .tel_hide {
    margin-right: 1.35rem;
    width: 5rem;
    height: 100%;
    background:#ed384e;
    border-radius: .1rem;
    transition: all .5s;
    width: 0;
}
.side_right_navBox .tel_box a {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .5rem;
    transition: all 0;
    width: 100%;
    opacity: 0;
}

.side_right_navBox a:hover {
    background: linear-gradient(90deg, #ed384e 0%, #c51025 100%);
}
.side_right_navBox .tel:hover > a {
    background: linear-gradient(90deg, #ed384e 0%, #c51025 100%);
}
.side_right_navBox .tel:hover  .tel_box {
    overflow: visible;
}
.side_right_navBox .tel:hover .tel_hide {
    width: 5rem;
    transition-delay: .1s;

}
.side_right_navBox .tel:hover .tel_hide a {
    transition: all .3s .4s;
    opacity: 1;
}

.side_right_navBox .tel_box a:hover {
    color: #fff !important;
    background: transparent;
}

.side_right_navBox #slideShow.cur svg {
    transform: rotate(180deg);
}
.side_right_navBox .tel > a  svg,
.side_right_navBox > a svg{
margin-right: -0.1rem;
}

.wrapheader .header-nav .lis_box svg{
    width: .45rem;
    height: auto;
}

.wrapheader .header-nav .li-nav .lis_box a{
    display: flex ;
    align-items: center ;
    justify-content: space-between ;
    padding-right: .5rem !important;
}
.wrapheader .header-nav .li-nav .lis_box a:first-child{
    padding-top: .15rem !important;
}
.wrapheader .header-nav .li-nav .lis_box .libox{
    display: none;
}
.wrapheader  .header-nav .ul .li .li-nav .lis_box{
    background-color: #e6ebf4;
}
.wrapheader  .header-nav .ul .li .li-nav .lis_box:last-child,
.wrapheader  .header-nav .ul .li .li-nav a:last-child{
padding-bottom: .75rem !important;
}