/*common start*/
.scroll::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 4px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

.scroll::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    /*box-shadow:inset 0 0 2px #000;*/
    background: var(--main-color);
}

.scroll::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    /*box-shadow:inset 0 0 2px #999;*/
    border-radius: 10px;
    background: #eee;
}

:root {
    --primary-color: #008aff;
    --secondary-color: #fa0ac4;
    --third-color: #25a4bb;
    --black000: #000;
    --black333: #333;
    --black666: #666;
    --black999: #999;
    --grayeee: #eee;
    --grayccc: #ccc;
    --grayaaa: #aaa;
    --grayf5: #f5f5f5;
    --white: #fff;
    --red: #f00;
    --black-opacity99: rgba(0, 0, 0, .99);
    --black-opacity90: rgba(0, 0, 0, .9);
    --black-opacity70: rgba(0, 0, 0, .7);
    --black-opacity50: rgba(0, 0, 0, .5);
    --black-opacity10: rgba(0, 0, 0, .1);
    --black-gradation90: linear-gradient(180deg, transparent, rgba(0, 0, 0, .9));
    --white-opacity99: rgba(255, 255, 255, .99);
    --white-opacity90: rgba(255, 255, 255, .9);
    --white-opacity90: rgba(255, 255, 255, .7);
    --white-opacity50: rgba(255, 255, 255, .5);
    --white-opacity10: rgba(255, 255, 255, .1);
    --white-gradation90: linear-gradient(180deg, transparent, rgba(255, 255, 255, .9));
}

body,
div,
ul,
li,
a,
img,
p,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
span,
strong,
input {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    border: 0;
    list-style: none;
}

body {
    font-size: 12px;
    /* font-family: 'SourceHanSansCN';*/
    font-family: Arial, 'Microsoft YaHei';
    color: #333;
    overflow-x: hidden;
    min-height: 101vh;
    scroll-behavior: smooth;
}

.clear {
    margin: 0;
    padding: 0;
    font-size: 0;
    clear: both;
}

a {
    color: #000;
}

.wapper2 {
    width: 80%;
    margin: 0 auto;
}

.wapper3 {
    width: 100%;
    margin: 0 auto;
}

input,
textarea,
select {
    outline: none;
    /* font-family: 'SourceHanSansCN';*/
    font-family: Arial, 'Microsoft YaHei';
    font-size: 14px;
    border-radius: 4px;
}

input,
input:link,
input:visited,
input:hover,
input:active,
input:focus {
    outline: none;
}

img {
    object-fit: cover;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.xiangqing img {
    width: auto !important;
    /*height: auto !important;
    max-width: 100%;*/
}

@media(max-width:999px) {
    p {
        padding: 0;
    }

    .wapper1 {
        width: 95%;
        margin: 0 auto;
    }

    .wapper2 {
        width: 80%;
        margin: 0 auto;
    }

    .wapper3 {
        width: 100%;
        margin: 0 auto;
    }

    .wapper4 {
        width: 100%;
        padding: 0;
    }

    .wapper5 {
        width: 100%;
        padding: 0 15px;
    }

    :root {
        --font48: 28px;
        --font36: 24px;
        --font32: 22px;
        --font24: 20px;
        --font20: 18px;
        --font18: 16px;
        --font16: 14px;
        --font14: 12px;
    }
}

/*common end*/


.html {
    opacity: 1;
    visibility: visible;
    transition: all 2s ease;
}

.html.onload {
    opacity: 0;
    visibility: hidden;
}

.loading_box {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    transition: all .5s ease;
}

.loading_box.removeload {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.loading_close1 {
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.loadingbg {
    width: 90%;
    max-width: 750px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.loading {
    text-align: center;
}

.loading_logo {
    width: 200px;
    height: 200px;
    position: relative;
    margin: 0 auto;
}

.loading_logo img {
    max-width: 50%;
    max-height: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
}

.loading_logo:before {}

.loading_txt {
    font-size: 20px;
    line-height: 30px;
    margin-top: 55px;
    color: var(--main-color);
}

.loadEffect {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.loadEffect div {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-animation: load 2s linear infinite;
}

.loadEffect div span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
    }

    10% {
        -webkit-transform: rotate(45deg);
    }

    50% {
        opacity: 1;
        -webkit-transform: rotate(160deg);
    }

    62% {
        opacity: 0;
    }

    65% {
        opacity: 0;
        -webkit-transform: rotate(200deg);
    }

    90% {
        -webkit-transform: rotate(340deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }

}

.loadEffect div:nth-child(1) {
    -webkit-animation-delay: 0.2s;
}

.loadEffect div:nth-child(2) {
    -webkit-animation-delay: 0.4s;
}

.loadEffect div:nth-child(3) {
    -webkit-animation-delay: 0.6s;
}

.loadEffect div:nth-child(4) {
    -webkit-animation-delay: 0.8s;
}

@media(max-width:999px) {
    .loading_txt {
        font-size: 16px;
        line-height: 26px;
        margin-top: 35px;
    }
}


/*首页全屏*/
.index_swiper {
    position: relative;
}

.index_swiper>.swiper-container {
    height: 100vh;
}

.index_swiper>.swiper-container>.swiper-wrapper>.swiper-slide {
    height: 100vh;
}

.index_swiper>.swiper-container>.swiper-wrapper>.swiper-slide:last-child {
    /* height:auto !important;*/
}

.index_swiper>.swiper-pagination {
    position: absolute;
    left: 3.12vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet {
    display: block;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    font-size: 14px;
    line-height: 34px;
    color: rgba(255, 255, 255, .7);
    padding-left: 1.56vw;
    position: relative;
    opacity: 1;
    outline: none;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: #fff;
    opacity: 1;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    border: 1px solid #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    background: #fff;
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet:after {
    content: "";
    width: 3.12vw;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-100%, -50%);
}

.index_swiper>.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    background: #fff;
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet {
    color: #666;
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet.swiper-pagination-bullet-active {
    color: var(--main-color);
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet:before {
    border-color: #D6D6D6;
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    border-color: var(--main-color);
    background: var(--main-color);
}

.index_swiper>.swiper-pagination.active .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    background: var(--main-color);
}

@media(max-width:999px) {
    .index_swiper>.swiper-container {
        height: auto;
    }

    .index_swiper>.swiper-container>.swiper-wrapper {
        display: block;
    }

    .index_swiper>.swiper-container>.swiper-wrapper>.swiper-slide {
        height: auto;
    }
}



.m11_headbg {
    width: 100%;
    background: #fff;
    /*box-shadow:0 0 10px rgba(0,0,0,.1);*/
    position: fixed;
    z-index: 55;
    left: 0;
    top: 0;
}

.m11_head .logo {
    width: 360px;
    height: 80px;
    position: relative;
}

.m11_head .logo img {
    display: block;
    /*max-width:100%;*/
    max-height: 90%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    height: 6.2vh;
}

.m11_head .rt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.h_search_btn {
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url(../images/top_search_btn2.png) center no-repeat;
    margin-left: 155px;
}

.h_search_btn.active {
    background-image: url(../images/chahao2.png);
}

.h_search_box {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    display: none;
}

.h_search_close1 {}

.h_searchbg {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.h_search_close2 {}

.h_search {
    padding: 40px 0;
}

.h_search form {
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.h_search form #search_keywords2 {
    float: left;
    border: none;
    background: none;
    height: 60px;
    line-height: 60px;
    padding: 0 10px;
    width: calc(100% - 80px);
}

.h_search form #search2 {
    float: right;
    border: none;
    background: var(--main-color) url(../images/ico_search1.png) center no-repeat;
    background-size: 50% auto;
    height: 60px;
    width: 60px;
    cursor: pointer;
    transition: all .3s ease;
    font-size: 0;
    color: transparent;
}

.h_search form #search2:hover {
    background-color: var(--secondary-color);
}

/*menu*/
.m11_head .menu {
    height: 80px;
    line-height: 80px;
}

.m11_head .menu>ul {}

.m11_head .menu>ul>li {
    float: left;
    position: relative;
    padding: 0 20px;
}

.m11_head .menu>ul>li>a {
    color: var(--main-color-222);
    display: block;
    font-size: 16px;
    font-weight: normal;
    position: relative;
}

.m11_head .menu>ul>li>a:hover,
.m11_head .menu>ul>li:hover>a,
.m11_head .menu>ul>li.hover>a {
    color: var(--main-color-222);
    font-weight: normal;
}

.m11_head .menu>ul>li>a:before {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease;
}

.m11_head .menu>ul>li>a:hover:before,
.m11_head .menu>ul>li:hover>a:before,
.m11_head .menu>ul>li.hover>a:before {
    width: 100%;
}

.m11_head .menu>ul>li>a:hover {
    color: var(--main-color);
}

.m11_head .menu>ul>li>ul {
    width: fit-content;
    min-width: 120px;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 5;
    display: none;
    border-radius: 10px;
}

.m11_head .menu>ul>li>ul li {
    position: relative;
}

.m11_head .menu>ul>li>ul li a {
    color: #666;
    display: block;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 5px;
    line-height: 1.5em;
    text-align: center;
    white-space: nowrap;
}

.m11_head .menu>ul>li>ul li a:hover,
.m11_head .menu>ul>li>ul li:hover>a {
    color: var(--main-color);
}

.m11_head .menu>ul>li>ul li ul {
    width: 145%;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
}

.m11_head .menu>ul>li>ul li:hover>ul {
    display: block;
}

.m11_head_height {
    height: 110px;
}

@media(max-width:1280px) {
    .h_search_btn {
        margin-left: 100px;
    }

    .m11_head .logo img {
        height: 6.7vh;
    }

    .m11_head .menu>ul>li {
        /* width: 32px; */
        width: auto;
    }

    .m11_head .rt {
        width: 73.5%;
    }
}

@media(max-width:999px) {
    .m11_head .rt {
        width: auto;
    }

    .my_search {
        display: none;
    }

    .m11_head_height {
        height: 60px;
    }

    .m11_head {
        height: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        max-width: 1550px;
        padding: 0 20px;
        margin: 0 auto;
    }

    .more {
        width: 108px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        color: var(--main-color-white);
        background-color: var(--main-color);
        font-size: 14px;
        display: block;
        margin-top: 30px;
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .con4con .more {
        margin: 0 auto;
        margin-top: 30px;
    }

    .m11_head .logo {
        width: 50%;
        height: 60px;
    }

    .h_search {
        padding: 20px 0;
    }

    .h_search form {
        height: 40px;
    }

    .h_search form #search_keywords2 {
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        width: calc(100% - 60px);
    }

    .h_search form #search2 {
        height: 40px;
        width: 40px;
    }

    .m11_head .menu {
        display: none;
    }
}

/*nav*/
.m11_head .nav_open {
    width: 24px;
    height: 18px;
    cursor: pointer;
    display: none;
    position: relative;
    margin-left: 15px;
}

.m11_head .nav_open i,
.m11_head .nav_open:before,
.m11_head .nav_open:after {
    width: 24px;
    height: 2px;
    background: #999;
    position: absolute;
    left: 0;
    transition: all .3s ease;
}

.m11_head .nav_open i {
    top: 50%;
    transform: translate(0, -50%);
}

.m11_head .nav_open:before {
    content: "";
    top: 0;
}

.m11_head .nav_open:after {
    content: "";
    bottom: 0;
}

.m11_head .nav_open.active i {
    opacity: 0;
    visibility: hidden;
}

.m11_head .nav_open.active:before {
    transform: translateY(8px) rotate(45deg);
}

.m11_head .nav_open.active:after {
    transform: translateY(-8px) rotate(-45deg);
}

.m11_head .nav_box {
    width: 100%;
    height: calc(100% - 120px);
    border-top: 1px solid #ededed;
    position: fixed;
    left: 0;
    top: 60px;
    display: none;
}

.m11_head .nav_close1 {
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 998;
}

.m11_head .navbg {
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
}

.m11_head .nav {
    position: relative;
}

.m11_head .nav_close2 {
    display: none;
}

.m11_head .nav_list {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.m11_head .nav_list ul {}

.m11_head .nav_list ul li {
    padding: 5px 5%;
}

.m11_head .nav_list>ul>li {
    border-bottom: 1px solid #f3f3f3;
    padding: 10px 5%;
}

.m11_head .nav_list ul li span {
    display: block;
    position: relative;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
}

.m11_head .nav_list ul li span a {
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    z-index: 2;
    color: var(--main-color-666);
}

.m11_head .nav_list>ul>li>span a {
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    color: var(--main-color-666);
}

.m11_head .nav_list ul li span i {
    width: 100%;
    height: 100%;
    background: url(../images/ico_down1.png) right center no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    margin-right: 20px;
}

.m11_head .nav_list ul li ul {
    padding: 5px 0 0 0;
    display: none;
}

.m11_head .nav_list ul li.active>span>i {
    background-image: url(../images/ico_up1.png);
}

@media(max-width:999px) {
    .m11_head .nav_open {
        display: block;
    }

    .m11_head .logo img {
        display: block;
        /* max-width: 100%; */
        max-height: 90%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        height: 5vh;
    }

    .m11_head .nav_list>ul>li {
        padding: 0;
        color: var(--main-color-666);
        font-size: 14px;
    }

    .m11_head .nav_list>ul>li ul>li {
        color: var(--main-color-666);
        font-size: 14px;
        border-bottom: 1px solid #f3f3f3;
        background-color: #e3e3e3;
        padding: 0 20px;
    }
}


/*banner*/
.banner {
    position: relative;
    overflow: hidden;
}

.banner .swiper-container {}

.banner .swiper-slide {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner .swiper-slide.swiper-slide-active {
    z-index: 2;
}

.banner .swiper-slide img {
    width: 100%;
    transition: all ease 5s;
    height: 100%;
    object-fit: cover;
    background: #f9f9f9;
}

.banner .swiper-slide.swiper-slide-active img {
    transform: scale(1.2);
}

.banner .swiper-slide .txtbg {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner .swiper-slide .txt {
    color: #fff;
    text-align: center;
}

.banner .swiper-slide .txt .h2 {
    font-size: 50px;
    text-align: center;
    color: var(--main-color-white);
    margin-bottom: 30px;
    font-weight: 300;
}

.banner .swiper-slide .txt .h3 {
    font-size: 2.08vw;
    line-height: 1.4em;
}

.banner .swiper-pagination {
    height: 10px;
    bottom: 20px;
}

.banner .swiper-pagination span {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    margin: 0 8px;
    background: #fff;
    opacity: 1;
    transition: all .3s ease;
}

.banner .swiper-pagination span.swiper-pagination-bullet-active {
    width: 20px;
    background: #fff;
    opacity: 1;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    background-color: rgba(0, 0, 0, .5);
    background-size: 15px 30px;
    opacity: 0;
    transition: all .3s ease;
    border-radius: 8px;
}

.banner .swiper-button-prev {
    left: 5%;
    transform: translateX(-100%);
}

.banner .swiper-button-next {
    right: 5%;
    transform: translateX(100%);
}

.banner:hover .swiper-button-prev,
.banner:hover .swiper-button-next {
    opacity: .7;
    transform: translateX(0) !important;
}

.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
    opacity: 1;
}

@media(max-width:999px) {
    .banner .swiper-slide img {
        height: 50vw;
    }

    .banner .swiper-slide .txtbg {
        width: 90%;
    }

    .banner .swiper-slide .txt .h2 {
        font-size: 24px;
        line-height: 1.2em;
        margin-bottom: 5px;
    }

    .banner .swiper-slide .txt .h3 {
        font-size: 14px;
        line-height: 1.4em;
    }

    .banner .swiper-pagination {
        bottom: 10px;
    }

    .banner .swiper-button-prev,
    .banner .swiper-button-next {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
}






.go_top {
    width: 50px;
    line-height: 50px;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, .5) url(../images/ico_backtop.png) center no-repeat;
    position: fixed;
    z-index: 44;
    bottom: 10px;
    right: 10px;
    font-size: 0;
}

.go_top:hover {
    background-color: var(--main-color);
    color: #fff;
}

.go_top i {}

@media(max-width:999px) {
    .go_top {
        display: none;
    }
}


/*客服*/
.m1_side_kefu_box {
    width: 70px;
    /* position: fixed; */
    z-index: 44;
    right: 10px;
    bottom: 50px;
    display: none;
}

.m1_side_kefu {
    width: 70px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    border-radius: 8px;
    position: relative;
    right: 0;
    transition: all .5s ease;
    font-size: 20px !important;
    text-align: center;
}

.m1_side_kefu.active {
    right: -80px;
}

.m1_side_kefu ul li {
    position: relative;
    padding: 0 10px;
    background-color: var(--main-color);
}

.m1_side_kefu ul li>a {
    display: block;
    padding: 9px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid #f5f5f5;
    color: #999;
}

.m1_side_kefu ul li:nth-child(1)>a {
    /*border:none;*/
}

.m1_side_kefu ul li .ico {
    color: #fff;
    height: 21px;
}

.m1_side_kefu ul li .ico img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
}

.m1_side_kefu ul li .ico .img2 {
    display: none;
}

.m1_side_kefu ul li:hover .ico .img1 {
    display: none;
}

.m1_side_kefu ul li:hover .ico .img2 {
    display: block;
}

.m1_side_kefu ul li:hover .h2 {
    color: var(--main-color);
}

.m1_side_kefu ul li .boxbg {
    width: fit-content;
    padding: 0 10px 0 0;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.m1_side_kefu ul li:hover .boxbg {
    transform: translate(0, -50%);
    opacity: 1;
    visibility: visible;
}

.m1_side_kefu ul li .box {
    width: fit-content;
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 4px;
}

.m1_side_kefu ul li .box:before {
    content: "";
    border: 5px solid transparent;
    border-left: 5px solid #fff;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 0;
}

.m1_side_kefu ul li .box .h3 {
    white-space: nowrap;
    line-height: 30px;
    font-size: 20px;
    text-align: center;
    min-width: 150px;
}

.m1_side_kefu ul li .box .h3 img {
    vertical-align: top;
    height: 30px;
    width: 28px;
    object-fit: contain;
    margin-right: 5px;
}

.m1_side_kefu ul li .box .ewm {
    text-align: center;
}

.m1_side_kefu ul li .box .ewm .h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.m1_side_kefu ul li .box .ewm img {
    display: block;
    margin: 0 auto;
    width: 124px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.m1_side_kefu_btn {
    width: 28px;
    height: 28px;
    text-align: center;
    border-radius: 100%;
    background: #fff;
    color: #999;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: absolute;
    z-index: 66;
    bottom: -38px;
    right: 21px;
    cursor: pointer;
    transition: all .3s ease;
}

.m1_side_kefu_btn.active {
    transform: rotate(45deg);
}

.m1_side_kefu_btn i {
    display: block;
    width: 28px;
    height: 28px;
    background: url(../images/ico_btn1.png) center no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.m1_side_kefu_btn.active {}

.m1_side_kefu_btn i.m1_side_kefu_open {
    display: none;
}

.m1_side_kefu_btn i.m1_side_kefu_close {}

.m1_side_kefu_btn.active i.m1_side_kefu_open {
    display: block;
}

.m1_side_kefu_btn.active i.m1_side_kefu_close {
    display: none;
}

@media(max-width:999px) {
    .m1_fheight {
        height: 70px;
    }

    .m1_side_kefu_box {
        width: 100%;
        right: 0;
        top: auto;
        bottom: 0;
        transform: translateY(0);
        display: block;
    }

    .m1_side_kefu {
        width: 100%;
        border-radius: 0;
    }

    .m1_side_kefu.active {
        right: 0 !important;
    }

    .m1_side_kefu ul li {
        margin-bottom: 0;
        float: left;
        width: 25%;
        padding: 0;
    }

    .m1_side_kefu ul li>a {
        border: none;
        border-right: 1px solid #f5f5f5;
    }

    .m1_side_kefu ul li .h2 {
        font-size: 16px;
        color: #fff;
    }

    .m1_side_kefu ul li.gotop {
        display: block !important;
    }

    .m1_side_kefu ul li .boxbg {
        padding: 0 0 10px 0;
        top: auto;
        bottom: 100%;
        right: auto;
        left: 50%;
        transform: translate(-50%, -20%) !important;
    }

    .m1_side_kefu ul li:hover .boxbg {
        transform: translate(-50%, 0) !important;
    }

    .m1_side_kefu ul li .box:before {
        border: 5px solid transparent;
        border-top: 5px solid #fff;
        position: absolute;
        top: auto;
        bottom: 0;
        margin-top: 0;
        margin-left: -5px;
        right: auto;
        left: 50%;
    }

    .m1_side_kefu ul li .box1 {
        display: none !important;
    }

    .m1_side_kefu_btn {
        display: none;
    }
}

/*客服2*/
.m1_side_kefu2_box {
    position: fixed;
    right: 0;
    z-index: 44;
    bottom: calc(50% + 66px);
}

.m1_side_kefu2 {}

.m1_side_kefu2 ul li {
    position: relative;
    border-bottom: 1px solid #fff;
}

.m1_side_kefu2 ul li>a {
    display: block;
    text-align: center;
    background: var(--main-color);
    color: #fff;
    opacity: .9;
}

.m1_side_kefu2 ul li>a:hover,
.m1_side_kefu2 ul li:hover>a {
    background: var(--main-color);
    color: #fff;
    opacity: .9;
}

.m1_side_kefu2 ul li .ico {
    font-size: 20px;
    text-align: center;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.m1_side_kefu2 ul li .ico i {
    font-size: 30px !important;
    display: block;
}

.m1_side_kefu2 ul li .boxbg {
    background: var(--main-color);
    color: #fff;
    padding: 5px 10px;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translate(-10%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.m1_side_kefu2 ul li:hover .boxbg {
    transform: translate(0, -50%);
    opacity: .9;
    visibility: visible;
}

.m1_side_kefu2 ul li .box1 {}

.m1_side_kefu2 ul li .box1 .h3 {
    white-space: nowrap;
    line-height: 30px;
    font-size: 20px;
    text-align: center;
    min-width: 150px;
}

.m1_side_kefu2 ul li .box1 .h3 i {
    margin-right: 5px;
}

.m1_side_kefu2 ul li .box2 {
    padding: 5px 10px 10px 10px;
}

.m1_side_kefu2 ul li .box2 .h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.m1_side_kefu2 ul li .box2 img {
    display: block;
    width: 124px;
}

@media(max-width:999px) {
    .m1_side_kefu2_box {
        width: 30px;
        display: none;
    }

    .m1_side_kefu2 ul li {
        width: 30px;
    }

    .m1_side_kefu2 ul li .ico {
        line-height: 30px;
        font-size: 12px;
    }
}


.inbanner_box {
    position: relative;
}

.inbanner img {
    display: block;
    /*background:#f9f9f9;*/
}

.inbanner strong {
    width: 100%;
    text-align: center;
}

.inbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.weizhi a:hover {
    color: var(--main-color);
}

.weizhi a {
    color: #000;
}

.weizhi>span:nth-child(2n) {
    padding: 0 10px;
    font-size: 14px;
}

.weizhi>span:nth-child(2n + 3):hover {
    color: var(--main-color);
}

.inner_menu {
    font-size: 16px;
}

.inner_menu ul {
    line-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.inner_menu ul li {
    margin-left: 1px;
}

.inner_menu ul li a {
    display: block;
    padding: 0 2.08vw;
    border-radius: 4px;
    color: var(--main-color-222);
}

.inner_menu ul li.hover a,
.inner_menu ul li a:hover {
    background: var(--main-color);
    color: #fff;
}

.inner_menu ul li ul {
    display: none;
}

.inbar .goback {}

.inbar .goback a {
    color: #999;
    font-size: 20px;
}

.inbar .goback a:hover {
    color: #333;
}

@media(max-width:999px) {
    .inbanner img {
        display: block;
        background: #f9f9f9;
        height: 200px;
    }

    .inbar {
        /*height:40px;*/
        padding: 15px;
    }

    .weizhi {
        font-size: 13px;
        /*line-height:40px;*/
        color: #000;
    }

    .inner_menu {
        display: none;
    }

}

.m11_insidebg {
    /*padding:40px 0;*/
    min-height: 65vh;
}

.m11_inside {
    padding: 30px 15px;
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
}

.m11_inside_lt {
    float: left;
    width: 250px;
}

.m1_side_a {
    /*width:238px;*/
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border: 1px solid #eee;
    margin-bottom: 30px;
    position: relative;
    z-index: 11;
    overflow: hidden;
    border-radius: 8px;
}

/* .m1_side_a.active{ position:fixed; top:150px;} */
.m1_side_a>ul {}

.m1_side_a h2:nth-child(1) {
    display: flex;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.m1_side_a h2:nth-child(2) {
    display: none;
}

.m1_side_a h2 {
    font-size: 20px;
    line-height: 60px;
    padding-left: 20px;
    font-weight: normal;
    background: var(--main-color);
    color: #fff;
    /* border-bottom: 1px solid rgba(255, 255, 255, .5); */
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
}

.m1_side_a h2 strong {
    display: block;
    font-size: 24px;
    line-height: 28px;
}

.m1_side_a h2 span {
    display: block;
    margin-top: 6px;
    opacity: .7;
}

.m1_side_a ul>li h2>i {
    display: none;
}

.m1_side_a>ul>li {
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.m1_side_a>ul>li:nth-child(1) {
    border: none;
}

.m1_side_a ul li a {
    display: block;
    font-size: 14px;
    line-height: 26px;
    padding: 7px 20px 7px 20px;
}

.m1_side_a ul li:hover>a,
.m1_side_a ul li.hover>a,
.m1_side_a ul li.active>a {
    color: #fff !important;
    background-color: var(--main-color) !important;
}

.m1_side_a ul li.hover>i {
    background-image: url(../images/ico_list4.png) !important;
}

.m1_side_a ul li:hover>i,
.m1_side_a ul li.hover>i.hover {
    background-image: url(../images/ico_list4_hover.png) !important;
}

.m1_side_a ul li span {
    display: block;
    position: relative;
}

.m1_side_a ul li i {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    cursor: pointer;
    background-image: url(../images/ico_list3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: all;
}

.m1_side_a ul li ul {
    padding-bottom: 10px;
    width: calc(100%);
    display: none;
    pointer-events: all;
}

.m1_side_a ul li ul li {
    position: relative;
}

.m1_side_a>ul>li ul>li {
    padding-left: 20px;
}

.m1_side_a ul li ul li a {
    padding-top: 7px;
    padding-bottom: 7px;
    border-top: 2px solid #fff;
}

.m1_side_a ul li ul li i {
    top: 13px;
}

.m1_side_a ul li.active>i {
    background-image: url(../images/ico_list4_hover.png);
}

.m1_side_c {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border: 1px solid #eee;
    /*border-radius:10px;*/
}

.inLt_contact_btn {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
}

.inLt_contact_btn span {
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 2em;
    padding: 10px 5px;
    width: 20px;
    background: var(--main-color);
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.inLt_contact_btn .inLt_contact_close {
    display: block;
}

.inLt_contact_btn .inLt_contact_open {
    display: none;
}

.inLt_contact {}

.inLt_contact .h2 {
    font-size: 18px;
    line-height: 20px;
    padding: 15px 0 15px 70px;
    background-size: auto 60px;
    color: var(--main-color);
    position: relative;
    margin-bottom: 15px;
}

.inLt_contact .h2:before {}

.inLt_contact .h2 span {
    display: block;
    margin-bottom: 6px;
}

.inLt_contact .h2 strong {
    display: block;
    font-size: 22px;
    line-height: 24px;
}

.inLt_contact .h3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    padding: 0 10px;
}

.inLt_contact ul {
    padding: 5px 10px 10px 10px;
}

.inLt_contact ul li {
    font-size: 14px;
    line-height: 24px;
    margin: 5px 0;
}

.inLt_contact ul li span {}

.inLt_contact ul li i {
    display: inline-block;
    text-align: center;
    width: 14px;
    line-height: 24px;
    font-size: 14px;
    margin-right: 5px;
    color: var(--main-color);
}

.inLt_contact ul li i.fa-mobile {
    font-size: 20px;
}

.m11_inside_rt {
    float: right;
    width: calc(100% - 290px);
}

.m1_side_a>ul>li:nth-child(n + 2) {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    border-top: 3px solid #efefef;
}

@media(max-width:999px) {
    .m1_side_a>ul>li:nth-child(n + 2) {
        display: none;
    }

    /* .m11_insidebg{ padding:30px 0 60px 0;} */
    .m11_inside_lt {
        width: 100%;
    }

    .m11_inside_rt {
        width: 100%;
    }
}



.m11_news1 {}

.m11_news1_lt {
    float: left;
    width: 250px;
}

.m11_news1_rt {
    float: right;
    width: calc(100% - 290px);
}

.m1_side_b {
    margin-bottom: 30px;
    background: #fff;
    padding: 10px;
}

.m1_side_b .h1 {
    font-size: var(--font20);
    line-height: 24px;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.m1_side_b .h1 i {
    width: 24px;
    height: 24px;
    background: url(../images/ico_hot.png) center no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
}

.m1_side_b .list {
    margin-top: 20px;
}

.m1_side_b .list ul li {
    margin-bottom: 10px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.m1_side_b .list ul li .nr_box {}

.m1_side_b .list ul li .imgbg {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50%);
    transition: all .5s ease;
}

.m1_side_b .list ul li .img {
    padding-bottom: 38%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.m1_side_b .list ul li .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
}

.m1_side_b .list ul li .txtbg {}

.m1_side_b .list ul li .txt {}

.m1_side_b .list ul li .txt .h2 {
    font-size: var(--font14);
    line-height: 24px;
    height: 24px;
    padding: 0 0 0 30px;
    position: relative;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.m1_side_b .list ul li .txt .h2 em {
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 0 8px 0 8px;
    text-align: center;
    color: #999;
    font-style: normal;
    position: absolute;
    left: 0;
    top: 0;
}

.m1_side_b .list ul li .txt .h2 span {}

.m1_side_b .list ul li.active .imgbg {
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.m1_side_b .list ul li.active .txtbg {
    width: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .9));
    position: absolute;
    bottom: 0;
    left: 0;
}

.m1_side_b .list ul li.active .txt .h2 {
    color: #fff;
}

.m1_side_b .list ul li:nth-child(1) .txt .h2 em {
    color: #FE2D46;
}

.m1_side_b .list ul li:nth-child(2) .txt .h2 em {
    color: #F60;
}

.m1_side_b .list ul li:nth-child(3) .txt .h2 em {
    color: #FAA90E;
}

.m1_side_b .list ul li.active .txt .h2 em {
    color: #fff;
}

.m1_side_b .list ul li.active:nth-child(1) .txt .h2 em {
    background: #FE2D46;
}

.m1_side_b .list ul li.active:nth-child(2) .txt .h2 em {
    background: #F60;
}

.m1_side_b .list ul li.active:nth-child(3) .txt .h2 em {
    background: #FAA90E;
}

@media(max-width:999px) {
    .m11_news1_lt {
        width: 100%;
    }

    .m11_news1_rt {
        width: 100%;
        margin-top: 30px;
    }
}

.inside_news4 .m11_news1 {}

.inside_news4 .m11_news1_lt {
    float: left;
    width: 250px;
}

.inside_news4 .m11_news1_rt {
    float: right;
    width: calc(100% - 280px);
}

.inside_news4 .m1_side_b {
    margin-bottom: 30px;
    background: #fff;
    padding: 10px;
}

.inside_news4 .m1_side_b .h1 {
    font-size: var(--font20);
    line-height: 24px;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.inside_news4 .m1_side_b .h1 i {
    width: 24px;
    height: 24px;
    background: url(../images/ico_hot.png) center no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
}

.inside_news4 .m1_side_b .list {
    margin-top: 20px;
}

.inside_news4 .m1_side_b .list ul li {
    margin-bottom: 10px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.inside_news4 .m1_side_b .list ul li .nr_box {}

.inside_news4 .m1_side_b .list ul li .imgbg {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50%);
    transition: all .5s ease;
}

.inside_news4 .m1_side_b .list ul li .img {
    padding-bottom: 38%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.inside_news4 .m1_side_b .list ul li .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
}

.inside_news4 .m1_side_b .list ul li .txtbg {}

.inside_news4 .m1_side_b .list ul li .txt {}

.inside_news4 .m1_side_b .list ul li .txt .h2 {
    font-size: var(--font14);
    line-height: 24px;
    height: 24px;
    padding: 0 0 0 30px;
    position: relative;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.inside_news4 .m1_side_b .list ul li .txt .h2 em {
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 0 8px 0 8px;
    text-align: center;
    color: #999;
    font-style: normal;
    position: absolute;
    left: 0;
    top: 0;
}

.inside_news4 .m1_side_b .list ul li .txt .h2 span {}

.inside_news4 .m1_side_b .list ul li.active .imgbg {
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.inside_news4 .m1_side_b .list ul li.active .txtbg {
    width: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .9));
    position: absolute;
    bottom: 0;
    left: 0;
}

.inside_news4 .m1_side_b .list ul li.active .txt .h2 {
    color: #fff;
}

.inside_news4 .m1_side_b .list ul li:nth-child(1) .txt .h2 em {
    color: #FE2D46;
}

.inside_news4 .m1_side_b .list ul li:nth-child(2) .txt .h2 em {
    color: #F60;
}

.inside_news4 .m1_side_b .list ul li:nth-child(3) .txt .h2 em {
    color: #FAA90E;
}

.inside_news4 .m1_side_b .list ul li.active .txt .h2 em {
    color: #fff;
}

.inside_news4 .m1_side_b .list ul li.active:nth-child(1) .txt .h2 em {
    background: #FE2D46;
}

.inside_news4 .m1_side_b .list ul li.active:nth-child(2) .txt .h2 em {
    background: #F60;
}

.inside_news4 .m1_side_b .list ul li.active:nth-child(3) .txt .h2 em {
    background: #FAA90E;
}

@media(max-width:999px) {
    .inside_news4 .m11_news1_lt {
        width: 100%;
    }

    .inside_news4 .m11_news1_rt {
        width: 100%;
    }
}




/*地图*/
#allmap {
    width: 100%;
    height: 550px;
    background: #f9f9f9;
    /* border-radius: 10px; */
}

@media(max-width:999px) {
    #allmap {
        width: 100%;
        height: 550px;
    }
}


/*详情*/
.m11_newsdetail {}

.m11_newsdetail .tit {
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
    text-align: left;
    margin-top: 30px;
}

.m11_newsdetail .tit .h2 {
    font-size: 24px;
    line-height: 1.4em;
}

.m11_newsdetail .tit .h3 {
    font-size: 14px;
    line-height: 1.4em;
    color: #999;
    margin-top: 5px;
}

.m11_newsdetail .tit .h3 span {
    display: inline-block;
    margin: 0 20px 0 0;
}

.m11_newsdetail .list1 {
    padding: 40px 0;
    min-height: 46vh;
    text-align: center;
}

@media(max-width:999px) {
    .m11_newsdetail .tit .h2 {
        font-size: 20px;
        line-height: 1.4em;
    }

    .m11_newsdetail .tit .h3 {
        font-size: 12px;
        line-height: 1.4em;
        margin-top: 5px;
    }

    .m11_newsdetail .tit .h3 span {
        margin: 0 10px 0 0;
    }

    .m11_newsdetail .list1 {
        padding: 20px 0;
        margin: 20px 0 0 0;
        border-bottom: 1px solid #999;
    }
}


/*上一个下一个*/
.prev_next {
    margin-top: 30px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prev_next a {
    color: #333;
    width: 50%;
    display: block;
    font-size: 14px;
    border-radius: 2px;
    border: 1px solid #999;
    padding: 10px 15px;
    line-height: 1.3em;
    border-radius: 8px;
}

.prev_next a:nth-child(1) {
    margin-right: 15px;
}

.prev_next a:nth-last-child(1) {
    margin-left: 15px;
}

@media(max-width:999px) {
    .prev_next {
        margin-top: 30px;
        overflow: hidden;
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .prev_next a {
        color: #333;
        width: 50%;
        display: block;
        font-size: 14px;
        border-radius: 2px;
        border: 1px solid #999;
        padding: 10px 15px;
        line-height: 1.3em;
    }

    .prev_next a:nth-child(1) {
        margin-right: 5px;
    }

    .prev_next a:nth-last-child(1) {
        margin-left: 5px;
    }
}


/*.proDetail*/
.m11_proDetail {}

.m11_proDetail .list1 {
    margin-bottom: 2.08vw;
}

.m11_proDetail .list1 .lt {
    float: left;
    width: 49.5%;
}

div.zoomDiv {
    z-index: 999;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 200px;
    height: 200px;
    background: #ffffff;
    border: 1px solid #CCCCCC;
    display: none;
    text-align: center;
    overflow: hidden;
}

div.zoomMask {
    position: absolute;
    background: url(../images/mask.png) repeat scroll 0 0 transparent;
    cursor: move;
    z-index: 1;
}

.m1_galleryTop {
    border: 1px solid #eee;
    margin-bottom: 10px;
}

.m1_galleryTop .img {
    position: relative;
    padding-bottom: 100%;
    position: relative;
}

.m1_galleryTop .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
}

.m1_galleryThumbs {}

.m1_galleryThumbs .swiper-slide {}

.m1_galleryThumbs .swiper-slide .img {
    position: relative;
    padding-bottom: 100%;
    position: relative;
    border: 1px solid #eee;
    cursor: pointer;
}

.m1_galleryThumbs .swiper-slide .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
}

.m1_galleryThumbs .swiper-slide.swiper-slide-thumb-active .img {
    border-color: var(--main-color);
}

.m11_proDetail .list1 .rt {
    float: right;
    width: 46.3%;
    padding: 15px;
    display: block;
    margin-bottom: 20px;
    color: #333;
    font-weight: normal;
}

.m11_proDetail .list1 .rt .nr_box {}

.m11_proDetail .list1 .rt .h2 {
    font-size: 30px;
    line-height: 1.5em;
    font-weight: normal;
}

.m11_proDetail .list1 .rt .h3 {
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 20px;
}

.m11_proDetail .list1 .rt .h4 {
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 40px;
}

.m11_proDetail .phone {
    font-size: 1.04vw;
    line-height: 1em;
    margin-bottom: 1.6em;
    color: var(--main-color);
    padding: 0 0 0 5.2vw;
    position: relative;
}

.m11_proDetail .phone i {
    text-align: center;
    width: 4.16vw;
    line-height: 5.2vw;
    font-size: 4.16vw;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.m11_proDetail .phone span {
    display: block;
    margin-bottom: .52vw;
}

.m11_proDetail .phone strong {
    display: block;
    font-size: 1.66vw;
    line-height: 1em;
}

.m11_prevnext2 {
    font-size: var(--font14);
    line-height: 2.5em;
    margin-bottom: 2.08vw;
}

.m11_prevnext2 ul {
    margin-top: 20px;
}

.m11_prevnext2 ul li {
    float: left;
}

.m11_prevnext2 ul li:nth-child(2n) {
    float: right;
}

.m11_prevnext2 ul li a {
    text-align: center;
    width: 150px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #303133;
    display: block;
    border-radius: 8px;
}

.m11_prevnext2 ul li a:hover {
    border-color: var(--main-color);
    background: var(--main-color);
    color: #fff;
}

.m11_proDetail .list2 {
    border: 1px solid #eee;
    margin-bottom: 2.08vw;
    border-radius: 8px;
}

.m11_proDetail .list2 .hd {
    font-size: var(--font14);
    border-bottom: 1px solid #eee;
}

.m11_proDetail .list2 .hd ul {
    display: flex;
}

.m11_proDetail .list2 .hd ul li {
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    /*line-height:3em;*/
}

.m11_proDetail .list2 .hd ul li a {
    display: block;
    min-width: 100px;
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
}

.m11_proDetail .list2 .hd ul li:nth-child(1) a {
    border-top-left-radius: 8px;
}

.m11_proDetail .list2 .hd ul li a:hover {
    color: #fff;
    background: var(--main-color);
}

.m11_proDetail .list2 .hd ul li.on a {
    color: #fff;
    background: var(--main-color);
}

.m11_proDetail .list2 .xiangqing {
    padding: 20px;
    text-align: center;
}

.m11_proDetail .list2 .xiangqing img {
    max-width: 100%;
}

.m11_proDetail .list2 .bd {
    padding-bottom: 85px;
}

.m11_pro_related {
    border: 1px solid #eee;
    margin-bottom: 85px;
    border-radius: 8px;
}

.m11_pro_related>.h2 {
    font-size: var(--font14);
    line-height: 3em;
    border-bottom: 1px solid #eee;
}

.m11_pro_related>.h2 span {
    font-size: var(--font14);
    line-height: 3em;
    padding: 0 10px;
    min-width: 100px;
    text-align: left;
    border-right: 1px solid #eee;
    color: #fff;
    display: block;
    border-bottom: 2px solid var(--main-color);
    font-size: 16px;
    font-weight: normal;
    color: #333;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.m11_pro_related .index_product1 {
    padding: 20px 20px 0 20px;
    background-color: #fafafa;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.m11_pro_related .index_product1 ul li {
    width: calc((100% - 60px)/4);
}

@media(max-width:999px) {
    .m11_proDetail .list1 {
        margin-bottom: 30px;
    }

    .m11_proDetail .list1 .lt {
        float: left;
        width: 100%;
        margin-bottom: 20px;
    }

    .m11_proDetail .list1 .rt {
        float: right;
        width: 100%;
    }

    .m11_proDetail .list1 .rt .h2 {
        font-size: 18px;
        line-height: 1.4em;
        margin-bottom: 0;
    }

    .m11_proDetail .list1 .rt .h3 {
        font-size: 16px;
        line-height: 1.4em;
        margin-bottom: 10px;
    }

    .m11_proDetail .list1 .rt .h4 {
        font-size: 14px;
        line-height: 1.6em;
        margin-bottom: 20px;
    }

    .m11_proDetail .phone {
        font-size: 14px;
        line-height: 1em;
        margin-bottom: 1.6em;
        padding: 15px 20px 15px 60px;
    }

    .m11_proDetail .phone i {
        width: 60px;
        line-height: 60px;
        font-size: 40px;
    }

    .m11_proDetail .phone span {
        margin-bottom: 5px;
    }

    .m11_proDetail .phone strong {
        font-size: 18px;
        line-height: 1em;
    }

    .m11_proDetail .list2 {
        margin-bottom: 30px;
        border-radius: 8px;
    }

    .m11_proDetail .list2 .hd ul li:nth-child(1) a {
        border-top-left-radius: 8px;
    }

    .m11_proDetail .list2 .hd ul li a {
        min-width: 60px;
    }

    .m11_prevnext2 {
        margin-bottom: 30px;
    }

    .m11_pro_related .index_product1 {
        padding: 15px;
        background-color: #fff;
    }

    .m11_pro_related .index_product1 ul li {
        width: calc((100% - 10px)/2);
    }
}


/*搜索*/
.search_form {
    background: #f9f9f9;
    padding: 1.56vw;
    margin-bottom: 2.08vw;
    border-radius: 10px;
}

.search_form form {
    height: 2.6vw;
}

.search_form form #search_keywords {
    float: left;
    border: none;
    background: #fff;
    height: 2.6vw;
    line-height: 2.6vw;
    padding: 0 .5vw;
    width: calc(100% - 6.2vw);
}

.search_form form #search {
    float: right;
    border: none;
    width: 5.2vw;
    height: 2.6vw;
    line-height: 2.6vw;
    font-size: .84vw;
    background: var(--main-color);
    color: #fff;
    cursor: pointer;
}

.search_form form #search:hover {
    opacity: .9;
}

@media(max-width:999px) {
    .search_form {
        padding: 10px;
        margin-bottom: 20px;
    }

    .search_form form {
        height: 40px;
    }

    .search_form form #search_keywords {
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        width: calc(100% - 80px);
    }

    .search_form form #search {
        width: 60px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}




/*Add------------------------------------------------------------------------------*/

/*<!--弹窗2-->*/
.popup_tip2_box {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, .6);
    /* display: none;*/
}

.popup_tip2bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_tip2 {
    width: 440px;
    position: absolute;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 10000;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);
}

.popup_tip2-body {
    width: 100%;
    height: calc(100% - 72px);
}

.zoomIn {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.5, .5, .5);
        transform: scale3d(.5, .5, .5)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.5, .5, .5);
        transform: scale3d(.5, .5, .5)
    }

    50% {
        opacity: 1
    }
}

@media(max-width:750px) {
    .popUpBox {
        width: 90%;
    }
}

.ts {
    padding: 20px 20px 20px 20px;
}

.ts .h2 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
}

.ts .h3 {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 14px;
    display: inline-block;
    position: relative;
    padding-left: 30px;
}

.ts .h3 img {
    display: inline-block;
    vertical-align: top;
    width: 24px;
}

.ts .h3 i {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
}

.success .ts i {
    background-image: url(../images/ico_success.png);
}

.error .ts i {
    background-image: url(../images/ico_error.png);
}

.warning .ts i {
    background-image: url(../images/ico_warning.png);
}

.ts .h3 span {}

.ts_btn {
    text-align: right;
    font-size: 12px;
    line-height: 32px;
}

.ts_btn a {
    display: inline-block;
    text-align: center;
    border-radius: 4px;
    width: 78px;
    border: 1px solid #1890ff;
    background: #1890ff;
    color: #fff;
    margin-left: 10px;
}

.ts_btn a:hover {
    border-color: #2e80e2;
    background: #2e80e2;
    color: #fff;
}

.ts_btn a.bg2 {
    border: 1px solid #ccc;
    background: #fff;
    color: #666;
}

.ts_btn a.bg2:hover {
    border-color: #1890ff;
    background: #fff;
    color: #1890ff;
}


/*提示框*/
.popup_tip_box {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}

.popup_tip_close1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.popup_tipbg {
    min-width: 100px;
    max-width: 750px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup_tip {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.popup_tip_close2 {
    display: none;
}

.popup_tip_txt {
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
}

.popup_tip_txt span {
    display: inline-block;
    padding-left: 30px;
    position: relative;
}

.popup_tip_txt span i {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
}

.success .popup_tip_txt span {
    color: #4ebb23;
}

.error .popup_tip_txt span {
    color: #f34b51;
}

.warning .popup_tip_txt span {
    color: #f1b306;
}

.success .popup_tip_txt span i {
    background-image: url(../images/ico_success.png);
}

.error .popup_tip_txt span i {
    background-image: url(../images/ico_error.png);
}

.warning .popup_tip_txt span i {
    background-image: url(../images/ico_warning.png);
}

@-webkit-keyframes fadeInUp2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2
}

/*联系弹窗*/
.proContact1_box {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

.proContact1_close1 {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.proContact1_bg {
    width: 90%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.proContact1_close2 {
    width: 20px;
    height: 20px;
    background: url(../images/chahao2.png) center no-repeat;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    opacity: .9;
    transition: all .3s ease;
}

.proContact1_close2:hover {
    opacity: 1;
    transform: rotate(180deg)
}

.proContact1 {
    min-height: 260px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    padding-left: 235px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.proContact1>img {
    width: 230px;
    position: absolute;
    bottom: 0;
    left: 5px;
}

.proContact1_con {
    font-size: 16px;
    line-height: 20px;
}

.proContact1_con ul li {
    float: left;
    width: 50%;
    margin: 10px 0;
    color: var(--main-color);
    padding-left: 50px;
    min-height: 40px;
    box-sizing: border-box;
    position: relative;
}

.proContact1_con ul li:nth-child(1) {
    width: 100%;
    padding-left: 0;
}

.proContact1_con ul li i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    background: var(--main-color);
    color: #fff;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.proContact1_con ul li .h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: bold;
    color: var(--main-color);
}

.proContact1_con ul li span {
    display: block;
    color: #333;
}

.proContact1_con ul li .h2 span {
    color: var(--main-color);
}

@media(max-width:999px) {
    .proContact1 {
        min-height: 0;
        padding: 15px 5%;
    }

    .proContact1>img {
        width: 36%;
        bottom: auto;
        top: 0;
        left: 50%;
        transform: translate(-50%, -100%)
    }

    .proContact1_con {
        font-size: 14px;
        line-height: 18px;
    }

    .proContact1_con ul li {
        float: left;
        width: 100% !important;
        margin: 5px 0;
    }

    .proContact1_con ul li .h2 {
        font-size: 20px;
        line-height: 30px;
    }
}


/*留言咨询1*/
.tc_message_open1 {
    cursor: pointer;
    width: 60px;
    height: 60px;
    /* padding:10px;*/
    margin-top: -40px;
    border-radius: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    background: var(--main-color) url(../images/ico_zxly1.png) center no-repeat;
    background-size: 40px auto;
    color: #fff;
    font-size: 0;
    line-height: 20px;
    text-align: center;
    position: fixed;
    z-index: 44;
    left: 0;
    top: 50%;
    animation: btnAnimation 1s linear infinite 0s forwards;
    display: none !important;
}

.tc_message_box {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    display: none;
}

.tc_message_close1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.tc_message_bg {
    width: 90%;
    max-width: 500px;
    background-image: linear-gradient(to bottom right, var(--main-color), var(--third-color));
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.tc_message_close2 {
    width: 20px;
    height: 20px;
    background: url(../images/chahao.png) center no-repeat;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all .3s ease;
}

.tc_message_close2:hover {
    transform: rotate(180deg);
}

.tc_message {
    padding: 30px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.tc_message_lt {
    width: 180px;
    font-size: 16px;
    line-height: 26px;
}

.tc_message_lt ul {}

.tc_message_lt ul li {}

.tc_message_lt ul li i {
    font-size: 20px;
    width: 16px;
    text-align: center;
    margin-right: 5px;
}

.tc_message_lt ul li i.fa-mobile {
    font-size: 24px;
}

.tc_message_lt ul li i.fa-envelope {
    font-size: 16px;
}

.tc_message_lt ul li .ewm {
    width: 150px;
    margin-top: 5px;
}

.tc_message_lt ul li .ewm img {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
}

.tc_message_lt ul li .ewm span {
    display: block;
    background: #fff;
    color: var(--main-color);
    font-size: 12px;
    line-height: 22px;
    text-align: center;
}

.tc_message_rt {
    width: calc(100% - 200px);
}

.tc_message .h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.tc_message .message {}

.tc_message .message form {}

.tc_message .message ul li {
    margin-bottom: 10px;
}

.tc_message .message .input_text {
    border: 1px solid #ccc;
    background: #fff;
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    width: calc(100% - 22px);
    border-radius: 4px;
}

.tc_message .message textarea {
    border: 1px solid #ccc;
    background: #fff;
    height: 56px;
    line-height: 28px;
    padding: 0 10px;
    width: calc(100% - 22px);
    border-radius: 4px;
}

.tc_message .message .input_button {
    border: 1px solid #333;
    background: #333;
    color: #fff;
    height: 30px;
    line-height: 28px;
    width: 80%;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    font-size: 16px;
}

.tc_message .h3 {
    font-size: 12px;
    line-height: 24px;
    text-align: center;
}

.tc_message .h3 span {
    font-size: 16px;
    color: var(--main-color);
}

@media(max-width:999px) {
    .tc_message {
        padding: 30px;
        display: block;
    }

    .tc_message_lt {
        width: 100%;
        font-size: 14px;
    }

    .tc_message_lt ul {
        position: relative;
    }

    .tc_message_lt ul li {
        margin-top: 8px;
    }

    .tc_message_lt ul li:last-child {
        position: absolute;
        top: 0;
        right: 10px;
        margin-top: 0;
    }

    .tc_message_lt ul li .ewm {
        width: 90px;
        margin-top: 0;
    }

    .tc_message_lt ul li .ewm img {
        width: 90px;
        height: 90px;
        margin-bottom: 0;
    }

    .tc_message_lt ul li .ewm span {
        display: none;
    }

    .tc_message_rt {
        width: 100%;
        padding: 20px 0 0 0;
    }
}

@keyframes btnAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

/* Firefox */
@-moz-keyframes btnAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

/* Safari and Chrome */
@-webkit-keyframes btnAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

/* Opera */
@-o-keyframes btnAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}


/*询盘*/
.pinquiry1_box {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

.pinquiry1_close1 {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.pinquiry1_bg {
    width: 600px;
    height: 700px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.pinquiry1_close2 {
    width: 53px;
    height: 53px;
    background: url(../images/chahao2.png) center no-repeat;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    opacity: .9;
    transition: all .3s ease;
}

.pinquiry1_close2:hover {
    opacity: 1;
    transform: rotate(180deg)
}

.pinquiry1 {
    background: #fff;
    height: 600px;
    padding: 60px 30px 40px 30px;
    transform: scale(0) translate(100%, 100%);
    transition: all .5s ease;
    z-index: 2;
    transform-origin: bottom right;
}

.pinquiry1.fadeInRight2 {
    transform: scale(1) translate(0, 0);
}

.pinquiry1 .h2 {
    font-size: var(--font20);
}

.pinquiry1 .tips1 {
    font-size: 12px;
    line-height: 22px;
    color: #999;
}

.pinquiry1 .h2 .tips1 {
    display: inline-block;
    margin-left: 10px;
}

.pinquiry1 font {
    color: var(--red);
}

.pinquiry1_con {
    font-size: var(--font16);
    line-height: 32px;
    margin-top: 35px;
}

.pinquiry1_con dl {
    padding-left: 120px;
    position: relative;
    margin-top: 20px;
}

.pinquiry1_con dl dt {
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
}

.pinquiry1_con dl dd {
    min-height: 32px;
}

.pinquiry1_con .input_text {
    border: 1px solid #eee;
    background: #fff;
    border-radius: 4px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    width: calc(100% - 22px);
    max-width: 300px;
}

.pinquiry1_con textarea {
    border: 1px solid #eee;
    background: #fff;
    border-radius: 4px;
    height: 100px;
    line-height: 30px;
    padding: 0 10px;
    width: calc(100% - 22px);
}

.pinquiry1_con .input_button {
    display: block;
    width: 100px;
    line-height: 32px;
    border-radius: 4px;
    background: var(--main-color);
    color: #fff;
}

.pinquiry1_con .input_button:hover {
    opacity: .9;
}

.pinquiry1_con .yzm {}

.pinquiry1_con .yzm .input_text {
    float: left;
}

.pinquiry1_con .yzm #sendcode {
    float: right;
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: #fff;
    height: 32px;
    line-height: 30px;
    border-radius: 4px;
    width: calc(100% - 332px);
}

.pinquiry1_con .yzm img {
    float: left;
    height: 32px;
    margin-left: 10px;
}

.pinquiry1_con #proName {
    max-height: 84px;
    overflow-y: auto;
}

.pinquiry1_con #proName span {
    display: inline-block;
    vertical-align: top;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 4px;
    height: 30px;
    line-height: 30px;
    padding: 0 32px 0 10px;
    position: relative;
    margin: 0 10px 10px 0;
    overflow: hidden;
}

.pinquiry1_con #proName span i {
    width: 12px;
    height: 12px;
    line-height: 10px;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    border: 1px solid #f5f5f5;
    color: #999;
    cursor: pointer;
    position: absolute;
    top: 9px;
    right: 9px;
}

.pinquiry1_con #proName span i:hover {
    border-color: var(--main-color);
    background: var(--main-color);
    color: #fff;
}

@media(max-width:999px) {
    .pinquiry1_bg {
        width: 100%;
        height: 100%;
    }

    .pinquiry1_close2 {
        width: 40px;
        height: 40px;
        /* background-size:contain;*/
    }

    .pinquiry1 {
        height: calc(100% - 80px);
        padding: 40px 20px;
    }

    .pinquiry1_con dl {
        padding-left: 80px;
    }

    .pinquiry1_con .input_text {
        max-width: 100%;
    }

    .pinquiry1_con .yzm .input_text {
        width: calc(100% - 112px);
    }

    .pinquiry1_con .yzm #sendcode {
        width: 80px;
    }
}


.shopptingcart_loading {
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 2em;
}

.loadEffect2 {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto;
    margin-top: 30vh;
}

.loadEffect2 span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    -webkit-animation: load 1.04s ease infinite;
}

@-webkit-keyframes load2 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.loadEffect2 span:nth-child(1) {
    left: 0;
    top: 50%;
    margin-top: -8px;
    -webkit-animation-delay: 0.13s;
}

.loadEffect2 span:nth-child(2) {
    left: 10px;
    top: 10px;
    -webkit-animation-delay: 0.26s;
}

.loadEffect2 span:nth-child(3) {
    left: 50%;
    top: 0;
    margin-left: -8px;
    -webkit-animation-delay: 0.39s;
}

.loadEffect2 span:nth-child(4) {
    top: 10px;
    right: 10px;
    -webkit-animation-delay: 0.52s;
}

.loadEffect2 span:nth-child(5) {
    right: 0;
    top: 50%;
    margin-top: -8px;
    -webkit-animation-delay: 0.65s;
}

.loadEffect2 span:nth-child(6) {
    right: 10px;
    bottom: 10px;
    -webkit-animation-delay: 0.78s;
}

.loadEffect2 span:nth-child(7) {
    bottom: 0;
    left: 50%;
    margin-left: -8px;
    -webkit-animation-delay: 0.91s;
}

.loadEffect2 span:nth-child(8) {
    bottom: 10px;
    left: 10px;
    -webkit-animation-delay: 1.04s;
}


@keyframes btnAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

/* Firefox */
@-moz-keyframes btnAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

/* Safari and Chrome */
@-webkit-keyframes btnAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}

/* Opera */
@-o-keyframes btnAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.7);
    }

    100% {
        transform: scale(1);
    }
}


/*购物车*/
.proShoppingcart_box .shopptingcart_open {
    font-size: 0;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: var(--main-color) url(../images/ico_pbtn2.png) center no-repeat;
    background-size: 50% auto;
    position: fixed;
    top: 20%;
    right: 10%;
    cursor: pointer;
    z-index: 0;
    animation: btnAnimation 1s linear infinite 0s forwards;
}

.proShoppingcart_box .shopptingcart_open:hover {
    opacity: .9;
}

.tit_cart {}

.tit_cart .h2 {
    border-bottom: 1px solid #eee;
    font-size: 1.25vw;
    line-height: 1.5em;
}

.tit_cart .h2 span {
    display: inline-block;
    border-bottom: 2px solid var(--main-color);
    color: var(--main-color);
    padding-bottom: .26vw;
}

.shoppingcart_box {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    display: none;
}

.shoppingcart_close1 {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.shoppingcartbg {
    width: 50%;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    overflow-y: auto;
    transform: translateX(100%);
    transition: all .3s ease;
}

.shoppingcartbg.active {
    transform: translateX(0);
}

.shoppingcart_close2 {
    width: 20px;
    height: 20px;
    background: url(../images/chahao2.png) center no-repeat;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    opacity: .9;
    transition: all .3s ease;
}

.shoppingcart_close2:hover {
    opacity: 1;
    transform: rotate(180deg)
}

.shoppingcart {
    padding: 1.56vw;
}

.shoppingcart_list {
    margin-top: 1.04vw;
    margin-bottom: 1.56vw;
}

.shoppingcart_list_top {
    background: #f9f9f9;
    border: 1px solid #eee;
    margin-bottom: .52vw;
}

.shoppingcart_list_top table {}

.shoppingcart_list_top table th {
    font-weight: normal;
    text-align: center;
    padding: .78vw .52vw;
    font-size: .84vw;
    line-height: 1.5em;
}

.shoppingcart_list_top .w1 {
    width: 40%;
    text-align: left;
}

.shoppingcart_list_top .w2 {
    width: 15%;
}

.shoppingcart_list_top .w3 {
    width: 15%;
    padding-left: 0;
    padding-right: 0;
}

.shoppingcart_list_top .w4 {
    width: 15%;
}

.shoppingcart_list_top .w5 {
    width: 15%;
}

.shoppingcart_list_mid {
    border: 1px solid #eee;
    border-bottom: none;
    margin-bottom: .52vw;
    max-height: calc(14.04vw + 10px);
    overflow-y: auto;
}

.shoppingcart_list_mid table {}

.shoppingcart_list_mid table td {
    text-align: center;
    padding: .78vw .52vw;
    font-size: .72vw;
    line-height: 2em;
    border-bottom: 1px solid #eee;
}

.shoppingcart_list_mid .w1 {
    width: 40%;
    text-align: left;
}

.shoppingcart_list_mid .w1 .cart_pro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.shoppingcart_list_mid .w1 .img {
    width: 3.12vw;
    height: 3.12vw;
    border: 1px solid #eee;
    position: relative;
}

.shoppingcart_list_mid .w1 .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
}

.shoppingcart_list_mid .w1 .h2 {
    width: calc(100% - 3.5vw);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.shoppingcart_list_mid .w2 {
    width: 15%;
}

.shoppingcart_list_mid .w3 {
    width: 15%;
    padding-left: 0;
    padding-right: 0;
}

.shoppingcart_list_mid .w3 .pronum {
    height: 1.56vw;
}

.shoppingcart_list_mid .w3 .pronum a {
    width: calc(1.56vw - 2px);
    height: calc(1.56vw - 2px);
    line-height: calc(1.56vw - 2px);
}

.shoppingcart_list_mid .w3 .pronum input {
    width: 2.6vw;
    height: calc(1.56vw - 2px);
    line-height: calc(1.56vw - 2px);
}

.shoppingcart_list_mid .w4 {
    width: 15%;
    font-weight: bold;
}

.shoppingcart_list_mid .w5 {
    width: 15%;
}

.shoppingcart_list_btm {
    border: 1px solid #eee;
}

.shoppingcart_list_btm table {}

.shoppingcart_list_btm table td {
    padding: .78vw .52vw;
    font-size: .84vw;
    line-height: 1.5em;
}

.shoppingcart_list_btm .w1 {
    width: 40%;
}

.shoppingcart_list_btm .w2 {
    width: 60%;
    text-align: right;
}

.shoppingcart_list_btm .w2 strong {
    color: #e64347;
    font-size: 20px;
}

.shoppingcart_form {}

.shoppingcart_form .h2 {
    font-size: 1.25vw;
    line-height: 1.5em;
    margin-bottom: .26vw;
}

.shoppingcart_form .message {}

.shoppingcart_form .message form {}

.shoppingcart_form .message ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap;
}

.shoppingcart_form .message ul li {
    width: calc((100% - 15px)/2);
    margin-top: .52vw;
}

.shoppingcart_form .message ul li.li1 {
    width: 100%;
}

.shoppingcart_form .message .input_text {
    border: 1px solid #eee;
    background: #fff;
    height: 2.08vw;
    line-height: 2.08vw;
    padding: 0 10px;
    width: calc(100% - 22px);
}

.shoppingcart_form .message textarea {
    border: 1px solid #eee;
    background: #fff;
    height: 6.24vw;
    line-height: 2.08vw;
    padding: 0 10px;
    width: calc(100% - 22px);
}

.shoppingcart_form .message .yzm {
    height: calc(2.08vw + 2px);
}

.shoppingcart_form .message .yzm img {
    float: right;
    width: 100px;
    height: calc(2.08vw + 2px);
}

.shoppingcart_form .message .input_text1 {
    border: 1px solid #eee;
    background: #fff;
    height: 2.08vw;
    line-height: 2.08vw;
    padding: 0 10px;
    width: calc(100% - 125px);
    float: left;
}

.shoppingcart_form .message .yzm #sendcode {
    float: right;
    width: 100px;
    height: calc(2.08vw + 2px);
    background: var(--main-color);
    color: #fff;
    cursor: pointer;
}

.shoppingcart_form .message .yzm #sendcode:hover {
    opacity: .9;
}

.shoppingcart_form .message .input_button {
    display: block;
    margin: 0 auto;
    border: none;
    width: 100%;
    height: calc(2.08vw + 2px);
    line-height: calc(2.08vw + 2px);
    background: var(--main-color);
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

.shoppingcart_form .message .input_button:hover {
    opacity: .9;
}

.yzm input[disabled] {
    background: #999 !important;
    cursor: not-allowed !important;
}

.shoppingcart .success {
    text-align: center;
    margin-top: 20vh;
}

.shoppingcart .success .h1 {
    font-size: 1.25vw;
    line-height: 2em;
    margin-top: .52vw;
}

.shoppingcart .success .h2 {
    font-size: .84vw;
    line-height: 1.5em;
    color: #999;
}

.shoppingcart .success input {
    display: block;
    margin: 0 auto;
    border: none;
    width: 20%;
    height: calc(2.08vw + 2px);
    line-height: calc(2.08vw + 2px);
    background: var(--main-color);
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 1.3vw;
}

.shoppingcart .success input:hover {
    opacity: .9;
}

@media(max-width:999px) {
    .shopptingcart_loading {
        width: 100%;
    }

    .tit_cart .h2 {
        font-size: 20px;
        line-height: 1.5em;
    }

    .tit_cart .h2 span {
        padding-bottom: 5px;
    }

    .shoppingcartbg {
        width: 100%;
        height: 100%;
    }

    .shoppingcart {
        padding: 15px;
    }

    .shoppingcart_list {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .shoppingcart_list_top {
        display: none;
    }

    .shoppingcart_list_mid {
        margin-bottom: 15px;
        max-height: 44vh;
    }

    .shoppingcart_list_mid table tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .shoppingcart_list_mid table td {
        padding: 10px 0;
        font-size: 12px;
        line-height: 24px;
        display: block;
    }

    .shoppingcart_list_mid .w1 {
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
        border: none;
        padding-bottom: 0;
    }

    .shoppingcart_list_mid .w1 .img {
        width: 40px;
        height: 40px;
    }

    .shoppingcart_list_mid .w1 .h2 {
        width: calc(100% - 45px);
        line-height: 16px;
    }

    .shoppingcart_list_mid .w2 {
        width: 24%;
    }

    .shoppingcart_list_mid .w3 {
        width: 28%;
    }

    .shoppingcart_list_mid .w3 .pronum {
        height: 24px;
        vertical-align: top;
    }

    .shoppingcart_list_mid .w3 .pronum a {
        width: 22px;
        height: 22px;
        line-height: 22px;
    }

    .shoppingcart_list_mid .w3 .pronum input {
        width: 44px;
        height: 22px;
        line-height: 22px;
    }

    .shoppingcart_list_mid .w4 {
        width: 24%;
    }

    .shoppingcart_list_mid .w5 {
        width: 24%;
    }

    .shoppingcart_list_btm table td {
        padding: 10px 5px;
        font-size: 12px;
        line-height: 1.5em;
    }

    .shoppingcart_list_btm .w2 strong {
        font-size: 20px;
    }

    .shoppingcart_form {}

    .shoppingcart_form .h2 {
        font-size: 20px;
        line-height: 1.5em;
        margin-bottom: 0;
    }

    .shoppingcart_form .message ul li {
        width: calc((100% - 10px)/2);
        margin-top: 10px;
    }

    .shoppingcart_form .message ul li.li1 {
        width: 100%;
    }

    .shoppingcart_form .message .input_text {
        height: 30px;
        line-height: 30px;
        padding: 0 10px;
        width: calc(100% - 22px);
    }

    .shoppingcart_form .message textarea {
        height: 60px;
        line-height: 30px;
        padding: 0 10px;
        width: calc(100% - 22px);
    }

    .shoppingcart_form .message .yzm {
        height: 32px;
    }

    .shoppingcart_form .message .yzm img {
        width: 100px;
        height: 32px;
    }

    .shoppingcart_form .message .input_text1 {
        height: 30px;
        line-height: 30px;
        padding: 0 10px;
        width: calc(100% - 95px);
    }

    .shoppingcart_form .message .yzm #sendcode {
        width: 68px;
        height: 32px;
        font-size: 12px;
    }

    .shoppingcart_form .message .input_button {
        height: 32px;
        line-height: 32px;
        font-size: 12px;
    }

    .shoppingcart .success {}

    .shoppingcart .success img {
        max-width: 80px;
    }

    .shoppingcart .success .h1 {
        font-size: 20px;
        line-height: 2em;
        margin-top: 10px;
    }

    .shoppingcart .success .h2 {
        font-size: 12px;
        line-height: 1.5em;
    }

    .shoppingcart .success input {
        width: 30%;
        height: 32px;
        line-height: 30px;
        font-size: 12px;
        margin-top: 25px;
    }
}


/*筛选*/
.screen_btn {
    position: fixed;
    top: 100px;
    right: calc(15% - 40px);
    z-index: 11;
    display: none;
}

.screen_btn a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px auto;
    background-image: url(../images/ico_screen.png);
}

.screen_close {
    font-size: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 100%;
    background: url(../images/ico_btn1.png) center no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: calc(15% - 40px);
    z-index: 2;
    display: none;
}

.screen {}

.screen_box {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    border-radius: 4px;
    margin-bottom: 30px;
    position: relative;
    z-index: 22;
}

.screen_box>ul {
    position: relative;
    padding: 5px 15px 0 15px;
}

.screen_box>ul>li {
    position: relative;
    padding: 15px 0 5px 70px;
    position: relative;
    border-top: 1px solid #eee;
}

.screen_box>ul>li:first-child {
    border-top: none;
}

.screen_box>ul>li:nth-child(n+3) {
    display: none;
}

.screen_box.active>ul>li:nth-child(n+3) {
    display: block;
}

.screen_box>ul>li>span {
    display: block;
    font-size: 16px;
    line-height: 30px;
    position: absolute;
    left: 0;
    top: 15px;
}

.screen_box>ul>li .boxbg {
    /* height:35px;*/
    overflow: hidden;
    position: relative;
    /* padding-right:30px;*/
}

.screen_box>ul>li .boxbg.active {
    /* height:auto;*/
}

.screen_box .box_btn {
    display: none;
    padding-bottom: 15px;
}

.screen_box .box_btn i {
    display: block;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    background: url(../images/ico_down1.png) center no-repeat;
    cursor: pointer;
}

.screen_box .box_btn i.i1 {}

.screen_box .box_btn i.i2 {
    background-image: url(../images/ico_list2.png);
    display: none;
}

.screen_box.active .box_btn i.i1 {
    display: none;
}

.screen_box.active .box_btn i.i2 {
    display: block;
}

.screen_box>ul>li .box {}

.screen_box>ul>li a {
    display: inline-block;
    padding: 0 15px;
    color: #999;
    border: 1px solid #f5f5f5;
    margin: 0 10px 10px 0;
    border-radius: 4px;
}

.screen_box>ul>li a:hover {
    color: var(--main-color);
    border-color: var(--main-color);
}

.screen_box>ul>li a.hover {
    color: #fff;
    border-color: var(--main-color);
    background: var(--main-color);
}

.screen.tfixed .screen_box {
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 33;
    transform: translateY(-100%);
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
}

.screen.tfixed.shown .screen_box {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.screen.tfixed.hiden .screen_box {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.screen.tfixed .screen_box>ul {
    width: 70%;
    margin: 0 auto;
}

.screen.tfixed .screen_btn {
    display: block;
}

.screen.tfixed .screen_close {
    display: block;
}

@media(max-width:1699px) {
    .screen_btn {
        right: calc(10% - 40px)
    }

    .screen_close {
        right: calc(10% - 40px)
    }

    .screen.tfixed .screen_box>ul {
        width: 80%;
    }
}

@media(max-width:1279px) {
    .screen_btn {
        right: calc(5% - 40px)
    }

    .screen_close {
        right: calc(5% - 40px)
    }
}

@media(max-width:999px) {
    .screen_box {
        font-size: 12px;
        line-height: 24px;
        /* margin-top:35px;*/
        display: none;
    }

    .screen.tfixed .screen_box {
        top: 60px;
        display: block;
    }

    .screen_btn {
        right: 0
    }

    .screen_close {
        right: 0;
    }

    .screen_box>ul {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .screen_box>ul>li {
        /* margin-bottom:15px;*/
        padding-bottom: 10px;
        padding-left: 60px;
    }

    .screen_box>ul>li>span {
        font-size: 12px;
        line-height: 24px;
    }

    .screen_box>ul>li a {
        padding: 0 5px;
        margin: 0 5px 5px 0;
    }

    .screen.tfixed .screen_box>ul {
        width: 90%;
    }

    /*.screen.active>ul{ width:90%;}
.screen.active>ul>li .box{ width:90%; }*/
}

/*pro1*/
.index_product1 {}

.index_product1 ul li {
    float: left;
    width: calc((100% - 40px)/3);
    margin: 0 0 20px 20px;
    text-align: center;
    background: #fff;
    /*border-radius: 10px;*/
}

.index_product1 ul li .nr_box {
    /*border:1px solid #eee; border-radius:10px;*/
    overflow: hidden;
    transition: all .3s ease;
}

.index_product1 ul li:nth-child(n + 4) {
    display: none;
}

.index_product1 ul li .nr_box .imgbg {
    height: 220px;
    overflow: hidden;
}

.index_product1 ul li:hover .nr_box {
    /*border-color:var(--main-color); box-shadow:0 0 10px rgba(0,0,0,.1);*/
}

.index_product1 ul li .img {
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    /*background:#f9f9f9;*/
}

.index_product1 ul li .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*margin:auto auto;*/
    height: 50%;
    text-align: center;
    margin: 0 auto;
    transition: all .3s ease;
}

.index_product1 ul li:hover .img img {
    transform: scale(1.1);
}

.index_product1 ul li .txtbg {
    background-color: var(--main-color);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.index_product1 ul li .txt {
    padding: 10px 0;
    /*background-color: var(--main-color);*/
}

.index_product1 ul li .txt .h2 {
    font-size: 16px;
    line-height: 1.5em;
    height: 1.5em;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.index_product1 ul li:hover .txt .h2 {
    /*color:var(--main-color);*/
}

.index_product1 ul li .txt .h3 {
    display: none;
}

@media(max-width:999px) {
    .index_product1 ul li {
        float: left;
        width: calc((100% - 10px)/2);
        margin: 0 0 20px 10px;
    }

    .index_product1 ul li:nth-child(2n-1) {
        margin-left: 0;
        clear: left;
    }

    .index_product1 ul li .txt {
        padding: 10px 5%;
    }

    .index_product1 ul li .txt .h2 {
        font-size: 16px;
        line-height: 1.5em;
        /*height:45px;*/
    }

    .m10_con01bg .con1 {
        padding: 30px 15px;
    }

    .index_product1 ul li:nth-child(n + 4) {
        display: block;
    }
}

@media(min-width:999px) {
    .m11_con01bg.wapper3>div>div>div>div>div.content>div>ul>li {
        cursor: pointer;
        width: calc((100% - 60px) / 3);
        box-shadow: var(--main-shadow);
        margin: 0 10px 20px 10px;
        height: 264px;
    }
}


@media(max-width:999px) {
    .m11_con01bg .con1 {
        padding: 30px 15px;
    }
}

/*news1*/
.index_news1 {
    padding: 40px 0;
    background: #f2f2f2;
}

.index_news1 ul li {
    float: left;
    width: calc((100% - 20px)/2);
    margin: 0 0 20px 20px;
    background: #fff;
}

.index_news1 ul li:nth-child(2n-1) {
    margin-left: 0;
    clear: left;
}

.index_news1 ul li .nr_box {
    border: 1px solid #f2f2f2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.index_news1 ul li .imgbg {
    width: 25%;
}

.index_news1 ul li .img {
    padding-bottom: 70%;
    position: relative;
    overflow: hidden;
}

.index_news1 ul li .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
}

.index_news1 ul li:hover .img img {
    transform: scale(1.1);
}

.index_news1 ul li .txtbg {
    width: 75%;
}

.index_news1 ul li .txt {
    padding: 20px 20px;
    color: #666;
}

.index_news1 ul li .txt .h2 {
    font-size: .94vw;
    line-height: 1.5em;
    height: 1.5em;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.index_news1 ul li:hover .txt .h2 {
    color: var(--main-color);
}

.index_news1 ul li .txt .h3 {
    font-size: .72vw;
    line-height: 1.5em;
    height: 3em;
    margin: 10px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index_news1 ul li .txt .time {
    font-size: 14px;
    line-height: 24px;
    color: #999;
    padding-left: 24px;
    position: relative;
    margin: 10px 0 0 0;
}

.index_news1 ul li .txt .time i {
    width: 20px;
    height: 24px;
    background: url(../images/ico_time.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}

@media(max-width:999px) {
    .index_news1 ul li {
        float: left;
        width: 100%;
        margin: 0 0 20px 0;
    }
}


/*news2*/
.index_news2 {
    padding: 40px 0;
}

.index_news2 ul li {
    float: left;
    width: calc((100% - 20px)/2);
    margin: 0 0 0 20px;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.index_news2 ul li:nth-child(2n-1) {
    margin-left: 0;
    clear: left;
}

.index_news2 ul li .txt {}

.index_news2 ul li .txt .h2 {
    font-size: 16px;
    line-height: 26px;
    height: 26px;
    overflow: hidden;
    padding-left: 25px;
    position: relative;
}

.index_news2 ul li .txt .h2:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #000;
    position: absolute;
    left: 0;
    top: 10px;
}

.index_news2 ul li .txt .h2 a {
    float: left;
    width: 70%;
    height: 26px;
    overflow: hidden;
    color: #333;
}

.index_news2 ul li:hover .txt .h2 a {
    color: var(--main-color);
}

.index_news2 ul li .txt .h2 span {
    float: right;
    color: #999;
}

@media(max-width:999px) {
    .index_news2 ul li {
        float: left;
        width: 100%;
        margin: 0;
    }
}


/*news3*/
.index_news3 {
    padding: 40px 0;
}

.index_news3 ul li {
    float: left;
    width: calc((100% - 20px)/2);
    margin: 0 0 20px 20px;
}

.index_news3 ul li:nth-child(2n-1) {
    margin-left: 0;
    clear: left;
}

.index_news3 ul li .nr_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.index_news3 ul li .date {
    width: 80px;
    height: 80px;
    background: #f2f2f2;
    color: #999;
    text-align: center;
}

.index_news3 ul li .date strong {
    display: block;
    font-size: 36px;
    line-height: 36px;
    padding: 15px 0 2px 0;
}

.index_news3 ul li .date span {
    display: block;
    font-size: 12px;
    line-height: 12px;
}

.index_news3 ul li .txt {
    width: calc(100% - 100px);
    color: #666;
}

.index_news3 ul li .txt .h2 {
    font-size: .94vw;
    line-height: 1.5em;
    height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.index_news3 ul li .txt .h2 a {
    color: #333;
}

.index_news3 ul li:hover .txt .h2 a {
    color: var(--main-color);
}

.index_news3 ul li .txt .h3 {
    font-size: .72vw;
    line-height: 1.5em;
    height: 3em;
    margin: 5px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media(max-width:999px) {
    .index_news3 ul li {
        float: left;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

/*inner_news1*/
.inside_newslist .inside_news1 {}

.inside_newslist .inside_news1 ul {
    padding: 20px 0;
}

.inside_newslist .inside_news1 ul li {
    transition: all ease 0.4s;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 25px;
    background-color: #fafafa;
    align-items: center;
    /* border-bottom: 1px solid #ececec; */
    border-radius: 12px;
    margin-bottom: 10px;
}

.inside_newslist .inside_news1 ul li:hover {
    box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    cursor: default;
    border-radius: 12px;
}

.inside_newslist .inside_news1 ul li>a {
    width: 100%;
}

.inside_newslist .inside_news1 ul li .nr_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: default;
}

.inside_newslist .inside_news1 ul li .imgbg {
    width: 25%;
}

.inside_newslist .inside_news1 ul li .img {
    position: relative;
    padding-bottom: 70%;
    overflow: hidden;
    border-radius: 12px;
}

.inside_newslist .inside_news1 ul li .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
    background: #f9f9f9;
}

.inside_newslist .inside_news1 ul li:hover .img img {
    transform: scale(1.1);
}

.inside_newslist .inside_news1 ul li .txtbg {
    width: 75%;
}

.inside_newslist .inside_news1 ul li .txt {
    color: #666;
    padding-left: 25px;
    cursor: default;
}

.inside_newslist .inside_news1 ul li .txt .h2 {
    line-height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #444;
    font-size: 16px;
    transition: all ease 0.4s;
}

.inside_newslist .inside_news1 ul li:hover .txt .h2 {
    color: var(--main-color);
}

.inside_newslist .inside_news1 ul li .txt .h3 {
    font-size: var(--14px);
    line-height: 1.5em;
    margin-bottom: var(--20px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.inside_newslist .inside_news1 ul li .txt .time {
    line-height: 24px;
    padding-left: 24px;
    position: relative;
    color: #444;
    font-size: 16px;
}

.inside_newslist .inside_news1 ul li .txt .time i {
    width: 20px;
    height: 24px;
    background: url(../images/ico_time.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}

@media(max-width:999px) {
    .inside_newslist .inside_news1 ul li .nr_box {
        display: block;
    }

    .inside_newslist .inside_news1 ul li .imgbg {
        width: 100%;
        margin-bottom: 20px;
    }

    .inside_newslist .inside_news1 ul li .txtbg {
        width: 100%;
    }

    .inside_newslist .inside_news1 ul li .txt .h2 {
        font-size: 16px;
        line-height: 1.5em;
        height: auto;
        -webkit-line-clamp: 2;
        margin-bottom: 5px;
    }

    .inside_newslist .inside_news1 ul li .txt {
        padding: 0;
    }

    .inside_newslist .inside_news1 ul li .txt .h3 {
        font-size: 14px;
        color: #777;
        line-height: 25px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
}

/*inner_news1*/
.inside_newslist1 .inside_news1 {}

.inside_newslist1 .inside_news1 ul li {
    float: left;
    width: calc((100% - 60px)/4);
    margin: 0 0 20px 20px;
}

.inside_newslist1 .inside_news1 ul li:nth-child(4n-3) {
    margin-left: 0;
}

.inside_newslist1 .inside_news1 ul li .nr_box {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 10px;
}

.inside_newslist1 .inside_news1 ul li .imgbg {}

.inside_newslist1 .inside_news1 ul li .img {
    position: relative;
    padding-bottom: 70%;
    overflow: hidden;
    border-radius: 10px;
}

.inside_newslist1 .inside_news1 ul li .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
    background: #f9f9f9;
}

.inside_newslist1 .inside_news1 ul li:hover .img img {
    transform: scale(1.1);
}

.inside_newslist1 .inside_news1 ul li .txtbg {}

.inside_newslist1 .inside_news1 ul li .txt {
    margin-top: var(--20px);
    color: #666;
}

.inside_newslist1 .inside_news1 ul li .txt .h2 {
    font-size: var(--18px);
    line-height: 1.5em;
    height: 1.5em;
    color: #333;
    margin-bottom: var(--10px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.inside_newslist1 .inside_news1 ul li:hover .txt .h2 {
    color: var(--primary-color);
}

.inside_newslist1 .inside_news1 ul li .txt .h3 {
    font-size: var(--14px);
    line-height: 1.5em;
    height: 3em;
    margin-bottom: var(--10px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.inside_newslist1 .inside_news1 ul li .txt .time {
    font-size: 14px;
    line-height: 24px;
    color: #999;
    padding-left: 24px;
    position: relative;
}

.inside_newslist1 .inside_news1 ul li .txt .time i {
    width: 20px;
    height: 24px;
    background: url(../images/ico_time.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}

@media(max-width:999px) {
    .inside_newslist1 .inside_news1 ul li {
        float: left;
        width: 100%;
        margin: 0 0 20px 0;
    }

    .inside_newslist1 .inside_news1 ul li .txt {
        margin-top: 10px;
    }

    .inside_newslist1 .inside_news1 ul li .txt .h2 {
        font-size: 14px;
        line-height: 1.5em;
        height: auto;
        margin-bottom: 5px;
    }

    .inside_newslist1 .inside_news1 ul li .txt .h3 {
        font-size: 12px;
        line-height: 1.5em;
        height: auto;
        margin-bottom: 5px;
    }
}

/*inner_news4*/
.inside_news4 {
    margin-top: 20px;
}

.inside_news4 ul li {
    margin-bottom: 50px;
    position: relative;
}

.inside_news4 ul li:hover img {
    transform: scale(1) !important;
}

/* 左上角边框动画 */
.inside_news4 ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 5px solid var(--main-color);
    border-left: 5px solid var(--main-color);
    transition: var(--main-transition);
    pointer-events: none;
}

/* 右下角边框动画 */
.inside_news4 ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 5px solid var(--main-color);
    border-right: 5px solid var(--main-color);
    transition: var(--main-transition);
    pointer-events: none;
}

/* 悬停时动画 */
.inside_news4 ul li:hover::before {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    border-color: var(--main-color);
    pointer-events: none;
}

.inside_news4 ul li:hover::after {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    border-color: var(--main-color);
    pointer-events: none;
}

.inside_news4 ul li:hover {
    box-shadow: 0 0 22px rgba(0, 0, 0, .12);
}

.inside_news4 ul li .img {
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
    /*border-radius:10px;*/
}

.inside_news4 ul li .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    transition: all .3s ease;
    background: #f9f9f9;
    border-radius: 16px;
}

.inside_news4 ul li:hover .img img {
    transform: scale(1.1);
}

.inside_news4 ul li .txt .h2 {
    font-size: 24px;
    line-height: 1.5em;
    color: #333;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: center;
}

.inside_news4 ul li .txt .h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background-color: var(--main-color);
    margin-top: 5px;
    text-align: center;
    margin: 25px auto 0 auto;
}

.inside_news4 ul li:hover .txt .h2 {
    color: var(--main-color);
}

.inside_news4 ul li .txt .h3 {
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.inside_news4 ul li .txt .time i {
    width: 20px;
    height: 24px;
    background: url(../images/ico_time.png) center no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}

.inside_news4 ul li .txt .time>a:nth-child(2) {
    margin-top: 70px;
    transition: var(--main-transition);
    color: #303133;
    border: 1px solid #ccc;
    display: block;
    padding: 8px 20px;
    width: 12%;
}

inside_news4 ul li .txt .time>a:nth-child(2):hover {
    background-color: var(--main-color);
}

@media(max-width:999px) {
    .inside_news4 ul li .txt .h2 {
        line-height: 1.5em;
        height: auto;
        -webkit-line-clamp: 2;
        margin-bottom: 5px;
        position: relative;
        display: block;
        text-align: center;
        font-weight: normal;
        font-size: 24px;
    }

    .inside_news4 ul li .txt .time::before {
        position: absolute;
        content: '';
        width: 80px;
        height: 1px;
        background-color: var(--main-color);
        left: 52.4%;
        transform: translateX(-50%);
        bottom: -50px;
    }

    .inside_news4 ul li .txt .time>a:nth-child(2) {
        width: max-content;
        margin-top: 70px;
        transition: var(--main-transition);
        color: #303133;
        border: 1px solid #ccc;
        display: block;
        padding: 8px 20px;
    }

    .inside_news4 ul li .txt .time {
        font-size: 1.2em;
        line-height: 1.2em;
        color: #000;
        display: flex;
        justify-content: center;
    }

    .inside_news4 {
        margin-top: 20px;
    }

    .inside_news4 ul li {
        border-bottom: 1px solid #eee;
    }

    .inside_news4 ul li .img img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto auto;
        transition: all .3s ease;
        background: #f9f9f9;
        height: 350px;
    }
}



/*inner_news2*/
.inside_news2 {}

.inside_news2 ul li {
    float: left;
    width: calc((100% - 20px)/2);
    margin: 0 0 0 20px;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.inside_news2 ul li:nth-child(2n-1) {
    margin-left: 0;
    clear: left;
}

.inside_news2 ul li .txt {}

.inside_news2 ul li .txt .h2 {
    font-size: 16px;
    line-height: 26px;
    height: 26px;
    overflow: hidden;
    padding-left: 25px;
    position: relative;
}

.inside_news2 ul li .txt .h2:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #000;
    position: absolute;
    left: 0;
    top: 10px;
}

.inside_news2 ul li .txt .h2 a {
    float: left;
    width: 70%;
    height: 26px;
    overflow: hidden;
    color: #333;
}

.inside_news2 ul li:hover .txt .h2 a {
    color: var(--main-color);
}

.inside_news2 ul li .txt .h2 span {
    float: right;
    color: #999;
}

@media(max-width:999px) {
    .inside_news2 ul li {
        float: left;
        width: 100%;
        margin: 0;
    }
}


/*inner_news3*/
.inside_news3 {}

.inside_news3 ul li {
    float: left;
    width: calc((100% - 20px)/2);
    margin: 0 0 20px 20px;
}

.inside_news3 ul li:nth-child(2n-1) {
    margin-left: 0;
    clear: left;
}

.inside_news3 ul li .nr_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.inside_news3 ul li .date {
    width: 80px;
    height: 80px;
    background: #f2f2f2;
    color: #999;
    text-align: center;
}

.inside_news3 ul li .date strong {
    display: block;
    font-size: 36px;
    line-height: 36px;
    padding: 15px 0 2px 0;
}

.inside_news3 ul li .date span {
    display: block;
    font-size: 12px;
    line-height: 12px;
}

.inside_news3 ul li .txt {
    width: calc(100% - 100px);
    color: #666;
}

.inside_news3 ul li .txt .h2 {
    font-size: .94vw;
    line-height: 1.5em;
    height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.inside_news3 ul li .txt .h2 a {
    color: #333;
}

.inside_news3 ul li:hover .txt .h2 a {
    color: var(--main-color);
}

.inside_news3 ul li .txt .h3 {
    font-size: .72vw;
    line-height: 1.5em;
    height: 3em;
    margin: 5px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media(max-width:999px) {
    .inside_news3 ul li {
        float: left;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

/*inpic1*/
.m11_insidebg>div>div>div>.inside_picList1 {
    margin-top: 20px;
}

.m11_insidebg>div>div>div>.inside_picList1 ul li {
    float: left;
    width: calc((100% - 70px)/3);
    margin: 0 0 35px 35px;
    text-align: center;
    background: #f0f0f0;
    /*border-radius:10px;*/
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.m11_insidebg>div>div>div>.inside_picList1 ul li:nth-child(3n-2) {
    margin-left: 0;
    clear: left;
}

.m11_insidebg>div>div>div>.inside_picList1 ul li .nr_box {
    background-color: #fff;
}

.m11_insidebg>div>div>div>.inside_picList1 ul li .nr_box>.imgbg {
    /*padding: 15px 15px 0 15px;*/
}

.m11_insidebg>div>div>div>.inside_picList1 ul li .img {
    padding-bottom: 64%;
    position: relative;
    overflow: hidden;
}

.m11_insidebg>div>div>div>.inside_picList1 ul li .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
    background: #f9f9f9;
}

.m11_insidebg>div>div>div>.inside_picList1 ul li:hover .img img {
    /*transform:scale(1.1);*/
}

.m11_insidebg>div>div>div>.inside_picList1 ul li .txtbg {
    position: relative;
}

.m11_insidebg>div>div>div>.inside_picList1 ul li .txtbg:before {
    content: "";
    width: 100%;
    height: 100%;
    /*background:var(--main-color);*/
    position: absolute;
    left: 0;
    top: 0;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    transform: scaleY(0);
    transform-origin: 50% 100% 0;
}

.m11_insidebg>div>div>div>.inside_picList1 ul li:hover .txtbg:before {
    /*transform:scaleY(1); transform-origin:50% 0 0;*/
}

.m11_insidebg>div>div>div>.inside_picList1 ul li .txt {
    padding: 0 15px 15px 15px;
    color: #000;
    position: relative;
    z-index: 2;
    text-align: left;
}

.m11_insidebg>div>div>div>.inside_picList1 ul li .txt .h2 {
    font-size: 20px;
    line-height: 1.5em;
    height: 1.5em;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 15px 0;
}

.m11_insidebg>div>div>div>.inside_picList1 ul li:hover .txt .h2 {
    /*color:#fff;*/
}

.m11_insidebg>div>div>div>.inside_picList1 ul li .txt .h3 {
    font-size: 14px;
    color: #666;
    line-height: 25px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media(max-width:999px) {
    .m11_insidebg>div>div>div>.inside_picList1 ul li {
        float: left;
        width: calc((100% - 10px)/2);
        margin: 0 0 20px 10px;
    }

    .m11_insidebg>div>div>div>.inside_picList1 ul li:nth-child(3n-2) {
        margin-left: 10px;
        clear: none;
    }

    .m11_insidebg>div>div>div>.inside_picList1 ul li:nth-child(2n-1) {
        margin-left: 0;
        clear: left;
    }

    .m11_insidebg>div>div>div>.inside_picList1 ul li .txt {
        padding: 0 15px 15px 15px;
    }

    .m11_insidebg>div>div>div>.inside_picList1 ul li .txt .h2 {
        font-size: 14px;
        line-height: 1.6em;
        height: 1.6em;
    }
}


/*inpic1*/
.m15_inside .inside_picList1 {
    margin-top: 20px;
}

.m15_inside .inside_picList1 ul li {
    float: left;
    width: calc((100% - 70px)/3);
    margin: 0 0 35px 35px;
    text-align: center;
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.m15_inside .inside_picList1 ul li:nth-child(3n-2) {
    margin-left: 0;
    clear: left;
}

.m15_inside .inside_picList1 ul li .nr_box {
    background-color: #fff;
}

.m15_inside .inside_picList1 ul li .nr_box>.imgbg {
    /*padding: 15px 15px 0 15px;*/
}

.m15_inside .inside_picList1 ul li .img {
    padding-bottom: 64%;
    position: relative;
    overflow: hidden;
}

.m15_inside .inside_picList1 ul li .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
    background: #f9f9f9;
    border-radius: 8px;
}

.m15_inside .inside_picList1 ul li:hover .img img {
    /*transform:scale(1.1);*/
}

.m15_inside .inside_picList1 ul li .txtbg {
    position: relative;
}

.m15_inside .inside_picList1 ul li .txtbg:before {
    content: "";
    width: 100%;
    height: 100%;
    /*background:var(--main-color);*/
    position: absolute;
    left: 0;
    top: 0;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    transform: scaleY(0);
    transform-origin: 50% 100% 0;
}

.m15_inside .inside_picList1 ul li:hover .txtbg:before {
    /*transform:scaleY(1); transform-origin:50% 0 0;*/
}

.m15_inside .inside_picList1 ul li .txt {
    /* padding: 0 15px 15px 15px; */
    color: #000;
    position: relative;
    z-index: 2;
    text-align: left;
}

.m15_inside .inside_picList1 ul li .txt .h2 {
    font-size: 20px;
    line-height: 1.5em;
    height: 1.5em;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 15px 0;
}

.m15_inside .inside_picList1 ul li:hover .txt .h2 {
    /*color:#fff;*/
}

.m15_inside .inside_picList1 ul li .txt .h3 {
    font-size: 14px;
    color: #666;
    line-height: 25px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media(max-width:999px) {
    .m15_inside .inside_picList1 ul li .txt .h3 {
        font-size: 14px;
        color: #666;
        line-height: 25px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .m15_inside .inside_picList1 ul li {
        float: left;
        width: calc(100% - 80px);
        margin: 20px;
        padding: 20px;
        background-color: #fff;
    }

    .m15_inside .inside_picList1 ul li:nth-child(3n-2) {
        margin-left: 20px;
        clear: none;
    }

    .m15_inside .inside_picList1 ul li:nth-child(2n-1) {
        margin-left: 20px;
        clear: left;
    }

    .m15_inside .inside_picList1 ul li .txt {
        padding: 0;
    }

    .m15_inside .inside_picList1 ul li .txt .h2 {
        margin-top: 15px;
        margin-bottom: 15px;
        color: #222;
        font-size: 20px;
        display: block;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .m15_inside .inside_picList1 ul li .img img {
        height: 230px;
    }

    .m15_inside .inside_picList1 ul li .img {
        padding-bottom: 28%;
    }
}

/*inphoto1*/
.inside_photo1 {}

.inside_photo1 ul {
    padding: 20px 0;
}

.inside_photo1 ul li {
    float: left;
    width: calc((100% - 40px) / 3);
    margin: 0 0 20px 20px;
    text-align: center;
}

.inside_photo1 ul li:nth-child(3n-2) {
    margin-left: 0;
    clear: left;
}

.inside_photo1 ul li .nr_box {
    overflow: hidden;
    border-radius: 12px;
}

.inside_photo1 ul li .imgbg {
    position: relative;
    overflow: hidden;
}

.inside_photo1 ul li .img {
    padding-bottom: 100%;
    position: relative;
    z-index: 1;
}

.inside_photo1 ul li .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
    transform: scale(1) !important;
    background: #f9f9f9;
}

.inside_photo1 ul li:hover .img img {
    transform: scale(1) !important;
}

.inside_photo1 ul li .imgbg:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transform: scale(1) !important;
}

.inside_photo1 ul li:hover .imgbg:before {
    opacity: 1;
    visibility: visible;
}

.inside_photo1 ul li i {
    width: 40px;
    height: 40px;
    background: url(../images/ico_search1.png) center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transform: scale(1) !important;
}

.inside_photo1 ul li:hover i {
    opacity: 1;
    visibility: visible;
}

.inside_photo1 ul li .txtbg {}

.inside_photo1 ul li .txt {
    /* padding: 5% 0; */
    color: #666;
    background-color: #f0f0f0;
    cursor: default;
    transition: background-color 0.3s ease;
}

.inside_photo1 ul li .txt .h2 {
    font-size: 16px;
    line-height: 55px;
    height: 55px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.inside_photo1 ul li:hover .txt .h2 {
    color: #fff;
}

.inside_photo1 ul li:hover .txt {
    background-color: var(--main-color);
}

.inside_photo1 ul li .txt .h3 {
    display: none;
}

@media(max-width:999px) {
    .inside_photo1 ul li {
        width: calc(100% - 40px);
        padding: 20px;
        margin: 0;
    }

    .inside_photo1 ul li .txt {
        /* padding: 15px 0; */
        background-color: var(--main-color);
    }

    .inside_photo1 ul li .txt .h2 {
        color: #fff;
    }
}


/*inside_download1*/
.inside_download1 {}

.inside_download1 ul li {
    border-bottom: 1px dashed #ccc;
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.inside_download1 ul li:nth-child(1) {
    padding-top: 0;
}

.inside_download1 ul li>i {
    text-align: center;
    line-height: 40px;
    font-size: 40px;
    width: 40px;
    text-align: center;
    color: var(--main-color);
}

.inside_download1 ul li .txt {
    width: calc(100% - 200px);
    position: relative;
}

.inside_download1 ul li .txt .h2 {
    font-size: 16px;
    line-height: 26px;
    height: 26px;
    overflow: hidden;
}

.inside_download1 ul li .txt .h2 a {
    color: #333;
}

.inside_download1 ul li:hover .txt .h2 a {
    color: var(--main-color);
}

.inside_download1 ul li .txt .h3 {
    font-size: 14px;
    line-height: 24px;
}

.inside_download1 ul li .txt .h3 span {
    display: inline-block;
    margin: 0 20px 0 0;
    color: #999;
}

.inside_download1 ul li .down_btn {}

.inside_download1 ul li .down_btn a {
    display: block;
    background: var(--main-color);
    color: #fff;
    width: 120px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
}

.inside_download1 ul li .down_btn a:hover {
    opacity: .9;
}

.inside_download1 ul li .down_btn a i {
    margin-right: 5px;
    vertical-align: middle;
}

@media(max-width:999px) {
    .inside_download1 ul li {
        padding: 20px 0;
        flex-wrap: wrap;
    }

    .inside_download1 ul li .txt {
        width: calc(100% - 60px);
    }

    .inside_download1 ul li .txt .h2 {
        font-size: 16px;
        line-height: 26px;
        height: 26px;
    }

    .inside_download1 ul li .txt .h3 {
        font-size: 14px;
        line-height: 24px;
    }

    .inside_download1 ul li .txt .h3 span {
        margin: 0 10px 0 0;
    }

    .inside_download1 ul li .down_btn {
        width: 100%;
        margin-top: 10px;
    }

    .inside_download1 ul li .down_btn a {
        width: 100%;
        line-height: 40px;
        font-size: 14px;
    }
}

/*inpro1*/
.inside_product1 {}

.inside_product1 ul li {
    float: left;
    width: calc((100% - 80px)/4);
    margin: 0 0 20px 20px;
    text-align: center;
}

.inside_product1 ul li .nr_box {
    /*border:1px solid #f2f2f2; border-radius:10px;*/
    overflow: hidden;
    padding: 10px;
}

.inside_product1 ul li:hover .nr_box {
    /*background:#f4f4f4;*/
}

.inside_product1 ul li .img {
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

.inside_product1 ul li .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
}

.inside_product1 ul li:hover .img img {
    transform: scale(1.1);
}

.inside_product1 ul li .txtbg {}

.inside_product1 ul li .txt {
    margin-top: 10px;
    padding: 0 5%;
    color: #666;
}

.inside_product1 ul li .txt .h2 {
    font-size: 16px;
    line-height: 1.5em;
    height: 1.5em;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.inside_product1 ul li:hover .txt .h2 {
    /*color:var(--main-color);*/
}

.inside_product1 ul li .txt .h3 {
    display: none;
}

@media(max-width:999px) {
    .inside_product1 ul li {
        float: left;
        width: 100%;
        margin: 0 0 20px 0;
    }

    .inside_product1 ul li .txt .h2 {
        font-size: 14px;
        line-height: 1.5em;
        height: 1.5em;
    }
}

/*innewsClass1*/
.itit1 {}

.itit1 .h2 {
    height: 20px;
    line-height: 20px;
    font-size: 20px;
}

.itit1 .h2 strong {
    float: left;
    font-weight: bold;
    border-left: 5px solid var(--main-color);
    padding-left: 5px;
}

.itit1 .h2 a {
    float: right;
    font-size: 14px;
    color: var(--main-color);
}

.inside_newsClass1 {}

.inside_newsClass1_box {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.inside_newsClass1 .ilist {
    padding: 10px 10px 0 10px;
}

.inside_newsClass1 .ilist ul li {
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
    position: relative;
}

.inside_newsClass1 .ilist ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #ccc;
    position: absolute;
    left: 0;
    top: 17px;
}

.inside_newsClass1 .ilist ul li a {
    float: left;
    width: 70%;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    font-size: 16px;
}

.inside_newsClass1 .ilist ul li span {
    float: right;
    font-size: 14px;
    color: #999;
}

/*inproClass1*/
.imore1 {
    display: none;
}

.imore1 span {
    display: inline-block;
    vertical-align: top;
    /*border: 1px solid #fff;*/
    height: 38px;
    line-height: 38px;
    padding: 0 20px;
    font-size: 14px;
    color: #000;
    background: #fff;
}

.imore1 span:hover {
    background: #fff;
    color: #333;
}

.inside_proClass1 {}

.inside_proClass1 ul li {
    float: left;
    width: calc((100% - 40px)/3);
    margin: 0 0 20px 20px;
    text-align: center;
    background: #fff;
    position: relative;
}

.inside_proClass1 ul li:nth-child(3n-2) {
    margin-left: 0;
    clear: left;
}

.inside_proClass1 ul li .nr_box {
    border: 1px solid #eee;
}

.inside_proClass1 ul li .img {
    padding-bottom: 72%;
    position: relative;
    overflow: hidden;
}

.inside_proClass1 ul li .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
}

.inside_proClass1 ul li:hover .img img {
    transform: scale(1.1);
}

.inside_proClass1 ul li .txtbg {
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, .5);*/
    /*position: absolute;*/
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.inside_proClass1 ul li .txt {
    padding: 20px 5%;
    width: 90%;
    color: #000;
}

.inside_proClass1 ul li .txt .h2 {
    font-size: 18px;
    /*line-height: 34px;
    height: 34px;*/
    overflow: hidden;
}

.inside_proClass1 ul li .txt .h3 {
    display: none;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    margin: 10px 0 0 0;
}

@media(max-width:999px) {
    .inside_proClass1 ul li {
        float: left;
        width: calc((100% - 20px)/2);
        margin: 0 0 20px 20px;
    }

    .inside_proClass1 ul li:nth-child(3n-2) {
        margin-left: 20px;
        clear: none;
    }

    .inside_proClass1 ul li:nth-child(2n-1) {
        margin-left: 0;
        clear: left;
    }

}

.inside_proClass2 {}

.inside_proClass2 ul {
    display: flex;
    flex-wrap: wrap;
    justify-self: left;
    align-items: flex-start;
    width: 100%;
}

.inside_proClass2 ul li {
    width: calc(100% / 4 - 60px / 4);
    margin-top: 20px;
    margin-left: 20px;
    text-align: center;
    background: #fff;
    position: relative;
}

.inside_proClass2 ul li:nth-child(4n + 1) {
    margin-left: 0;
}

.inside_proClass2 ul li:nth-child(-n + 4) {
    margin-top: 0;
}

.inside_proClass2 ul li .nr_box {
    border: 1px solid #eee;
}

.inside_proClass2 ul li .img {
    padding-bottom: 72%;
    position: relative;
    overflow: hidden;
}

.inside_proClass2 ul li .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
}

.inside_proClass2 ul li:hover .img img {
    transform: scale(1.1);
}

.inside_proClass2 ul li .txtbg {
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, .5);*/
    /*position: absolute;*/
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.inside_proClass2 ul li .txt {
    padding: 20px 5%;
    width: 90%;
    color: #000;
}

.inside_proClass2 ul li .txt .h2 {
    font-size: 18px;
    /*line-height: 34px;
    height: 34px;*/
    overflow: hidden;
}

.inside_proClass2 ul li .txt .h3 {
    display: none;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    margin: 10px 0 0 0;
}

@media(max-width:999px) {
    .inside_proClass2 ul li {
        width: calc(100% / 2 - 20px / 2);
    }

    .inside_proClass2 ul li:nth-child(4n + 1) {
        margin-left: 20px;
    }

    .inside_proClass2 ul li:nth-child(3),
    .inside_proClass2 ul li:nth-child(4) {
        margin-top: 20px;
    }

    .inside_proClass2 ul li:nth-child(2n + 1) {
        margin-left: 0;
    }
}


.m11_message1 {}

.m11_message1 .list1 {
    margin-top: 20px;
}

.m11_message1 .list1 img {
    display: block;
    width: 100%;
    background: #f9f9f9;
}

.m11_message1 .list2 {
    padding: 20px 0;
}

/*留言*/
.message1 {}

.message1 form {}

.message1 form ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
}

.message1 form ul li {
    width: 48%;
    margin: 0 0 20px 4%;
}

.message1 form ul li.li1 {
    width: 100%;
    margin-left: 0;
}

.message1 form ul li.li2 {
    text-align: right;
}

.message1 form ul li:nth-child(1),
.message1 form ul li:nth-child(3),
.message1 form ul li:nth-child(6) {
    margin-left: 0;
}

.message1 form .h3 {
    width: 100px;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 5px;
}

.message1 form .h3 font {
    color: #f00;
}

.message1 form .input_text {
    border: 1px solid #ccc;
    background: #fff;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    width: calc(100% - 22px);
}

.message1 form textarea {
    border: 1px solid #ccc;
    background: #fff;
    height: 120px;
    line-height: 40px;
    padding: 0 10px;
    width: calc(100% - 22px);
    display: block;
}

.message1 form .yzm {
    height: 42px;
}

.message1 form .input_text1 {
    border: 1px solid #ccc;
    background: #fff;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    width: calc(100% - 132px);
    float: left;
}

.message1 form #sendcode {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: #fff;
    height: 42px;
    line-height: 40px;
    width: 100px;
    cursor: pointer;
    transition: all .3s ease;
    float: right;
}

.message1 form #sendcode:hover {
    opacity: .9;
}

.message1 form #sendcode[disabled] {
    background: #999;
}

.message1 form .input_button {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: #fff;
    height: 42px;
    line-height: 40px;
    width: 50%;
    max-width: 200px;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 20px;
}

.message1 form .input_button:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

@media(max-width:999px) {
    .message1 form ul {
        display: block;
    }

    .message1 form ul li {
        width: 100%;
        margin: 0 0 10px 0;
    }

    .message1 form ul li.li2 {
        text-align: center;
    }

    .message1 form .h3 {
        font-size: 14px;
        line-height: 1.8em;
        margin-bottom: 0;
    }

    .message1 form .input_text {
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        width: calc(100% - 22px);
        font-size: 14px;
    }

    .message1 form textarea {
        height: 100px;
        line-height: 40px;
        padding: 0 10px;
        width: calc(100% - 22px);
        font-size: 14px;
        min-height: 150px;
    }

    .message1 form .yzm {
        height: 40px;
    }

    .message1 form .input_text1 {
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        width: calc(100% - 132px);
        font-size: 14px;
    }

    .message1 form #sendcode1 {
        height: 40px;
        line-height: 40px;
        width: 100px;
        font-size: 14px;
    }

    .message1 form .input_button {
        height: 40px;
        line-height: 40px;
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        margin-top: 10px;
    }
}


/*联系*/
.inside_contact1 {
    font-size: .84vw;
    line-height: 1.56vw;
}

.inside_contact1 ul li {}

.inside_contact1 ul li h2 {
    font-size: 1.56vw;
    line-height: 1.5em;
}

.inside_contact1 ul li i {
    display: inline-block;
    text-align: center;
    width: 1.56vw;
    height: 1.56vw;
    line-height: 1.56vw;
    margin-right: 5px;
    color: var(--main-color);
}

.inside_contact1 ul li span {
    display: inline-block;
    width: 4.2vw;
    text-justify: inter-ideograph;
    text-align: justify;
    -moz-text-align-last: justify;
    text-align-last: justify;
}

/*-------------------------------------------------------------------------ADD CSS-------------------------------------------------------------------------*/
[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
    transition-duration: 50ms
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
    transition-delay: 50ms
}

[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
    transition-duration: .1s
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
    transition-delay: .1s
}

[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
    transition-duration: .15s
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
    transition-delay: .15s
}

[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
    transition-duration: .2s
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
    transition-delay: .2s
}

[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
    transition-duration: .25s
}

[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
    transition-delay: .25s
}

[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
    transition-duration: .3s
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
    transition-delay: .3s
}

[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
    transition-duration: .35s
}

[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
    transition-delay: .35s
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
    transition-delay: .4s
}

[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
    transition-duration: .45s
}

[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
    transition-delay: .45s
}

[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
    transition-duration: .5s
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
    transition-delay: .5s
}

[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
    transition-duration: .55s
}

[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
    transition-delay: .55s
}

[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
    transition-duration: .6s
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
    transition-delay: .6s
}

[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
    transition-duration: .65s
}

[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
    transition-delay: .65s
}

[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
    transition-duration: .7s
}

[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
    transition-delay: .7s
}

[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
    transition-duration: .75s
}

[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
    transition-delay: .75s
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
    transition-duration: .8s
}

[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
    transition-delay: .8s
}

[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
    transition-duration: .85s
}

[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
    transition-delay: .85s
}

[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
    transition-duration: .9s
}

[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
    transition-delay: .9s
}

[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
    transition-duration: .95s
}

[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
    transition-delay: .95s
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1s
}

[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
    transition-delay: 1s
}

[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
    transition-duration: 1.05s
}

[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
    transition-delay: 1.05s
}

[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
    transition-duration: 1.1s
}

[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
    transition-delay: 1.1s
}

[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
    transition-duration: 1.15s
}

[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
    transition-delay: 1.15s
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
    transition-duration: 1.2s
}

[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
    transition-delay: 1.2s
}

[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
    transition-duration: 1.25s
}

[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
    transition-delay: 1.25s
}

[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
    transition-duration: 1.3s
}

[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
    transition-delay: 1.3s
}

[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
    transition-duration: 1.35s
}

[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
    transition-delay: 1.35s
}

[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
    transition-duration: 1.4s
}

[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
    transition-delay: 1.4s
}

[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
    transition-duration: 1.45s
}

[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
    transition-delay: 1.45s
}

[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
    transition-duration: 1.5s
}

[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
    transition-delay: 1.5s
}

[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
    transition-duration: 1.55s
}

[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
    transition-delay: 1.55s
}

[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
    transition-duration: 1.6s
}

[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
    transition-delay: 1.6s
}

[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
    transition-duration: 1.65s
}

[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
    transition-delay: 1.65s
}

[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
    transition-duration: 1.7s
}

[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
    transition-delay: 1.7s
}

[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
    transition-duration: 1.75s
}

[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
    transition-delay: 1.75s
}

[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
    transition-duration: 1.8s
}

[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
    transition-delay: 1.8s
}

[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
    transition-duration: 1.85s
}

[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
    transition-delay: 1.85s
}

[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
    transition-duration: 1.9s
}

[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
    transition-delay: 1.9s
}

[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
    transition-duration: 1.95s
}

[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
    transition-delay: 1.95s
}

[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
    transition-duration: 2s
}

[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
    transition-delay: 2s
}

[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
    transition-duration: 2.05s
}

[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
    transition-delay: 2.05s
}

[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
    transition-duration: 2.1s
}

[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
    transition-delay: 2.1s
}

[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
    transition-duration: 2.15s
}

[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
    transition-delay: 2.15s
}

[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
    transition-duration: 2.2s
}

[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
    transition-delay: 2.2s
}

[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
    transition-duration: 2.25s
}

[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
    transition-delay: 2.25s
}

[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
    transition-duration: 2.3s
}

[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
    transition-delay: 2.3s
}

[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
    transition-duration: 2.35s
}

[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
    transition-delay: 2.35s
}

[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
    transition-duration: 2.4s
}

[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
    transition-delay: 2.4s
}

[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
    transition-duration: 2.45s
}

[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
    transition-delay: 2.45s
}

[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
    transition-duration: 2.5s
}

[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
    transition-delay: 2.5s
}

[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
    transition-duration: 2.55s
}

[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
    transition-delay: 2.55s
}

[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
    transition-duration: 2.6s
}

[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
    transition-delay: 2.6s
}

[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
    transition-duration: 2.65s
}

[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
    transition-delay: 2.65s
}

[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
    transition-duration: 2.7s
}

[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
    transition-delay: 2.7s
}

[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
    transition-duration: 2.75s
}

[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
    transition-delay: 2.75s
}

[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
    transition-duration: 2.8s
}

[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
    transition-delay: 2.8s
}

[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
    transition-duration: 2.85s
}

[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
    transition-delay: 2.85s
}

[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
    transition-duration: 2.9s
}

[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
    transition-delay: 2.9s
}

[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
    transition-duration: 2.95s
}

[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
    transition-delay: 2.95s
}

[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
    transition-duration: 3s
}

[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
    transition-delay: 3s
}

[data-aos] {
    pointer-events: none
}

[data-aos].aos-animate {
    pointer-events: auto
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .25, .75, .75)
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
    transition-timing-function: ease-in
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
    transition-timing-function: ease-out
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
    transition-timing-function: ease-in-out
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
    transition-timing-function: cubic-bezier(.6, -.28, .735, .045)
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55)
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.47, 0, .745, .715)
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.39, .575, .565, 1)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.445, .05, .55, .95)
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

@media screen {
    html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
        opacity: 0;
        transition-property: opacity, -webkit-transform;
        transition-property: opacity, transform;
        transition-property: opacity, transform, -webkit-transform
    }

    html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }

    html:not(.no-js) [data-aos=fade-up] {
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0)
    }

    html:not(.no-js) [data-aos=fade-down] {
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0)
    }

    html:not(.no-js) [data-aos=fade-right] {
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0)
    }

    html:not(.no-js) [data-aos=fade-left] {
        -webkit-transform: translate3d(100px, 0, 0);
        transform: translate3d(100px, 0, 0)
    }

    html:not(.no-js) [data-aos=fade-up-right] {
        -webkit-transform: translate3d(-100px, 100px, 0);
        transform: translate3d(-100px, 100px, 0)
    }

    html:not(.no-js) [data-aos=fade-up-left] {
        -webkit-transform: translate3d(100px, 100px, 0);
        transform: translate3d(100px, 100px, 0)
    }

    html:not(.no-js) [data-aos=fade-down-right] {
        -webkit-transform: translate3d(-100px, -100px, 0);
        transform: translate3d(-100px, -100px, 0)
    }

    html:not(.no-js) [data-aos=fade-down-left] {
        -webkit-transform: translate3d(100px, -100px, 0);
        transform: translate3d(100px, -100px, 0)
    }

    html:not(.no-js) [data-aos^=zoom][data-aos^=zoom] {
        opacity: 0;
        transition-property: opacity, -webkit-transform;
        transition-property: opacity, transform;
        transition-property: opacity, transform, -webkit-transform
    }

    html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate {
        opacity: 1;
        -webkit-transform: translateZ(0) scale(1);
        transform: translateZ(0) scale(1)
    }

    html:not(.no-js) [data-aos=zoom-in] {
        -webkit-transform: scale(.6);
        transform: scale(.6)
    }

    html:not(.no-js) [data-aos=zoom-in-up] {
        -webkit-transform: translate3d(0, 100px, 0) scale(.6);
        transform: translate3d(0, 100px, 0) scale(.6)
    }

    html:not(.no-js) [data-aos=zoom-in-down] {
        -webkit-transform: translate3d(0, -100px, 0) scale(.6);
        transform: translate3d(0, -100px, 0) scale(.6)
    }

    html:not(.no-js) [data-aos=zoom-in-right] {
        -webkit-transform: translate3d(-100px, 0, 0) scale(.6);
        transform: translate3d(-100px, 0, 0) scale(.6)
    }

    html:not(.no-js) [data-aos=zoom-in-left] {
        -webkit-transform: translate3d(100px, 0, 0) scale(.6);
        transform: translate3d(100px, 0, 0) scale(.6)
    }

    html:not(.no-js) [data-aos=zoom-out] {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

    html:not(.no-js) [data-aos=zoom-out-up] {
        -webkit-transform: translate3d(0, 100px, 0) scale(1.2);
        transform: translate3d(0, 100px, 0) scale(1.2)
    }

    html:not(.no-js) [data-aos=zoom-out-down] {
        -webkit-transform: translate3d(0, -100px, 0) scale(1.2);
        transform: translate3d(0, -100px, 0) scale(1.2)
    }

    html:not(.no-js) [data-aos=zoom-out-right] {
        -webkit-transform: translate3d(-100px, 0, 0) scale(1.2);
        transform: translate3d(-100px, 0, 0) scale(1.2)
    }

    html:not(.no-js) [data-aos=zoom-out-left] {
        -webkit-transform: translate3d(100px, 0, 0) scale(1.2);
        transform: translate3d(100px, 0, 0) scale(1.2)
    }

    html:not(.no-js) [data-aos^=slide][data-aos^=slide] {
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform;
        visibility: hidden
    }

    html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate {
        visibility: visible;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    html:not(.no-js) [data-aos=slide-up] {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    html:not(.no-js) [data-aos=slide-down] {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    html:not(.no-js) [data-aos=slide-right] {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    html:not(.no-js) [data-aos=slide-left] {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    html:not(.no-js) [data-aos^=flip][data-aos^=flip] {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transition-property: -webkit-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform
    }

    html:not(.no-js) [data-aos=flip-left] {
        -webkit-transform: perspective(2500px) rotateY(-100deg);
        transform: perspective(2500px) rotateY(-100deg)
    }

    html:not(.no-js) [data-aos=flip-left].aos-animate {
        -webkit-transform: perspective(2500px) rotateY(0);
        transform: perspective(2500px) rotateY(0)
    }

    html:not(.no-js) [data-aos=flip-right] {
        -webkit-transform: perspective(2500px) rotateY(100deg);
        transform: perspective(2500px) rotateY(100deg)
    }

    html:not(.no-js) [data-aos=flip-right].aos-animate {
        -webkit-transform: perspective(2500px) rotateY(0);
        transform: perspective(2500px) rotateY(0)
    }

    html:not(.no-js) [data-aos=flip-up] {
        -webkit-transform: perspective(2500px) rotateX(-100deg);
        transform: perspective(2500px) rotateX(-100deg)
    }

    html:not(.no-js) [data-aos=flip-up].aos-animate {
        -webkit-transform: perspective(2500px) rotateX(0);
        transform: perspective(2500px) rotateX(0)
    }

    html:not(.no-js) [data-aos=flip-down] {
        -webkit-transform: perspective(2500px) rotateX(100deg);
        transform: perspective(2500px) rotateX(100deg)
    }

    html:not(.no-js) [data-aos=flip-down].aos-animate {
        -webkit-transform: perspective(2500px) rotateX(0);
        transform: perspective(2500px) rotateX(0)
    }
}

@media only screen and (min-width: 996px) {
    .ml_mbbot {
        display: none;
    }

    .ml_sidebar {
        position: fixed;
        bottom: 50%;
        right: 0px;
        z-index: 99999;
        /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    }

    .ml_sidebar ul li {
        width: 65px;
        height: 65px;
        background-color: var(--main-color);
        text-align: center;
        color: #fff;
        border-bottom: 1px solid #fff;
        cursor: pointer;
        position: relative;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .ml_sidebar ul li i {
        font-size: 30px !important;
    }

    .ml_sidebar ul li span {
        font-size: 12px !important;
    }

    .ml_sidebar_pos {
        transition: all ease 0.4s;
        height: 65px;
        width: 200px;
        position: absolute;
        background-color: var(--main-color);
        color: #fff;
        right: 100%;
        top: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        transform: rotateX(90deg);
        border-bottom: 1px solid var(--main-color);
    }

    .ml_sidebar_pos_code {
        width: 150px !important;
        height: 150px !important;
        padding: 10px;
    }

    .ml_sidebar_pos_code img {
        width: 100%;
    }

    .ml_sidebar ul li:hover .ml_sidebar_pos {
        transform: rotateX(0deg);
    }

    .backtotop {
        border-bottom: none !important;
        transition: var(--main-transition);
        opacity: 0;
        visibility: hidden;
    }

    .ml_sidebar_show1 {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media only screen and (max-width: 996px) {
    .ml_sidebar {
        display: none;
    }

    .ml_mbbot {
        z-index: 99999;
        position: fixed;
        bottom: 0;
        display: flex;
        justify-content: space-between;
        left: 0;
        background-color: var(--main-color);
        width: 100%;
        height: 60px;
    }

    .ml_mbbot li {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-right: 1px solid #fff;
        align-items: center;
    }

    .ml_mbbot li i {
        font-size: 20px !important;
        color: #fff;
    }

    .ml_mbbot li p {
        font-size: 16px;
        color: #fff;
    }
}

@media only screen and (min-width: 996px) {
    .ml_banner:hover .bannerbtnleft {
        left: 65px !important;
        opacity: 1 !important;
    }

    .ml_banner:hover .bannerbtnright {
        right: 65px !important;
        opacity: 1 !important;
    }
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

* {
    padding: 0;
    margin: 0;
    font-family: ' ';
    box-sizing: border-box;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
    outline-width: 0ch;
}

@media only screen and (min-width: 996px) {
    iframe {
        display: block;
    }

    #allmap p {
        margin: 0 !important;
    }

    .ml_piclist {
        width: 100%;
        margin: 0 auto;
    }

    /* 产品详情 */
    .ml_prodetail {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }

    .ml_prodetailleft {
        width: 49.5%;
        background-color: var(--main-color-white);
    }

    .swiper-slide-thumb-active {
        background-color: #fff !important;
    }

    .ml_prodetailleft .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: var(--main-color-white);
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

    .ml_prodetailleft .swiper-slide {
        background-size: cover;
        background-position: center;
    }

    .ml_prodetailleft .mySwiper2 {
        width: 100%;
        border: 1px solid #ccc;
    }

    .ml_prodetailleft .mySwiper2 img {
        height: 500px;
        object-fit: contain;
    }

    .ml_prodetailleft .mySwiper {
        box-sizing: border-box;
        padding: 10px 0;
    }

    .ml_prodetailleft .mySwiper img {
        border: 1px solid #ccc;
        height: 100px;
        object-fit: contain;
    }

    .ml_prodetailleft .mySwiper .swiper-slide {
        width: 25%;
        opacity: 0.4;
    }

    .ml_prodetailleft .mySwiper .swiper-slide-thumb-active {
        opacity: 1;
    }

    .ml_prodetailleft .swiper-slide img {
        display: block;
        width: 100%;
    }

    .ml_prodetailright {
        width: 49.5%;
        padding: 15px;
        background-color: var(--main-color-white);
    }

    .ml_prodetailright strong {
        display: block;
        margin-bottom: 20px;
        font-size: #303133;
        color: #333;
        font-size: 30px;
        font-weight: normal;
    }

    .ml_prodetailright p {
        font-size: 14px;
        line-height: 25px;
        color: #333;
    }

    .ml_description {
        width: 100%;
        padding-bottom: 85px;
        margin: 0 auto;
        border: 1px solid #ededed;
        background-color: var(--main-color-white);
        margin-bottom: 85px;
    }

    .strong_1 {
        display: block;
        padding: 10px;
        border-bottom: 2px solid var(--main-color);
        font-size: 16px;
        font-weight: normal;
        color: #333;
    }

    .ml_description p {
        font-size: 16px;
        color: #333;
        line-height: 25px;
    }

    .ml_description img {
        max-width: 100%;
    }

    .ml_descriptioncon {
        padding: 15px;
    }

    .ml_related {
        padding: 0 !important;
    }

    .ml_related .ml_indexpro {
        margin: 0;
        padding: 0;
        /* padding: 20px; */
    }

    .ml_related .ml_indexpro li {
        width: 25%;
        padding: 20px;
        margin: 0 !important;
    }

    .ml_prodetailright span {
        display: block;
        font-size: 14px;
        margin-bottom: 20px;
        color: #303133;
        line-height: 25px;
    }

    .ml_description_tab {
        border-bottom: 1px solid #ededed;
        display: flex;
        align-items: center;
    }

    .ml_description_tab .strong_1 {
        border: none;
        cursor: pointer;
        padding: 10px 25px;
        font-size: 15px;
    }

    .tabactive {
        background-color: var(--main-color) !important;
        color: var(--main-color-white) !important;
    }

    .ml_descriptioncon_fy {
        display: none;
    }

    .ml_descriptioncon_fy p {
        font-size: 16px;
        color: #303133;
        line-height: 25px;
    }

    .ml_descriptioncon_fy img {
        max-width: 100%;
        display: block;
        margin: 20px auto;
    }

    .tab_pro {
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .tab_pro a {
        text-align: center;
        width: 150px;
        height: 40px;
        line-height: 40px;
        border: 1px solid #ccc;
        font-size: 16px;
        color: #303133;
        display: block;
    }

    .tab_pro a:hover {
        color: var(--main-color-white) !important;
        background-color: var(--main-color) !important;
    }

    .ml_indexpro {
        width: 100%;
        padding: 85px 0;
        background-color: #fafafa;
    }

    .ml_indexprocon {
        /* max-width: 1200px; */
        margin: 0 auto;
    }

    .ml_indexprocon ul {
        display: flex;
        flex-wrap: wrap;
    }

    .ml_indexprocon ul li {
        margin-right: 40px;
        width: calc((100% - 120px) / 4);
        margin-bottom: 20px;
    }

    .ml_indexprocon ul li:nth-child(4n) {
        margin-right: 0 !important;
    }

    .ml_indexprocon ul li p {
        text-align: center;
        color: #303133;
        font-size: 16px;
        padding: 10px 0;
    }

    .ml_indexprocon ul li span {
        text-align: center;
        color: #303133;
        display: block;
        text-align: center;
        font-size: 14px;
    }

    .indexpro_div {
        background-color: var(--main-color-white);
    }

    .indexpro_div img {
        width: 100%;
        transition: all ease 0.4s;
        display: block;
        height: 230px;
        object-fit: cover;
        margin: 0 auto;
    }

    .indexpro_div:hover img {
        transform: scale(1.1);
    }

    .indexpro_div a {
        display: block;
        overflow: hidden;
    }

    .strong_1 {
        display: block;
        padding: 10px;
        border-bottom: 2px solid var(--main-color);
        font-size: 16px;
        font-weight: normal;
        color: #333;
    }

    /* 商品属性 */
    .shuxing {
        padding: 15px 0;
    }

    .shuxingitem {
        display: flex;
        justify-content: space-between;
    }

    .shuxingitem span {
        display: block;
        width: 60px;
        text-align: left;
        margin: 0 !important;
    }

    .shuxingitem ul {
        display: flex;
        flex: 1;
        align-items: center;
    }

    .shuxingitem ul li {
        display: block;
        padding: 5px 20px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        margin-right: 20px;
        font-size: 14px;
        cursor: pointer;
        transition: all ease 0.4s;
    }

    .chooesen {
        background-color: var(--main-color) !important;
        color: var(--main-color-white) !important;
        border: 1px solid var(--main-color) !important;
    }

    /* 商品属性 */
    /* 产品详情 */
    .Ml_temlpate_news {
        width: 100%;
    }

    /* 样式1 */
    .Ml_temlpate_news_1 {
        width: 100%;
    }

    .newitem1 {
        padding: 20px 0;
        border-bottom: 1px dashed #e5e5e5;
    }

    .newitem1_top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 5px;
    }

    .newitem1_top a {
        display: block;
        width: 70%;
        font-size: 16px;
        color: #444;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        transition: all ease 0.4s;
    }

    .newitem1:hover a {
        color: var(--main-color);
    }

    .newitem1_top span {
        font-size: 16px;
        color: #444;
    }

    .newitem1_bot span {
        font-size: 12px;
        color: #777;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    /* 样式1 */
    /* 样式2 */
    .Ml_temlpate_news_2 {
        width: 100%;
    }

    .newitem2 {
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
        border-bottom: 1px dashed #e5e5e5;
        align-items: center;
    }

    .newitem2left {
        width: 85px;
        height: 85px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #f2f2f2;
    }

    .newitem2left strong {
        font-size: 25px;
        color: #000;
        display: block;
        text-align: center;
        font-weight: normal;
    }

    .newitem2left p {
        font-size: 14px;
        color: #000;
        margin-top: 4px;
        text-align: center;
    }

    .newitem2right {
        flex: 1;
        padding-left: 15px;
    }

    .newitem2right a {
        display: block;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        font-size: 16px;
        color: #444;
        margin-bottom: 15px;
    }

    .newitem2right a:hover {
        color: var(--main-color) !important;
    }

    .newitem2right p {
        font-size: 13px;
        color: #777;
        line-height: 25px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    /* 样式2 */
    /* 样式3 */
    .Ml_temlpate_news_3 {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .newitem3 {
        width: calc((100% - 70px) / 3);
        margin-right: 35px;
        margin-bottom: 35px;
    }

    .newitem3:nth-child(3n) {
        margin-right: 0 !important;
    }

    .newitem3con {
        padding: 15px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .newitem3con a img {
        width: 100%;
        height: 230px;
        object-fit: cover;
    }

    .newitem2_title {
        margin-top: 15px;
        margin-bottom: 15px;
        color: #222;
        font-size: 20px;
        display: block;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .newitem3con p {
        font-size: 14px;
        color: #666;
        line-height: 25px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    /* 样式3 */
    /* 样式4 */
    .Ml_temlpate_news_4 {
        width: 100%;
    }

    .Ml_temlpate_news_4 .Ml_temlpate_news_3 {
        justify-content: space-between;
    }

    .newitem4_top .newitem3 {
        width: 48% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .newitem4_top {
        margin-bottom: 50px;
    }

    .newitem4_bot ul {
        position: relative;
    }

    .newitem4_bot ul li {
        display: flex;
        align-items: center;
        padding: 10px 0;
    }

    .li_left {
        width: 80px;
        height: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .li_left strong {
        display: block;
        font-size: 25px;
        color: #000;
        font-weight: normal;
        text-align: center;
        margin-bottom: 5px;
    }

    .li_left p {
        font-size: 14px;
        color: #000;
    }

    .li_line {
        width: 15px;
        margin: 0 13px;
        height: 15px;
        background: rgba(179, 179, 179, .3);
        border-radius: 50%;
        position: relative;
    }

    .li_line:after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #b3b3b3;
        margin: 4px;
        z-index: 8;
    }

    .li_right {
        flex: 1;
        padding-left: 10px;
    }

    .li_right a {
        color: #444;
        transition: all ease 0.4s;
        font-size: 16px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        margin-bottom: 10px;
    }

    .li_right span {
        font-size: 12px;
        color: #777;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .newitem4_bot ul:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 100px;
        width: 1px;
        height: 100%;
        background: #f0f0f0;
    }

    .newitem4_bot ul li:hover>a {
        color: var(--main-color) !important;
    }

    /* 样式4 */
    /* 样式5 */
    .Ml_temlpate_news_5 {
        width: 100%;
    }

    .newitem5 {
        transition: all ease 0.4s;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 25px;
        background-color: #fafafa;
        align-items: center;
        border-bottom: 1px solid #ececec;
    }

    .newitem5:hover {
        /*box-shadow: 0 0 22px rgba(0, 0, 0, .12);*/
        border-radius: 4px;
        background: var(--main-color-white);
    }

    .newitem5:hover img {
        transform: scale(1.1);
    }

    .newitem5:hover a {
        color: var(--main-color) !important;
    }

    .newitem5_left {
        width: 23%;
    }

    .newitem5_right {
        flex: 1;
        padding-left: 25px;
    }

    .newitem5_right_top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .newitem5_right_top a {
        display: block;
        width: 70%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        color: #444;
        font-size: 16px;
        transition: all ease 0.4s;
    }

    .newitem5_right_top span {
        color: #444;
        font-size: 16px;
    }

    .newitem5_left a img {
        width: 100%;
        height: 175px;
        transition: all ease 0.4s;
        object-fit: cover;
    }

    .newitem5_left a {
        display: block;
        overflow: hidden;
    }

    .newitem5_right_bot p {
        font-size: 14px;
        color: #777;
        line-height: 25px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    /* 样式5 */
    /* 样式补充 */
    .ml_new {
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 0;
    }

    .ml_new_item {
        display: flex;
        justify-content: space-between;
        cursor: pointer;
        transition: all ease 0.4s;
        margin-bottom: 30px;
        padding: 10px;
        align-items: center;
    }

    .ml_new_item:hover {
        /*box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;*/
    }

    .ml_new_item_left {
        width: 25%;
    }

    .ml_new_item_left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        height: 220px;
    }

    .ml_new_item_right {
        background-color: var(--main-color-white);
        flex: 1;
        padding: 20px;
        position: relative;
    }

    .ml_new_item_right .newtitle {
        font-size: 20px;
        color: #333;
        display: block;
        margin-bottom: 15px;
    }

    .ml_new_item_right p {
        font-size: 16px;
        color: #666;
        display: block;
        line-height: 25px;
        margin-bottom: 15px;
    }

    .moredetail {
        display: block;
        text-align: center;
        width: 120px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        background-color: var(--main-color);
        color: var(--main-color-white);
    }

    .ml_date {
        font-size: 25px;
        color: var(--main-color);
        margin-bottom: 10px;
    }

    .ml_new a:hover {
        color: var(--main-color) !important;
    }

    /* 产品样式2 */
    .ml_procon1 {
        max-width: 1300px;
        margin: 100px auto;
    }

    .ml_procon1_item {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ml_procon1_item_left {
        width: 50%;
        padding: 20px;
    }

    .ml_procon1_item_left img {
        width: 100%;
        height: 400px;
        object-fit: contain;
    }

    .ml_procon1_item_right {
        width: 50%;
        background-color: var(--main-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 50px;
    }

    .ml_procon1_item_right strong {
        font-size: 30px;
        font-weight: normal;
        color: var(--main-color-white);
        display: block;
        margin-bottom: 20px;
    }

    .ml_procon1_item_right p {
        color: var(--main-color-white);
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 25px;
    }

    .ml_procon1_item_right a {
        display: block;
        border: 1px solid var(--main-color-white);
        width: 120px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: var(--main-color);
        color: var(--main-color-white);
        border-radius: 40px;
    }

    .flex-reserve {
        flex-direction: row-reverse;
    }

    /* 产品样式2 */
    .ml_download li {
        padding: 15px 0;
        border-bottom: 1px dashed #ccc;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ml_download li i {
        font-size: 40px !important;
        color: var(--main-color);
    }

    .ml_download li img {
        width: 55px;
    }

    .loadnow {
        display: block;
        width: 120px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background-color: var(--main-color);
        color: var(--main-color-white);
        font-size: 15px;
    }

    .d_center {
        flex: 1;
        padding: 0 20px;
    }

    .d_center a {
        display: block;
        font-size: 15px;
        color: #303133;
        margin-bottom: 7px;
    }

    .d_center span {
        font-size: 14px;
        color: #444;
        display: inline-block;
        margin-right: 5px;
    }

    .ml_message h2 {
        text-align: center;
        color: #000;
        font-weight: normal;
        font-size: 30px;
        margin-bottom: 10px;
    }

    .ml_message h3 {
        text-align: center;
        font-weight: normal;
        font-size: 16px;
        color: #303133;
        margin-bottom: 20px;
    }

    .ml_message img {
        width: 100%;
    }

    .form_area {
        display: flex;
        flex-wrap: wrap;
        padding: 20px 0;
        justify-content: space-between;
    }

    .form_area input {
        display: block;
        width: 48%;
        height: 40px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-bottom: 20px;
        padding-left: 15px;
        outline: none;
    }

    .form_area textarea {
        display: block;
        outline: none;
        width: 100%;
        min-height: 150px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-bottom: 20px;
        padding-left: 15px;
        padding-top: 15px;
    }

    .message_sub {
        display: block;
        width: 200px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        color: var(--main-color-white);
        background-color: var(--main-color);
        border-radius: 4px;
        margin: 0 auto;
    }

    .ml_contact {
        width: 100%;
        margin: 0 auto;
        padding: 30px 25px;
        background-color: var(--main-color-white);
        margin-bottom: 50px;
    }

    .ml_contactcon {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ml_contactcon_left {
        width: 48%;
    }

    .ml_contactcon_right {
        width: 48%;
    }

    .tact_strong {
        display: block;
        font-weight: normal !important;
        font-size: 25px;
        margin-bottom: 35px;
    }

    .ml_contactcon_left ul li {
        padding: 25px 0 !important;
        /* margin-bottom: 25px; */
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #ededed;
    }

    .ml_contactcon_left ul li i {
        font-size: 40px;
        color: var(--main-color);
    }

    .ml_contactcon_left ul li div {
        flex: 1;
        padding-left: 20px;
    }

    .ml_contactcon_left ul li p {
        font-size: 17px;
        color: #555;
        margin-bottom: 10px;
    }

    .ml_contactcon_left ul li span {
        display: block;
        font-size: 16px;
        color: #555;
    }

    .ml_contactcon_right input {
        display: block;
        padding-left: 15px;
        outline: none;
        height: 44px;
        width: 100%;
        margin-bottom: 17px;
        border: 1px solid #ededed;
        border-radius: 4px;
    }

    .ml_contactcon_right textarea {
        display: block;
        padding-left: 15px;
        padding-top: 15px;
        outline: none;
        height: 100px;
        width: 100%;
        margin-bottom: 17px;
        border: 1px solid #ededed;
        border-radius: 4px;
    }

    .ml_sub {
        display: block;
        height: 44px;
        line-height: 44px;
        text-align: center;
        border-radius: 4px;
        background-color: var(--main-color);
        color: var(--main-color-white);
        width: 100%;
    }

    .ml_map {
        max-width: 1230px;
        margin: 0 auto;
        /* background-color: #ccc;
        min-height: 100px;
        margin-bottom: 50px; */
    }

    .ml_map li {
        list-style: none !important;
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        font-size: 0;
    }

    .ml_map1 {
        margin-bottom: 50px;
    }

    .ml_map1 li {
        list-style: none !important;
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        font-size: 0;
    }

    #dituContent {
        border: none !important;
    }

    .ml_contactcon_module1 {
        width: 100%;
    }

    .ml_contactcon_module1_top {
        width: 100%;
    }

    .ml_contactcon_module1_top ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ml_contactcon_module1_top ul li {
        width: 31%;
        padding: 20px;
        background-color: var(--main-color-white);
        border-radius: 10px;
        /*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
    }

    .ml_contactcon_module1_top ul li i {
        color: var(--main-color);
        font-size: 40px !important;
        margin-bottom: 15px;
        display: block;
        text-align: center;
    }

    .ml_contactcon_module1_top ul li img {
        display: block;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .ml_contactcon_module1_top ul li strong {
        display: block;
        text-align: center;
        color: var(--main-color);
    }

    .ml_contactcon_module1_top ul li p {
        text-align: center;
        color: #303133;
        font-size: 17px;
        margin-top: 15px;
    }

    .ml_contactcon_module1_bot {
        display: flex;
        margin-top: 70px;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .ml_contactcon_module1_bot_left {
        width: 49%;
    }

    .ml_contactcon_module1_bot_right {
        width: 49%;
    }

    .ml_contactcon_module1_bot_left .ml_contactcon_right {
        width: 100% !important;
    }

    /* 联系我们2 */
    /* 联系我们3 */
    .ml_contactcon_module2 {
        /* max-width: 1300px; */
        margin: 0 auto;
        background-color: var(--main-color-white);
        /* padding: 25px; */
    }

    .ml_map1 {
        /* min-height: 100px;
        background-color: #ccc;
        margin-bottom: 50px; */
    }

    .ml_contactcon_module2 .ml_contactcon_module1_bot {
        width: 100% !important;
    }

    .ml_contactcon_module2 .ml_contactcon_module1_bot_left {
        width: 100% !important;
    }

    .ml_contactcon_module2 .ml_contactcon_module1_bot_left input {
        width: 48%;
    }

    .ml_contactcon_module2 .ml_contactcon_module1_bot_left .ml_contactcon_right {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ml_contactcon_module2 .ml_contactcon_module1_bot_left .ml_contactcon_right strong {
        display: block;
        width: 100%;
    }

    /* 联系我们3 */
    .chrg-description p {
        color: var(--main-color-white) !important;
    }

    .shuxing {
        padding: 15px 0;
    }

    .shuxingitem {
        display: flex;
        justify-content: space-between;
    }

    .shuxingitem span {
        display: block;
        width: 60px;
        text-align: left;
        margin: 0 !important;
    }

    .shuxingitem ul {
        display: flex;
        flex: 1;
        align-items: center;
    }

    .shuxingitem ul li {
        display: block;
        padding: 5px 20px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        margin-right: 20px;
        font-size: 14px;
        cursor: pointer;
        transition: all ease 0.4s;
    }

    .chooesen {
        background-color: var(--main-color) !important;
        color: var(--main-color-white) !important;
        border: 1px solid var(--main-color) !important;
    }

    /* 样式补充 */
    #ContactMoban {
        margin: 0 !important;
    }

    #lContent p {
        line-height: 2em;
        font-size: 14px;
        color: var(--main-color-fontColor);
        margin-bottom: 10px;
    }

    #lblContent p {
        line-height: 2em;
        font-size: 14px;
        color: var(--main-color-fontColor);
        margin-bottom: 10px;
    }

    .ml_bread_inner {
        max-width: 1550px !important;
        margin: 30px auto;
        display: flex;
        padding: 0 25px !important;
        align-items: center;
    }

    .ml_bread_inner span {
        display: block;
        padding: 0 10px;
        font-size: 14px;
    }

    .ml_bread_inner a {
        display: block;
        font-size: 14px;
        color: var(--main-color-fontColor);
    }

    .ml_bread_inner a:hover {
        color: var(--main-color);
    }

    .active_color {
        color: var(--main-color) !important;
    }

    /* 内页二级 */
    .ml_inner_nav {
        width: 100%;
        height: 60px;
        /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
    }

    .ml_inner_nav_con {
        max-width: 1200px;
        margin: 0 auto;
        height: 60px;
        /* overflow-x: scroll;
        overflow-y: hidden; */
        position: relative;
    }

    /*滚动条样式*/
    .ml_inner_nav_con::-webkit-scrollbar {
        width: 8px;
        padding-right: 4px;
        height: 5px;
        background-color: transparent;
        position: absolute !important;
        bottom: -15px !important;
    }

    /*滑块样式*/
    .ml_inner_nav_con:hover::-webkit-scrollbar-thumb {
        -webkit-border-radius: 4px;
        border-radius: 4px;
        background-color: var(--main-color);
    }

    .ml_inner_nav_con {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .propage_sec_fir {
        height: 45px;
        line-height: 45px;
        margin: 0 20px;
        display: block;
        border-bottom: 3px solid transparent;
        color: #303133;
        width: 120px;
        text-align: center;
    }

    .ml_inner_nav_con a:hover {
        color: var(--main-color) !important;
        border-bottom: 3px solid var(--main-color) !important;
    }

    .ml_act {
        color: var(--main-color) !important;
        border-bottom: 3px solid var(--main-color) !important;
    }

    .propage_sec {
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        background-color: var(--main-color-white);
        display: none;
    }

    .propage_sec a {
        width: 100%;
        text-align: center;
        height: 40px;
        line-height: 40px;
        display: block;
        color: #303133;
    }

    .propage_sec a:hover {
        background-color: var(--main-color) !important;
        color: var(--main-color-white) !important;
    }

    .ml_inner_nav_con_div:hover .propage_sec {
        display: block;
    }

    .ml_pro_sec {
        display: none !important;
    }

    .ml_inner_nav_con_div {
        position: relative;
    }

    .ml_inner_nav_con_div>a {
        /* width: 150px !important; */
    }

    .propage_sec {
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        background-color: var(--main-color-white);
        display: none;
    }

    .propage_sec a {
        width: 100%;
        text-align: center;
        height: 40px;
        line-height: 40px;
        display: block;
        color: #303133;
    }

    .propage_sec a:hover {
        background-color: var(--main-color) !important;
        color: var(--main-color-white) !important;
    }

    .ml_inner_nav_con_div:hover .propage_sec {
        display: block;
    }

    .ml_pro_sec {
        display: none !important;
    }

    /* 内页二级 */
    .left_inside_right_con .ml_contact {
        padding: 0 !important;
    }

    .pc_protitle {
        width: 100%;
        padding: 15px 15px;
        background-color: var(--main-color);
        color: var(--main-color-white);
        font-size: 25px;
    }
}

@media only screen and (max-width: 996px) {
    .pc_protitle {
        display: none;
    }

    .left_inside_right_con .ml_contact {
        padding: 0 !important;
    }

    .ml_inner_nav {
        width: 100%;
        height: 50px;
        /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
        padding: 0 15px;
    }

    .ml_inner_nav_con {
        margin: 0 auto;
        height: 50px;
    }

    .ml_inner_nav_con {
        white-space: nowrap;
        overflow: scroll;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .ml_inner_nav_con::-webkit-scrollbar {
        display: none;
    }

    .ml_inner_nav_con a {
        height: 35px;
        line-height: 35px;
        margin: 0 20px;
        border-bottom: 3px solid transparent;
        color: #303133;
        display: inline-block;
    }

    .ml_inner_nav_con a:hover {
        color: var(--main-color) !important;
        border-bottom: 3px solid var(--main-color) !important;
    }

    .ml_act {
        color: var(--main-color) !important;
        border-bottom: 3px solid var(--main-color) !important;
    }

    /* 内页二级 */
    .ml_inner_nav {
        width: 100%;
        height: 50px;
        /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
        padding: 0 15px;
    }

    .ml_inner_nav_con {
        margin: 0 auto;
        height: 50px;
    }

    .ml_inner_nav_con {
        white-space: nowrap;
        overflow: scroll;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .ml_inner_nav_con::-webkit-scrollbar {
        display: none;
    }

    .ml_inner_nav_con a {
        height: 35px;
        line-height: 35px;
        margin: 0 20px;
        border-bottom: 3px solid transparent;
        color: #303133;
        display: inline-block;
    }

    .ml_inner_nav_con a:hover {
        color: var(--main-color) !important;
        border-bottom: 3px solid var(--main-color) !important;
    }

    /* 内页二级 */
    .active_color {
        color: var(--main-color) !important;
    }

    .ml_bread_inner {
        width: 100%;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .ml_bread_inner span {
        display: block;
        padding: 0 10px;
        font-size: 13px;
    }

    .ml_bread_inner a {
        display: block;
        font-size: 13px;
        color: var(--main-color-fontColor);
    }

    .ml_bread_inner a:hover {
        color: var(--main-color);
    }

    #lblContent p {
        line-height: 2em;
        font-size: 14px;
        color: var(--main-color-fontColor);
        margin-bottom: 10px;
    }

    #lContent p {
        line-height: 2em;
        font-size: 14px;
        color: var(--main-color-fontColor);
        margin-bottom: 10px;
    }

    #lblContent p img {
        width: 100% !important;
    }

    .shuxing {
        padding: 15px 0;
    }

    .shuxingitem {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .shuxingitem span {
        display: block;
        font-size: 14px;
        width: 100%;
        text-align: left;
        margin-bottom: 5px !important;
    }

    .shuxingitem ul {
        display: flex;
        width: 100%;
        align-items: center;
        flex-wrap: wrap;
    }

    .shuxingitem ul li {
        display: block;
        padding: 5px 20px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        margin-right: 20px;
        font-size: 14px;
        cursor: pointer;
        transition: all ease 0.4s;
    }

    .chooesen {
        background-color: #1d50ad !important;
        color: var(--main-color-white) !important;
        border: 1px solid #1d50ad !important;
    }

    .chrg-description p {
        color: var(--main-color-white) !important;
    }

    .ml_contactcon_module1 {
        width: 100%;
        margin-top: 30px;
    }

    .ml_contactcon_module1_top {
        width: 100%;
    }

    .ml_contactcon_module1_top ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ml_contactcon_module1_top ul li {
        width: 100%;
        margin-bottom: 20px;
        padding: 20px;
        background-color: var(--main-color-white);
        border-radius: 10px;
        /*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
    }

    .ml_contactcon_module1_top ul li i {
        font-size: 30px !important;
        color: var(--main-color) !important;
        display: block;
        text-align: center;
        margin-bottom: 15px;
    }

    .ml_contactcon_module1_top ul li img {
        display: block;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .ml_contactcon_module1_top ul li strong {
        display: block;
        text-align: center;
        color: var(--main-color);
    }

    .ml_contactcon_module1_top ul li p {
        text-align: center;
        color: #303133;
        font-size: 17px;
        margin-top: 15px;
    }

    .ml_contactcon_module1_bot {
        display: flex;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .ml_contactcon_module1_bot_left {
        width: 100%;
        margin-bottom: 25px;
    }

    .ml_contactcon_module1_bot_right {
        width: 100%;
    }

    .ml_contactcon_module1_bot_left .ml_contactcon_right {
        width: 100% !important;
    }

    /* 联系我们2 */
    /* 联系我们3 */
    .ml_contactcon_module2 {
        /* max-width: 1300px; */
        margin: 0 auto;
        background-color: var(--main-color-white);
        padding: 15px;
    }

    .ml_map1 {
        /* min-height: 100px;
    background-color: #ccc;
    margin-bottom: 50px; */
    }

    #ContactMoban {
        margin: 0 !important;
    }

    #ContactMoban li {
        list-style: none !important;
    }

    .ml_contactcon_module2 .ml_contactcon_module1_bot {
        width: 100% !important;
    }

    .ml_contactcon_module2 .ml_contactcon_module1_bot_left {
        width: 100% !important;
    }

    .ml_contactcon_module2 .ml_contactcon_module1_bot_left input {
        width: 48%;
    }

    .ml_contactcon_module2 .ml_contactcon_module1_bot_left .ml_contactcon_right {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ml_contactcon_module2 .ml_contactcon_module1_bot_left .ml_contactcon_right strong {
        display: block;
        width: 100%;
    }

    /* 联系我们3 */
    .ml_contact {
        margin: 0 auto;
        /* padding: 30px 15px; */
        background-color: var(--main-color-white);
        margin-bottom: 30px;
    }

    .ml_contactcon {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .ml_contactcon_left {
        width: 100%;
        margin-bottom: 30px;
    }

    .ml_contactcon_right {
        width: 100%;
    }

    .tact_strong {
        display: block;
        font-weight: normal !important;
        font-size: 25px;
        margin-bottom: 35px;
    }

    .ml_contactcon_left ul li {
        padding: 20px 0 !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* margin-bottom: 25px; */
        /* padding-left: 75px; */
        background-repeat: no-repeat;
        background-position: left center;
        padding-top: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #ededed;
    }

    .ml_contactcon_left ul li i {
        color: var(--main-color) !important;
        font-size: 30px !important;
    }

    .ml_contactcon_left ul li div {
        flex: 1;
        padding-left: 15px;
    }

    .ml_contactcon_left ul li p {
        font-size: 17px;
        color: #555;
        margin-bottom: 10px;
    }

    .ml_contactcon_left ul li span {
        display: block;
        font-size: 16px;
        color: #555;
    }

    .ml_contactcon_right input {
        display: block;
        padding-left: 15px;
        outline: none;
        height: 44px;
        width: 100%;
        margin-bottom: 17px;
        border: 1px solid #ededed;
        border-radius: 4px;
    }

    .ml_contactcon_right textarea {
        display: block;
        padding-left: 15px;
        padding-top: 15px;
        outline: none;
        height: 100px;
        width: 100%;
        margin-bottom: 17px;
        border: 1px solid #ededed;
        border-radius: 4px;
    }

    .ml_sub {
        display: block;
        height: 44px;
        line-height: 44px;
        text-align: center;
        border-radius: 4px;
        background-color: var(--main-color);
        color: var(--main-color-white);
        width: 100%;
    }

    .ml_message h2 {
        text-align: center;
        color: #000;
        font-weight: normal;
        font-size: 30px;
        margin-bottom: 10px;
    }

    .ml_message h3 {
        text-align: center;
        font-weight: normal;
        font-size: 16px;
        color: #303133;
        margin-bottom: 20px;
    }

    .ml_message img {
        width: 100%;
    }

    .form_area {
        display: flex;
        flex-wrap: wrap;
        padding: 20px 0;
        justify-content: space-between;
    }

    .form_area input {
        display: block;
        width: 100%;
        height: 40px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-bottom: 20px;
        padding-left: 15px;
        outline: none;
    }

    .form_area textarea {
        display: block;
        outline: none;
        width: 100%;
        min-height: 150px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-bottom: 20px;
        padding-left: 15px;
        padding-top: 15px;
    }

    .message_sub {
        display: block;
        width: 200px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        color: var(--main-color-white);
        background-color: var(--main-color);
        border-radius: 4px;
        margin: 0 auto;
    }

    .ml_download li {
        padding: 15px 0;
        border-bottom: 1px dashed #ccc;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .ml_download li i {
        color: var(--main-color);
        font-size: 25px !important;
    }

    .ml_download li img {
        width: 30px;
    }

    .loadnow {
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background-color: var(--main-color);
        color: var(--main-color-white);
        font-size: 15px;
        margin-top: 10px;
    }

    .d_center {
        flex: 1;
        padding: 0 20px;
    }

    .d_center a {
        display: block;
        font-size: 15px;
        color: #303133;
        margin-bottom: 7px;
    }

    .d_center span {
        font-size: 14px;
        color: #444;
        display: inline-block;
        margin-right: 5px;
    }

    /* 样式补充 */
    /* 产品样式2 */
    .ml_procon1 {
        width: 100%;
        padding: 30px 15px;
    }

    .ml_procon1_item {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .ml_procon1_item_left {
        width: 100%;
        background-color: var(--main-color);
        padding: 15px;
    }

    .ml_procon1_item_left img {
        width: 100%;
        height: 200px;
        object-fit: contain;
    }

    .ml_procon1_item_right {
        width: 100%;
        background-color: var(--main-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
    }

    .ml_procon1_item_right strong {
        font-size: 30px;
        font-weight: normal;
        color: var(--main-color-white);
        display: block;
        margin-bottom: 20px;
    }

    .ml_procon1_item_right p {
        color: var(--main-color-white);
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 25px;
    }

    .ml_procon1_item_right a {
        display: block;
        border: 1px solid var(--main-color-white);
        width: 120px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: var(--main-color);
        color: var(--main-color-white);
        border-radius: 40px;
    }

    .flex-reserve {
        flex-direction: row-reverse;
    }

    /* 产品样式2 */
    .ml_new a:hover {
        color: var(--main-color-fontColor) !important;
    }

    .ml_new {
        width: 100%;
        padding: 30px 15px;
        margin: 0 auto;
    }

    .ml_new_item {
        display: flex;
        justify-content: space-between;
        cursor: pointer;
        flex-wrap: wrap;
        transition: all ease 0.4s;
        margin-bottom: 30px;
    }

    .ml_new_item:hover {
        /*box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;*/
    }

    .ml_new_item_left {
        width: 100%;
    }

    .ml_new_item_left img {
        width: 100%;
    }

    .ml_new_item_right {
        background-color: var(--main-color-white);
        width: 100%;
        padding: 15px;
        position: relative;
    }

    .ml_new_item_right .newtitle {
        font-size: 16px;
        color: #333;
        display: block;
        margin-bottom: 10px;
    }

    .ml_new_item_right p {
        font-size: 16px;
        color: #666;
        display: block;
        line-height: 25px;
        margin-bottom: 10px;
    }

    .moredetail {
        display: block;
        text-align: center;
        width: 120px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        background-color: var(--main-color);
        color: var(--main-color-white);
    }

    .ml_date {
        font-size: 18px;
        color: var(--main-color);
        margin-bottom: 10px;
    }

    /* 样式补充 */
    /* 样式5 */
    .Ml_temlpate_news_5 {
        width: 100%;
    }

    .newitem5 {
        transition: all ease 0.4s;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 25px;
        background-color: #fafafa;
        align-items: center;
        border-bottom: 1px solid #ececec;
    }

    .newitem5:hover {
        /*box-shadow: 0 0 22px rgba(0, 0, 0, .12);*/
        border-radius: 4px;
        background: var(--main-color-white);
    }

    .newitem5:hover img {
        transform: scale(1.1);
    }

    .newitem5:hover a {
        color: var(--main-color) !important;
    }

    .newitem5_left {
        width: 100%;
        margin-bottom: 20px;
    }

    .newitem5_right {
        width: 100%;
    }

    .newitem5_right_top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .newitem5_right_top a {
        display: block;
        width: 70%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        color: #444;
        font-size: 16px;
        transition: all ease 0.4s;
    }

    .newitem5_right_top span {
        color: #444;
        font-size: 16px;
    }

    .newitem5_left a img {
        width: 100%;
        height: 175px;
        transition: all ease 0.4s;
        object-fit: cover;
    }

    .newitem5_left a {
        display: block;
        overflow: hidden;
    }

    .newitem5_right_bot p {
        font-size: 14px;
        color: #777;
        line-height: 25px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    /* 样式5 */
    /* 样式4 */
    .Ml_temlpate_news_4 {
        width: 100%;
    }

    .newitem4_top .newitem3 {
        width: 100%;
    }

    .newitem4_top {
        margin-bottom: 50px;
    }

    .newitem4_bot ul {
        position: relative;
    }

    .newitem4_bot ul li {
        display: flex;
        align-items: center;
        padding: 10px 0;
    }

    .li_left {
        width: 80px;
        height: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .li_left strong {
        display: block;
        font-size: 25px;
        color: #000;
        font-weight: normal;
        text-align: center;
        margin-bottom: 5px;
    }

    .li_left p {
        font-size: 14px;
        color: #000;
    }

    .li_line {
        width: 15px;
        margin: 0 13px;
        height: 15px;
        background: rgba(179, 179, 179, .3);
        border-radius: 50%;
        position: relative;
    }

    .li_line:after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #b3b3b3;
        margin: 4px;
        z-index: 8;
    }

    .li_right {
        flex: 1;
        padding-left: 10px;
    }

    .li_right a {
        transition: all ease 0.4s;
        color: #444;
        font-size: 16px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        margin-bottom: 10px;
    }

    .li_right span {
        font-size: 12px;
        color: #777;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .newitem4_bot ul:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 100px;
        width: 1px;
        height: 100%;
        background: #f0f0f0;
    }

    /* 样式4 */
    /* 样式3 */
    .Ml_temlpate_news_3 {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .newitem3 {
        width: 100%;
        padding: 20px;
    }

    .newitem3con {
        padding: 15px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    .newitem3con a img {
        width: 100%;
        height: 230px;
        object-fit: cover;
    }

    .newitem2_title {
        margin-top: 15px;
        margin-bottom: 15px;
        color: #222;
        font-size: 20px;
        display: block;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .newitem3con p {
        font-size: 14px;
        color: #666;
        line-height: 25px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    /* 样式3 */
    .Ml_temlpate_news {
        width: 100%;
    }

    /* 样式1 */
    .Ml_temlpate_news_1 {
        width: 100%;
    }

    .newitem1 {
        padding: 10px 0;
        border-bottom: 1px dashed #e5e5e5;
    }

    .newitem1_top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 5px;
        flex-wrap: wrap;
    }

    .newitem1_top a {
        display: block;
        width: 100%;
        margin-bottom: 5px;
        font-size: 16px;
        color: #444;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        transition: all ease 0.4s;
    }

    .newitem1:hover a {
        color: var(--main-color);
    }

    .newitem1_top span {
        font-size: 16px;
        color: #444;
        word-wrap: 100%;
    }

    .newitem1_bot span {
        font-size: 12px;
        color: #777;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    /* 样式1 */
    /* 样式2 */
    .Ml_temlpate_news_2 {
        width: 100%;
    }

    .newitem2 {
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
        border-bottom: 1px dashed #e5e5e5;
        align-items: center;
    }

    .newitem2left {
        width: 85px;
        height: 85px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #f2f2f2;
    }

    .newitem2left strong {
        font-size: 25px;
        color: #000;
        display: block;
        text-align: center;
        font-weight: normal;
    }

    .newitem2left p {
        font-size: 14px;
        color: #000;
        margin-top: 4px;
        text-align: center;
    }

    .newitem2right {
        flex: 1;
        padding-left: 15px;
    }

    .newitem2right a {
        display: block;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        font-size: 16px;
        color: #444;
        margin-bottom: 15px;
    }

    .newitem2right p {
        font-size: 13px;
        color: #777;
        line-height: 25px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    /* 样式2 */
    /* 产品详情 */
    /* 商品属性 */
    .shuxing {
        padding: 15px 0;
    }

    .shuxingitem {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .shuxingitem span {
        display: block;
        font-size: 14px;
        width: 100%;
        text-align: left;
        margin-bottom: 5px !important;
    }

    .shuxingitem ul {
        display: flex;
        width: 100%;
        align-items: center;
        flex-wrap: wrap;
    }

    .shuxingitem ul li {
        display: block;
        padding: 5px 20px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        margin-right: 20px;
        font-size: 14px;
        cursor: pointer;
        transition: all ease 0.4s;
    }

    .chooesen {
        background-color: var(--main-color) !important;
        color: var(--main-color-white) !important;
        border: 1px solid var(--main-color) !important;
    }

    /* 商品属性 */
    .ml_description {
        /* width: 95%; */
        padding: 15px;
        margin: 0 auto;
        border: 1px solid #ededed;
        background-color: var(--main-color-white);
    }

    .ml_related .ml_indexpro {
        padding: 0 !important;
    }

    .strong_1 {
        display: block;
        padding: 10px;
        border-bottom: 2px solid var(--main-color);
        font-size: 16px;
        font-weight: normal;
        color: #333;
    }

    .indexpro_div a {
        display: block;
        overflow: hidden;
    }

    .ml_related {
        /* width: 95%; */
        padding: 15px;
        margin: 30px auto;
    }

    .ml_indexprocon ul {
        display: flex;
        flex-wrap: wrap;
    }

    .ml_indexprocon ul li {
        /* padding: 10px; */
        width: 50%;
    }

    .ml_indexprocon ul li p {
        text-align: center;
        color: #303133;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        font-size: 16px;
        /* padding: 10px 0; */
    }

    .ml_indexprocon ul li span {
        text-align: center;
        color: #303133;
        display: block;
        text-align: center;
        font-size: 14px;
    }

    .indexpro_div {
        background-color: var(--main-color-white);
        padding: 15px;
    }

    .indexpro_div img {
        width: 100%;
        height: 150px;
        object-fit: contain;
        transition: all ease 0.4s;
        display: block;
        margin: 0 auto;
    }

    .indexpro_div:hover img {
        transform: scale(1.1);
    }

    .ml_indexpro {
        width: 100%;
        padding: 30px 15px;
        background-color: #fafafa;
    }

    .ml_indexprocon {
        width: 100%;
        margin: 0 auto;
    }

    .tab_pro {
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .tab_pro a {
        text-align: center;
        width: 150px;
        height: 40px;
        line-height: 40px;
        border: 1px solid #ccc;
        font-size: 16px;
        color: #303133;
        display: block;
    }

    .tab_pro a:hover {
        color: var(--main-color-white) !important;
        background-color: var(--main-color) !important;
    }

    .ml_description_tab {
        border-bottom: 1px solid #ededed;
        white-space: nowrap;
        overflow: auto;
    }

    .ml_description_tab .strong_1 {
        border: none;
        cursor: pointer;
        padding: 10px 10px;
        width: 120px;
        display: inline-block;
        text-align: center;
    }

    .tabactive {
        background-color: var(--main-color) !important;
        color: var(--main-color-white) !important;
    }

    .ml_descriptioncon_fy {
        display: none;
    }

    .ml_descriptioncon_fy p {
        font-size: 16px;
        color: #303133;
        line-height: 25px;
    }

    .ml_descriptioncon_fy img {
        max-width: 100%;
        display: block;
        margin: 20px auto;
    }

    .ml_prodetailright {
        width: 100%;
    }

    .ml_prodetailright strong {
        display: block;
        margin-bottom: 20px;
        font-size: #303133;
        color: #333;
        font-size: 20px;
        font-weight: normal;
    }

    .ml_prodetailright p {
        font-size: 16px;
        line-height: 25px;
        color: #333;
    }

    .ml_prodetail {
        width: 100%;
        padding: 30px 15px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .ml_prodetailleft {
        width: 100%;
        margin-bottom: 30px;
    }

    .ml_prodetailleft .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: var(--main-color-white);
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

    .ml_prodetailleft .swiper-slide {
        background-size: cover;
        background-position: center;
    }

    .ml_prodetailleft .mySwiper2 {
        width: 100%;
    }

    .ml_prodetailleft .mySwiper2 img {
        border: 1px solid #ccc;
        height: 200px;
        object-fit: contain;
    }

    .ml_prodetailleft .mySwiper {
        box-sizing: border-box;
        padding: 10px 0;
    }

    .ml_prodetailleft .mySwiper img {
        border: 1px solid #ccc;
        height: 80px;
        width: 100%;
        object-fit: contain;
    }

    .ml_prodetailleft .mySwiper .swiper-slide {
        width: 25%;
        opacity: 0.4;
    }

    .ml_prodetailleft .mySwiper .swiper-slide-thumb-active {
        opacity: 1;
        background-color: transparent !important;
    }

    .ml_prodetailleft .swiper-slide img {
        display: block;
        width: 100%;
    }

    .con1conright strong {
        display: block;
        color: var(--main-color-222);
        font-size: 25px;
        font-weight: 100;
        margin-bottom: 10px;
        color: var(--main-color);
    }

    .con1conright p {
        font-size: 15px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 24;
        line-height: 30px;
        color: var(--main-color-222);
    }
}

.qa-sdk-wrapper {
    position: fixed;
    width: 400px;
    right: -600px;
    max-height: 530px;
    overflow: hidden;
    border-radius: 4px;
    /*box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);*/
    transition: all 0.5s ease-in-out;
    background: #fff;
}

.qa-sdk-close-btn {
    display: inline-block;
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 16px;
}

.qa-sdk-close-btn:hover {
    border-radius: 50%;
    background-color: #d5d9df;
}

#qa-sdk-iframe {
    width: 400px;
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .qa-sdk-wrapper {
        width: 356px;
    }

    #qa-sdk-iframe {
        width: 356px;
    }
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

:root {
    --main-color: #3491ad;
    --main-color1: #d32329;
    --main-color-white: #ffffff;
    --main-color-555: #555555;
    --main-color-999: #999999;
    --main-color-666: #666666;
    --main-color-333: #333333;
    --main-color-888: #888888;
    --main-color-222: #222222;
    --main-transition: all ease 0.4s;
    --main-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.inbanner strong {
    position: absolute;
    display: block;
    color: var(--main-color-white);
    font-size: 30px;
    font-weight: normal;
}

.inbanner {
    width: 100%;
    background-image: url(../images/inbanner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    /* display: flex;
    align-items: center;
    justify-content: left; */
}

@media only screen and (min-width: 996px) {
    .more {
        width: 108px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        color: var(--main-color-white);
        background-color: var(--main-color);
        font-size: 14px;
        display: block;
        margin-top: 25px;
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .pchead {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        transition: var(--main-transition);
        background-color: var(--main-color-white);
        height: 80px;
    }

    .pcheader {
        max-width: 1550px;
        padding: 0 25px;
        margin: 0 auto;
        transition: var(--main-transition);
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
    }

    .head_Right {
        display: flex;
        align-items: center;
    }

    .head_Right .search {
        margin-left: 100px;
    }

    .head_Right i {
        color: var(--main-color-222);
    }

    .pclogo img {
        height: 60px;
    }

    .pcnav {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 99;
    }

    .pcnav>li {
        position: relative;
        transition: var(--main-transition);
    }

    .pcnav>li:hover .first_a {
        color: var(--main-color);
    }

    .pcnav>li>a {
        display: block;
        height: 80px;
        line-height: 80px;
        font-size: 16px;
        transition: var(--main-transition);
        color: var(--main-color-222);
        padding: 0 20px;
    }

    .pc_sec_nav {
        position: absolute;
        top: 120%;
        left: 0;
        width: 150px;
        background-color: var(--main-color-white);
        opacity: 0;
        visibility: hidden;
        transition: var(--main-transition);
    }

    .pc_sec_item a {
        color: var(--main-color-666);
        font-size: 15px;
        display: block;
        padding: 10px 30px;
        transition: var(--main-transition);
    }

    .pcnav li:hover .pc_sec_nav {
        top: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: var(--main-color);
    }

    .pc_sec_item:hover .pc_third_nav {
        top: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .pc_sec_item:hover .second_a {
        color: var(--main-color) !important;
    }

    .third_a:hover {
        color: var(--main-color) !important;
    }

    .pc_sec_item {
        position: relative;
    }

    .pc_third_nav {
        position: absolute;
        left: 100%;
        top: 20%;
        z-index: 998;
        width: 150px;
        opacity: 0;
        visibility: hidden;
        transition: var(--main-transition);
    }

    .third_a {
        color: var(--main-color-666);
        background-color: var(--main-color-white);
    }

    .head_transform {
        max-width: 90% !important;
        height: 72px !important;
    }

    .header_transform {
        background-color: var(--main-color) !important;
        height: 72px !important;
    }

    .ml_mb_head {
        display: none;
    }

    .ml_mb_nav {
        display: none;
    }

    .ml_banner {
        width: 100%;
        z-index: 998;
        margin-top: 80px !important;
    }

    .ml_banner:hover .bannerbtnleft {
        left: 10px !important;
        opacity: 1 !important;
    }

    .ml_banner:hover .bannerbtnright {
        right: 10px !important;
        opacity: 1 !important;
    }

    .ml_banner img {
        width: 100%;
        transition: all ease 5s;
        height: 100%;
        object-fit: cover;
    }

    .ml_banner .swiper-slide-active img {
        transform: scale(1.2);
    }

    .bannerpage .swiper-pagination-bullet {
        width: 15px !important;
        height: 15px !important;
    }

    .bannerbtn {
        width: 50px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--main-color-white);
        font-size: 25px;
        height: 50px !important;
        transition: var(--main-transition);
        background: rgba(0, 0, 0, .7);
        background-image: none !important;
        opacity: 0;
    }

    .bannerbtnleft {
        left: 0 !important;
    }

    .bannerbtnright {
        right: 0 !important;
    }

    .bannerpos {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .bannerpos h1 {
        font-size: 50px;
        text-align: center;
        color: var(--main-color-white);
        margin-bottom: 30px;
        font-weight: 300;
    }

    .bannerpos a:hover {
        color: var(--main-color-white);
        background-color: var(--main-color);
        border: 2px solid var(--main-color);
    }

    .bannerpos a {
        transition: var(--main-transition);
        width: 150px;
        height: 50px;
        text-align: center;
        color: var(--main-color-white);
        line-height: 50px;
        border: 2px solid var(--main-color-white);
        font-size: 14px;
        border-radius: 30px;
    }

    .copy {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-top: 1px solid #555555;
        background-color: #3b3d40;
    }

    .copycon {
        text-align: center;
        max-width: 1200px;
        text-align: center;
        font-size: 14px;
        color: var(--main-color-999);
        margin: 0 auto;
    }

    .copycon a {
        font-size: 14px;
        color: var(--main-color-999);
    }

    .inside {
        max-width: 1550px;
        margin: 0 auto;
        padding: 15px 25px;
    }

    .inside p {
        font-size: 15px;
        line-height: 30px;
        color: var(--main-color-fontColor);
    }

    .search {
        color: var(--main-color-white);
        cursor: pointer;
    }

    .cover {
        width: 30%;
        height: 100%;
        position: fixed;
        left: -1005%;
        top: 0;
        background: rgba(0, 0, 0, .8);
        z-index: 99999;
        transition: var(--main-transition);
    }

    .covershow {
        left: 0 !important;
    }

    .searchshow {
        right: 0 !important;
    }

    .sou {
        position: fixed;
        transition: var(--main-transition);
        top: 0;
        width: 70%;
        height: 100%;
        right: -70%;
        display: flex;
        justify-content: space-between;
        z-index: 9999;
    }

    .souleft {
        width: 100px;
        background-color: var(--main-color);
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .souright {
        flex: 1;
        padding: 10%;
        background-color: var(--main-color-white);
    }

    .souright h1 {
        color: var(--main-color);
        font-size: 40px;
        margin-bottom: 35px;
    }

    .close {
        cursor: pointer;
        transition: var(--main-transition);
    }

    .close:hover {
        transform: rotate(360deg);
    }

    .inp {
        position: relative;
    }

    .go {
        position: absolute;
        right: 0;
        top: 0;
    }

    .souright input {
        display: block;
        width: 100%;
        height: 45px;
        border: none;
        outline: none;
        font-size: 20px;
        color: var(--main-color-222);
        border-bottom: 1px solid #e0e0e0;
    }

    .con1 {
        width: 100%;
        padding: 80px 0;
        background-color: #f5f5f5;
    }

    .con1con {
        max-width: 1550px;
        padding: 0 25px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }

    .con1conleft {
        width: 35%;
    }

    .con1conleft img {
        width: 100%;
        border-radius: 20px;
    }

    .con1conright {
        flex: 1;
        padding-left: 4.167vw;
    }

    .con1conright strong {
        display: block;
        color: var(--main-color-222);
        font-size: 30px;
        font-weight: 100;
        margin-bottom: 40px;
        color: var(--main-color);
    }

    .con1conright>p {
        font-size: 15px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        color: var(--main-color-888);
        line-height: 35px;
        /* padding: 5px 0; */
    }

    .con1conright ul {
        display: flex;
        align-items: center;
        background-color: var(--main-color-white);
        border-radius: 10px;
    }

    .con1conright ul li {
        padding: 20px;
        transition: var(--main-transition);
        cursor: pointer;
        border-radius: 10px;
    }

    .con1conright ul li:hover {
        margin-top: -20px !important;
    }

    .con1conright ul li img {
        width: 35px;
        height: 35px;
        display: block;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .con1conright ul li p {
        text-align: center;
        font-size: 15px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        color: var(--main-color-888);
        line-height: 35px;
    }

    .con1conright ul li:hover {
        background-color: var(--main-color);
        /*box-shadow: var(--main-shadow);*/
    }

    .con1conright ul li:hover p {
        color: var(--main-color-white) !important;
    }

    .con2 {
        width: 100%;
        padding: 50px 0;
    }

    .con2con {
        max-width: 1550px;
        padding: 0 25px;
        margin: 0 auto;
    }

    .mumping_mun {
        display: flex;
        justify-content: space-between;
    }

    .mumping_mun li {
        flex: 1;
        border-right: 1px solid #ccc;
    }

    .mumping_mun li:first-child {
        border-left: 1px solid #ccc;
    }

    .mumping_mun li p {
        text-align: center;
        color: var(--main-color-999);
        font-size: 16px;
        margin-top: 10px;
    }

    .mun_top {
        display: flex;
        justify-content: center;
    }

    .mun_top h2 {
        font-size: 62px;
        color: var(--main-color);
        margin-right: 10px;
    }

    .mun_top span {
        color: var(--main-color-666);
        font-size: 16px;
    }

    .con3 {
        padding: 80px 0;
        padding-bottom: 0;
    }

    .con3con {
        max-width: 1550px;
        padding: 0 25px;
        margin: 0 auto;
    }

    .titles {
        display: block;
        text-align: center;
        font-size: 28px;
        color: var(--main-color);
        margin-bottom: 40px;
    }

    .con3con ul {
        display: flex;
        flex-wrap: wrap;
    }

    .con3con ul li {
        cursor: pointer;
        width: calc((100% - 40px) / 3);
        box-shadow: var(--main-shadow);
        margin: 0 20px 20px 0;
        height: 280px;
        border-radius: 8px;
    }

    .con3con ul li p {
        text-align: center;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        height: 50px;
        line-height: 50px;
        background-color: var(--main-color);
        color: var(--main-color-white);
    }

    .con3con ul li:nth-child(3n) {
        margin-right: 0;
    }

    .con3con ul li img {
        transition: var(--main-transition);
        width: 100%;
        height: 220px;
        object-fit: contain;
    }

    .con3con ul li a {
        display: block;
        overflow: hidden;
    }

    .con3con ul li:hover img {
        transform: scale(1.1);
    }

    .con3con .more {
        margin: 20px auto;
        margin-top: 30px;
    }

    .con4 {
        padding: 80px 0;
    }

    .con4con {
        max-width: 1550px;
        padding: 0 25px;
        margin: 0 auto;
    }

    .con4con ul {
        display: flex;
    }

    .con4con ul li {
        position: relative;
        width: 11.5%;
        transition: var(--main-transition);
        cursor: pointer;
    }

    .con4con ul li img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .con4con ul li:nth-child(1) img,
    .con4con ul li:nth-child(1) .con4pos {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .con4con ul li:nth-last-child(1) img,
    .con4con ul li:nth-last-child(1) .con4pos {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .con4pos {
        width: 100%;
        position: absolute;
        height: 100%;
        z-index: 10;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0);
        transition: var(--main-transition);
    }

    .con4pos strong {
        display: block;
        color: var(--main-color-white);
        transition: var(--main-transition);
        font-size: 25px;
        font-weight: normal;
        margin-bottom: 20px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        text-align: center;
    }

    .con4pos p {
        font-size: 15px;
        color: var(--main-color-white);
        display: none;
        transition: var(--main-transition);
        padding: 0 5%;
    }

    .con4_active {
        width: 54% !important;
    }

    .con4_active .con4pos {
        background: rgba(0, 0, 0, 0.6) !important;
    }

    .con4_active .con4pos p {
        display: block;
    }

    .con4con .more {
        margin: 0 auto;
        margin-top: 30px
    }

    .con5 {
        padding: 80px 0;
        padding-top: 0;
    }

    .con5con {
        max-width: 1550px;
        padding: 0 25px;
        margin: 0 auto;
    }

    .con5box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .con5left {
        width: 62%;
    }

    .con5left ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .con5left ul li {
        width: 48%;
        cursor: pointer;
        border: 2px solid var(--main-color-white);
        transition: var(--main-transition);
        border-radius: 12px;
    }

    .con5left ul li span {
        color: var(--main-color-666);
        font-size: 16px;
        display: block;
        margin-top: 15px;
        margin-bottom: 15px;
        padding: 0 15px;
    }

    .con5left ul li p {
        color: var(--main-color);
        font-weight: bold;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        font-size: 16px;
        margin-bottom: 15px;
        padding: 0 15px;
    }

    .con5left ul li a {
        border-radius: 12px;
    }

    .con5left ul li:hover>a {
        border-radius: 12px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .con5left ul li:hover img {
        transform: scale(1.1);
        border-radius: 12px;
    }

    .con5left ul li:hover {
        border: 2px solid var(--main-color);
    }

    .con5left ul li em {
        font-style: normal;
        padding: 0 15px;
        font-size: 14px;
        color: var(--main-color-666);
        line-height: 25px;
        width: calc(100% - 30px);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        display: block;
        margin-bottom: 15px;
        width: 100%;
    }

    .con5left ul li a {
        display: block;
        overflow: hidden;
    }

    .con5left ul li img {
        transition: var(--main-transition);
        width: 100%;
        height: 270px;
        border-radius: 12px;
    }

    .con5right {
        width: 36%;
    }

    .con5right ul li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
    }

    .con5right ul li a {
        color: var(--main-color-333);
        font-size: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        width: -webkit-fill-available;
    }

    .con5right ul li a:hover {
        color: var(--main-color);
    }

    .con5right ul li span {
        display: block;
        text-align: right;
        font-size: 14px;
        color: var(--main-color-999);
        width: 25%;
    }

    .con5con .more {
        margin: 0 auto;
        margin-top: 30px;
    }

    .foot {
        padding: 50px 0;
        background-color: #191a1e;
    }

    .footer {
        /* padding: 0 25px; */
        margin: 0 auto;
        /* display: flex;
		flex-wrap: wrap; */
        padding: 50px 0 0 0;
        background-color: #191a1e;
        color: white;
    }

    .footerleft {
        width: 220px;
        padding-right: 20px;
        border-right: 1px solid #2c2c2c
    }

    .footerleft ul li {
        display: flex;
        align-items: center;
    }

    .footer_content>div.f_info>div>i {
        font-size: 15px !important;
        color: var(--main-color-white);
        width: 20px !important;
    }

    .footerleft ul li {
        margin-bottom: 10px;
    }

    .footerleft ul li span {
        flex: 1;
        padding-left: 5px;
        color: var(--main-color-white);
        font-size: 14px;
    }

    .footerright {
        flex: 1;
        padding: 0 20px;
        border-right: 1px solid #2c2c2c
    }

    .footercode {
        width: 120px;
        margin-left: 30px;
    }

    .footercode img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

    .footercode p {
        margin: 10px 0;
        text-align: center;
        font-size: 14px;
        color: var(--main-color-white);
    }

    .footerright ul {
        display: flex;
        flex-wrap: wrap;
    }

    .footerright ul li {
        padding: 0 20px;
        border-right: 1px solid #2c2c2c;
        width: 16%;
        margin-bottom: 20px;
    }

    .footerright ul li:last-child {
        border-right: 0 !important;
    }

    .f_info2>div {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        max-width: 1550px;
        flex-wrap: wrap;
    }

    .f_a {
        font-size: 15px;
        color: var(--main-color-white);
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }

    .s_a {
        font-size: 13px;
        text-align: center;
        display: block;
        margin-bottom: 10px;
        color: #ffffff99;
    }

    .aboutus1 {
        padding-top: 15px;
    }
}

@media only screen and (max-width: 996px) {
    .foot {
        padding: 30px 15px;
        background-color: #191a1e;
    }

    .footer {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        color: white;
        background-color: #191a1e;
    }

    .footerleft {
        width: 100%;
        margin-bottom: 25px;
    }

    .footerleft ul li {
        display: flex;
        align-items: center;
    }

    .footer_content>div.f_info>div>i {
        font-size: 15px !important;
        color: var(--main-color-white);
        width: 20px !important;
    }

    .footerleft ul li {
        margin-bottom: 10px;
    }

    .footerleft ul li span {
        flex: 1;
        padding-left: 5px;
        color: var(--main-color-white);
        font-size: 14px;
    }

    .footerright {
        width: 100%;
    }

    .footercode {
        width: 100%;
    }

    .footercode img {
        width: 120px;
        height: 120px;
        object-fit: cover;
    }

    .footercode p {
        margin: 10px 0;
        font-size: 14px;
        color: var(--main-color-white);
    }

    .footerright ul {
        display: flex;
        flex-wrap: wrap;
    }

    .footerright ul li {
        margin-right: 10px;
        margin-bottom: 15px;
    }

    .footerright ul li:last-child {
        border-right: 0 !important;
    }

    .f_a {
        font-size: 15px;
        color: var(--main-color-white);
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }

    .s_a {
        display: none;
    }

    .con5 {
        display: none;
        padding: 30px 15px;
    }

    .con5con {
        margin: 0 auto;
    }

    .con5box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .con5left {
        width: 100%;
    }

    .con5left ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .con5left ul li {
        width: 100%;
        cursor: pointer;
        transition: var(--main-transition);
        margin-bottom: 20px;
        border: 2px solid var(--main-color);
        border-radius: 12px;
    }

    .con5left ul li span {
        color: var(--main-color-666);
        font-size: 14px;
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .con5left ul li p {
        color: var(--main-color);
        font-weight: bold;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        font-size: 14px;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .con5left ul li em {
        font-style: normal;
        padding: 0 15px;
        font-size: 14px;
        color: var(--main-color-666);
        line-height: 28px;
        width: calc(100% - 30px);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        display: block;
        margin-bottom: 15px;
        width: 100%;
    }

    .con5left ul li a {
        display: block;
        overflow: hidden;
    }

    .con5left ul li img {
        transition: var(--main-transition);
        width: 100%;
        border-radius: 12px;
    }

    .con5right {
        width: 100%;
    }

    .con5right ul li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
    }

    .con5right ul li a {
        color: var(--main-color-333);
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        width: -webkit-fill-available;
    }

    .con5right ul li a:hover {
        color: var(--main-color);
    }

    .con5right ul li span {
        display: block;
        text-align: right;
        font-size: 14px;
        color: var(--main-color-999);
        width: 25%;
    }

    .con5con .more {
        margin: 0 auto;
        margin-top: 30px;
    }

    .con4con .more {
        margin: 0 auto;
        margin-top: 30px
    }

    .con4con .more:hover {
        color: #fff;
    }

    .con4 {
        padding: 30px 15px;
    }

    .con4con {
        margin: 0 auto;
    }

    .con4con ul {
        display: flex;
        flex-wrap: wrap;
    }

    .con4con ul li {
        position: relative;
        width: 100%;
        transition: var(--main-transition);
        cursor: pointer;
        margin-bottom: 20px;
    }

    .con4con ul li img {
        width: 100%;
        object-fit: cover;
    }

    .con4con ul li img,
    .con4con ul li .con4pos {
        border-radius: 10px;
    }

    .con4pos {
        width: 100%;
        position: absolute;
        height: 100%;
        z-index: 10;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.5);
        transition: var(--main-transition);
    }

    .con4pos strong {
        display: block;
        color: var(--main-color-white);
        transition: var(--main-transition);
        font-size: 25px;
        font-weight: normal;
        margin-bottom: 20px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        text-align: center;
    }

    .con4pos p {
        font-size: 15px;
        color: var(--main-color-white);
        transition: var(--main-transition);
        padding: 0 5%;
        text-align: center;
        line-height: 25px;
    }

    .con3 {
        padding: 30px 15px;
    }

    .con3con {
        margin: 0 auto;
    }

    .titles {
        display: block;
        text-align: center;
        font-size: 25px;
        color: var(--main-color);
        margin-bottom: 30px;
    }

    .con3con ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .con3con ul li {
        cursor: pointer;
        width: 48%;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .con3con ul li p {
        text-align: center;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        height: 40px;
        line-height: 40px;
        background-color: var(--main-color);
        color: var(--main-color-white);
    }

    .con3con ul li:nth-child(3n) {
        margin-right: 0;
    }

    .con3con ul li img {
        transition: var(--main-transition);
        width: 100%;
        height: 120px;
        object-fit: contain;
    }

    .con3con ul li a {
        display: block;
        overflow: hidden;
    }

    .con3con ul li:hover img {
        transform: scale(1.1);
    }

    .con3con .more {
        margin: 0 auto;
        margin-top: 30px;
    }

    .con1 {
        width: calc(100% - 0px);
        padding: 15px;
        background-color: #f5f5f5;
    }

    .con1con {
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .con1conleft {
        width: 100%;
        margin-bottom: 20px;
    }

    .con1conleft img {
        width: 100%;
        border-radius: 30px;
    }

    .con1conright {
        width: 100%;
    }

    .con1conright ul {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        border-radius: 10px;
    }

    .con1conright ul li {
        width: calc(25% - 0px);
        padding: 10px;
        transition: var(--main-transition);
        cursor: pointer;
        border-radius: 10px;
    }

    .con1conright ul li img {
        width: 35px;
        height: 35px;
        display: block;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .con1conright ul li p {
        text-align: center;
        font-size: 15px;
    }

    .con1conright ul li:hover {
        background-color: var(--main-color);
        /*box-shadow: var(--main-shadow);*/
    }

    .con1conright ul li:hover p {
        color: var(--main-color-white) !important;
    }

    .con2 {
        width: 100%;
        padding: 30px 15px;
    }

    .con2con {
        max-width: 1550px;
        padding: 0 25px;
        margin: 0 auto;
    }

    .mumping_mun {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .mumping_mun li {
        width: 50%;
        margin-bottom: 15px;
    }

    .mumping_mun li p {
        text-align: center;
        color: var(--main-color-999);
        font-size: 14px;
        margin-top: 10px;
    }

    .mun_top {
        display: flex;
        justify-content: center;
    }

    .mun_top h2 {
        font-size: 30px;
        color: var(--main-color);
        margin-right: 10px;
    }

    .mun_top span {
        color: var(--main-color-666);
        font-size: 16px;
    }

    .ml_banner img {
        width: 100%;
        transition: all ease 5s;
        height: 100%;
        object-fit: cover;
    }

    .ml_banner .swiper-slide-active img {
        transform: scale(1.2);
    }

    .bannerpage .swiper-pagination-bullet {
        width: 15px !important;
        height: 15px !important;
    }

    .bannerpos {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .bannerpos h1 {
        font-size: 25px;
        text-align: center;
        color: var(--main-color-white);
        margin-bottom: 20px;
    }

    .bannerpos a:hover {
        color: var(--main-color-white);
        background-color: var(--main-color);
        border: 2px solid var(--main-color);
    }

    .bannerpos a {
        transition: var(--main-transition);
        width: 120px;
        height: 40px;
        text-align: center;
        color: var(--main-color-white);
        line-height: 40px;
        border: 1px solid var(--main-color-white);
        font-size: 14px;
        border-radius: 30px;
    }

    .cover {
        display: none;
    }

    .sou {
        display: none;
    }

    .inbanner {
        width: 100%;
        background-image: url(../images/inbanner.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        /* display: flex;
        align-items: center;
        justify-content: left; */
    }

    .inbanner strong {
        display: block;
        color: var(--main-color-white);
        font-size: 1.5em;
        font-weight: normal;
        position: absolute;
        top: 42%;
    }

    .inside {
        margin: 0 auto;
        padding: 15px;
    }

    .inside p {
        font-size: 15px;
        color: var(--main-color-222);
        line-height: 30px;
        margin-bottom: 10px;
    }

    .copy {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-top: 1px solid #555555;
        background-color: #3b3d40;
        margin-bottom: 60px;
    }

    .copycon {
        text-align: center;
        text-align: center;
        font-size: 13px;
        color: var(--main-color-999);
        margin: 0 auto;
    }

    .copycon a {
        font-size: 13px;
        color: var(--main-color-999);
    }

    .ml_banner {
        width: 100%;
        margin-top: 60px !important;
    }

    .ml_banner img {
        width: 100%;
    }

    .bannerpage .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
    }

    .bannerbtn {
        width: 40px !important;
        height: 40px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--main-color-white);
        font-size: 25px;
        transition: var(--main-transition);
        background: rgba(0, 0, 0, .7);
        background-image: none !important;
    }

    .pchead {
        display: none;
    }

    .pcnav {
        display: none;
    }

    .ml_mb_arrowChange {
        transform: rotate(90deg);
    }

    .ml_mbnav_3 {
        display: none;
    }

    .ml_mbnav_3_item {
        display: flex;
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
        background-color: #efefef;
    }

    .ml_mbnav_3_item>a {
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        color: var(--main-color-666);
        font-size: 14px;
        padding-left: 35px;
    }

    .ml_mb_nav i {
        font-size: 22px !important;
        transition: var(--main-transition);
    }

    .ml_mbnav_2_item {
        display: flex;
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
        background-color: #e3e3e3;
    }

    .ml_mbnav_2_item>a {
        display: block;
        height: 40px;
        width: 100%;
        line-height: 40px;
        color: var(--main-color-666);
        font-size: 14px;
        padding-left: 20px;
    }

    .ml_mbnav_2 {
        display: none;
    }

    .ml_mbnav_1_item>a {
        display: block;
        height: 40px;
        line-height: 40px;
        color: var(--main-color-666);
        font-size: 14px;
        width: 100%;
    }

    .ml_mbnav_1_item {
        display: flex;
        padding: 0 20px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
    }

    .ml_mb_nav {
        width: 100%;
        height: calc(100% - 60px);
        position: fixed;
        top: 60px;
        right: -100%;
        background-color: var(--main-color-white);
        z-index: 100;
        border-top: 1px solid #ccc;
        overflow: scroll;
        padding: 20px 0;
        transition: var(--main-transition);
    }

    .mb_navShow {
        right: 0 !important;
    }

    .hb_fadeout {
        opacity: 0 !important;
    }

    .change2 {
        transform: translateY(-10px) rotate(-45deg);
    }

    .change1 {
        transform: translateY(10px) rotate(45deg);
    }

    .hb span {
        display: block;
        width: 30px;
        height: 1px;
        background-color: var(--main-color-222);
        transition: var(--main-transition);
    }

    .hb {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        height: 20px;
        flex-direction: column;
    }

    .ml_mb_logo img {
        height: 45px;
    }

    .ml_mb_head {
        display: flex;
        height: 60px;
        padding: 0 20px;
        background-color: var(--main-color-white);
        position: fixed;
        top: 0;
        left: 0;
        align-items: center;
        justify-content: space-between;
        /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
        width: 100%;
        z-index: 99;
    }

    .ml_pcheader {
        display: none;
    }
}

.m11_tit2 {
    text-align: center;
}

.m11_tit2 .h2 {
    font-size: 14px;
    /* line-height: 24px; */
    text-align: left;
}

.m11_tit2 .h2 strong {
    display: block;
    font-size: 25px;
    /* line-height: 38px; */
    font-weight: bold;
    margin-bottom: 35px;
    font-weight: normal !important;
}

.m11_tit2 .h2 span {
    display: block;
    opacity: .7;
    margin-top: 5px;
    text-align: left;
}

/*-------------------------------------------------------------------------.m12-------------------------------------------------------------------------*/
.m12_contact1 {
    /*margin-bottom:40px; margin-top:20px;*/
}

.m12_contact1 .list {
    margin-top: 30px;
}

.m12_contact1 .list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.m12_contact1 .list ul li {
    width: calc((100% - 80px) / 3);
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

.m12_contact1 .list ul li .txt {
    padding: 1.56vw 5% 1.04vw 5%;
}

.m12_contact1 .list ul li .txt i {
    display: inline-block;
    text-align: center;
    width: 3.12vw;
    height: 3.12vw;
    line-height: 3.12vw;
    border-radius: 100%;
    background: var(--main-color);
    color: #fff;
    font-size: 1.56vw;
}

.m12_contact1 .list ul li .txt strong {
    display: block;
    font-size: 16px;
    line-height: 1.5em;
    height: 1.5em;
    color: var(--main-color);
    margin: 15px 0;
}

.m12_contact1 .list ul li .txt span {
    display: block;
    font-size: 17px;
    line-height: 1.5em;
    /*height:3em;*/
}

.m12_contact1 .list2 {
    margin-top: 30px;
}

.m12_contact2 {
    overflow: hidden;
    margin-top: 70px;
}

.m12_contact2 .list {
    margin-top: 20px;
}

.m12_contact2 .list ul {}

.m12_contact2 .message2 {}

.m12_contact2 form {}

.m12_contact2 form ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
}

.m12_contact2 form ul li {
    width: 48%;
    margin: 0 0 17px 4%;
}

.m12_contact2 form ul li.li1 {
    width: 100%;
    margin-left: 0;
}

.m12_contact2 form ul li.li2 {
    width: 100%;
    margin-left: 0;
    text-align: center;
}

.m12_contact2 form ul li:nth-child(1),
.m12_contact2 form ul li:nth-child(3),
.m12_contact2 form ul li:nth-child(6) {
    margin-left: 0;
}

.m12_contact2 form .h3 {
    font-size: 14px;
    line-height: 1.5em;
    display: none;
}

.m12_contact2 form .h3 font {
    color: #f00;
}

.m12_contact2 form .input_text {
    border: 1px solid #f1f1f1;
    background: #fff;
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
    width: calc(100% - 0px);
}

.m12_contact2 form textarea {
    border: 1px solid #f1f1f1;
    background: #fff;
    height: 100px;
    line-height: 24px;
    padding: 10px 10px;
    width: calc(100% - 0px);
}

.m12_contact2 form .yzm {
    height: 47px;
}

.m12_contact2 form .input_text1 {
    border: 1px solid #f1f1f1;
    background: #fff;
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
    width: calc(100% - 152px);
    float: left;
}

.m12_contact2 form #sendcode2 {
    border: 1px solid #fff;
    background: var(--main-color);
    color: #fff;
    height: 47px;
    line-height: 45px;
    width: 120px;
    cursor: pointer;
    transition: all .3s ease;
    float: right;
}

.m12_contact2 form #sendcode2:hover {
    background: var(--third-color);
    color: #fff;
}

.m12_contact2 form #sendcode2[disabled] {
    background: #999;
}

.m12_contact2 form .input_button {
    border: 1px solid #fff;
    background: var(--main-color);
    color: #fff;
    height: 47px;
    line-height: 45px;
    width: 100%;
    /*max-width:200px;*/
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    font-size: 16px;
}

.m12_contact2 form .input_button:hover {
    background: var(--third-color);
    color: #fff;
}

.m12_contact2 form .input_button span {
    display: block;
    position: relative;
    z-index: 2;
}

@media(max-width:999px) {
    .m12_contact1 .list ul {
        display: block;
    }

    .m12_contact1 .list ul li {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .m12_contact1 .list ul li .txt {
        padding: 15px 5% 10px 5%;
    }

    .m12_contact1 .list ul li .txt i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 30px;
        margin-bottom: 10px;
    }

    .m12_contact1 .list ul li .txt strong {
        font-size: 16px;
        line-height: 1.5em;
        height: auto;
        margin-bottom: 5px;
    }

    .m12_contact1 .list ul li .txt span {
        font-size: 18px;
        line-height: 1.5em;
        height: auto;
    }

    .m12_contact2 form ul {
        display: block;
    }

    .m12_contact2 form ul li {
        width: 48%;
        margin: 0;
        float: left;
        margin-right: 4%;
    }

    .m12_contact2 form ul li:nth-child(2) {
        margin-right: 0;
    }

    .m12_contact2 form ul li.li2 {
        text-align: center;
    }

    .m12_contact2 form .h3 {
        font-size: 14px;
        line-height: 1.8em;
    }

    .m12_contact2 form .input_text {
        font-size: 14px;
        display: block;
        padding-left: 15px;
        outline: none;
        height: 44px;
        width: 100%;
        margin-bottom: 17px;
        border: 1px solid #ededed;
        border-radius: 4px;
    }

    .m12_contact2 form textarea {
        height: 100px;
        line-height: 38px;
        padding: 0 10px;
        width: calc(100% - 0px);
        font-size: 14px;
    }

    .m12_contact2 form .yzm {
        height: 40px;
    }

    .m12_contact2 form .input_text1 {
        height: 38px;
        line-height: 38px;
        padding: 0 10px;
        width: calc(100% - 132px);
        font-size: 14px;
    }

    .m12_contact2 form #sendcode2 {
        height: 40px;
        line-height: 38px;
        width: 100px;
        font-size: 14px;
    }

    .m12_contact2 form .input_button {
        height: 40px;
        line-height: 38px;
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        margin-top: 10px;
    }
}

.m11_insidebg .m13_inside .m12_inside .m12_inside_rt:nth-child(2) {
    padding: 15px 0;
    margin: 0 25px;
    /*width: 95%;*/
}

.m11_insidebg .m13_inside .m12_inside .m12_inside_rt:nth-child(2)>p:nth-child(1) {
    font-size: 15px;
    line-height: 30px;
}

.ml_sidebar ul li {
    width: 65px;
    height: 65px;
    background-color: var(--main-color);
    text-align: center;
    color: #fff;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.ml_sidebar ul li i {
    font-size: 30px !important;
}

.m1_side_kefu2 ul li .ico span {
    font-size: 12px !important;
    display: block;
}

.aboutus1 {
    padding-top: 15px;
}

.m11_insidebg.wapper3>.m11_inside>div>div.left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

.m11_insidebg.wapper3>.m11_inside>div>div.left_inside_right_top::after {
    position: absolute;
    width: 90px;
    height: 2px;
    content: '';
    bottom: -1px;
    left: 0;
    background-color: var(--main-color);
}

@media(max-width:999px) {
    .m11_insidebg .m13_inside .m12_inside .m12_inside_rt:nth-child(2) {
        margin: 0;
    }

    .m1_fheight {
        height: 70px;
    }

    .f_info {
        width: 100%;
        padding-right: 0;
        margin-bottom: 25px;
    }

    .f_info2 {
        margin-top: 0;
        /* margin-bottom: 60px; */
        background-color: #3b3d40;
        padding: 15px;
        width: 100%;
    }

    .f_info2>div {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
        max-width: 1550px;
    }

    .footer_content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 1em;
        width: calc(100% - 30px);
        padding: 30px 15px;
    }

    .f_info>div {
        margin-bottom: 10px;
        font-size: 14px;
        display: flex;
        justify-content: left;
        align-items: center;
        text-align: left;
    }

    .f_nav {
        width: 100%;
    }

    .f_nav ul li {
        /* flex-grow: 1; */
        /* flex-shrink: 1; */
        margin-right: 10px;
        margin-bottom: 15px;
    }

    .f_nav ul li a {
        display: block;
        font-size: 0.9em;
        color: #ffffff99;
    }

    .f_nav>ul>li>a {
        font-size: 15px;
        color: var(--main-color-white);
        margin-bottom: 30px;
    }

    .f_nav ul li ul {
        display: none;
    }

    .footer_img {
        display: none;
        width: 100%;
        margin-left: 0;
    }

    .footer_img p {
        font-size: 14px;
        margin: 10px 0;
    }

    .footer_img img {
        width: 25%;
    }
}

.title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.title:hover {
    cursor: pointer;
}

.m12_insidebg {
    min-height: 65vh;
    /* margin: 0 25px; */
}

.m12_inside {
    display: flex;
    justify-content: space-between;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 25px;
}

.m12_inside .m12_inside_lt {
    width: 250px;
}

.m12_inside .m12_inside_rt {
    width: calc(100% - 250px);
    margin-left: 40px;
}

@media(max-width:999px) {
    .m12_inside .m12_inside_lt {
        width: 100%;
    }

    .m12_inside .m12_inside_rt {
        width: 100%;
        margin-left: 0;
    }

    .inbarbg {
        /* height: 8vh; */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .f_nav>ul {
        display: flex;
        flex-wrap: wrap;
    }
}

.m2_side_a {
    width: auto;
    background: #fff;
    /*box-shadow:0 0 15px rgba(0,0,0,.1); border:1px solid #eee;*/
    margin-bottom: 30px;
    position: relative;
    z-index: 11;
    overflow: hidden;
}

/* .m2_side_a.active{ position:fixed; top:150px;} */
.m2_side_a>ul {}

/* .m2_side_a.active>ul{ max-height:calc(100vh - 100px); overflow-y:auto;} */
.m2_side_a h2 {
    font-size: 20px;
    line-height: 60px;
    padding-left: 20px;
    font-weight: normal;
    background: var(--main-color);
    color: #fff;
    width: 100%;
    border-radius: 8px;
}

.m2_side_a h2 strong {
    display: block;
    font-size: 24px;
    line-height: 28px;
}

.m2_side_a h2 span {
    display: block;
    margin-top: 6px;
    opacity: .7;
}

.m2_side_a ul li {}

.m2_side_a>ul>li:nth-child(1) {
    /* margin-bottom:10px; border:none;*/
}

.m2_side_a>ul>li {
    border-bottom: 1px solid #eee;
}

.m2_side_a>ul>li:last-child {}

.m2_side_a ul li a {
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 7px 40px 7px 35px;
    background: url(../images/ico_list1.png) left 10px center no-repeat;
}

.m2_side_a ul li a:hover,
.m2_side_a ul li.hover>span a {
    color: #fff;
    background-color: var(--main-color);
    background-image: url(../images/ico_list1_hover2.png);
}

.m2_side_a ul li.active>span a {}

.m2_side_a ul li span {
    display: block;
    position: relative;
}

.m2_side_a ul li span>i {
    width: 40px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    cursor: pointer;
    background: url(../images/ico_list3.png) center no-repeat;
}

.m2_side_a ul li.active>span>i {
    background-image: url(../images/ico_list3_hover.png);
}

.m2_side_a ul li.hover span>i {
    background-image: url(../images/ico_list4.png);
}

.m2_side_a ul li.hover.active>span>i {
    background-image: url(../images/ico_list4_hover.png);
}

.m2_side_a ul li ul {
    padding-left: 20px;
    padding-bottom: 10px;
    display: none;
}

.m2_side_a ul li ul li {}

.m2_side_a ul li ul li a {
    padding-top: 7px;
    padding-bottom: 7px;
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 {
    margin-top: 20px;
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li {
    float: left;
    width: calc((100% - 70px)/3);
    margin: 0 0 35px 35px;
    text-align: center;
    background: #f0f0f0;
    /*border-radius:10px;*/
    overflow: hidden;
    /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li:nth-child(3n-2) {
    margin-left: 0;
    clear: left;
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li .nr_box {
    background-color: #fff;
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li .nr_box>.imgbg {
    /*padding: 15px 15px 0 15px;*/
    height: 230px;
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li .img {
    padding-bottom: 64%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
    background: #f9f9f9;
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li:hover .img img {
    /*transform:scale(1.1);*/
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li .txtbg {
    position: relative;
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li .txtbg:before {
    content: "";
    width: 100%;
    height: 100%;
    /*background:var(--main-color);*/
    position: absolute;
    left: 0;
    top: 0;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    transform: scaleY(0);
    transform-origin: 50% 100% 0;
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li:hover .txtbg:before {
    /*transform:scaleY(1); transform-origin:50% 0 0;*/
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li .txt {
    color: #222;
    z-index: 2;
    transition: all ease 0.4s;
    text-align: center;
    background-color: #f0f0f0;
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li .txt .h2 {
    font-size: 16px;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding: 15px 0;
    background-color: #f0f0f0;
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li:hover .txt .h2 {
    color: #fff;
    background-color: var(--main-color);
}

.m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li .txt .h3 {
    font-size: 14px;
    color: #666;
    line-height: 25px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media(max-width:999px) {
    .m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li {
        float: left;
        width: calc((100% - 10px)/2);
        margin: 0 0 20px 10px;
    }

    .m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li:nth-child(3n-2) {
        margin-left: 10px;
        clear: none;
    }

    .m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li:nth-child(2n-1) {
        margin-left: 0;
        clear: left;
    }

    .m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li .txt {
        padding: 0 15px 15px 15px;
    }

    .m12_insidebg>div>div>div.m12_inside_rt>div>.inside_picList1 ul li .txt .h2 {
        font-size: 14px;
        line-height: 1.6em;
        height: 1.6em;
    }

    .m12_inside {
        display: block;
    }

    .m12_inside_lt {
        float: none;
        width: 100%;
        /*margin-top:-160px;*/
    }

    .m12_inside_rt {
        float: none;
        width: 100%;
    }

    .m12_insidebg {
        min-height: 65vh;
        padding: 30px 15px;
        margin: 0;
    }
}

.m11_insidebg .m13_inside .left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
    margin: 0 25px;
}

.m11_insidebg .m13_inside .left_inside_right_top::after {
    position: absolute;
    width: 90px;
    height: 2px;
    content: '';
    bottom: -1px;
    left: 0;
    background-color: var(--main-color);
}

.m12_insidebg>div>div.m12_inside_rt>div.left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

.m12_insidebg>div>div.m12_inside_rt>div.left_inside_right_top::after {
    position: absolute;
    width: 90px;
    height: 2px;
    content: '';
    bottom: -1px;
    left: 0;
    background-color: var(--main-color);
}

.m11_insidebg>div>.m11_inside>div>div.left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

.m11_insidebg>div>.m11_inside>div>div.left_inside_right_top::after {
    position: absolute;
    width: 90px;
    height: 2px;
    content: '';
    bottom: -1px;
    left: 0;
    background-color: var(--main-color);
}

.m11_insidebg>div>div>div.m11_inside_rt>div>div.m12_contact1>div.left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

.m11_insidebg>div>div>div.m11_inside_rt>div>div.m12_contact1>div.left_inside_right_top::after {
    position: absolute;
    width: 90px;
    height: 2px;
    content: '';
    bottom: -1px;
    left: 0;
    background-color: var(--main-color);
}

.m11_insidebg .m13_inside {
    width: 100%;
}

.m11_insidebg .m13_inside>.content>.m10_con01bg {
    max-width: 100%;
}

.m11_insidebg .m13_inside>.m12_inside {
    padding: 0 25px;
}

.m12_insidebg .m13_inside {
    width: 100%;
    max-width: 1550px;
}

@media(max-width:999px) {
    .m11_insidebg .m13_inside .left_inside_right_top {
        margin: 0;
    }

    .m11_insidebg .m13_inside {
        width: calc(100% - 0px);
        padding: 0;
    }

    .m12_insidebg .m13_inside {
        width: calc(100% - 30px);
        padding: 30px 15px;
    }

    .m13_inside {
        padding: 0;
    }

    .m12_insidebg>div>div.m12_inside_rt>div>div.left_inside_right_top {
        font-size: 24px;
        color: var(--main-color);
        position: relative;
        padding-bottom: 15px;
        border-bottom: 1px solid #ededed;
    }

    .m11_insidebg>div>.m11_inside>div>div.left_inside_right_top {
        font-size: 1.3em;
        color: var(--main-color);
        position: relative;
        padding-bottom: 0.5em;
        border-bottom: 1px solid #ededed;
    }

    .m11_insidebg>div>div>div.m11_inside_rt>div>div.m12_contact1>div.left_inside_right_top {
        font-size: 1.3em;
        color: var(--main-color);
        position: relative;
        padding-bottom: 0.5em;
        border-bottom: 1px solid #ededed;
    }

    .footer>div.footer_content>div.f_nav>ul>li>ul {
        display: none;
    }

    .inbannerbg>div>strong {
        color: var(--main-color);
        font-size: 25px;
        font-family: ' ';
    }

    .m11_insidebg>div>.m11_inside>div.left_inside_right_top {
        font-size: 24px;
        color: var(--main-color);
        position: relative;
        padding-bottom: 15px;
        border-bottom: 1px solid #ededed;
    }

    .m11_insidebg>div>.m11_inside>div.left_inside_right_top::after {
        position: absolute;
        width: 90px;
        height: 2px;
        content: '';
        bottom: -1px;
        left: 0;
        background-color: var(--main-color);
    }

    .m11_insidebg>div>div>div.m11_message1>div.m11_tit2>div.h2 {
        text-align: center;
        color: #000;
        font-weight: normal;
        font-size: 30px;
        margin-bottom: 10px;
    }

    .m11_insidebg>div>div>div.m11_message1>div.m11_tit2>div.h3 {
        text-align: center;
        font-weight: normal;
        font-size: 16px;
        color: #303133;
        margin-bottom: 20px;
    }

    .m11_insidebg>div>div>div.m11_message1 {
        padding: 20px 0;
    }

    .m11_insidebg>div>div>div.m11_message1>div.list2>div>form>ul>li:nth-child(6)>input {
        max-width: 100%;
        font-size: 16px;
        margin-top: 10px;
        display: block;
        width: 200px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        color: var(--main-color-white);
        background-color: var(--main-color);
        border-radius: 4px;
        margin: 0 auto;
        margin-top: 40px;
    }

    .inside_news4 ul li .imgbg {
        width: 100%;
    }

    .inside_news4 ul li .txtbg {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 30px;
        z-index: 9;
    }

    .inside_news4 ul li .nr_box {
        display: flex;
        -ms-flex-pack: center;
        -ms-flex-align: center;
        align-items: center;
        flex-direction: column-reverse;
        border: 5px solid #eee;
        padding: 20px;
    }

    .inside_news4 ul li .txt {
        padding-right: 5%;
        color: #666;
        position: relative;
    }

    .inside_news4 ul li .img {
        position: relative;
        padding-bottom: 49%;
        overflow: hidden;
    }
}

@media(min-width:999px) {
    .wapper1 {
        width: 100%;
        margin: 0 auto;
        min-width: 100px;
    }

    .wapper4 {
        width: 100%;
        max-width: 1550px;
        margin: 0 auto;
    }

    .wapper5 {
        padding: 0 15px;
        width: 100%;
        max-width: 1550px;
        margin: 0 auto;
    }

    .f_nav {
        width: 70vw;
    }

    .f_nav>ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        flex-wrap: nowrap;
    }

    .f_nav ul li {
        /* flex-grow:1; */
        /* flex-shrink:1; */
        margin-bottom: 10px;
    }

    .f_nav>ul>li {
        min-height: 130px;
        padding: 0 0.5em;
        margin-bottom: 1em;
        text-align: center;
        border-right: 1px solid #2c2c2c;
        width: calc(100% - 1em);
    }

    .footer_img img {
        width: 100%;
    }

    .footer_img p {
        font-size: 14px;
        margin: 10px 0;
        text-align: center;
    }

    .footer_content>div .f_info {
        border-right: 1px solid #2c2c2c;
        padding-right: 20px;
        width: 17%;
    }

    .footer_content>div .f_info>div {
        display: flex;
        align-items: center;
    }

    .footer_content>div .f_info>div:nth-child(1)>i {
        font-size: 15px;
        width: 15px;
    }

    .footer_content>div .f_info>div:nth-child(2)>i {
        font-size: 15px;
        width: 15px;
    }

    .footer_content>div .f_info>div:nth-child(3)>i {
        font-size: 15px;
        width: 24px;
    }

    .footer_content {
        display: flex;
        justify-content: center;
    }

    .footer_content>div {
        display: flex;
        justify-content: space-between;
        padding: 0 25px;
        max-width: 1550px;
    }

    .footer_content>div .footer_img {
        border-left: 1px solid #2c2c2c;
        padding-left: 20px;
        text-align: center;
        width: 11%;
        display: none;
    }

    .f_info2 {
        background-color: #3b3d40;
        margin-top: 54px;
        padding: 15px;
        width: calc(100% - 0px);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .weizhi {
        font-size: 14px;
        line-height: 60px;
        color: #000;
    }

    .inbarbg {
        height: 79px;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1500px;
        margin: 0 auto;
    }

    .m10_con01bg {
        max-width: 1550px;
        margin: 0 auto;
    }

    /*footnav*/
    .f_nav ul li a {
        display: block;
        font-size: 13px;
        color: #ffffff99;
        /* border-right: 1px solid #2c2c2c; */
    }

    .f_nav>ul>li:nth-last-child(1) {
        border-right: 0;
    }

    .f_nav>ul>li>a {
        font-size: 15px;
        margin-bottom: 30px;
        color: #fff;
    }

    .m1_side_kefu ul li .h2 {
        font-size: 12px;
        line-height: 1em;
        margin-top: 10px;
        text-align: center;
    }

    .m11_head {
        height: 80px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        max-width: 1550px;
        padding: 0 25px;
        margin: 0 auto;
    }

    .m10_con01bg.wapper3>div>div>div>div>div.content>div>ul>li {
        cursor: pointer;
        width: calc((100% - 100px) / 3);
        box-shadow: var(--main-shadow);
        margin-bottom: 20px;
        margin-right: 20px;
        height: 264px;
    }

    .inside_news4 ul li .txtbg {
        width: 50%;
    }

    .inside_news4 ul li .imgbg {
        width: 50%;
    }

    .inside_news4 ul li .nr_box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        border: 5px solid #eee;
        padding: 20px;
    }

    .inside_news4 ul li:nth-child(2n) .nr_box {
        flex-direction: row-reverse;
    }

    .inside_news4 ul li:nth-child(2n) .txt {
        padding-left: 5%;
        color: #666;
        position: relative;
    }

    .inside_news4 ul li:nth-child(2n + 1) .txt {
        padding-right: 5%;
        color: #666;
        position: relative;
    }

    .inside_news4 ul li .txt .time {
        font-size: 16px;
        line-height: 24px;
        color: #000;
        position: relative;
    }
}

.f_info>div {
    margin-bottom: 10px;
    font-size: 14px;
}



.f_info2 p {
    color: var(--main-color-999);
    font-size: 14px;
    margin-right: 5px;
}

.f_info2 p>a {
    color: var(--main-color-999);
    font-size: 14px;
}

@media(max-width:1550px) {
    .inbarbg .inbar {
        margin: 0 25px;
    }
}

.inside_news4 ul li .txt .h3>a {
    transition: var(--main-transition);
    color: #303133;
    border: 1px solid #ccc;
    display: block;
    padding: 8px 20px;
    width: max-content;
    margin: 30px auto 0 auto;
    cursor: pointer;
    border-radius: 8px;
}

.inside_news4 ul li .txt .h3>a:hover {
    background-color: var(--main-color) !important;
    color: var(--main-color-white) !important;
    border: 1px solid var(--main-color);
}

.m14_inside {
    padding: 0 25px;
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
}

.m15_inside {
    padding: 0 25px;
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
}

.m15_inside .m1_side_a {
    /*width:238px;*/
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border: 1px solid #eee;
    margin-bottom: 30px;
    position: relative;
    z-index: 11;
    overflow: hidden;
}

/* .m15_inside .m1_side_a.active{ position:fixed; top:150px;} */
.m15_inside .m1_side_a>ul {}

/* .m15_inside .m1_side_a.active>ul{ max-height:calc(100vh - 100px); overflow-y:auto;} */
.m15_inside .m1_side_a h2 {
    font-size: 20px;
    line-height: 60px;
    /*padding:20px 15px;*/
    padding-left: 20px;
    font-weight: normal;
    background: var(--main-color);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    /*letter-spacing:2px;*/
}

.m15_inside .m1_side_a h2 strong {
    display: block;
    font-size: 24px;
    line-height: 28px;
}

.m15_inside .m1_side_a h2 span {
    display: block;
    margin-top: 6px;
    opacity: .7;
}

.m15_inside .m1_side_a>ul>li:last-child {}

.m15_inside .m1_side_a ul li a {
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 7px 40px 7px 35px;
    background: none;
}

.m15_inside .m1_side_a ul li a:hover,
.m15_inside .m1_side_a ul li.hover>span a {
    color: #fff;
    background-color: var(--main-color) !important;
    background-image: none;
}

.m15_inside .m1_side_a ul li.active>span a {}

.m15_inside .m1_side_a ul li span {
    display: block;
    position: relative;
}

.m15_inside .m1_side_a ul li span>i {
    width: 40px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    cursor: pointer;
    background: none;
}

.m15_inside .m1_side_a ul li.active>span>i {
    background-image: none;
}

.m15_inside .m1_side_a ul li.hover span>i {
    background-image: none;
}

.m15_inside .m1_side_a ul li.hover.active>span>i {
    background-image: none;
}

.m15_inside .m1_side_a ul li ul {
    padding-left: 20px;
    padding-bottom: 10px;
    display: none;
}

.m15_inside .m1_side_a ul li ul li {}

.m15_inside .m1_side_a ul li ul li a {
    padding-top: 7px;
    padding-bottom: 7px;
}

.m15_inside .m11_news1_rt>.content>.left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
    /* margin: 0 25px; */
}

.m15_inside .m11_news1_rt>.content>.left_inside_right_top::after {
    position: absolute;
    width: 90px;
    height: 2px;
    content: '';
    bottom: -1px;
    left: 0;
    background-color: var(--main-color);
}

.m14_inside .m11_news1_rt .m11_newsdetail .left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

.m14_inside .m11_news1_rt .m11_newsdetail .left_inside_right_top::after {
    position: absolute;
    width: 90px;
    height: 2px;
    content: '';
    bottom: -1px;
    left: 0;
    background-color: var(--main-color);
}

@media(max-width:999px) {
    .m15_inside {
        padding: 30px 15px;
    }

    .m15_inside .m1_side_a {
        box-shadow: none;
    }

    .m15_inside .m1_side_a>ul>li {
        display: block;
        border-bottom: 0;
        width: calc(100% - 0px);
    }

    .m15_inside .m1_side_a>ul>li:nth-child(1) {
        height: 60px;
        padding-left: 20px;
        background-color: var(--main-color);
        display: block;
        width: calc(100% - 0px);
        line-height: 60px;
        color: var(--main-color-white);
        font-weight: normal;
        font-size: 20px;
    }

    .m15_inside .m1_side_a>ul>li:nth-child(n + 2) span a {
        height: 40px;
        margin-top: 3px;
        line-height: 40px;
        font-size: 14px;
        background-color: #eeeeee;
        color: var(--main-color-fontColor);
        padding: 0;
        padding-left: 20px;
    }

    .m15_inside .m1_side_a>ul>li.hover:nth-child(n + 2) span a {
        background-color: var(--main-color) !important;
        color: var(--main-color-white) !important;
    }

    .m1_side_a h2:nth-child(1) {
        display: none;
    }

    .m1_side_a h2:nth-child(2) {
        display: flex;
        border-radius: 8px;
    }

    .m1_side_a ul li a {
        background: none;
        padding: 5px 15px;
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        color: var(--main-color-p_color);
    }

    .m1_side_a ul li.hover>span a {
        color: #fff;
        background: none;
        background-color: var(--main-color);
    }

    .m1_side_a>ul>li:nth-child(1) {
        border-bottom: 0;
    }

    .m1_side_a h2 {
        font-size: 16px;
        line-height: 45px;
        font-weight: normal;
        background: var(--main-color);
        color: #fff;
        border-bottom: 0;
        display: flex;
        justify-content: left;
        align-items: center;
        text-align: left;
    }

    .m1_side_a ul>li h2>i {
        display: block;
        margin-top: 1px;
        cursor: pointer;
        transition: all ease 0.4s;
    }

    .m14_inside {
        padding: 0 15px;
    }

    .inside_news4 ul li .txt .h3 {
        margin-bottom: 0;
        font-size: 16px;
    }

    .m15_inside .m11_news1_rt>.content>.left_inside_right_top {
        font-size: 24px;
        color: var(--main-color);
        position: relative;
        padding-bottom: 15px;
        border-bottom: 1px solid #ededed;
    }

    .inbarbg .inbar {
        margin: 0;
    }

    .footer_content>div .f_info>div:nth-child(1)>i {
        font-size: 15px;
        width: 15px;
    }

    .footer_content>div .f_info>div:nth-child(2)>i {
        font-size: 15px;
        width: 15px;
    }

    .footer_content>div .f_info>div:nth-child(3)>i {
        font-size: 15px;
        width: 15px;
    }

    .m15_inside .m1_side_a h2 {
        display: block;
        padding-left: 0;
        background: none;
    }

    .m11_inside .m1_side_a h2 {
        display: block;
        padding-left: 0;
        background: none;
    }

    .m11_inside .m1_side_a>ul>li:nth-child(1) {
        height: 60px;
        padding-left: 20px;
        background-color: var(--main-color);
        display: block;
        width: calc(100% - 20px);
        line-height: 60px;
        color: var(--main-color-white);
        font-weight: normal;
        font-size: 20px;
    }

    .m11_inside .m1_side_a>ul>li:nth-child(n + 2) span a {
        height: 40px;
        margin-top: 3px;
        line-height: 40px;
        font-size: 14px;
        background-color: #eeeeee;
        color: var(--main-color-fontColor);
        padding: 0;
        padding-left: 20px;
    }

    .m11_inside .m1_side_a>ul>li.hover:nth-child(n + 2) span a {
        background-color: var(--main-color-white) !important;
        color: var(--main-color-p_color) !important;
    }

    .m11_inside .m1_side_a>ul>li {
        display: block;
        border-bottom: 0;
        width: calc(100% - 20px);
    }

    .m11_inside .m1_side_a h2 {
        font-size: 20px;
        line-height: 60px;
        padding-left: 20px;
        font-weight: normal;
        background: none;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, .5);
    }
}

.m13_inside .m12_inside .m12_inside_lt {
    /*width:238px;*/
    background: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 11;
    overflow: hidden;
}

/* .m13_inside .m12_inside .m12_inside_lt.active{ position:fixed; top:150px;} */
.m13_inside .m12_inside .m12_inside_lt>ul {}

/* .m13_inside .m12_inside .m12_inside_lt.active>ul{ max-height:calc(100vh - 100px); overflow-y:auto;} */
.m13_inside .m12_inside .m12_inside_lt h2 {
    font-size: 20px;
    line-height: 60px;
    /*padding:20px 15px;*/
    padding-left: 20px;
    font-weight: normal;
    background: var(--main-color);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    /*letter-spacing:2px;*/
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.m13_inside .m12_inside .m12_inside_lt h2 strong {
    display: block;
    font-size: 24px;
    line-height: 28px;
}

.m13_inside .m12_inside .m12_inside_lt h2 span {
    display: block;
    margin-top: 6px;
    opacity: .7;
}

.m13_inside .m12_inside .m12_inside_lt ul li {}

.m13_inside .m12_inside .m12_inside_lt>ul>li:nth-child(1) {
    /* margin-bottom:10px; border:none;*/
}

.m13_inside .m12_inside .m12_inside_lt>ul>li {
    border-bottom: 1px solid #eee;
}

.m13_inside .m12_inside .m12_inside_lt>ul>li:last-child>a {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.m13_inside .m12_inside .m12_inside_lt ul li a {
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 7px 40px 7px 35px;
    background: none;
    background-color: #eeeeee;
}

.m13_inside .m12_inside .m12_inside_lt ul li a:hover,
.m13_inside .m12_inside .m12_inside_lt ul li.hover a {
    color: #fff;
    background-color: var(--main-color);
    background-image: none;
}

.m13_inside .m12_inside .m12_inside_lt ul li.active>span a {}

.m13_inside .m12_inside .m12_inside_lt ul li span {
    display: block;
    position: relative;
}

.m13_inside .m12_inside .m12_inside_lt ul li span>i {
    width: 40px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    cursor: pointer;
    background: none;
}

.m13_inside .m12_inside .m12_inside_lt ul li.active>span>i {
    background-image: none;
}

.m13_inside .m12_inside .m12_inside_lt ul li.hover span>i {
    background-image: none;
}

.m13_inside .m12_inside .m12_inside_lt ul li.hover.active>span>i {
    background-image: none;
}

.m13_inside .m12_inside .m12_inside_lt ul li ul {
    padding-left: 20px;
    padding-bottom: 10px;
    display: none;
}

.m13_inside .m12_inside .m12_inside_lt ul li ul li {}

.m13_inside .m12_inside .m12_inside_lt ul li ul li a {
    padding-top: 7px;
    padding-bottom: 7px;
}

.m13_inside .m11_news1_rt>.content>.left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
    margin: 0 25px;
}

.m13_inside .m11_news1_rt>.content>.left_inside_right_top::after {
    position: absolute;
    width: 90px;
    height: 2px;
    content: '';
    bottom: -1px;
    left: 0;
    background-color: var(--main-color);
}

@media(max-width:999px) {
    .m13_inside .m11_news1_rt>.content>.left_inside_right_top {
        font-size: 24px;
        color: var(--main-color);
        position: relative;
        padding-bottom: 15px;
        border-bottom: 1px solid #ededed;
    }

    .m13_inside .m12_inside .m12_inside_lt ul li {
        margin-top: 3px;
    }

    .m13_inside .m12_inside .m12_inside_lt ul li a {
        padding: 10px 0 10px 20px;
        font-size: 14px;
        line-height: 22px;
        background-color: #eeeeee;
    }
}

.inside_download1 ul {
    padding: 20px 0;
}

.inside_download1 .left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

.inside_download1 .left_inside_right_top::after {
    position: absolute;
    width: 90px;
    height: 2px;
    content: '';
    bottom: -1px;
    left: 0;
    background-color: var(--main-color);
}

.m16_inside {
    padding: 15px 25px;
    width: calc(100% - 50px);
    max-width: 1550px;
    margin: 0 auto;
}

.query_div {
    margin-top: 65px;
    width: 150px;
    height: 40px;
    line-height: 40px;
    display: block;
    background-color: var(--main-color);
    text-align: center;
    border-radius: 8px;
}

.query {
    font-size: 14px;
    color: var(--main-color-white);
}


/*pro1*/
.m16_inside .index_product1 {}

.m16_inside .index_product1 ul li {
    float: left;
    width: calc((100% - 60px) / 4);
    margin: 0 10px 20px 10px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
}

.m16_inside .index_product1 ul li:nth-child(4n - 3) {
    margin-left: 0;
}

.m16_inside .index_product1 ul li:nth-child(4n) {
    margin-right: 0;
}

.m16_inside .index_product1 ul li .nr_box {
    /*border:1px solid #eee; border-radius:10px;*/
    overflow: hidden;
    transition: all .3s ease;
    border-radius: 12px;
}

.m16_inside .index_product1 ul li .nr_box .imgbg {
    height: 220px;
    overflow: hidden;
}

.m16_inside .index_product1 ul li:hover .nr_box {
    /*border-color:var(--main-color); box-shadow:0 0 10px rgba(0,0,0,.1);*/
}

.m16_inside .index_product1 ul li .img {
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    /*background:#f9f9f9;*/
}

.m16_inside .index_product1 ul li .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*margin:auto auto;*/
    height: 50%;
    text-align: center;
    margin: 0 auto;
    transition: all .3s ease;
}

.m16_inside .index_product1 ul li:hover .img img {
    transform: scale(1.1);
}

.m16_inside .index_product1 ul li .txtbg {
    background: none;
}

.m16_inside .index_product1 ul li .txt {
    padding: 10px 0;
    /*background-color: var(--main-color);*/
}

.m16_inside .index_product1 ul li .txt .h2 {
    font-size: 16px;
    line-height: 1.5em;
    height: 1.5em;
    color: #303133;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.m16_inside .index_product1 ul li:hover .txt .h2 {
    /*color:var(--main-color);*/
}

.m16_inside .index_product1 ul li .txt .h3 {
    display: none;
}

@media(max-width:999px) {
    .index_product1 ul li .img img {
        height: 100%;
    }

    .m16_inside .index_product1 ul li {
        width: calc((100% - 40px) / 2);
        margin: 0 10px;
    }

    .m16_inside .index_product1 ul li .txt {
        padding: 10px 5%;
    }

    .m16_inside .index_product1 ul li .txt .h2 {
        font-size: 14px;
        line-height: 1.5em;
    }

    .m14_inside .m11_inside_rt .content .inside_product1 ul li {
        float: left;
        width: calc(100% / 2);
        text-align: center;
    }

    .m14_inside .m11_inside_rt .content .inside_product1 ul li .nr_box {
        padding: 15px;
    }
}

.m14_inside .m11_inside_rt .left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

.m14_inside .m11_inside_rt .left_inside_right_top::after {
    position: absolute;
    width: 90px;
    height: 2px;
    content: '';
    bottom: -1px;
    left: 0;
    background-color: var(--main-color);
}

.m14_inside .m11_inside_rt .content {
    padding: 20px 0;
}

.m11_con01bg .m10_con01 .index_product1 ul li .nr_box .imgbg {
    height: 236px;
    overflow: hidden;
}

.m11_insidebg .m13_inside>.m12_inside .m12_inside_lt {
    width: 250px;
}

.m11_insidebg .m13_inside>.m12_inside .m12_inside_rt:nth-child(2) {
    padding: 20px 0 50px 40px;
    margin: 0;
    width: calc(100% - 250px);
}

.m11_insidebg .m13_inside>.m12_inside .m12_inside_rt>.left_inside_right_top {
    margin: 0;
}

.m11_insidebg .m13_inside>.m12_inside .m12_inside_rt .inside {
    padding: 15px 0;
}

.m11_insidebg .m13_inside>.m12_inside .m12_inside_rt .inside p {
    line-height: 2em;
    font-size: 14px;
    color: var(--main-color-fontColor);
    margin-bottom: 10px;
}

.m11_insidebg .m14_inside>.m11_inside_lt>.m1_side_a>ul>li:nth-child(n + 2) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 3px solid #efefef;
    padding: 0;
}

.m11_insidebg .m14_inside>.m11_inside_lt>.m1_side_a>ul>li:nth-last-child(1) {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.m11_insidebg .m14_inside>.m11_inside_lt>.m1_side_a>ul>li>a {
    padding: 10px 20px;
    width: calc(100% - 0px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    line-height: normal;
}

.m12_insidebg .m12_inside_rt .inside_photo1 ul li .img {
    position: relative;
    z-index: 1;
    padding-bottom: 230px;
}

.m12_insidebg .m12_inside_rt .inside_photo1 ul li .img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    transform: scale(1) !important;
    background: #f9f9f9;
    width: 100%;
}

.m11_insidebg .m14_inside .m11_news1_rt {
    width: calc(100% - 250px);
    flex: 1;
    padding-left: 40px;
}

.m11_insidebg .m15_inside .m11_news1_lt>.m1_side_a>ul>li:nth-child(n + 2) {
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #efefef;
    color: var(--main-color-fontColor);
    background-color: #eeeeee;
}

.m11_insidebg .m15_inside .m11_news1_lt>.m1_side_a>ul>li>a {
    display: block;
    line-height: 26px;
    padding: 0;
    background: none;
    width: 100%;
    font-size: 14px;
    padding: 10px;
}

.m13_insidebg .m15_inside .m11_news1_lt>.m1_side_a>ul>li:nth-child(n + 2) {
    margin-top: 3px;
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0;
    color: var(--main-color-fontColor);
    background-color: #eeeeee;
}

.m13_insidebg .m15_inside .m11_news1_lt>.m1_side_a>ul>li>a {
    display: block;
    padding: 0;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    font-size: 14px;
    width: 100%;
}

.m13_insidebg .m15_inside .m1_side_a>ul>li {
    border-bottom: 0;
}

.m13_insidebg .m15_inside .m1_side_a {
    margin-bottom: 0;
}

.m13_insidebg .m15_inside .m1_side_a {
    box-shadow: none;
    border: 0;
}

.m13_insidebg .m15_inside .m11_news1_lt>.m1_side_a>ul>li.hover>a {
    color: #fff;
}

.m13_insidebg .m15_inside .m11_news1_rt .m11_newsdetail .left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

.m13_insidebg .m15_inside .m11_news1_rt .m11_newsdetail .list1 {
    padding: 40px 0;
    min-height: 46vh;
    text-align: left;
}

.m14_insidebg .m11_inside {
    padding: 0 25px;
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
}

.m14_insidebg .m15_inside>.m11_inside_rt>div>div.m12_contact1>div.left_inside_right_top {
    font-size: 24px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

body>div.m11_insidebg>div.m13_inside>div>div.m12_inside_lt>ul>li {
    margin-top: 3px;
}

body>div.m11_insidebg>div.m13_inside>div>div.m12_inside_lt>ul>li:nth-child(1) {
    margin-top: 0;
}

body>div.inbannerbg>div>strong {
    top: 45%;
    left: 0;
}

.m11_head_top {
    border-bottom: 1px solid #ccc;
}

.m11_head_top_content {
    max-width: 1550px;
    padding: 0 25px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}

.m11_head_top_content_item {
    font-size: 14px;
    margin-left: 5px;
    padding: 5px;
}

.m11_head_top_item:nth-child(1) {
    margin-left: 0;
}

.m11_head_top_content_item>a {
    color: #222;
}

.m11_head_top_content_item>a:hover {
    color: var(--main-color);
}

.login_account {
    font-size: 14px;
    padding: 5px;
    color: #222;
    display: none;
}

.login_header {
    border-bottom: 1px solid #ccc;
}

.login_header_content {
    max-width: 1550px;
    padding: 0 25px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}

.login_header_content_item {
    font-size: 14px;
    margin-left: 5px;
    padding: 5px;
}

.login_header_content_item:nth-child(1) {
    margin-left: 0;
}

.login_header_content_item>a {
    color: #222;
}

.login_header_content_item>a:hover {
    color: var(--main-color);
}

.login_content {
    margin: 25px auto;
    min-height: calc(63vh - 50px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login_content form {
    width: 100%;
}

.login_form_item_title {
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.login_form_item {
    width: 100%;
    text-align: center;
    max-width: calc(100% / 3);
    margin: 0 auto 20px;
}

.login_form_item input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #000;
}

.login_form_item label {
    font-size: 14px;
    text-align: left;
    display: inline-block;
    width: 100%;
    color: #ccc;
}

.login_form_item label>a {
    color: #000;
}

.login_form_item label>a:hover {
    color: var(--main-color);
}

.login_form_item_button {
    width: 100%;
    text-align: center;
    max-width: calc(100% / 3);
    margin: 0 auto 20px;
}

.login_form_item_button button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background-color: var(--main-color);
    color: #fff;
}

.login_form_item_a {
    width: 100%;
    text-align: left;
    max-width: calc(100% / 3);
    margin: 0 auto 20px;
}

.login_form_item_a>a {
    color: #000;
}

.login_form_item_a>a:hover {
    color: var(--main-color);
}

.register_header {
    border-bottom: 1px solid #ccc;
}

.register_header_content {
    max-width: 1550px;
    padding: 0 25px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}

.register_header_content_item {
    font-size: 14px;
    margin-left: 5px;
    padding: 5px;
}

.register_header_content_item:nth-child(1) {
    margin-left: 0;
}

.register_header_content_item>a {
    color: #222;
}

.register_header_content_item>a:hover {
    color: var(--main-color);
}

.register_content {
    margin: 25px auto;
    min-height: calc(63vh - 50px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.register_content form {
    width: 100%;
}

.register_form_item_title {
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.register_form_item {
    width: 100%;
    text-align: center;
    max-width: calc(100% / 3);
    margin: 0 auto 20px;
}

.register_form_item input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #000;
}

.register_form_item label {
    font-size: 14px;
    text-align: left;
    display: inline-block;
    width: 100%;
    color: #ccc;
}

.register_form_item label>a {
    color: #000;
}

.register_form_item label>a:hover {
    color: var(--main-color);
}

.register_form_item_button {
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    max-width: calc(100% / 3);
    margin: 0 auto 20px;
}

.register_form_item_button button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background-color: var(--main-color);
    color: #fff;
}

.register_form_item_a {
    width: 100%;
    text-align: left;
    max-width: calc(100% / 3);
    margin: 0 auto 20px;
}

.register_form_item_a>a {
    color: #000;
}

.register_form_item_a>a:hover {
    color: var(--main-color);
}

.privacy_content {
    margin: 25px auto;
    min-height: calc(63vh - 50px);
    width: 100%;
}

.privacy_content_title {
    width: 100%;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.privacy_content_description {
    width: 100%;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.privacy_content_content {
    width: 100%;
    font-size: 16px;
    text-align: left;
    color: #000;
}

body>div.content>div>div>form>div.login_form_item:nth-child(4),
body>div.content>div>div>form>div.register_form_item:nth-child(6) {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
}

.login_form_item input#code,
.register_form_item input#code {
    width: 180px;
}

body>div.content>div>div>form>div.login_form_item:nth-child(4)>img,
body>div.content>div>div>form>div.register_form_item:nth-child(6)>img {
    margin-left: 5px;
}

.m10_con01bg {
    display: none;
}

@media(max-width:999px) {
    body>div.m14_insidebg>div>div>div.m11_inside_rt>div>div.m12_contact1>div.m12_contact1_content {
        padding: 35px 15px;
    }

    .m11_insidebg .m13_inside>.m12_inside .m12_inside_lt {
        width: 100%;
    }

    .m11_insidebg .m13_inside>.m12_inside {
        padding: 30px 15px;
    }

    .m11_insidebg .m13_inside>.m12_inside>.m12_inside_rt:nth-child(2) {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    body>div.m11_insidebg>div.m13_inside>div>div.m12_inside_lt>ul>li {
        border-bottom: 0;
    }

    body>div.m11_insidebg>div.m13_inside>div>div.m12_inside_lt>ul>li:nth-child(1)>h2 {
        border-bottom: 0;
    }

    .m11_insidebg .m14_inside>.m11_inside_lt>.m1_side_a>ul>li:nth-child(n + 2) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 3px solid #efefef;
    }

    .m11_insidebg .m14_inside>.m11_inside_lt>.m1_side_a>ul>li:nth-child(n + 2)>a {
        padding: 0 15px;
        height: 40px;
    }

    .inside_photo1 ul li {
        width: calc(100% - 0px);
    }

    .m12_insidebg .m12_inside_rt .inside_photo1 ul li .img {
        padding-bottom: 100%;
    }

    body>div.m12_insidebg>div {
        padding: 0;
    }

    body>div.m14_insidebg>div>div>div.m11_inside_rt>div>div.m12_contact1>div.m12_contact1_content>div.list2 {
        margin-top: 0;
    }

    .m11_head_top {
        display: none;
    }

    .login_form_item {
        max-width: unset;
    }

    .login_form_item_button {
        max-width: unset;
    }

    .login_form_item_a {
        max-width: unset;
    }

    .register_form_item {
        max-width: unset;
    }

    .register_form_item_button {
        max-width: unset;
    }

    .register_form_item_a {
        max-width: unset;
    }

    .m10_con01bg {
        display: block;
    }
}

body>div.m13_insidebg>div>div>div.m11_news1_rt>div>div>div.list1 {
    padding: 0;
}

body>div.m13_insidebg>div>div>div.m11_news1_rt>div>div.inside_picList1>ul>li>a>div {
    padding: 15px;
}

body>div.m14_insidebg>div>div>div.m11_inside_rt>div>div.m12_contact1>div.m12_contact1_content>div.list2.wow.fadeInUp {
    margin-top: 20px;
}

body>div:nth-child(5)>div>div.con1>div>div.con1conright.aos-init.aos-animate>ul {
    border-radius: 10px;
}

.border_radius_none {
    border-radius: 0 !important;
}

/*inpic1*/
.inside_piclist {
    max-width: 1550px;
    padding: 0 25px;
    margin: 0 auto;
    display: none;
}

.ry_title h1 {
    display: none;
}

.inside_piclist .inside_picList1 {}

.inside_piclist .inside_picList1 ul li {
    float: left;
    width: calc((100% - 40px)/3);
    margin: 0 0 20px 20px;
    text-align: center;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.inside_piclist .inside_picList1 ul li:nth-child(3n-2) {
    margin-left: 0;
    clear: left;
}

.inside_piclist .inside_picList1 ul li .nr_box {}

.inside_piclist .inside_picList1 ul li .img {
    padding-bottom: 64%;
    position: relative;
    overflow: hidden;
}

.inside_piclist .inside_picList1 ul li .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto;
    transition: all .3s ease;
    background: #f9f9f9;
}

.inside_piclist .inside_picList1 ul li:hover .img img {
    transform: scale(1.1);
}

.inside_piclist .inside_picList1 ul li .txtbg {
    position: relative;
}

.inside_piclist .inside_picList1 ul li .txtbg:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 0;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    transform: scaleY(0);
    transform-origin: 50% 100% 0;
}

.inside_piclist .inside_picList1 ul li:hover .txtbg:before {
    transform: scaleY(1);
    transform-origin: 50% 0 0;
}

.inside_piclist .inside_picList1 ul li .txt {
    padding: 15px 5%;
    color: #666;
    position: relative;
    z-index: 2;
}

.inside_piclist .inside_picList1 ul li .txt .h2 {
    font-size: 14px;
    line-height: 1.5em;
    height: 1.5em;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.inside_piclist .inside_picList1 ul li:hover .txt .h2 {
    color: #fff;
}

.inside_piclist .inside_picList1 ul li .txt .h3 {
    display: none;
}

@media(max-width:999px) {
    .inside_piclist {
        display: block;
    }

    .inside_piclist .inside_picList1 ul li {
        float: left;
        width: calc((100% - 10px)/2);
        margin: 0 0 20px 10px;
    }

    .inside_piclist .inside_picList1 ul li:nth-child(3n-2) {
        margin-left: 10px;
        clear: none;
    }

    .inside_piclist .inside_picList1 ul li:nth-child(2n-1) {
        margin-left: 0;
        clear: left;
    }

    .inside_piclist .inside_picList1 ul li .txt {
        padding: 15px 5%;
    }

    .inside_piclist .inside_picList1 ul li .txt .h2 {
        font-size: 14px;
        line-height: 1.6em;
        height: 1.6em;
    }

    .ry_title h1 {
        display: block !important;
    }
}

/* 新增样式 */
.realname {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 56;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: none;
}

.realname_con {
    width: 460px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
    padding: 20px;
    position: relative;
}

.realname_con_close {
    font-size: 24px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 24px;
    line-height: 1;
    height: 24px;
}

.realname_con_title {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
}

.realname_con_content {
    margin-top: 15px;
}

.realname_con_content>form {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: flex-start;
    gap: 15px;
}

.realname_con_content>form>input {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 5px 15px;
    width: calc(100% - 32px);
    min-height: 30px;
    box-sizing: unset;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

.realname_con_content>form>button {
    border-radius: 4px;
    background-color: var(--third-color);
    border: 0;
    padding: 8px 27px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    margin: 5px auto 0;
    cursor: pointer;
}

.prodetail_contact_content {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 56;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: none;
}

.prodetail_contact_content_con {
    width: 460px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
    padding: 20px;
    position: relative;
}

.prodetail_contact_content_con_close {
    font-size: 24px;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 24px;
    line-height: 1;
    height: 24px;
}

.prodetail_contact_content_con_title {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
}

.prodetail_contact_content_con_phone {
    color: #000;
    font-size: 18px;
    text-align: left;
    line-height: 1.5;
    margin-top: 20px;
}

.prodetail_contact_content_con_phone>a {
    color: #000;
}

.prodetail_contact {
    margin-top: 20px;
    text-align: left;
}

.prodetail_contact>a {
    width: 150px;
    height: 40px;
    line-height: 40px;
    display: block;
    background-color: var(--main-color);
    text-align: center;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

@media(max-width:999px) {
    .realname_con {
        padding: 10px;
    }

    .realname_con_close {
        font-size: 20px;
        right: 5px;
        top: 5px;
    }

    .realname_con_title {
        font-size: 20px;
    }

    .realname_con_content {
        margin-top: 10px;
    }

    .realname_con_content>form {
        gap: 10px;
    }

    .realname_con_content>form>input {
        padding: 5px 10px;
        min-height: 20px;
        font-size: 14px;
        width: calc(100% - 22px);
    }

    .realname_con_content>form>button {
        font-size: 14px;
        padding: 6px 20px;
    }

    .prodetail_contact_content_con {
        padding: 10px;
    }

    .prodetail_contact_content_con_title {
        font-size: 20px;
    }

    .prodetail_contact_content_con_phone {
        font-size: 16px;
        margin-top: 10px;
    }
}