﻿@charset "utf-8";

:root {
    --main-color: #0139B0;
    --deep--color: #002677;
    --dark-color: #333;
    --white-color: #FFFFFF;
    --transition-custom2: all 0.8s ease-in-out;
}

img {
    max-width: 100%;
}

@keyframes jumpDown {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(5px)
    }
}

/* footer */
.back_top {
    position: fixed;
    right: 56px;
    bottom: 66px;
    display: none;
    z-index: 99;
}

.back_top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--main-color);
    border-radius: 50%;
}

.footer {
    background-color: #2C2F32;
}

.foot_top {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.foot_top .l .text {
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.foot_top .r {
    color: var(--white-color);
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.foot_top .r a {
    color: inherit;
}

.foot_mid {
    padding: 70px 0;
}

.foot_adress {
    flex: 1;
    max-width: 412px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
}

.foot_adress .text {
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.foot_logo img {
    max-height: 24px;
}

.foot_menu ul {
    display: flex;
}

.foot_menu ul li {
    padding-right: 50px;

}

.foot_menu h2 {
    position: relative;
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: 'Monda Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}
.foot_menu h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color:var(--white-color);
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
  }
  
  .foot_menu h2:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
.foot_menu h2 img {
    width: 30px;
    margin-left: 10px;
}

.foot_menu a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.foot_menu ul li a:first-child {
    margin-bottom: 13px;
    margin-top: 13px;
    display: inline-block;
}

.foot_menu ul li a:nth-child(2n) {
    margin-top: 10px;
}
.foot_menu ul li a:nth-child(n+2):hover {
    color: rgba(255, 255, 255, 0.8);
}

.foot_bottom {
    padding: 20px 0px;
}

.foot_bottom .share ul {
    display: flex;
    align-items: center;
    margin-right: -9px;
}

.foot_bottom .l {
    color: rgba(204, 204, 204, 0.5);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
}

.foot_bottom .share li {
    padding: 0 9px;
}

.foot_bottom .share a {
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
}

.foot_bottom .share img {
    opacity: 0.5;
}

.foot_bottom .share a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background-color: var(--main-color);
    border-radius: 50%;
    transition: all 0.4s;
    z-index: -1;
}

.foot_bottom .share a:hover img {
    opacity: 1;
}

.foot_bottom .share a:hover:before {
    width: 100%;
    height: 100%;
}

.eject_cont {
    position: relative;
    overflow: hidden;
}

.eject_cont .eject_tc {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    margin-left: -58px;
    transform: translateY(-20px);
    padding: 10px;
    width: 120px;
    background: #FFFFFF;
    border-radius: 12px;
    opacity: 0;
    justify-content: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
}

.eject_cont .eject_tc:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-top-color: #fff;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
}

.eject_cont .eject_tc .img_ {
    width: 100%;
    text-align: center;
}

.foot_bottom .eject_cont:hover {
    overflow: visible;
}

.eject_cont .eject_tc.m_show {
    opacity: 1;
    transform: translateY(0);
    z-index: 99;
}

@media (max-width:1680px) {
    .back_top {
        right: 10px;
    }

}

@media (max-width:1439px) {
    .foot_menu ul li {
        padding-right: 30px;
    }

}

@media (max-width:1365px) {
    .foot_menu {
        padding-right: 30px;
    }


}

@media (max-width:1279px) {
    .foot_menu ul li {
        padding-right: 20px;
    }

    .foot_menu ul li:first-child {
        padding-right: 30px;
    }

}

@media (max-width:991px) {
    .foot_top .l {
        flex: 1;
        padding-right: 60px;
    }

    .foot_top .r {
        font-size: 22px;
    }

    .foot_mid {
        flex-wrap: wrap;
    }

    .foot_menu {
        padding-right: 0;
        width: 100%;
    }

    .foot_menu ul {
        justify-content: space-between;
    }

    .foot_menu ul li {
        padding-right: 0;
    }

    .foot_menu ul li:nth-child(1) {
        padding-right: 0;
    }

    .foot_adress {
        padding-top: 30px;
        flex: inherit;
        width: 100%;
    }


}

@media (max-width:767px) {
    .back_top {
        right: 2px;
        bottom: 10px;
    }

    .back_top a {
        padding: 10px;
        width: 46px;
        height: 46px;
    }

    .foot_top {
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .foot_top .l {
        flex: inherit;
        width: 100%;
        padding-right: 0;
    }

    .foot_top .l .text {
        font-size: 16px;
    }

    .foot_top .r {
        width: 100%;
        text-align: left;
        padding-top: 30px;
    }

    .foot_top .r {
        font-size: 20px;
    }

    .foot_top .r a {
        line-height: 1.5;
    }

    .foot_mid {
        padding: 20px 0;
    }

    .foot_menu ul {
        flex-wrap: wrap;
    }

    .foot_menu ul li:nth-child(1) {
        width: 100%;
        padding-bottom: 20px;
    }

    .foot_bottom {
        flex-wrap: wrap;
        padding-top: 0;
    }

    .foot_bottom .l {
        width: 100%;
    }

    .foot_bottom .share {
        padding-top: 20px;
        width: 100%;
    }

}

/* banner */
.banner {
    width: 100%;
    height: 100vh;
}

.banner .index_banner {
    width: 100%;
    height: 100%;
}

.index_banner .img_pc {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.img_m {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ban_text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

.ban_text .h2 {
    color: #FFF;
    text-align: center;
    font-family: 'Monda Bold';
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.ban_text .ban_btn {
    padding-top: 40px;
    display: flex;
    justify-content: center;
}

.ban_text .t2 {
    overflow: hidden;
    transition: all 1.2s .6s;
}

.ban_text .t3 {
    overflow: hidden;
    transition: all 1.2s 1s;
}

.ban_text i {
    font-style: normal;
    line-height: inherit;
    display: block;
}

.ban_text i {
    transform: translateY(200%);
    transition: all 1.6s cubic-bezier(.33, 1, .68, 1);
}

.ban_text .ban_btn a {
    transform: translateY(200%);
    transition: all 1.6s cubic-bezier(.33, 1, .68, 1);
}

.index_banner .swiper-slide.swiper-slide-active i,
.index_banner .swiper-slide.swiper-slide-active .ban_btn a {
    transform: translateY(0);
}

.banner_btn {
    position: absolute;
    bottom: 8%;
    left: 0;
    width: 100%;
    z-index: 9;
}

.banner_btn .num {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.banner_btn .num .active {
    margin-right: 8px;
    font-size: 24px;
    color: var(--white-color);
}

.banner_btn .num em {
    margin-right: 3px;
}

.btn_r>div {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}

.btn_r>div::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background-color: var(--main-color);
    border-radius: 50%;
    transition: all 0.4s;
    z-index: -1;
}

.btn_r>div:first-child {
    margin-right: 20px;
}

.btn_r>div:hover {
    border-color: var(--main-color);
}

.btn_r>div:hover::before {
    width: 100%;
    height: 100%;
}

@keyframes wave {
    from {
        transform: translate(-50%, -100%);
    }

    to {
        transform: translate(-50%, -20%);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media screen and (max-height:800px) {
    .banner_btn {
        bottom: 5%;
    }

}

@media screen and (max-width:1366px) {
    .banner_btn {
        bottom: 5%;
    }
}

@media screen and (max-width:991px) {
    .btn_r>div {
        padding: 15px;
        width: 50px;
        height: 50px;
    }

}

@media screen and (max-width:767px) {
    .ban_text .h2 {
        font-size: 24px;
    }

    .banner_btn {
        bottom: 20px;
    }

    .banner_btn .num .active {
        margin-right: 4px;
        font-size: 20px;
    }

    .btn_r>div:first-child {
        margin-right: 10px;
    }

}

@media screen and (max-width:360px) {
    /* .ban_text .h2 {
        font-size: 22px;
    } */

}

@media screen and (max-width:359px) {
    /* .ban_text .h2 {
        font-size: 20px;
    } */

}

/* content */
.content {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.content::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #EEE;
    z-index: -1;
}

.index_title h2 {
    max-width: 1300px;
    margin: 0 auto;
    color: var(--dark-color);
    text-align: center;
    font-family: 'Monda Bold';
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.index_title .ban_btn {
    padding-top: 30px;
    text-align: center;
}

/* product */
.index_product {
    padding-top: 80px;
}

.one_list {
    padding-top: 48px;
}

.one_list ul {
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.one_list ul li {
    width: 50%;
    padding: 12px;
}

.one_list .one_list_img {
    position: relative;
    overflow: hidden;
}

.one_list .one_list_img::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    opacity: 0;
    background-color: var(--main-color);
    transition: all .4s ease;
}

.one_list .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    opacity: 0.7;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.one_list .thumb {
    width: 100%;
    height: 440px;
}

.one_list .thumb i {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.one_list .one_text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 30px 46px 40px 46px;
}

.one_list .one_text_top {
    position: relative;
    padding-bottom: 20px;
}

.one_list .one_text_top::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    opacity: 0.3;
    background: #DDD;
}

.one_list .one_top_r .b_t {
    color: var(--white-color);
    font-family: 'Monda Bold';
    font-weight: 700;
    transition: all .4s;
}

.one_list .one_top_r .s_t {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
}

.one_text_mid {
    margin-top: 30px;
    max-height: 170px;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    transition: opacity .4s;
}

.one_text_mid ul {
    margin-left: -12px;
    margin-right: -12px;
}

.one_text_mid ul li {
    width: 50%;
    float: left;
    padding: 12px;
}

.one_text_mid a {
    position: relative;
    display: block;

    padding-left: 30px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
}

.one_text_mid a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(../images/product_jt.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.one_text_bottom {
    position: absolute;
    left: 46px;
    bottom: 40px;
}

.one_text_bottom .more {
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all .4s;
}

.one_text_bottom .more span {
    margin-left: 10px;
    position: relative;
    width: 20px;
    height: 20px;
}

.one_text_bottom .more span img {
    position: absolute;
    top: 0;
    left: 0;
    transition: transform .3s;
}

.one_list ul li:hover .mask {
    opacity: 0;
}

.one_list ul li:hover .one_list_img::before {
    opacity: 1;
    height: 100%;
}

.one_list ul li:hover .one_text_mid {
    opacity: 1;
}

.one_list ul li:hover .one_top_r .s_t {
    color: var(--white-color)
}

.one_list ul li:hover .one_text_top::before {
    width: 100%;
    transition: width .6s;
    transition-delay: 0.4s;
}

.one_list ul li:hover .one_text_bottom .more span img {
    transform: rotate(45deg);
}

@media (max-width:1366px) {
    .one_text_mid {
        max-height: 120px;
    }
}

@media (max-width:1279px) {
    .one_list .one_text {
        padding: 30px 30px 40px 30px;
    }

    .one_list .one_top_r .b_t {
        line-height: 1.2;
    }

    .one_text_mid {
        margin-top: 16px;
    }

    .one_text_mid ul {
        margin-left: -8px;
        margin-right: -8px;
    }

    .one_text_mid ul li {
        padding: 8px;
    }

    .one_text_mid a {
        padding-left: 25px;
        line-height: 1.2;
    }

    .one_text_bottom {
        position: absolute;
        left: 30px;
        bottom: 30px;
    }


}
@media (max-width:1100px) {

.one_text_mid {
    max-height: 138px;
}
}

@media (max-width:991px) {
    .one_text_mid {
        max-height: 185px;
    }
    .one_list ul li {
        width: 100%;
    }
}

@media screen and (max-width:767px) {
    .index_product {
        padding-top: 50px;
    }

    .one_list .thumb {
        height: 460px;
    }

    .one_list .one_text {
        padding: 30px 20px 30px 20px;
    }

    .one_text_bottom {
        left: 20px;
        bottom: 20px;
    }
  

}


/* index about */
.index_about {
    padding-top: 68px;
}

.about_mid {
    margin-top: 65px;
    padding-top: 40px;
    padding-bottom: 70px;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.about_mid .about_m_text {
    max-width: 1300px;
    margin: 0 auto;
}

.about_mid .about_m_text .about_m_list {
    flex-grow: 1;
    flex-basis: 50%;
    padding: 0 40px;
}

.about_m_text .about_m_list p {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
}

.about_m_bottom {
    padding-top: 30px;
}

.about_m_bottom ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.about_m_bottom ul li {
    width: 25%;
    padding: 10px;
}

.about_m_bottom .border {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about_m_bottom .bg {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px;
    padding-bottom: 80px;
    background: #F6F9FF;
}

.about_m_bottom ul li:nth-child(1) .bg {
    right: -100%;
    transition: right 1s;
}

.about_m_bottom ul li:nth-child(2) .bg {
    right: -100%;
    transition: right 1s;
}

.about_m_bottom ul li:nth-child(3) .bg {
    left: -100%;
    transition: left 1s;
}

.about_m_bottom ul li:nth-child(4) .bg {
    left: -100%;
    transition: left 1s;
}

.about_m_bottom .bg .title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about_m_bottom .bg .text {
    margin-top: 50px;
    color: #333;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.about_m_bottom.animated ul li:nth-child(1) .bg {
    right: 0;
    transition-delay: 1.4s;
}

.about_m_bottom.animated ul li:nth-child(2) .bg {
    right: 0;
    transition-delay: 1.2s;
}

.about_m_bottom.animated ul li:nth-child(3) .bg {
    left: 0;
    transition-delay: 1.2s;
}

.about_m_bottom.animated ul li:nth-child(4) .bg {
    left: 0;
    transition-delay: 1.4s;
}

@media (max-width:1440px) {
    .about_mid .about_m_text .about_m_list:first-child {
        padding-left: 50px;
    }

    .about_mid .about_m_text .about_m_list:nth-child(2) {
        padding-right: 50px;
    }

}

@media (max-width:1366px) {
    .about_m_bottom .bg {
        padding: 50px 40px;
        padding-bottom: 80px;
    }

    /* .about_m_bottom .border {
        min-height: 548px;
    } */
}

@media (max-width:1280px) {
    .about_m_text .about_m_list p {
        font-size: 22px;
    }

}

@media (max-width:1279px) {
    .about_mid .about_m_text .about_m_list {
        padding: 0 20px;
    }

    .about_mid .about_m_text .about_m_list:first-child {
        padding-left: 60px;
    }

    .about_mid .about_m_text .about_m_list:nth-child(2) {
        padding-right: 60px;
    }

    .about_m_bottom .bg {
        padding: 40px 30px;
        padding-bottom: 70px;
    }


}

@media (max-width:991px) {
    .about_mid .about_m_text .about_m_list:first-child {
        padding-left: 40px;
    }

    .about_mid .about_m_text .about_m_list:nth-child(2) {
        padding-right: 40px;
    }

    .about_m_text .about_m_list p {
        font-size: 20px;
    }

    .about_m_bottom ul li {
        width: 50%;
    }

    .about_m_bottom .border {
        min-height: 350px;
    }

}

@media (max-width:767px) {
    .index_about {
        padding-top: 48px;
    }

    .about_mid {
        margin-top: 45px;
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .about_mid .about_m_text {
        flex-wrap: wrap;
        padding-left: 16px;
        padding-right: 16px;
    }

    .about_mid .about_m_text .about_m_list {
        flex-grow: inherit;
        flex-basis: 100%;
        padding: 0 !important;
        margin-bottom: 20px;
    }

    .about_m_text .about_m_list p {
        font-size: 18px;
    }

    .about_m_bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .about_m_bottom ul li {
        width: 100%;
    }

    .about_m_bottom .border {
        min-height: inherit;
    }

    .about_m_bottom .bg {
        padding: 30px 20px;
        padding-bottom: 40px;
    }

}


/* index new */
.index_new {
    padding: 75px 0 115px 0;
}

.new_swiper {
    margin-top: 65px;
}

.index_new_list .thumb {
    position: relative;
    overflow: hidden;
}

.index_new_list .thumb i {
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transition: transform .6s;
}


.index_new_list a:hover .thumb i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.index_new_list .time {
    margin-top: 20px;
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.index_new_list .title {
    margin-top: 20px;
    height: 72px;
    overflow: hidden;
    color: #333;
    font-weight: 400;
    line-height: 36px;
}

.new_more {
    padding-top: 20px;
}

.new_more {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #666;
    font-weight: 400;
    text-transform: capitalize;
    transition: all .4s;
}

.new_more span {
    margin-left: 10px;
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
}

.new_more span img {
    position: absolute;
    top: 0;
    left: 0;
    transition: left .3s;
}

.index_new_list a:hover .title {
    color: var(--main-color);
}

.new_more span img:nth-child(2) {
    left: -100%;
}

.index_new_list a:hover .new_more {
    color: var(--main-color);
}

.index_new_list a:hover .new_more span img:nth-child(1) {
    left: 100%;
}

.index_new_list a:hover .new_more span img:nth-child(2) {
    left: 0;
}

.new-pagination {
    padding-top: 20px;
    display: none;
    text-align: center;
}

.new-pagination .swiper-pagination-bullet-active {
    background-color: var(--main-color);
}


@media (max-width:991px) {
    .index_new_list .time {
        line-height: 1.5;
    }

}

@media (max-width:767px) {
    .index_new {
        padding: 45px 0 50px 0;
    }

    .new-pagination {
        display: block;
    }
}


/* index last */
.index_last {
    position: relative;
    padding: 84px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.index_last::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: #04205E;
}

.index_last .my-container {
    position: relative;
    text-align: center;
    z-index: 9;
}

.index_last .title {
    color: var(--white-color);
    font-family: 'Monda Bold';
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.index_last .text {
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.index_last .ban_btn {
    margin-top: 30px;
}


@media (max-width:767px) {
    .index_last .text {
        margin-top: 10px;
    }
}

/* about */
.height120 {
    height: 120px;
}

.location {
    padding-top: 32px;
    display: flex;
    align-items: center;

}

.location a {
    margin-right: 10px;
    line-height: 20px;
}

.location a:first-child {
    width: 20px;
    height: 20px;
    background-image: url(../images/home.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    font-size: 0;
}

.location a:nth-child(n + 2) {
    padding-right: 18px;
    color: #CCC;
    font-size: 14px;
    font-weight: 290;
    background-image: url(../images/page_jt.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 8px 8px;
}

.location a:nth-child(n + 2):hover {
    color: var(--main-color);
}

.location a:last-child {
    margin-right: 0;
    padding-right: 0;
    background-image: none;
}

.about_first {
    padding-top: 50px;
}

.about_first .about_first_title {
    padding-bottom: 70px;
    color: var(--dark-color);
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
}

.about_first_title .big_t {
    padding-top: 4px;
}

.about_line {
    width: 100%;
    height: 1px;
    background: #EEE;
}

.about_first_text {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.about_first_text .l {
    width: 50%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 100px;
    display: flex;
    flex-flow: column;
    justify-content: center
}

.about_first_text .r {
    width: 50%;
}

.about_first_text .l p {
    padding-bottom: 20px;
    color: var(--dark-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.about_first_text .l p:last-child {
    padding-bottom: 0;
}

.about_title {

    text-align: center;
    font-weight: 400;
    line-height: 1.2;
    max-width: 1100px;
    margin: 0 auto;
}

.about_title.black {
    color: var(--dark-color);
}

.about_title.white {
    color: var(--white-color);
}

.about_f_mid {
    padding-top: 70px;
    background-color: var(--main-color);
}

.about_mid_list {
    margin-top: 70px;
    padding-top: 80px;
    padding-bottom: 100px;
    padding-left: 35px;
    padding-right: 35px;
    border-top: 1px solid rgba(238, 238, 238, 0.2);
    border-bottom: 1px solid rgba(238, 238, 238, 0.2);
}

.about_mid_list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.about_mid_list ul li {
    position: relative;
    width: 25%;
    padding-left: 50px;
    padding-right: 50px;
}

.about_mid_list ul li::before {
    content: "";
    position: absolute;
    right: 0;
    top: -20px;
    height: calc(100% + 40px);
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.about_mid_list ul li:last-child::before {
    display: none;
}

.about_mid_list .title {
    color: var(--white-color);
    min-height: 90px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.about_mid_list .text {
    padding-top: 30px;
    color: var(--white-color);

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.66;
}

.pt70 {
    padding-top: 70px;
}

.about_f_last {
    padding-top: 70px;
    padding-bottom: 70px;
}

.about_f_last .about_line {
    margin-top: 70px;
    margin-bottom: 70px;
}

.about_f_last .about_last_text {
    width: calc(50% - 40px);
}

.about_last_text p {
    padding-bottom: 10px;
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

.about_last_text p:last-child {
    padding-bottom: 0;
}

.ipand_show {
    display: none;
}

@media (max-width:1579px) {
    .about_mid_list ul li {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width:1440px) {
    .about_mid_list .title {
        font-size: 22px;
    }

}

@media (max-width:1366px) {
    .about_first_text .l {
        padding-right: 60px;
    }

    .about_mid_list .title {
        font-size: 22px;
    }

}

@media (max-width:1279px) {
    .about_title {
        padding-left: 50px;
        padding-right: 50px;
    }

    .about_first_text {
        align-items: stretch;
    }

    .about_first_text .l {
        padding-top: 40px;
        padding-right: 40px;
        padding-bottom: 40px;
    }

    .about_first_text .r img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about_mid_list ul li {
        padding-left: 30px;
        padding-right: 30px;
    }


}

@media (max-width:1200px) {

    .about_mid_list ul li {
        padding-left: 20px;
        padding-right: 20px;
    }

}

@media (max-width:991px) {
    .about_first_text {
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .about_first_text .l {
        padding-right: 0;
        width: 100%;
    }

    .about_first_text .r {
        width: 100%;
    }

    .about_first_text .pc_show {
        display: none !important;
    }

    .ipand_show {
        display: block;
    }

    .about_mid_list ul li {
        width: 50%;
    }

    .about_mid_list ul li:nth-child(2n):before {
        display: none;
    }

}

@media (max-width:767px) {
    .height120 {
        height: 70px;
    }

    .location a:first-child {
        width: 18px;
        height: 20px;
        background-size: 18px;
        background-position: top;
    }

    .location a:nth-child(n+4) {
        display: none;
    }

    .ipand_show {
        display: none !important;
    }

    .about_first .about_first_title {
        padding-bottom: 40px;
    }

    .about_title {
        /* font-size: 24px; */
        padding-left: 16px;
        padding-right: 16px;
    }

    .about_f_mid {
        padding-top: 50px;
    }

    .about_mid_list {
        margin-top: 40px;
        padding-top: 40px;
        padding-bottom: 50px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .about_mid_list ul li {
        width: 100%;
        padding: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .about_mid_list ul li::before {
        top: inherit;
        bottom: 0;
        left: 0;
        right: inherit;
        width: 100%;
        height: 1px;
        display: block !important;
    }

    .about_mid_list ul li:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .about_mid_list ul li:last-child:before {
        display: none !important;
    }

    .about_mid_list .title {
        font-size: 20px;
        min-height: auto;
    }

    .about_mid_list .text {
        font-size: 16px;
    }

    .about_f_last {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .about_f_last .about_line {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .about_f_last .my-container {
        flex-wrap: wrap;
    }

    .about_f_last .about_last_text {
        padding-bottom: 10px;
        width: 100%;
    }

    .about_last_text p {
        font-size: 16px;
    }

}

/*page*/
.paged {
    padding: 60px 0 60px 0;
    text-align: center;
    overflow: hidden;
}

.paged .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.paged .pagination li {
    display: inline-block;
    padding: 0 12px;
}

.paged .pagination li.disabled {
    pointer-events: none;
}

.paged:after {
    clear: both;
    content: '';
    width: 0px;
    display: block;
    height: 0px;
    visibility: hidden;
}

.paged span,
.paged a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.paged a:hover,
.paged .active span {
    color: var(--main-color);
}

.paged .pagination li.disabled svg path {
    stroke: #CCCCCC;
}

@media (max-width:767px) {
    .paged {
        padding: 10px 0 30px 0;
    }

    .paged span,
    .paged a {
        font-size: 14px;
    }

    .paged .pagination li {
        display: inline-block;
        padding: 0 10px;

    }


}

/* product */
.product_top {
    padding-top: 50px;
}

.product_top .index_title {
    padding-bottom: 50px;
}

.product_top .index_title h2 {
    text-align: left;
    max-width: inherit;
}

.pt50 {
    padding-top: 50px;
}

.page_menu {
    margin-top: -10px;
}

.page_menu ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.page_menu ul li {
    padding: 10px;
}

.page_menu a {
    position: relative;
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    background: #F2F2F3;
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    z-index: 1;
}

.page_menu a::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--main-color);
    transform-origin: center right;
    transform: scaleX(0);
    transition: transform 0.25s ease-in-out;
}

.page_menu a:hover {
    color: var(--white-color);
}

.page_menu ul li.active a {
    background-color: var(--main-color);
    color: var(--white-color);
}

.page_menu a:hover::before {
    transform-origin: center left;
    transform: scaleX(1);
}

.pro_list {
    padding-top: 25px;
}

.pro_list ul {
    margin-left: -9px;
    margin-right: -9px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.pro_list ul li {
    padding: 25px 9px;
    width: 33.33%;
}

.pro_list .thumb {
    /* padding: 48px 62px; */
    background: #F5F5F5;
}

.pro_list .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transition: transform .6s;
}

.pro_list .pro_infor {
    padding-top: 30px;
}

.pro_infor .title {
    color: var(--dark-color);
    font-weight: 400;
    line-height: 1.5;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.pro_infor .specification {
    padding-top: 10px;
    color: #666;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.pro_infor .pro_button {
    display: flex;
    padding-top: 10px;
}

.pro_infor .pro_button .a {
    position: relative;
    display: flex;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    z-index: 1;
}

.pro_infor .pro_button span {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-right: 20px;
    color: var(--white-color);
}

.pro_button a i {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.pro_list ul li a:hover .title {
    color: var(--main-color);
}

.pro_list ul li a:hover .thumb i {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/*pro menu */
.pro_sort {
    position: relative;
    margin-top: 20px;
    z-index: 9;
}
.p_m_button i{
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../images/chevron-right.svg);
    background-repeat: no-repeat;
}
.pro_sort .pro_sort_loop {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding-top: 10px;
    display: none;
    z-index: 9;
}
.pro_sort .pro_sort_loop::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid rgba(0, 0, 0, 0.10);
}
.pro_sort .pro_sort_loop>ul {
    position: relative;
    padding: 0 20px 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #F1F8FD;
    max-height: 188px;
    overflow-y: auto;
}
.pro_sort ul>li {
    position: relative;
    padding-top: 16px;
}
.pro_sort ul>li>a {
    display: block;
    position: relative;
    width: 100%;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    transition: all 0.4s;
}
.pro_sort ul>li.active>a, .pro_sort ul>li>a:hover {
    color: var(--main-color);
}

@media (max-width:1280px) {
    .pro_list .thumb {
        padding: 30px 40px;
    }


}

@media (max-width:991px) {
    .pro_list .thumb {
        padding: 25px 35px;
    }
    .page_menu ul li {
        width: 33.33%;
    }
    .page_menu a {
        padding: 10px 10px;
        font-size: 16px;
    }

}

@media (max-width:767px) {
    .product_top .index_title {
        padding-bottom: 30px;
    }
    
    .page_menu ul {
        margin-left: -5px;
        margin-right: -5px;
    }

    .page_menu ul li {
        width: 100%;
        padding: 10px 5px;
    }
    .pro_list {
        padding-bottom: 25px;
    }
    .pro_list .thumb {
        padding: 25px 35px;
    }

    .pro_list ul li {
        width: 50%;
    }

}

@media (max-width:540px) {
    .pro_list ul li {
        width: 100%;
    }


}

/* product detail */
.pro_d_top {
    padding-top: 25px;
}

.pro_d_top .location {
    padding-top: 0;
}

.pro_d_top .about_line {
    margin-top: 25px;
}

.grey_back a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid #CCC;
}

.grey_back a:hover {
    border-color: var(--main-color);
}

.grey_back a:hover svg path {
    fill: var(--main-color);
}

.pro_d_cont {
    justify-content: space-between;
    position: relative;
}

.pro_d_top .pro_loop {
    padding-bottom: 20px;
    padding-right: 10px;
    width: calc(100% - 608px);
    overflow: hidden;
}

.pro_d_top .pro_d_text {
    padding-top: 50px;
    width: 608px;
    border-left: 1px solid #EEE;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-flow: column;
}

.pro_b_swiper {
    position: relative;
    /* height: 535px; */
}

.pro_b_swiper .swiper-slide {
    padding: 85px 98px;
}

.pro_b_swiper .swiper-slide .thumb {
    width: 100%;
    height: 100%;
}

.pro_b_swiper .swiper-slide .thumb i {
    width: 100%;
    height: 100%;
}

.pro_b_swiper .pro-button {
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 8;
}

.pro_b_swiper .pro-button.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pro_b_swiper .pro-button-prev {
    left: 0;
}

.pro_b_swiper .pro-button-next {
    right: 0;
}

.pro_b_swiper .pro-pagination {
    position: absolute;
    right: 50px;
    top: 50px;
    left: inherit;
    bottom: inherit;
    width: auto;
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border: 1px solid #CCC;
    color: #666;
    font-size: 18px;
    font-weight: 400;
    z-index: 8;
}

.pro_b_swiper .thumb i {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.pro_b_swiper .thumb i img {
    width: 100%;
}

.pro_s_swiper {
    margin-top: 20px;
    max-width: 680px;
}

@media (min-width:768px) {

    .pro_s_swiper.m_active .swiper-wrapper {
        justify-content: center;
    }

}

.pro_s_swiper .swiper-slide {
    padding-bottom: 22px;
    cursor: pointer;
}

.pro_s_swiper .thumb {
    padding: 18px 25px;
    background: #F5F5F5;
}

.pro_s_swiper .thumb i {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.pro_s_swiper .thumb i img {
    width: 100%;
}

.pro_s_swiper .swiper-slide:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--main-color);
    transition: width 0.5s;
}

.pro_s_swiper .swiper-slide-thumb-active:after {

    width: 100%;
}


.pro_d_text .pro_d_title {
    padding-left: 60px;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.5;
}

.pro_d_text .pro_d_sub {
    padding-left: 60px;
    padding-top: 30px;
    color: var(--dark-color);

    font-weight: 400;
    line-height: 1.5;
}

.pro_d_table {
    margin-top: 30px;
    flex: 1;
    height: calc(100% - 175px);
    overflow-y: auto;
}
.pro_d_table::-webkit-scrollbar {
    width: 0;
    height: 2px
}

.pro_d_table::-webkit-scrollbar-button:vertical {
    display: none
}

.pro_d_table::-webkit-scrollbar-corner,
.pro_d_table::-webkit-scrollbar-track {
    background-color: #999;
}

.pro_d_table::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #ccc;
}

.pro_d_table table {
    width: 100%;
    border-collapse: collapse;
}

.pro_d_table table tr:nth-child(odd) {
    background: #F8F8FA;
}

.pro_d_table table tr td {
    padding: 20px;
    width: 50%;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.pro_d_table table tr td:first-child {
    padding-left: 60px;
}

.pro_d_menu {
    position: sticky;
    top: 120px;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    background-color: var(--white-color);
}

.pro_d_menu.fixed {
    position: inherit;
}

.pro_d_menu ul {
    display: flex;
    justify-content: center;
}

.pro_d_menu ul li {
    padding: 0 30px;
}

.pro_d_menu ul li a {
    position: relative;
    padding: 25px 0;
    display: inline-block;
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.pro_d_menu ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: width .4s;
}

.pro_d_menu ul li.active a {
    color: var(--main-color);
}

.pro_d_menu ul li.active a::before {
    width: 100%;
}

.pro_d_box .term_box {
    padding-top: 56px;
}

.term_title {
    color: var(--dark-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.pro_d_box .pro_d_text {
    padding-top: 30px;
}

.pro_d_box .pro_d_text p {
    padding-bottom: 30px;
    color: #666;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.pro_d_box .pro_d_text p:last-child {
    padding-bottom: 0;
}

.speci_table {
    padding-top: 30px;
    padding-bottom: 40px;
}

.speci_table table {
    width: 100%;
    border-collapse: collapse;
}

.speci_table table tr {
    border-bottom: 1px solid #EEE;
}

.speci_table table tr td {
    padding: 20px 0;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.speci_table table tr td:first-child {
    width: 30%;
}

.pro_d_video {
    padding-top: 56px;
}

.d_video_list {
    padding-top: 20px;
    padding-bottom: 60px;
}

.d_video_list ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
}

.d_video_list ul li {
    width: 33.33%;
    padding: 10px;
}

.d_video_list .video_box {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.d_video_list .video_box i {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transition: transform .6s;
}

.d_video_list .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.d_video_list .mask img {
    max-width: 60px;
}

.d_video_list .video_box:hover i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

@media (max-width:1580px) {
    .pro_b_swiper .swiper-slide {
        padding: 85px 88px;
    }

}

@media (max-width:1440px) {
    .pro_b_swiper .swiper-slide {
        padding: 85px 68px;
    }

    .pro_d_top .pro_loop {
        width: calc(100% - 508px);
    }

    .pro_d_top .pro_d_text {
        width: 508px;
    }

}

@media (max-width:1366px) {
    .pro_b_swiper .swiper-slide {
        padding: 75px 48px;
    }

    .pro_b_swiper .pro-pagination {
        right: 40px;
        top: 40px;
        width: 56px;
        height: 56px;
    }

    .pro_d_top .pro_loop {
        width: calc(100% - 450px);
    }

    .pro_d_top .pro_d_text {
        width: 450px;
    }

    .pro_d_text .pro_d_title,
    .pro_d_text .pro_d_sub,
    .pro_d_table table tr td:first-child {
        padding-left: 40px;
    }

}

@media (max-width:1280px) {

    .pro_d_text .pro_d_title,
    .pro_d_text .pro_d_sub,
    .pro_d_table table tr td:first-child {
        padding-left: 30px;
    }

    .pro_d_text .pro_d_sub {
        padding-top: 20px;
    }

}

@media (max-width:1279px) {
    .pro_d_top .pro_loop {
        width: calc(100% - 400px);
    }

    .pro_d_top .pro_d_text {
        width: 400px;
    }

    .pro_s_swiper .thumb {
        padding: 10px 15px;
    }

}

@media (max-width:1024px) {
    .pro_d_menu {
        top: 110px;
    }

}

@media (max-width:991px) {
    .pro_d_cont {
        flex-wrap: wrap;
    }

    .pro_d_top .pro_loop {
        width: 100%;
        padding-right: 0;
    }

    .pro_d_top .pro_d_text {
        width: 100%;
        border-left: none;
    }

    .d_video_list .mask img {
        max-width: 40px;
    }

    .pro_d_top .pro_d_text {
        position: relative;
        height: auto;
    }
    .pro_d_table {
        height: auto;
    }


}

@media (max-width:767px) {
    .pro_d_top>.my-container {
        flex-wrap: wrap;
    }

    .grey_back a {
        width: 46px;
        height: 46px;
    }

    .grey_back a svg {
        width: 20px;
        height: 20px;
    }

    .pro_d_menu {
        position: inherit;
        display: none;
    }

    .pro_loop,
    .pro_d_text {
        overflow: hidden;
    }

    .pro_b_swiper .pro-pagination {
        right: 0;
        top: 10px;
        width: 46px;
        height: 46px;
        font-size: 16px;
    }

    .pro_b_swiper .swiper-slide {
        padding: 75px 40px 25px 40px;
    }

    .pro_d_text .pro_d_title,
    .pro_d_text .pro_d_sub,
    .pro_d_table table tr td:first-child {
        padding-left: 20px;
    }

    .pro_d_table {
        overflow-x: auto;
    }

    .pro_d_table table tr td {
        padding: 15px 10px;
        width: 50%;
        font-size: 16px;
        line-height: 1.5;
        white-space: nowrap;
    }

    .speci_table table tr td {
        padding: 15px 10px;
        width: 50%;
        font-size: 16px;
        line-height: 1.5;
        white-space: nowrap;
    }

    .d_video_list ul li {
        width: 100%;
    }

}

/* 视频弹窗 */
html.act {
    height: 100vh;
    overflow: hidden;
}

html.act body {
    height: 100vh !important;
    overflow: hidden !important;
}

.z_tanchuang {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    z-index: 1110;
}

.z_tanchuang .tbox {
    display: table-cell;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    vertical-align: middle;
}

.z_tanchuang .tbox .modal {
    display: block;
    position: relative;
    width: 90%;
    max-width: 1154px;
    max-height: 90%;
    margin: 0 auto;
}

.z_tanchuang .tbox .out {
    position: absolute;
    width: 68px;
    height: 68px;
    background: var(--main-color) url(../images/white_close.svg) center no-repeat;
    background-size: 30px 30px;
    top: 0;
    right: 0;
    cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
    width: 100%;
    max-height: 650px;
    margin: 0 auto;
    height: 80vh;
    display: flex;
    align-items: center;
}

.z_tanchuang .tbox .modal .img video {
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.z_tanchuang .tbox .modal .img img {
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .img {
    max-width: 1200px;
}

/* 弹窗选中 */
.z_tanchuang.one {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scaleY(0.01) scaleX(0);
    -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(0);
    -webkit-animation: mzoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(1);
    -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */
@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes mzoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes mzoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@media (max-width:767px) {

    .z_tanchuang .tbox .out {
        width: 58px;
        height: 58px;
        background-size: 30px 30px;

    }
}

/* contact */
.contact_top {
    padding-top: 50px;
    padding-bottom: 60px;
}

.contact_top ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -70px;
    margin-right: -70px;
}

.contact_top ul li {
    padding: 0 70px;
    width: 50%;
}

.contact_top .contact_title {
    color: var(--main-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.contact_title.pt68 {
    padding-top: 68px;
}

.contact_top .contact_text {
    padding-top: 20px;
    max-width: 650px;
    color: var(--dark-color);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.contact_top .contact_phone {
    padding-top: 10px;
    flex-wrap: wrap;
}

.contact_top .contact_phone a {
    margin-right: 50px;
    color: #333;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact_top .contact_phone a:last-child {
    margin-right: 0;
}

.contact_mess .index_title {
    padding-top: 50px;
}

.contact_mess .index_title h2 {
    font-weight: 400;
    font-family: 'Monda';
}


@media (max-width:1440px) {
    .contact_top ul {
        margin-left: -40px;
        margin-right: -40px;
    }

    .contact_top ul li {
        padding: 0 40px;
    }

    .contact_top .contact_phone a {
        margin-right: 30px;
    }
}

@media (max-width:1366px) {
    .contact_top ul {
        margin-left: -30px;
        margin-right: -30px;
    }

    .contact_top ul li {
        padding: 0 30px;
    }

    .contact_top .contact_phone a {
        margin-right: 20px;
    }

}

@media (max-width:991px) {
    .contact_top ul li {
        padding-top: 30px;
        width: 100%;
    }

    .contact_top ul li:first-child {
        padding-top: 0;
    }

    .contact_top .contact_text {
        max-width: inherit;
    }

    .contact_title.pt68 {
        padding-top: 30px;
    }

}

@media (max-width:767px) {
    .contact_top .contact_phone a {
        margin-right: 0;
        width: 100%;
    }

}

.messform {
    padding-top: 35px;
    padding-bottom: 65px;
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    flex-wrap: wrap;
}

.messform .col {
    width: 33.33%;
    padding: 15px 12px;
}

.messform .input-container {
    position: relative;
    background-color: #FAFAFA;
}

.messform .input-container input {
    outline: none;
    z-index: 1;
    padding: 20px;
    position: relative;
    background: none;
    width: 100%;
    height: 70px;
    border: 0;
    color: var(--dark-color);
    line-height: 26px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Monda";
}

.messform .input-container span {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 65px;
    color: var(--dark-color);
    font-family: 'Roboto';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}

.messform .input-container span em {
    color: #F00;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.messform .text-area span {
    top: 18px;
    transform: inherit;
    width: 60px;
}

.messform .mess_content span {
    width: 126px;

}

.messform .colw100 {
    width: 100%;
    padding: 15px 12px;
}

.messform .input-container textarea {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 200px;
    padding: 20px;
    line-height: 26px;
    border: 0;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    resize: none;
    font-family: "Monda";
}

.messform .input-container input::-webkit-input-placeholder,
.messform textarea::-webkit-input-placeholder {
    color: #999;
    font-size: 18px;
    font-family: "Monda";
}

.messform .input-container input::-moz-placeholder,
.messform textarea::-moz-placeholder {
    color: #999;
    font-size: 18px;
    font-family: "Monda";
}

.messform .input-container input::-ms-input-placeholder,
.messform textarea::-ms-input-placeholder {
    color: #999;
    font-size: 18px;
    font-family: "Monda";
}

.messform .submit {
    padding: 16px 69px;
    background: transparent;
    color: #FFF;
    text-align: center;
    font-family: 'Monda';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    border: none;
    cursor: pointer;
}

.messform .submit {
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.messform .yanz {
    width: 452px;
}

.messform .yanz span {
    width: 132px;
}

.messform .yanz input {}

.messform .yz {
    padding-left: 5px;
}

.messform .yz img {
    height: 60px;
}

.messform .last_button {
    padding-top: 25px;
    justify-content: center;
}

.text-area label {
    position: absolute;
    bottom: -16px;
    left: 0;
    color: var(--main-color);
    font-size: 14px;
    line-height: 1;
}

@media all and (max-width:1366px) {
    .contact_text .title {
        padding-bottom: 20px;
    }

    .contact_text .bottom_text {
        padding-top: 40px;
    }

    .contact_text .bottom_text .c_adress {
        padding-top: 40px;
    }

}

@media all and (max-width:1279px) {

    .contact_text .bottom_text {
        padding-top: 30px;
    }

    .contact_text .bottom_text .c_adress {
        padding-top: 30px;
    }

    .contact_mess .c_mess_bg {
        padding: 60px 60px;
    }

}

@media all and (max-width:991px) {
    .contact_top {
        padding-top: 48px;
        padding-bottom: 100px;
    }

    .contact_top .contact_text {
        position: relative;
        margin: 0 auto;
    }

    .contact_mess .c_mess_bg {
        padding: 60px 60px;
    }

    .contform {
        padding-top: 40px;
    }

    .messform .yanz {
        width: 360px;
    }

    .messform .col {
        width: 50%;
    }

}

@media all and (max-width:767px) {
    .contact_top {
        padding-top: 30px;
        padding-bottom: 0px;
    }

    .contact_mess .index_title {
        padding-top: 30px;
    }

    .contact_top .contact_text {
        max-width: 100%;
    }

    .contact_text .bottom_text p {
        font-size: 18px;
    }

    .contact_top .contact_text .bg {
        padding: 30px 20px;
    }

    .contact_mess {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .contform {
        padding-top: 0;
    }

    .messform {
        padding-bottom: 30px;
    }

    .messform .col {
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .messform .input-container span {
        font-size: 14px;
    }

    .last_yanz {
        flex-wrap: wrap;
    }

    .messform .yanz {
        width: 100%;
    }

    .messform .yanz span {
        width: 124px;
    }

    .messform .yanz input {
        padding-left: 130px;
    }

    .messform .yz {
        padding-left: 0;
        padding-top: 14px;
    }

    .messform .last_button {
        padding-top: 30px;
    }

    .messform .input-container input {
        padding: 15px 10px;
        height: 60px;
        font-size: 16px;
    }

    .messform .input-container input::-webkit-input-placeholder,
    .messform textarea::-webkit-input-placeholder {
        font-size: 14px;
    }

    .messform .input-container input::-moz-placeholder,
    .messform textarea::-moz-placeholder {
        font-size: 14px;
    }

    .messform .input-container input::-ms-input-placeholder,
    .messform textarea::-ms-input-placeholder {
        font-size: 14px;
    }

}

/* news list */
.new_list {
    padding-top: 30px;
}
.new_list ul {
    margin-left: -22px;
    margin-right: -22px;
    display: flex;
    flex-wrap: wrap;
}
.new_list ul li {
    padding: 20px 22px;
    width: 33.33%;
}

@media (max-width:991px) {
    .new_list ul {
        margin-left: -15px;
        margin-right: -15px;
    }
    .new_list ul li {
        padding: 20px 15px;
    }


}
@media (max-width:767px) {
    .new_list {
        padding-bottom: 30px;
    }
    .new_list ul li {
        width: 50%;
    }

}
@media (max-width:540px) {

    .new_list ul li {
        width:100%;
    }

}
/* article */
.article_title {
    padding-top: 50px;
}
.article_title .big_t {
    color:var(--dark-color);
font-family: 'Monda bold';
font-style: normal;
font-weight: 700;
line-height: 1.5;
}
.article_share {
    padding-top: 20px;
}
.share_button {
    display: flex;
    align-items: center;
    color: #666;
font-size: 18px;
font-style: normal;
font-weight: 400;
}
.share_button .i {
    display: inline-block;
    margin-left: 16px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    background-color: #F5F5F5;
    cursor: pointer;
}

.share_button .share_btn {
    background-image: url(../images/share_black.svg);
}

.share_button .share_btn:hover {
    background-color: var(--main-color);
    background-image: url(../images/share_white.svg);
}



.article_left {
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.article_left p {
    color:var(--dark-color);
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 30px;
    margin-bottom: 35px;
}

.article_left p:last-child {
    margin-bottom: 0;
}

.article_left img {
    display: block;
    margin: 0 auto;
    max-width: 100% !important;
    height: auto !important;
}

.tig_list {
    padding-top: 50px;
    padding-bottom: 70px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.tig_list .t {
    margin-bottom: 10px;
    color:var(--dark-color);
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.tig_list a {
    display: flex;
    margin-left: 10px;
    margin-bottom: 10px;
padding: 6px 15px;
justify-content: center;
align-items: center;
    background-color: #F6F9FF;
    color:var(--dark-color);

font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 30px; 
}

@media screen and (max-width:767px) {
    .article_share {
        flex-wrap: wrap;
    }
    .article_share .time {
        width: 100%;
        padding-bottom: 10px;
    }
    .article_left {
        padding: 30px 0;
    }
    .tig_list {
    padding-top: 30px;
    padding-bottom: 40px;
    justify-content: flex-start;
}
.tig_list .t {
    padding-bottom: 10px;
    width: 100%;
}
.tig_list a {
    margin-left: 0;
    margin-right: 5px;
    font-size: 16px;
}

}
/* 分享 */

.share_mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    left: 0;
    top: 0;
    z-index: 1111;
    display: none;
}

.share_box {
    position: fixed;
    top: 50%;
    width: 298px;
    padding: 0 20px;
    border-radius: 24px;
    background: #FFF;
    left: 50%;
    z-index: 11111;
    display: none;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}

.share_box .share_list {
    padding-top: 46px;
    padding-bottom: 30px;
}

.share_box .sub {
    text-align: center;
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.share_box .share_list ul {
    display: flex;
    justify-content: space-around;
}

.share_box .share_list ul li {
    padding-top: 22px;
    width: 33%;
    cursor: pointer;
}

.share_box .share_list ul li p {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    margin-top: 8px;
    line-height: 24px;
    text-align: center;
}

.cancel_share {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 30px;
    height: 30px;
    font-size: 0;
    background-image: url(../images/share_close.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
    z-index: 9;
}

.share_bg {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--main-color);
    margin: 0 auto;
    text-align: center;
}

/* search */
.search_no_content .search_no {
    padding-top: 100px;
padding-bottom: 100px;
    display: flex;
align-items: center;
justify-content: center;
flex-flow: column;
}
.search_no_content .search_no .img{
    max-width: 311px;
}
.search_no_content .search_no .text {
    padding-top: 12px;
    color: #333;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}
    

@media (max-width:350px) {}


@media (max-width:767px) {}