@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination  a,.mxw-pagination  span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: inline-block;
    margin: 4px;
}
.mxw-pagination  a.active,
.mxw-pagination  a:hover {
    background-color: #0d5bc1;
    color: #fff !important;
}
.mxw-pagination  a:first-child {
    margin-left: 0;
}
.mxw-pagination  a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .mxw-pagination {
        margin-top: 30px;
    }
    .mxw-pagination  a {
        font-size: 12px;
        margin: 2px;
        padding: 8px 10px;
    }
}
/* ==================== 分页样式 end ==================== */

/* ==================== 通用标签页 start ==================== */
/* 标签页 */
.mxw-tabs {
    padding-left: 0;
    padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.mxw-tabs .mxw-tabs-wrap {
    position: relative;
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
    align-items: center;
    justify-content: flex-start;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
    display: none;
}
.mxw-tabs .mxw-tabs-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    font-size: 0.3rem;
    white-space: nowrap;
    background: #eaeaea;
    color: #333;
    padding: 0rem 0.5rem;
    margin-right: 0.9rem;
    line-height: 0.6667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #0d5bc1;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #f9f9f9;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #0d5bc1;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #0d5bc1;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    width: 65px;
    height: 44px;
    background-color: #0d5bc1;
    border-radius: 0px 5px 5px 0px;
     color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;

}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        right: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    border: 2px solid #fff;
    outline: none;
    opacity: 1;
    border-radius: 50%;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #168a53;
    border-color: #168a53;

}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 1.383rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: none;
    outline: none;

}
.mxw-banner .swiper-button-next::after,
.mxw-banner .swiper-button-prev::after {
    font-size: 0.667rem;
    color: #fff;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box2 {
    max-width: 1800px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 93.75%;
}
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 84%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1880px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    html {

    }
    .mxw-box {
        max-width: 86%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {

        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#0d5bc1;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 240%;
        width:240%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
	.footer3 ul li .iconfont{ width:initial; height:initial}
    .product-detail-tab .product-detail-tabcon iframe,.product-detail-tab .product-detail-tabcon video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content  iframe, .xypg-right-content  video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content img{ max-width: 100%; height: auto !important;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}
.top-box .logo-box{  font-size: 0;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start; margin: 0.4rem auto 0.4rem 0; }
.top-box .logo-box .t-logo>img{ max-height:1.133rem;}
.mxw-keywords .left .zx{ display: inline-block; font-size: 0.35rem; margin-right: 0.833rem; vertical-align: middle}
.mxw-keywords .left .zx>img{ margin-right: 5px}
.mxw-keywords .left .zx b{ color: #0d5bc1; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; opacity: 0.4 }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;overflow:visible;}
.mxw-link .mxw-link-list{color:#333;position:absolute;top:0;left:0;width:100%;transform:translateY(-100%);padding:10px 0;display:none; background: #fff;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:0.3rem;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:0.267rem;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{ position: absolute; top: 0; z-index: 999; width: 100% }
header .welcome {
    background: #f8f8f8;
    line-height: 0.7rem;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:rgba(255,255,255,.6);
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #333333;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color:#777777;
}


.top-box{ align-items: stretch;}
.top-box .right{ display: flex; flex-grow:1; min-width: 0;  padding-left: 1.75rem; justify-content: flex-end; align-items: center;  }
.top-box .right .tp-tel{ display: flex; align-items: center; width: max-content; flex-shrink: 0; margin: 0 1.167rem 0 1.333rem;}
.top-box .right .tp-tel .text{ margin-left: 0.333rem; font-size: 0.3rem;}
.top-box .right .tp-tel .text span{ font-size: 0.367rem; font-weight: bold;}
.top-box .right .tp-ss{ flex-shrink: 0;}

.mxw-banner .swiper-pagination{ bottom: 1.2rem; text-align: right; justify-content: flex-end}
.mxw-banner .swiper-pagination .swiper-pagination-bullet{ width: 1.183rem; height: 1.183rem; background: none; border-color: transparent; font-size: 0.4rem; color: #fff; position: relative; display: flex; align-items:center; justify-content: center; }
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{ background: none; border-color: transparent;color: #6ab928}
.mxw-banner .swiper-pagination div svg {
    display: block;
    width: 100%;
    position: absolute;
}

.mxw-banner .swiper-pagination div svg         circle {
    stroke: #03913f;
    stroke-width: 2px;
    fill: transparent;
    r: 48;
    cx: 51;
    cy: 51;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

.mxw-banner .swiper-pagination .swiper-pagination-bullet-active circle {
    transition: stroke-dashoffset ease 5s;
    stroke-dashoffset: 0;
}
@keyframes upDown {
    to {
        transform: translate3d(0, 100%, 0);
    }
}


.bott .mouse{    display: flex;
    align-items: center;}
.bott .mouse > div {
    width: 23px;

    height: 32px;


    position: relative;
    background: url(../images/shubiao.png) no-repeat;
}
.bott .mouse > div span {
    left: 10px;
    position: absolute;
    top: 7px;
    width: 3px;
    height: 7px;
    background-color: #fff;
    border-radius: 1px;
    animation: upDown 1s ease-out infinite;
}
.bott{ position: absolute; bottom: 0; z-index: 9; text-align: center; margin: 0 auto; left: 0; right: 0; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; height: 1.817rem; background: url("../images/bott-bg.png") center no-repeat; background-size: auto 100%; flex-direction: column}
.bott>p{ 	font-size: 0.267rem;color: #ffffff; line-height: 2; width: 100%; text-align: center; margin-top: 0.167rem}




.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}
.x-menu > li {

    margin: 0;
    text-align: center;
    float: none;
    position: relative;


}

.x-menu > li > a {
    font-size: 0.3333rem;
    color: #333333;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    text-transform:uppercase ;
    position: relative;
}

.x-menu > li > a:hover {
    color: #333333;
}
.x-menu>li.active{ color: #333333	}
.x-menu > li.active > a {
    color: #168a53;
    font-weight: bold;
}
.x-menu > li.active > a::after{ width: 100%; height: 2px; display: block; background: #168a53; content: ""; margin-top: 0.5rem; position: absolute; }

.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 200px;
    left:50%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,20px);
    transform: translate(-50%,20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;

}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#168a53;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}

.x-menu > li > a>span{ margin-left: 5px }
.x-menu > li.active > a>span{  filter: invert(52%) sepia(46%) saturate(3044%) hue-rotate(165deg) brightness(92%) contrast(100%);}

.mxw-banner .swiper-slide{ position: relative;}
.mxw-banner .swiper-slide video{     width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;}
.mxw-banner .swiper-slide .flx{    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center; z-index: 11}
.mxw-banner .banner-swiper{ height: 100vh;}
.mxw-banner .banner-swiper .swiper-slide{ display: flex; align-items: center; justify-content: center; }
.mxw-banner .banner-swiper .swiper-slide img{ object-fit: cover; width: 100%; height: 100%; }

.tc-pro{ position: relative; background: url("../images/pto-bg.png") center no-repeat;  padding: 1.8rem 0 1.333rem; min-height: 100vh; background-size: cover; }
.tc-pro .mxw-box2{  padding: 0 1.667rem; }
.tc-pro>.flx .tc-title{}
.tc-title .cn{font-size: 0.4rem;color: #03913f; display: flex; align-items: center; justify-content: flex-start;}
.tc-title .cn::before {width: 67px;
    height: 1px;
    background-color: #03913f; content: ""; margin-right: 0.3rem }
.tc-title .en{ font-size: 0.967rem; color: #fff; text-transform:uppercase;line-height: 1; font-weight: lighter; margin-top: 0.75rem;}
.tc-title .en span{ display: block; font-weight:normal}

.lc1-swiper{ overflow: hidden; margin-top: -0.5rem;}
.lc2-swiper{ overflow: hidden; margin-top: 0.3rem;}
.lc2-swiper .swiper-slide{ text-align: center;}
.lc1-swiper .swiper-slide{ position: relative;}
.lc1-swiper .swiper-slide .pro-st{ position: absolute;
    border-radius: 1.2rem; width: 34.5%; right: 2.3rem; top: 50%; z-index: 9 ; padding: 0.333rem 0.617rem 0.367rem 3.833rem;  color: #fff; background: url("../images/st-bg.png") right center no-repeat; transform: translateY(-50%)}
.lc1-swiper .swiper-slide .img{position: relative;z-index: 10;margin: 0 auto;width: 40.5%;height: 8.5rem;display: flex;align-items: center;justify-content: center;}
.nv-box{  padding: 0 2.417rem; }
.nv-box>.mxw-box2{position: relative;}
.nv-box .swiper-button-next,.nv-box .swiper-button-prev{ width: 0.85rem; height: 0.85rem; 	background-image: linear-gradient(90deg,
#6ab928 0%,
#06913f 100%),
linear-gradient(
        #ffffff,
        #ffffff);
    background-blend-mode: normal,
    normal;  border-radius: 50%;}
.nv-box .swiper-button-next::after,.nv-box .swiper-button-prev::after{ font-size: 0.3rem; color: #fff;}
.nv-box .swiper-button-disabled{ background: #fff; opacity: 1;}
.nv-box .swiper-button-disabled::after{color: #06913f;}

.lc1-swiper .swiper-slide .pro-st .title{ font-size: 0.467rem;}
.lc1-swiper .swiper-slide .pro-st .desc{ font-size: 0.267rem; line-height: 1.6; margin-top: 0.3rem; }

.tc-app{ position: relative}
.tc-app .mxw-box2{  padding: 0 1.667rem; }
.tc-app .flx{ position: absolute; left: 0; right: 0; top: 2rem; z-index: 10;}

.app-swiper{ height: 100vh;}
.app-swiper .swiper-slide{ display: flex; align-items: center; justify-content: center; }
.app-swiper .swiper-slide img{ object-fit: cover; width: 100%; height: 100%; }
.app-swiper .swiper-pagination{ bottom: 1.683rem;}
.app-swiper .swiper-pagination .swiper-pagination-bullet{ width: 1.183rem; height: 1.183rem; background: none; border-color: transparent; font-size: 0.4rem; color: #fff; opacity: 1; position: relative; display: flex; align-items:center; justify-content: center; }
.app-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{ background: none; border-color: transparent;color: #6ab928}
.app-swiper .swiper-pagination div svg {
    display: block;
    width: 100%;
    position: absolute;
}

.app-swiper .swiper-pagination div svg         circle {
    stroke: #03913f;
    stroke-width: 2px;
    fill: transparent;
    r: 48;
    cx: 51;
    cy: 51;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

.app-swiper .swiper-pagination .swiper-pagination-bullet-active circle {
    transition: stroke-dashoffset ease 5s;
    stroke-dashoffset: 0;
}
.app-swiper .swiper-slide{ position: relative;}
.app-swiper .swiper-slide .flx-con{ position: absolute; color: #fff; text-align: right; right: 2.5rem; top: 3.8rem; display: flex; display: -webkit-flex; flex-direction: column; align-items: flex-end;}
.app-swiper .swiper-pagination{ display: flex; justify-content: center}
.app-swiper .swiper-slide .flx-con .num{ font-size: 1rem; font-weight: bold;}
.app-swiper .swiper-slide .flx-con .title{ 	font-size: 0.9rem; font-weight: bold;}
.app-swiper .swiper-slide .flx-con .desc{font-size: 0.333rem; width: 4.667rem; line-height: 1.6; margin-top: 0.167rem;}

.mxw-case{ position: relative;}
.mxw-case .flx{ position: absolute; left: 0; right: 0; top: 1.8rem; z-index: 10;}
.mxw-case .case-cate{ position: absolute; bottom:1.367rem; z-index: 99; width: 100%;  }
.case-cate{ position: relative;}
.case-cate .mxw-box2{ position: relative;}
.case-cate::before{ position: absolute; content: ""; height: 1px; width: 100%; background: #fff; opacity: 0.3;
    top: 0.383rem;}
.case-cate-swiper{ width: 90%; margin: 0 auto; }
.case-cate-swiper .item{ text-align: center;  }
.case-cate-swiper .item .icon{width: 0.767rem;height: 0.767rem; border-radius: 50%; margin: 0 auto; display: flex; align-items: center; justify-content: center;}
.case-cate-swiper .item.swiper-slide-thumb-active .icon{		background-image: linear-gradient(90deg,
#6ab928 0%,
#06913f 100%),
linear-gradient(87deg,
        #3b9c64 0%,
        #c3e255 100%);
    background-blend-mode: normal,
    normal;	}
.case-cate-swiper .item .icon::after{width: 11px;
    height: 11px;
    background-color: #ffffff; content: ""; display: block; border-radius: 50%;}
.case-cate-swiper .item p{ margin-top: 0.35rem; font-size: 0.3rem; color: #fff}
.case-cate .mxw-box2 .swiper-button-next,.case-cate .mxw-box2 .swiper-button-prev{	width: 0.767rem;
    height: 0.767rem; border-radius: 50%;
    background-image: linear-gradient(90deg,
    #6ab928 0%,
    #06913f 100%),
    linear-gradient(87deg,
            #3b9c64 0%,
            #c3e255 100%);
    background-blend-mode: normal,
    normal;
     margin-top: 0;
    transform: none;
    top: 0; color: #fff}
.case-cate .mxw-box2 .swiper-button-next::after,.case-cate .mxw-box2 .swiper-button-prev::after{ font-weight: initial; font-size: 20px;}

.tc-about{ padding-top: 1.417rem;}
.tc-about>.mxw-box2{ padding-left: 1.583rem;}
.tc-about>.mxw-box2 .tc-title .en{font-size: 0.967rem; color: #222}
.tc-about>.mxw-box2 .tc-title .en span{font-size: 0.967rem;color: #05913f;}
.about-top{ background: url("../images/abt-img.png") right center no-repeat; }
.about-top .desc{ width: 64.3%; margin: 0.833rem auto 0.833rem 0; line-height: 2; color: #555; 	font-size: 0.3rem;}
.about-top .a-more{ padding: 0.4rem 1.25rem; font-size: 0.267rem; color: #fff; font-weight: bold;	background-image: linear-gradient(44deg,
#6ab928 0%,
#06913f 100%),
linear-gradient(
        #e40001,
        #e40001);
    background-blend-mode: normal,
    normal;
    border-radius: 0.167rem; text-transform: uppercase; display: inline-block}

.a-more:hover{transition: all 0.3s;background-image: linear-gradient(44deg,
#06913f 0%,
#6ab928 100%),
linear-gradient(
        #e40001,
        #e40001);
    background-blend-mode: normal,
    normal;}


.about-bottom{  margin-top: 1.5rem; display: flex; justify-content: space-between; align-items: stretch;}
.about-bottom .tc-left{ width: 30%;}
.about-bottom .tc-left .video-box{ position: relative; cursor: pointer;}
.about-bottom .tc-left .video-box::before{ position: absolute; content: ""; display: block; width: 1.267rem; height: 1.267rem; background: url("../images/play.png") center no-repeat; background-size: 100%; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1; }
.about-bottom .tc-left .list{ text-align: center; margin-top: 1.25rem; }
.about-bottom .tc-left .list .item{ margin-bottom: 1.1rem; transition: all 0.3s;}
.about-bottom .tc-left .list .item .icon{ width: 1.883rem; margin: 0 auto; transition: all 0.3s}
.about-bottom .tc-left .list .item .st{	font-size: 0.367rem; margin-top: 0.467rem; transition: all 0.3s;}
.about-bottom .tc-left .list .item .desc{ font-size: 0.267rem;	color: #a6a6a6; margin-top: 0.233rem;}
.about-bottom .tc-left .list .item:hover .st{ color: #168a53; transition: all 0.3s;}
.about-bottom .tc-left .list .item:hover .icon{ transform: rotate3d(0,1,0,180deg); transition: all 0.3s}
.about-bottom .tc-right{ width: 58.2%; margin-right: -1rem; background: url("../images/abdr-bg.png") center no-repeat; background-size: cover; padding: 0.333rem 1.4rem; display: flex;align-items: center; justify-content: center; flex-direction: column; display: -webkit-flex;  }
.about-bottom .tc-right .cn{
    background: -webkit-linear-gradient(left, #6ab928, #06913f); /* 创建从左到右的线性渐变 */
    background: linear-gradient(to right, #6ab928, #06913f); /* 对于标准兼容浏览器 */
    -webkit-background-clip: text; /* 将背景剪裁至文字 */
    -webkit-text-fill-color: transparent; /* 文本填充为透明以显示背景渐变 */
    color: transparent; /* 标准兼容的文本填充色设置为透明 */
     width: max-content;
    width: -moz-max-content;
    font-size: 0.983rem;font-weight: bold;
}
.about-bottom .tc-right .en{ font-size: 0.3rem; color: #000; margin-top: 0.3rem;}
.about-bottom .tc-right .list{ margin-top: 1.083rem;}

.tc-news{ padding: 1.75rem 0 2rem; background: url("../images/news-bg.jpg") top center no-repeat; background-size: cover;}
.tc-news>.mxw-box2{ padding: 0 1.667rem; }
.tc-news>.mxw-box2 .title{font-size: 0.4rem;color: #03913f; display: flex; align-items: center;}
.tc-news>.mxw-box2 .title span{font-size: 0.967rem;color: #f0f0f0; font-weight: bold; text-transform: uppercase; margin-left: 0.633rem;}
.tc-news>.mxw-box2 .title::before{width: 1.117rem; margin-right: 0.3rem;
    height: 1px;
    background-color: #03913f; content: "";}
.news-body{ margin-top: 1.25rem; display: flex; justify-content: space-between;}
.news-body .tc-left{ width: 18%; flex-shrink: 0;}


.cont-cate>.mxw-box{ display: flex; align-items: center; justify-content: space-between; padding: 0.567rem 0 0.367rem; border-bottom: 1px solid #e7e7e7;}
.cont-cate>.mxw-box .n-title{ margin-right: auto;font-size: 0.533rem; font-weight: bold;color: #1a1a1a;}
.cont-cate>.mxw-box .item{	background-color: #eaeaea;
    border-radius: 0.35rem; padding: 0.15rem 1.033rem;font-size: 0.3rem; margin-left: 0.417rem;}
.cont-cate>.mxw-box .item.active{	background-color: #168a53; color: #fff;}

.pro-list p{text-align: center; color: #101010; font-size: 0.3rem; margin-top: 0.267rem;}
.pro-box{ margin-bottom: 1rem;}
.pro-box .pro-list .mxw-image{border: 1px solid #ccc;}
.pro-box .case-body .item{ width: 49%; margin-right: 2%;}
.case-body .item .desc {
    font-size: 0.233rem;
    color: #666;
    margin-top: 0.1rem;
}
.pro-box .case-body .item:nth-child(2n){ margin-right: 0}
.case-body .item .st {
    font-size: 0.333rem;
    font-weight: bold;
    color: #333;
}
.pro-box .case-body .item:nth-child(2n)~.item{ margin-top: 0.8rem}
.pro-box .case-body .item .st{ margin-top: 0.2rem}
.case-body .item:hover .st{ color: #168a53}

.news-box{ padding: 0.9rem 0;}
.news-box .news-list .item{ display: flex; align-items: center; justify-content: flex-start; background-color: #ffffff;
    padding: 0.367rem 0.45rem; border: solid 1px #ebebeb; transition: all 0.3s}
.news-box .news-list .item:nth-child(1)~.item{ margin-top:0.8rem}
.news-box .news-list .item .mxw-image{ margin-right: 0.5rem; flex-shrink: 0}
.news-box .news-list .item .con{ flex-grow: 1; min-width: 0; padding-right: 0.583rem;}
.news-box .news-list .item .con .st{ display: flex; justify-content: space-between; padding-bottom: 0.25rem; }
.news-box .news-list .item .con .st span{ flex-shrink: 0;font-size: 0.267rem;	color: #5d5d5d; margin-left: 0.667rem; font-weight: bolder}
.news-box .news-list .item .con .st>P{font-size: 0.333rem; 	color: #333333; flex-grow: 1;min-width: 0}
.news-box .news-list .item .con .desc{ color: #767676; font-size: 0.267rem; }
.news-box .news-list .item .con .more{background: #c4c4c4; padding: 0.1rem 0.15rem 0.1rem 0.3rem; width: max-content; color: #fff; transition: all 0.3s; margin-top: 0.333rem; font-size: 0.25rem}
.news-box .news-list .item:hover{box-shadow: 0px 3px 6px 1px
rgba(0, 0, 0, 0.13);}
.news-box .news-list .item:hover .more{background: #168a53;}
.news-box .news-list .item:hover .con .st>P{ color: #168a53}
.about-page{ padding:  1rem 0;}

.cont-top>.mxw-box{ display: flex; align-items: stretch; justify-content: space-between;padding-bottom: 1.333rem; border-bottom: 1px solid #ececec}
.cont-top>.mxw-box .tc-left{ width: 45%; flex-shrink: 0; background: #ffffff; padding: 0.15rem  1rem  0.15rem; order: 1;}
.cont-top>.mxw-box .tc-left .st{ font-size: 0.5rem; color: #333; text-transform: capitalize; font-weight: bold;}
.cont-top>.mxw-box .tc-left .en{ font-size: 0.25rem; color: #333; margin-top: 0.167rem; text-transform: uppercase;}
.cont-top>.mxw-box .tc-left .con{ color: #5b5b5b; font-size: 0.3rem; line-height: 1.8; margin-top: 0.5rem}
.cont-top>.mxw-box .tc-left .list{ margin-top: 0.833rem; padding-top: 0.7rem; display: flex; align-items: stretch; justify-content: flex-start; border-top: 1px solid #e5e5e5; }
.cont-top>.mxw-box .tc-left .list .item{ max-width:120px }
.cont-top>.mxw-box .tc-left .list .item img{  text-align: center;}
.cont-top>.mxw-box .tc-left .list .item p{ font-size: 0.233rem; color: #666; text-align: center;}
.cont-top>.mxw-box .tc-right{ flex-grow: 1; min-width: 0; min-height: 450px; border: 1px solid #ccc;}
#map{ font-size:14px;}
#map label{max-width:initial }
#map img{max-width:initial}

.cont-msg{ padding: 1.1rem 0 0;}
.cont-msg .st{ font-size: 0.5rem; text-transform: uppercase; text-align: center; font-weight: bold;}
.cont-msg .up1{ display: flex; align-items: center; justify-content: space-between; margin-top: 0.967rem;}
.cont-msg .up1 .item{ width: 32%; position: relative; }
.cont-msg .up1 .item .yz{    position: absolute;
    right: 12px;
    top: 12px;}
.cont-msg .up1 .item input{ width: 100%; padding: 0.267rem 0.417rem;  border: 1px solid #e1e1e1;
    font-size: 0.267rem; color: #bababa; }
.cont-msg .up2{ margin-top: 0.5rem;}
.cont-msg .up2 textarea{resize: none;padding: 0.267rem 0.417rem;  border: 1px solid #e1e1e1;
    height: 2.167rem;font-size: 0.267rem; color: #bababa;  width: 100%;}
.cont-msg button{ font-size: 0.333rem; color: #fff; padding: 0.2333rem 0.75rem; background: #168a53; border-radius: 0.15rem; text-transform: uppercase; margin: 1rem auto 0; display: block; width: max-content; width: -moz-max-content;cursor: pointer;}


.case-body {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.about-box1{ padding: 1.083rem 0 0.917rem; }
.about-box1 .about-title{ text-align: center; 	font-size: 0.667rem; font-weight: bold; padding-bottom: 0.2rem; border-bottom: 0.033rem solid #168a53; width: max-content; width: -moz-max-content;
    margin: 0 auto 0.533rem;
}
.content{ font-size: 0.3rem; line-height: 2;color: #666;}


footer{ padding-top: 1.667rem; background: url("../images/ft-bg.png") center no-repeat; background-size: cover;}
footer .up{ display: flex; justify-content: space-between;padding: 0 1.667rem 1.667rem;}
footer .up .title{	font-size: 0.233rem; color: #fff;  padding-bottom: 0.3rem; border-bottom: 0.033rem solid rgba(255,255,255,.4); text-transform: uppercase; margin-bottom: 0.6rem;}
footer .up .title span{	font-size: 0.4rem; margin-right: 0.333rem;}
footer .up .con{ color: #fff;}
footer .up .d-ewm .con{ display: flex; justify-content: space-between;}
footer .up .d-ewm .item{ max-width: 2.767rem;}
footer .up .d-ewm .item:nth-child(1)~.item{ margin-left: 0.5rem;}
footer .up .d-ewm .item p{    text-align: center;
    font-size: 14px;
    margin-top: 5px;}
.d-use .con{ font-size: 0.3rem;}
.d-add .con{ font-size: 0.3rem; }
.d-add .con .d-tel{ margin-bottom: 0.1rem;}
.d-add .con .d-tel .num{font-family: Impact,sans-serif;
    font-size: 0.5rem;}
.d-add .con .text{ line-height: 1.6;}
.d-menu{ width: 18.5%; flex-shrink: 0}
.d-add{ width: 20%; flex-shrink: 0}
.d-use{ width: 20%; flex-shrink: 0}
.d-use .con{line-height: 1.8;}
.d-ewm{ width: 19%; flex-shrink: 0}

.news-cate{ display: flex; flex-direction: column; justify-content: center; align-items: flex-end; margin-bottom: 2rem;}
.news-cate .item{ font-size: 0.333rem; display: flex; justify-content: space-between; align-items: center; display: -webkit-flex; width: 100%;}
.news-cate .item::before{ content:""; width: 0.667rem;
    height: 3px;
    background-color: transparent;  }
.news-cate .item:nth-child(1)~.item{ margin-top: 0.917rem;}
.news-body .tc-left{ width: 15.7%; flex-shrink: 0;}
.news-body .tc-left{ padding: 1.583rem 0.833rem 1.333rem 0; border-right: 1px solid #dedede}
.news-cate .item.active{	color: #06913f; font-weight: bold;}
.news-cate .item.active::before{ background: #06913f}
.news-body .tc-right{ flex-grow: 1; min-width: 0; padding-left: 1.167rem;}
.news-swiper{ overflow: hidden;}
.news-swiper .swiper-slide .item{ padding: 1.533rem 0.6rem 0; transition: all 0.3s}
.news-swiper .swiper-slide .date{font-size: 0.333rem;color: #a2a2a2;}
.news-swiper .swiper-slide .date p{ font-size: 0.667rem;color: #a2a2a2; font-weight: bold;}
.news-swiper .swiper-slide .st{	font-size: 0.333rem; font-weight: bold; margin: 0.367rem auto 0.4rem;}
.news-swiper .swiper-slide .desc{	color: #a8a8a8; font-size: 0.267rem; line-height: 1.8; margin-top: 0.433rem;}
.news-swiper .swiper-slide .n-m{font-size: 0.267rem; color: #fff; width: max-content; width: -moz-max-content; padding-bottom: 3px; border-bottom: 1px solid #fff;
    margin-top: 0.867rem;}
.news-swiper .swiper-slide .item:hover{	background-image: linear-gradient(44deg,
#6ab928 0%,
#06913f 100%),
linear-gradient(
        #ffffff,
        #ffffff);
    background-blend-mode: normal,
    normal; padding: 0.7rem 0.6rem 0.833rem;transition: all 0.3s}
.news-swiper .swiper-slide .item:hover .st{ color: #fff;}
.news-swiper .swiper-slide .item:hover .desc{ color: #fff;}
.news-swiper .swiper-slide .item:hover .date{ color: #fff;}
.news-swiper .swiper-slide .item:hover .date p{ color: #fff;}
.news-more{padding: 0.4rem 0.25rem; font-size: 0.267rem; color: #fff; 	background-image: linear-gradient(44deg,
#6ab928 0%,
#06913f 100%),
linear-gradient(
        #e40001,
        #e40001);
    background-blend-mode: normal,
    normal;
    border-radius: 0.167rem; text-transform: uppercase; width: 100%; display: block; text-align: center; transition: all 0.3s;}
.news-more:hover{transition: all 0.3s;background-image: linear-gradient(44deg,
#06913f 0%,
#6ab928 100%),
linear-gradient(
        #e40001,
        #e40001);
    background-blend-mode: normal,
    normal;}


.mxw-copy{ border-top: 1px solid rgba(255, 255, 255, 0.3)}
.mxw-copy .mxw-box{  padding: 0.333rem 0; 	font-size: 0.233rem; color: #fff;  text-align: center; }
.mxw-copy .mxw-box a{font-size: 0.233rem; color: #fff;
    }
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; color: #fff;}


.product-detail-tabcon table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.product-detail-tabcon table th,
.product-detail-tabcon table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.product-detail-tabcon table td p{line-height:1.8!important;}
.product-detail-tabcon table tr:hover{background-color:#f2f2f2!important;}
.product-detail-tabcon table tr:nth-child(2n-1){background-color:#fff ;}
.product-detail-tabcon table tr:nth-child(2n){background-color:#fdfdfd ;}

.xypg-detail-con table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.xypg-detail-con table th,
.xypg-detail-con table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.xypg-detail-con table td p{line-height:1.8!important;}
.xypg-detail-con table tr:hover{background-color:#f2f2f2!important;}
.xypg-detail-con table tr:nth-child(2n-1){background-color:#fff ;}
.xypg-detail-con table tr:nth-child(2n){background-color:#fdfdfd ;}





@media screen and (max-width: 1820px) {
.lc1-swiper .swiper-slide .img{ width: 46.5%;}
.lc1-swiper .swiper-slide .pro-st{ right: 1rem;padding: 0.333rem 0.617rem 0.367rem 3.1rem;}
.tc-pro{
    }
.lc1-swiper .swiper-slide .pro-st .title {
    font-size: 0.367rem;
}
.lc1-swiper .swiper-slide .pro-st .desc{
    font-size: 0.233rem;
    margin-top: 0.2rem;}

}


@media screen and (max-width: 1680px) {



}






/* ==================== 页面具体样式 end ==================== */


/* ==================== 产品详情页 start ==================== */
.ny-product-desc {
    overflow: hidden;
}
.ny-product-desc .product-image {
    width: 44%;
    margin-right: 3%;
    flex-shrink: 0;
    position: relative;
    z-index: 9;
}
.ny-product-desc .product-image img {
    width: 100%;
}
.ny-product-desc .product-desc {
    width: 53%;
}
.ny-product-desc .product-desc .title {
    font-size: 0.4667rem;
    padding-bottom: 0.3333rem;
    border-bottom: 0.0167rem solid #ddd;
    margin-bottom: 0.3333rem;
    font-weight: bold;
    color: #168a53;
}
.ny-product-desc .product-desc .desc {
    word-break: break-all;
    font-size: 0.3rem;
    color: #666;
    line-height: 1.8;
}
.ny-product-desc .bottom {
    margin-top: 0.6667rem;
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.easyzoom-flyout img {
    max-width: inherit!important;
    width: auto!important;
}
@media screen and (max-width: 1200px) {
    .ny-product-desc {
        padding: 0;
    }
    .ny-product-desc .product-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        pointer-events: none;
    }
    .ny-product-desc .product-desc {
        width: 100%;
    }
    .ny-product-desc .product-desc .title {
        font-size: 18px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .ny-product-desc .top {
        flex-flow: column;
    }
    .ny-product-desc .product-desc .desc {
        font-size: 14px;
    }
    .ny-product-desc .bottom {
        margin-top: 15px;
    }
}
/* ==================== 产品详情页 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ny-product-desc .big-swiper {
    border: 1px solid #ddd;
}
.ny-product-desc .ny-product-image {
    width: 38%;
    flex-shrink: 0;
    margin-right: 5%;
}



.ny-product-desc .right {
    width: 65%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;
}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 0.0167rem solid #dcdcdc;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.5667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;
    max-width: 10rem;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
    max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
    cursor: pointer;
    border: 3px solid #eee;
    border-radius: 0.0833rem;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #168a53;
}
.ny-product-desc .small-image .swiper-button-disabled {
    opacity: 1;
}
.ny-product-desc .small-image .swiper-button-next:after,
.ny-product-desc .small-image .swiper-button-prev:after {
    font-size: 0.4667rem;
    color: #ccc;
}
.ny-product-desc .small-image .swiper-button-next {
    right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
    left: 0rem;
}
.ny-product-desc .bottom {
    margin-top: 0.8333rem;
}
.ny-product-desc .bottom .head {
    width: 100%;
    border-bottom: 0.0167rem solid #d9d9d9;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
    padding: 0 0.3333rem;
    border-bottom: 0.0833rem solid #168a53;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #168a53;
}
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 1400px;
    }
    .ny-product-desc .top {
        align-items: stretch;
    }
}
@media screen and (max-width: 1480px) {
    .ny-product-desc .mxw-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 100%;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {
        margin-bottom: 10px;
    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 16px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }
}
/* ==================== 内页 - 产品详情 end ==================== */
/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 0 0 1.067rem;

}
.ny-news-desc > .mxw-box {
    padding-top: 60px;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;

}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {

    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */

/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll {
    overflow: hidden;
}
.mxw-scroll .scroll-wrap {
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.mxw-scroll .scroll-item {
    flex-shrink: 0;
}

@media screen and (max-width: 500px) {
    .mxw-scroll .scroll-item {
        width: 48%;
        margin-right: 4%;
    }

}
/* ==================== 通用 - 无缝滚动 end ==================== */
.lc1-swiper .swiper-slide .img img{max-height:8.5rem}


.news-swiper .swiper-slide .item:nth-child(4){ display: none}
@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    body{ margin-bottom: 0}

    .mxw-banner .banner-swiper{ height: auto;}
    .bott{ display: none}
    .mxw-banner .swiper-pagination{ bottom: 5px;}
    .mxw-banner .swiper-pagination .swiper-pagination-bullet{ width: 25px; height: 25px; font-size: 12px;}
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{ font-size: 12px;}
    .tc-pro{ padding: 45px 0 ; height: auto; min-height: initial}
    .mxw-box2,.tc-pro .mxw-box2{ padding: 0; width: 95%;}
    .tc-title .cn{ font-size: 20px;}
    .tc-title .cn::before{ width: 25px;}
    .tc-title .en{ font-size: 18px; margin-top: 10px; color: #333}
    .tc-title .en span{ display: inline-block}
    .lc1-swiper .swiper-slide .pro-st{ position: initial; width: 95%;transform:none; padding: 15px 15px 15px 50px; margin: 25px auto 0; zoom: 0.95}
    .lc1-swiper .swiper-slide{ display: flex; flex-direction: column; justify-content: center}
    .lc1-swiper .swiper-slide .img{ order: 1;width: 90%; margin-top: 25px;    height: auto;}
    .lc1-swiper{ margin-top: 0}
    .lc1-swiper .swiper-slide .pro-st .title{ font-size: 16px;}
    .lc1-swiper .swiper-slide .pro-st .desc{ font-size: 12px; margin-top: 5px;}
    .nv-box{ padding: 0 ;}
    .nv-box>.mxw-box2{ padding: 0 55px;}
    .nv-box .swiper-button-next, .nv-box .swiper-button-prev{ width: 40px; height: 40px;}
    .nv-box .swiper-button-next::after,.nv-box .swiper-button-prev::after{ font-size: 16px;}
    .nv-box .swiper-button-next{ right: 0}
    .nv-box .swiper-button-prev{ left: 0}
    .app-swiper{ height: auto;}
    .app-swiper .swiper-pagination{ bottom: 110px;}
    .app-swiper .swiper-pagination .swiper-pagination-bullet{ width: 25px; height: 25px; font-size: 12px;}
    .app-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{ font-size: 12px;}

    .tc-app .mxw-box2{ padding: 0}
    .tc-app .flx{ top: 20px;}
    .tc-app .flx .tc-title .en{ color: #fff;}
    .app-swiper .swiper-slide{ flex-wrap: wrap;}
    .app-swiper .swiper-slide .flx-con{ position: initial; color: #333; width: 95%; text-align:left; margin-top: 10px;}
    .app-swiper .swiper-slide .flx-con .num{ font-size: 18px;text-align:left; width: 100%;}
    .app-swiper .swiper-slide .flx-con .title{ font-size: 16px;text-align:left; width: 100%;}
    .app-swiper .swiper-slide .flx-con .desc{ font-size: 12px; width: 100%; margin-top: 5px;}
    .mxw-case{ margin-top: 30px;}
    .mxw-case .case-cate{ position: initial;}
    .case-cate-swiper .item p{ color: #333; font-size: 14px; margin-top: 0;}

    .case-cate-swiper{ width: 95%; margin-top: 20px; margin-bottom: 25px;}
    .case-cate-swiper .item .icon{ zoom: 0.6; display: none;}
    .case-cate .mxw-box .swiper-button-next, .case-cate .mxw-box .swiper-button-prev{ zoom: 0.7; margin-top: 15px;}
    .case-cate .mxw-box2 .swiper-button-next, .case-cate .mxw-box2 .swiper-button-prev{ width: 40px; height: 40px; top: -10px;}
    .case-cate .mxw-box2 .swiper-button-next::after, .case-cate .mxw-box2 .swiper-button-prev::after{font-size: 16px;}
    .mxw-case .flx{ top: 25px;}
    .mxw-case .tc-title .en{ color: #fff;}
    .tc-about{ padding-top: 45px;}
    .tc-about>.mxw-box2{ padding-left: 0}
    .tc-about>.mxw-box2 .tc-title .en{ font-size: 18px;}
    .tc-about>.mxw-box2 .tc-title .en span{ font-size: 17px;}
    .about-top .desc{ width: 100%; margin: 15px auto; font-size: 14px;}
    .about-top .a-more{ font-size: 14px; padding: 8px 20px;}
    .about-top{ background-size: auto 100%}
    .about-bottom{ margin-top: 25px; flex-wrap: wrap;}
    .about-bottom .tc-left{ width: 100%;}
    .about-bottom .tc-left .video-box::before{ width: 50px; height: 50px;}
    .about-bottom .tc-left .list{ margin-top: 20px;}
    .about-bottom .tc-left .list{ margin-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap}
    .about-bottom .tc-left .list .item{ width: 23.5%; margin-top: 0; margin-bottom: 0}
    .about-bottom .tc-left .list .item .st{ margin-top: 10px; font-size: 14px;}
    .about-bottom .tc-left .list .item .desc{ font-size: 12px; margin-top: 5px;}
    .about-bottom .tc-left .list .item .icon{ width: 45px;}
    .about-bottom .tc-right{ margin-top: 25px; width: 100%; padding: 30px 20px;}
    .about-bottom .tc-right .cn{ font-size: 20px;}
    .about-bottom .tc-right .en{ margin-top: 10px; font-size: 14px;}
    .about-bottom .tc-right .list{ margin-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between;}
    .about-bottom .tc-right .list .item{ width: 48.5%; margin-top: 0}
    .about-bottom .tc-right .list .item:nth-child(2n)~.item{ margin-top: 15px;}

    .tc-news{ padding: 45px 0;}
    .tc-news>.mxw-box2{ padding: 0; width: 95%;}
    .tc-news>.mxw-box2 .title{ font-size: 20px;}
    .tc-news>.mxw-box2 .title span{ font-size: 18px; display: block; margin-left: 10px;}
    .tc-news>.mxw-box2 .title::before{ width: 30px; margin-right: 10px;}
    .news-body{ margin-top: 25px; flex-wrap: wrap;}
    .news-body .tc-left{ width: 100%; padding: 0 ; border: 0}
    .news-cate .item::before{ width: 15px; margin-right: 5px;}
    .news-cate{ flex-direction: initial; margin-bottom: 15px;}
    .news-more{ display: none;}
    .news-cate .item:nth-child(1)~.item{ margin-top: 0}
    .news-cate .item { justify-content: center; font-size: 16px; }
    .news-body .tc-right{ padding-left: 0}

    .news-swiper .swiper-slide .item{ padding: 0}
    .news-swiper .swiper-slide .date p{ font-size: 14px; font-weight: initial; }
    .news-swiper .swiper-slide .date{ font-size: 14px;}
    .news-swiper .swiper-slide .st{ font-size: 16px; margin: 5px auto;}
    .news-swiper .swiper-slide .desc{ margin-top: 5px; font-size: 14px; height: 50px;}
    .news-swiper .swiper-slide .n-m{ display: none}
    .news-swiper .swiper-slide .item:hover{	background: none}
    .news-swiper .swiper-slide .item:hover .st{ color: inherit;}
    .news-swiper .swiper-slide .item:hover .desc{ color: inherit;}
    .news-swiper .swiper-slide .item:hover .date{ color: inherit;}
    .news-swiper .swiper-slide .item:hover .date p{color: inherit;}
    .news-swiper .swiper-slide .item:nth-child(4){ display: block}
    footer{ padding-top: 45px;}
    footer .up{ flex-wrap: wrap; padding: 0 0 30px 0}
    .d-menu{ display: none}
    .d-add{ width: 100%;}
    footer .up .title { font-size: 14px; padding-bottom: 10px; margin-bottom: 15px;}
    footer .up .title span{ font-size: 18px;}
    .d-add .con .d-tel .st{ font-size: 14px;}
    .d-add .con .d-tel .num{ font-size: 20px;}
    .d-add .con .text{ font-size: 14px;}
    .d-use{ width: 100%; margin-top: 25px;}
    footer .up .con{ font-size: 14px;}
    .d-ewm{ width: 100%; margin-top: 25px;}
    footer .up .d-ewm .con{ justify-content: flex-start}
    footer .up .d-ewm .item{ max-width: 120px;}

    .cont-cate>.mxw-box .n-title{ display: none}
    .cont-cate>.mxw-box{ padding: 15px 0; flex-wrap: wrap; justify-content: space-between }
    .cont-cate>.mxw-box .item{ padding: 6px 10px;  width: 48.5%; margin-right: 3%; margin-left: initial; font-size: 16px; text-align: center;}
    .cont-cate>.mxw-box .item:nth-child(2n+1){ margin-right: 0}
    .cont-cate>.mxw-box .item:nth-child(2n+1)~.item{ margin-top: 12px;}

    .pro-list p{ font-size: 14px;}
    .case-body .item .st{ font-size: 14px; margin-top: 5px;}
    .case-body .item .desc{ font-size: 12px; margin-top: 5px;}
    .pro-box .case-body .item:nth-child(2n)~.item{ margin-top: 20px;}
    .case-body{ margin-top: 25px;}
    .pro-box{ margin-bottom: 40px;}


    .news-box .news-list .item{ padding: 10px;}
    .news-box .news-list .item .con .st>P{ font-size: 16px;}
    .news-box .news-list .item .con .st span{ font-size: 12px;}
    .news-box .news-list .item .con .desc{ font-size: 14px;}
    .news-box .news-list .item .con .more{ font-size: 12px; padding: 6px 15px;}
    .news-box .news-list .item:nth-child(1)~.item{ margin-top: 20px;}
    .cont-top>.mxw-box{ flex-wrap: wrap; padding-bottom: 25px;}
    .cont-top>.mxw-box .tc-left{ order: 0; width: 100%; padding: 0 0 20px;}
    .cont-top>.mxw-box .tc-left .st{ font-size: 18px;}
    .cont-top>.mxw-box .tc-left .en{font-size: 12px;}
    .cont-top>.mxw-box .tc-left .con{ font-size: 14px;}
    .cont-top>.mxw-box .tc-left .list{ margin-top: 15px; padding-top: 12px;}
    .cont-msg{ padding: 45px 0 0;}
    .cont-msg .st{ font-size: 22px;}
    .cont-msg .up1{ margin-top: 25px; flex-wrap: wrap;}
    .cont-msg .up1 .item{ width: 100%; }
    .cont-msg .up1 .item:nth-child(1)~.item,.cont-msg .up2{ margin-top: 15px;}
    .cont-msg button{ font-size: 16px; padding: 8px 25px; margin: 20px auto 0;}



    .about-box1{ padding: 45px 0}
    .about-box1 .about-title{ font-size: 20px; padding-bottom: 10px;}
    .content{ font-size: 14px;}


    .foot-tool{padding: 10px 20px;
        position: fixed;
        bottom: 0;z-index: 999;
        background: #fff;
        width: 100%;  display: flex; align-items: center; justify-content: space-around}
    .foot-tool .item{  width: 40%; padding: 6px 10px; border-radius: 20px; background: rgb(24 153 59); color: #fff; text-align: center;  font-size: 16px;}
    body{ padding-bottom: 50px;}




    .mxw-copy .mxw-box{ flex-wrap: wrap; text-align: center; justify-content: center;}
    .mxw-copy .mxw-box>div{ width: 100%; text-align: center;}


}












