@charset "UTF-8";

.h_swiper .banenr_center {
    width: 100%;
    height: 100vh;
    background: var(--li);
    overflow: hidden;
    position: relative;
}

.h_swiper .banenr_center .ban_img {
    object-fit: cover;
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: scale(1.02);
    transition: all 5s ease 0s;
}

.h_swiper .swiper-slide-active .banenr_center .ban_img {
    transform: scale(1);
}

.h_swiper .swiper-slide[data-swiper-slide-index="0"] .ban_text {
    display: none;
}

.h_swiper .ban_text {
    position: absolute;
    width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.h_swiper .ban_text .left {
    width: 50%;
    overflow: hidden;
}

.h_swiper .right {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.h_swiper .right img {
    position: absolute;
    height: 100%;
    max-width: 53%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.6s;
    object-fit: contain;
}

.h_swiper .ban_text .h2 {
    font-size: 52px;
    line-height: 120%;
    max-width: 700px;
    text-transform: uppercase;
    color: var(--li);
    font-family: 'mb';
    margin-bottom: 5%;
    display: block;
}


.h_swiper .ban_text p {
    font-size: 18px;
    color: var(--li1);
    font-weight: bold;
    line-height: 140%;
    max-width: 640px;
    letter-spacing: 2px;
}

.h_swiper .ban_text p:after {
    content: '';
    display: block;
    width: 54px;
    height: 5px;
    background: var(--li1);
    margin: 28px 0;
}

.h_swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 0;
    border: none;
    opacity: 1;
    background: transparent;
    right: 10px;
    top: 45%;
    border-radius: 50%;
    color: #222;
}

.h_swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 0;
    border: none;
    opacity: 1;
    background: transparent;
    left: 10px;
    top: 45%;
    border-radius: 50%;
    color: #222;
}

.h_swiper .swiper-button-next:after,
.h_swiper .swiper-button-prev:after {
    font-size: 16px;
    color: #222;
}

.h_swiper .swiper-button-next:hover,
.h_swiper .swiper-button-prev:hover {
    background: var(--li1);
}

.h_swiper .swiper-button-next:hover:after,
.h_swiper .swiper-button-prev:hover:after {
    color: #fff;
}

.h_swiper>.swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    text-align: center;
    line-height: 0;
}

.h_swiper>.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--li);
    border-radius: 5px;
    opacity: 1;
    transition: all .5s;
    margin: 0 6px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.9));
}

.h_swiper>.swiper-pagination .swiper-pagination-bullet-active {
    width: 42px;
    background-color: var(--li1);
}

.p_button {
    font-size: 14px;
    line-height: 20px;
    padding: 13px 30px;
    color: #fff;
    width: 180px;
    overflow: hidden;
    display: inline-block;
    text-align: left;
    background: #b91419;
    border-radius: 60px;
}

.p_button:hover {
    box-shadow: 0 0 20px #b91419
}

.p_button:before {
    content: "";
    position: absolute;
    display: block;
    transition: all .6s;
    width: 100%;
    height: 0;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    padding-top: 100%;
    transform: translateX(-50%) translateY(-50%)
}

.p_button:hover:before {
    animation: yqq .75s;
    z-index: 1
}

@keyframes yqq {
    0% {
        background: rgba(0, 0, 0, .25);
        transform: translateX(-50%) translateY(-50%) scale(0)
    }

    to 100% {
        background: 0 0;
        transform: translateX(-50%) translateY(-50%) scale(1)
    }
}

.more-box {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    opacity: 1;
    right: 20px
}

.more-box::before {
    position: absolute;
    content: '';
    left: calc((100% - 6px) / 2);
    top: calc((100% - 6px) / 2);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    z-index: 99
}

.more-box::after {
    position: absolute;
    content: '';
    top: calc((100% - 1px) / 2);
    width: 30px;
    height: 1px;
    background: #fff;
    left: -100%;
    transition: all .3s
}

.p_button:hover .more-box::after {
    width: 40px;
    left: calc(-100% - 10px);
    transition: all .3s
}


.h_tit {
    color: #000;
    font-size: 40px;
    font-family: "mb";
    text-align: center;
    line-height: 150%;
}

.h_tit:after {
    content: '';
    border-top: 4px solid var(--li1);
    display: block;
    width: 40px;
    margin: 10px auto;
}

.h_sub {
    font-size: 15px;
    color: #000;
    line-height: 160%;
    text-align: center;
}

.h_pro {
    padding: 80px 0;
}

ul.top_nav_ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 2% 0;
}

ul.top_nav_ul li {
    background: #eeeeee;
    color: #212529;
    font-size: 14px;
    border-radius: 50px;
    flex: 1;
}

ul.top_nav_ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 46px;
    padding: 0 10px;
}

ul.top_nav_ul li.current {
    background: var(--li);
    color: #fff;
}

.bottom_nav_ul ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    display: none;
}

.bottom_nav_ul .current {
    display: flex;
}

ul.nav_list li.nav_list_box {
    flex: 1;
}

ul.nav_list li.nav_list_box .Limg_con {
    padding-bottom: 100%;
    border: 2px solid #eee;
}

ul.nav_list li.nav_list_box .Limg_con img {
    transform: translate(-50%, -50%) scale(.9);
}

ul.nav_list li.nav_list_box .Limg_con .hot {
    position: absolute;
    left: 10px;
    top: 10px;
    background: var(--li);
    padding: 3px 10px;
    color: #fff;
    font-size: 14px;
    font-family: "Arial";
    font-weight: bold;
    z-index: 2;
}

ul.nav_list li.nav_list_box .L_summary {
    margin: 15px 0;
    padding: 0 20px;
    text-align: center;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    line-height: 133%;
    min-height: 43px;
    color: #212529;
}

ul.nav_list li.nav_list_box:hover .Limg_con img {
    transform: translate(-50%, -50%) scale(1);
}

ul.nav_list li.nav_list_box:hover p.L_summary {
    color: var(--li1);
}

.h_about {
    background: #f5f5f5;
    padding: 80px 0;
}

.h_about .ab_textn {
    background: #fff;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    align-items: center;
}

.h_about .ab_textn .left {
    width: 45%;
}

.h_about .ab_textn .left .p_video {
    position: relative;
}


.p_video .cover {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.p_video .cover .coverImage {
    width: 100%;
    height: 100%
}

.p_video .cover .coverImage img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.p_video .cover .playBtn {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 2;
    left: 50%;
    top: 50%;
    margin: -40px auto auto -40px;
    cursor: pointer
}

.p_video video {
    width: 100%;
    display: block;
}

.h_about .ab_textn .right {
    width: 55%;
    padding: 30px 60px;
}

.h_about .ab_t {
    font-size: 52px;
    color: var(--li);
    font-family: "mb";
}

.h_about .ab_name {
    font-size: 28px;
    color: #000;
    font-weight: bold;
    font-family: 'mb';
}

.h_about .ab_info {
    font-size: 16px;
    color: #000;
    line-height: 150%;
    margin: 20px 0 38px;
}

.h_about .more {
    width: 150px;
    height: 39px;
    border: 1px solid var(--li1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--li1);
    font-family: "mb";
    border-radius: 5px;
    font-size: 14px;
}

.h_about .more:hover {
    background: var(--li1);
    color: #fff;
}

.ab_num ul {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 60px 0;
}

.ab_num ul li {
    flex: 1;
    text-align: center;
    position: relative;
    color: #212529;
    font-size: 14px;
}

.ab_num ul li+li {
    border-left: 1px solid #e8e8e8;
}

.ab_num ul li+li:after {
    content: "";
    width: 3px;
    height: 35px;
    background: #b91419;
    left: -2px;
    position: absolute;
    top: 0;
}

.ab_num ul li span.counter {
    font-size: 56px;
    font-family: "mb";
    color: var(--li);
}

.ab_num ul li p {
    margin-top: 12px;
}

div#marquee1 {
    margin-top: 40px;
    overflow: hidden;
}

div#marquee1 ul {
    overflow: hidden;
    display: flex;
    gap: 30px;
}

div#marquee1 ul li {
    width: 240px;
    float: left;
    position: relative;
}

div#marquee1 ul .Limg_con {
    padding-bottom: 42%;
    background: #fff;
}

.h_honor {
    background: url(/src/image/honbg.jpg) center/cover;
    background-attachment: fixed;
    padding: 80px 0;
}

.swiper.honor_swiper {
    max-width: 1920px;
    width: 100%;
    padding-top: 30px;
}

.swiper.honor_swiper .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 5px rgb(0 0 0 / 20%);
    background: #fff;
    z-index: 1;
    transform: scale(0.8);
}

.swiper.honor_swiper .swiper-slide-active {
    transform: scale(1);
}

.swiper.honor_swiper .swiper-slide:before {
    content: '';
    background-image: -webkit-linear-gradient(-4deg, rgb(16 72 135) 0%, rgb(1 63 160 / 80%) 100%);
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}

.swiper.honor_swiper .swiper-slide>div {
    width: 50%;
}

.swiper.honor_swiper .Limg_cov {
    padding-bottom: 138%;
}

.swiper.honor_swiper .right {
    text-align: right;
    height: 100%;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10%;
    padding-bottom: 10%;
    color: #fff;
    font-size: 14px;
}

.swiper.honor_swiper .right p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    text-align: right;
    font-weight: bold;
    margin: 40px 0;
}

.swiper.honor_swiper .swiper-pagination {
    position: static;
    margin-top: 50px;
    line-height: 100%;
}

.swiper.honor_swiper .swiper-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    margin: 0 6px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgb(214, 214, 214);
    opacity: 1;
}

.swiper.honor_swiper .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 2px solid #013fa0;
    background: transparent;
}

.h_news {
    padding: 80px 0;
}

ul.h_five_ul {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

ul.h_five_ul li.h_five_li {
    width: calc((100% - 30px) / 2);
    border-bottom: 1px solid #eee;
    background-color: rgba(245, 245, 245, 1);
}

ul.h_five_ul li.h_five_li .left_img {
    width: 35%;
}

ul.h_five_ul li.h_five_li .left_img .Limg_cov {
    padding-bottom: 75%;
}

ul.h_five_ul li.h_five_li a {
    align-items: center;
}

ul.h_five_ul li.h_five_li .news_text {
    width: 65%;
    padding: 0 15px 0 30px;
}

ul.h_five_ul li.h_five_li .news_text span {
    font-size: 14px;
    color: rgba(118, 129, 137, 1);
    line-height: 150%;
}

ul.h_five_ul li.h_five_li .news_text .news_tit {
    font-size: 18px;
    color: var(--li);
    font-family: "mb";
    line-height: 150%;
    margin: 15px 0 5px;
}

ul.h_five_ul li.h_five_li .news_text .L_summary {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(57, 56, 56, 1);
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

ul.h_five_ul li.h_five_li .news_text .mores {
    margin-top: 15px;
    color: var(--li1);
    font-weight: 700;
    font-size: 14px;
}

ul.h_five_ul li.h_five_li:hover {
    background: var(--li1);
    transition: all .5s ease;
}

ul.h_five_ul li.h_five_li:hover * {
    color: #fff !important;
    transition: all .5s ease;
}

.h_advan {
    background: url(/src/image/adbg.jpg) center / cover;
    background-attachment: fixed;
    padding: 80px 0;
}

.h_advan h2.h_tit {
    color: #fff;
}

.h_advan .h_sub {
    color: #fff;
}

.h_advan ul {
    display: flex;
    margin-top: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.h_advan ul li {
    background: #fff;
    flex: 1;
    padding: 50px 60px 70px;
    font-size: 16px;
    color: rgba(102, 102, 102, 1);
    line-height: 180%;
    transition: all .4s ease;
    position: relative;
}

.h_advan ul li svg.icons {
    color: var(--li);
    width: 60px;
    height: 60px;
}

.h_advan ul li .ad_tit {
    font-size: 24px;
    color: #333;
    font-family: "mb";
    margin: 20px 0 15px;
}

.h_advan ul li:hover {
    transform: translateY(10px);
    box-shadow: 0 0 10px rgb(7 54 132 / 50%);
}

.h_advan ul li:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    border-bottom: 7px solid var(--li1);
    transition: all .5s ease;
}

.h_advan ul li:hover:before {
    width: 100%;
}

@media only screen and (max-width:1500px) {
    .h_about .ab_t {
        font-size: 42px;
    }

    .h_about .ab_name {
        font-size: 24px;
    }

    .h_about .ab_textn .right {
        width: 55%;
        padding: 30px;
    }
}

@media only screen and (max-width:1270px) {
    ul.top_nav_ul li {
        flex: none;
        padding: 0 10px;
    }

    ul.top_nav_ul {
        gap: 10px;
    }
}

@media only screen and (max-width:1060px) {
    ul.top_nav_ul li {
        width: calc((100% - 10px) / 2);
    }

    .h_about .ab_textn .left {
        width: 100%;
    }

    .h_about .ab_textn .right {
        width: 100%;
    }

    .ab_num ul li span.counter {
        font-size: 42px;
    }
}

@media only screen and (min-width:769px) {}

@media only screen and (max-width:768px) {
    .h_pro {
        padding: 50px 0;
    }

    .h_tit {
        font-size: 24px;
    }

    .h_swiper .banenr_center {
        height: 67vw;
    }

    .h_swiper {
        margin-top: 70px;
    }

    .h_swiper .swiper-button-next,
    .h_swiper .swiper-button-prev {
        display: none;
    }

    .h_swiper>.swiper-pagination {
        bottom: 20px;
    }

    .h_swiper .ban_text .h2 {
        font-size: 24px;
    }

    .h_swiper .ban_text p {
        font-size: 14px;
        line-height: 140%;
        max-width: 350px;
        letter-spacing: 0;
    }

    .h_swiper .ban_text p:after {
        content: '';
        width: 42px;
        height: 2px;
        margin: 12px 0 18px;
    }

    .h_swiper .ban_text .h2 {
        font-size: 24px;
        line-height: 133%;
        max-width: 320px;
        margin-bottom: 0;
    }

    .p_button {
        display: none;
    }

    .bottom_nav_ul ul {
        gap: 10px;
    }

    ul.nav_list li.nav_list_box {
        flex: none;
        width: calc((100% - 10px) / 2);
    }

    ul.top_nav_ul {
        gap: 10px;
        margin: 20px 0 30px;
    }

    ul.nav_list li.nav_list_box .L_summary {
        min-height: 0;
    }

    .h_about .ab_info {
        font-size: 14px;
    }

    .ab_num ul {
        padding: 30px;
        gap: 30px 0;
    }

    .ab_num ul li {
        flex: none;
        width: 50%;
        border-left: 1px solid #e8e8e8;
    }

    .ab_num ul li:after {
        content: "";
        width: 3px;
        height: 35px;
        background: #b91419;
        left: -2px;
        position: absolute;
        top: 0;
    }

    .h_about {
        padding: 50px 0;
    }

    div#marquee1 ul li {
        width: 180px;
    }

    div#marquee1 ul {
        gap: 10px;
    }

    div#marquee1 {
        margin-top: 10px;
    }

    .h_honor {
        background-attachment: scroll;
        padding: 50px 3%;
    }

    .swiper.honor_swiper .swiper-pagination {
        margin-top: 30px;
    }

    ul.h_five_ul {
        gap: 20px;
    }

    ul.h_five_ul li.h_five_li {
        width: 100%;
    }

    ul.h_five_ul li.h_five_li .news_text {
        padding: 0 10px;
    }

    ul.h_five_ul li.h_five_li .news_text .news_tit {
        font-size: 16px;
        line-height: 100%;
        margin: 5px 0;
    }

    ul.h_five_ul li.h_five_li .news_text .L_summary {
        -webkit-line-clamp: 1;
    }

    ul.h_five_ul li.h_five_li .news_text .mores {
        margin-top: 10px;
    }

    .h_advan ul li {
        padding: 30px;
    }

    .h_advan ul li .ad_tit {
        font-size: 18px;
        color: #000;
    }

    .h_advan ul li {
        flex: 1;
        padding: 30px;
        font-size: 14px;
        line-height: 133%;
        min-width: 300px;
    }
}

@media only screen and (max-width:660px) {
    ul.top_nav_ul li a svg {
        display: none;
    }
    .h_about .ab_t {
        font-size: 36px;
    }
    ul.top_nav_ul li a {
        text-align: center;
        padding: 0;
    }

    .h_about .ab_info {
        font-size: 14px;
        line-height: 167%;
        margin: 12px 0 30px;
    }

    .ab_num ul li span.counter {
        font-size: 36px;
    }

    .h_about .ab_textn .right {
        padding: 30px 20px;
    }

    .ab_num ul {
        padding: 20px 20px 50px;
        gap: 20px 0;
    }

    .swiper.honor_swiper .right p {
        font-size: 14px;
        line-height: 167%;
        margin: 20px 0;
    }

    .swiper.honor_swiper .right {
        padding: 10px;
    }

    .h_news {
        padding: 0 0 50px;
    }

    ul.h_five_ul li.h_five_li .left_img .Limg_cov {
        padding-bottom: 100%;
    }

    .h_advan ul li svg.icons {
        width: 48px;
        height: 48px;
    }
}
@media only screen and (max-width:380px) {
    ul.top_nav_ul li a {
        font-size: 12px;
    }
}