@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;
}
a:hover,a:focus{ color: inherit}
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;
width:100%;
}
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;

    margin: 4px;
}
.mxw-pagination  a.current,
.mxw-pagination  a:hover {
    background-color: #db2128;
    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: #0b9547;
    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: #0b9547;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #0b9547;
}
.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: #0b9547;
    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%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 30px;
    }
    .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: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #fff;
    outline: none;
    opacity: 1;
}
.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: #0b9547;
    border-color: #0b9547;
    width: 0.667rem;
}
.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: #0b9547;
}
.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-box {
    max-width: 1622px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 85.5%;
}
.mxw-box2 {
    max-width: 1500px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    html {
        font-size: 60px !important;
    }
    .mxw-box {
        max-width: 86%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .mxw-ny-box.mxw-box{ width: 100%;}
}
@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:#0b9547;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}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}
.top-box .logo-box{  font-size: 0; padding: 0.15rem 0 0.25rem;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start; }

.top-box .logo-box >img{ max-height:1.533rem;}
.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: #0b9547; 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: sticky;
    top: 0;    border-bottom: 1px solid #f1f0f0;
    z-index: 999;
    background: #fff;}
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: 1rem; justify-content: flex-end; align-items: center;  }
.top-box .right .tp-tel{ display: flex; align-items: center; width: max-content;}
.top-box .right .tp-tel b{font-size: 0.383rem;  margin-left: 0.2rem;}

.nav-bg{ background: #0b9547}





.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;
    display: flex;
    align-items: center;
}

.x-menu > li > a {
    font-size: 0.3rem;
    color: #333333;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding: 0.1rem 0.2rem;
}
.x-menu > li:first-child > a{
    padding: 0.1rem 0.5rem;
}
.x-menu > li > a:hover {
    color: #fff;
    background: #db2128;

    border-radius: 0.3rem;
}
.x-menu>li.active{	}
.x-menu > li.active > a {
    color: #fff;
    background: #db2128;

    border-radius: 0.3rem;
}


.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;    box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.05);
}

.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:#0b9547;
}

.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%);}


.tc-search>.mxw-box{ padding: 0.233rem 0; display: flex; align-items: center; justify-content: space-between;}
.tc-search>.mxw-box .c1{ display: flex; align-items: center;}
.tc-search>.mxw-box .c1 .icon{ margin-right: 0.3rem;}
.tc-search>.mxw-box .c1 .st{ font-size: 0.267rem; color: #333; margin-bottom: 0.1rem; }
.tc-search>.mxw-box .c1 .text{ font-size: 0.4rem; font-weight: bold; color: #888888; letter-spacing: -1px;}
.tc-search>.mxw-box .center{ color: #888}
.tc-search>.mxw-box .center b{ color: #666}
.tc-search>.mxw-box .center a{ margin: 0 0.2rem;color: #888}
.tc-search>.mxw-box .search-box{ background: #f2f2f2; padding: 0 0.333rem; display: flex; align-items: center; justify-content: space-between; border-radius: 0.367rem;}
.tc-search>.mxw-box .search-box input{ width: 3.633rem;
    font-size: 0.233rem; color: #888; border-right: 0.017rem solid #d8d8d8;
    margin: 0.2rem 0.267rem 0.2rem 0;
}
.tc-search>.mxw-box .search-box button{ cursor: pointer;}

.about-cate .mxw-box{background-color: #ffffff;
    box-shadow: 0px 0px 16px 2px
    rgba(0, 0, 0, 0.05); display: flex; align-items: center; justify-content: space-between; padding: 0.4rem 0.667rem;}
.about-cate .mxw-box .tc-left .en{ font-size: 0.3rem; color: #333;}
.about-cate .mxw-box .tc-left .cn{	font-size: 0.433rem; color: #333; margin-top: 0.1rem;}
.about-cate .mxw-box .tc-left .cn img{ margin-left: 0.1rem;}
.about-page{ padding: 0.917rem 0 1.75rem;}
.about-page .content{ font-size: 0.3rem; line-height: 1.8; color: #333;}
.about-page .content img{ max-width: 100%; height: auto !important;}

.about-cate .mxw-box .tc-right a{ padding: 0 0.1rem 0.267rem 0.1rem; }
.about-cate .mxw-box .tc-right a.active{ border-bottom: 2px solid #333;}

.pro-page{ padding: 0 0 1.667rem;}
.pro-page>.mxw-box{ display: flex;  justify-content: space-between;    align-items: flex-start;}
.pro-page>.mxw-box .tc-left{ width: 17.4%; flex-shrink: 0;    position: sticky;    top: 1.95rem; }
.pro-page>.mxw-box .tc-left .menu-title{ background: #db2128; display: flex; align-items: center; justify-content: center; padding: 0.25rem 0.167rem 0.333rem; width: 100%;}
.pro-page>.mxw-box .tc-left .menu-title{ font-size: 0.3rem; font-weight: bold; color: #fff; position: relative;}
.pro-page>.mxw-box .tc-left .menu-title img{ margin-right: 0.333rem;height: 0.5rem;}
.pro-page>.mxw-box .tc-left .menu-title::after{ content: ""; position: absolute; width: 100%;background-color: #ffffff;
    opacity: 0.3; height: 1px; bottom: 4px;}


.pro-page>.mxw-box .tc-right{ flex-grow: 1; margin-left: 0.7rem; min-width: 0; padding-top: 0.433rem;}
.pro-page>.mxw-box .tc-right .poz-wz{ font-size: 0.233rem; color: #777777; padding-bottom: 10px; border-bottom: 1px solid #e9e9e9;}
.pro-page>.mxw-box .tc-right .poz-wz img{ margin-right: 0.167rem; margin-top: -2px}

.pro-menu-box .menu-item>a{ margin-top: 0.167rem; display:flex; align-items: center; justify-content: space-between; padding: 0.15rem 0.2rem;	;border:1px solid #db2128; color: #333; font-size: 0.25rem; font-weight: bold;}
.pro-menu-box .menu-item>a p{ flex-grow: 1; min-width: 0; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;}
.pro-menu-box .menu-item>a::after{ content: "+"; }
.pro-menu-box .menu-item.currentDt>a{    background: #db2128; color: #fff; }
.pro-menu-box .menu-item .list{ flex-direction: column;}
.pro-menu-box .menu-item .list>a{ display:flex; align-items: center; justify-content: space-between; padding: 0.15rem 0.15rem;border: solid 0.017rem #d5d5d5; margin-top: 0.167rem; font-size: 0.24rem;}
.pro-menu-box .menu-item .list>a::after{ content: ">>";}
.pro-menu-box .menu-item .list>a.active{ color: #db2128}
.navContent {
    display: none;
}

.pro-list{ margin-top: 0.667rem; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.pro-list .item{  width: 32.3%; margin-right: 1.55%; }
.pro-list .item .st{font-size: 0.3rem; color: #333; text-align: center; margin-top: 0.417rem;    display: flex;
    align-items: center;
    justify-content: center;}
.pro-list .item .st span {
    font-size: 0.233rem;
    margin-left: 5px;
    color: #db2128;
}
.pro-list .item .mxw-image{border: solid 1px #d5d5d5;}
.pro-list .item:nth-child(3n){ margin-right: 0;}
.pro-list .item:nth-child(3n)~.item{ margin-top: 0.5rem;}
.pro-list .item:hover .st{ color: #db2128}

.pro-menu-box  .case-item{ margin-top: 10px;}
.pro-menu-box  .case-item>a{ display:flex; align-items: center; justify-content: space-between; padding: 0.15rem 0.15rem;border: solid 0.017rem #d5d5d5; margin-top: 0.167rem; font-size: 0.267rem;}
.pro-menu-box  .case-item>a::after{ content: ">>";}
.pro-menu-box  .case-item>a.active{ color: #fff; background: #db2128}

.news-list{ margin-top: 0.667rem;}
.news-list .item{ display: flex; align-items: stretch; justify-content: space-between; border: 1px solid #e6e6e6;
    padding: 0.45rem;}
.news-list .item .mxw-image{ width: 29%; flex-shrink: 0; border: solid 1px #d5d5d5;}
.news-list .item .con{ flex-grow: 1; min-width: 0; margin-left: 0.8rem; display: flex; flex-direction: column; justify-content: space-between; padding: 0.25rem 0;}
.news-list .item .con .st{ font-size: 0.333rem;}
.news-list .item .con .st span{ font-size: 0.267rem; color: #666; margin-top: 0.25rem; display: block;}
.news-list .item .con .desc{ font-size: 0.25rem; color: #666; line-height: 1.6}
.news-list .item .con .more{ border: 1px solid #db2128; color: #db2128; transition: all 0.3s;
    font-size: 0.233rem; padding: 0.1rem 0.5rem; width: max-content}
.news-list .item:nth-child(1)~.item{ margin-top: 0.333rem;}
.news-list .item:hover .more{ background: #db2128; color: #fff}
.news-list .item:hover .st p{ color: #db2128;}

.cont-info{ margin-top: 1.083rem;}
.cont-info .title{ text-align: center;}
.cont-info .title .cn{ font-size: 0.5rem; font-weight: bold;}
.cont-info .title .desc{ font-size: 0.3rem; color: #666; margin-top: 0.25rem}

.info-list{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 0.867rem;}
.info-list .item{ text-align: center; padding: 0.917rem 1rem 0.833rem; border: 1px solid #eeeeee; width: 30%}
.info-list .item .st{ font-size: 0.4rem; color: #101010; margin: 0.2rem auto 0.367rem;}
.info-list .item .desc{ color: #666666; font-size: 0.267rem; line-height: 1.6;}
.info-list .item .stb{ font-weight: bold; color: #101010; font-weight: bold;}
.info-list .item:hover{ border: 1px solid #db2128}
.map-box{ height: 7.667rem; margin-top: 1.067rem}

 .join_f {
    background: #ececec;
    padding: 0.6667rem 0.75rem;
     margin-top: 0.75rem;
}
 .j_inp input {
    background: #fff;
}
 .j_inp input,
 .join_f select {
    width: 48%;
    height: 0.8rem;
    border: 0.0167rem solid #e4e6e8;
    padding-left: 0.3333rem;
    font-size: 0.2667rem;
}
 .j_inp input:nth-child(even) {
    float: right;
}
 .j_inp {
    margin-bottom: 0.3333rem;
}
 .join_f textarea {
    width: 100%;
    height: 2.0833rem;
    border: 0.0167rem solid #e4e6e8;
    padding-left: 0.3333rem;
    padding-top: 0.25rem;
    resize: none;
}
 .b_cent {
    text-align: center;
    margin-top: 0.5rem;
}
 .b_cent button {
    width: 3rem;
    height: 0.75rem;
    border: none;
    background: #db2128;
    color: white;
    font-size: 0.3rem;
    cursor: pointer;
}


.tc-title{ text-align: center;}
.tc-title .cn{ font-size: 0.6rem; font-weight: bold; position: relative;}
.tc-title .cn::after{ background: #e7e7e7; content: ""; width: 4.067rem; height: 1px;
margin: 0.267rem auto 0; display: block;}
.tc-title .cn::before{background: #dd2f36; width: 1.283rem; height: 2px;
bottom: 1px; left: 0; right: 0; margin: 0 auto; position: absolute; z-index: 1; content: "";}

.tc-title .desc{ font-size: 0.3rem; color: #999; margin-top: 0.2rem;}

.tc-product{padding: 0.767rem 0 0.467rem; background: url("../images/pro-bg.jpg") center no-repeat; background-size: cover}
.pro-body .top{ display: flex; align-items: stretch; justify-content:flex-start; margin-top: 0.833rem;}
.pro-body .top .item{ width: 32.5%; margin-right: 1.25%; padding: 0.333rem 0.333rem 0.267rem 0.333rem; background: #fff;}
.pro-body .top .item:nth-child(3n){ margin-right: 0;}
.pro-body .top .item .mxw-image{ border: 1px solid #d5d7dc;}
.pro-body .top .item .st{ display: flex; align-items: center; justify-content: center; margin-top: 0.2rem; font-size: 0.333rem;}
.pro-body .top .item .st span{ font-size: 0.267rem; color: #db2128; margin-left: 0.25rem;}
.pro-body .bot{ margin-top: 0.333rem; position: relative; }
.pro-body .bot .pro-swiper{ overflow: hidden;}
.pro-body .bot .pro-swiper .swiper-slide{ width: 24%;}
.pro-body .bot .pro-swiper .swiper-slide .mxw-image{ border: 1px solid #d5d7dc;}
.pro-body .bot .pro-swiper .swiper-slide p{ text-align: center; padding: 0.1rem 0.25rem; background: #dfdfe6; font-size: 0.333rem; color: #333}
.pro-body .bot .pro-swiper .swiper-slide:hover p{ color: #db2128}
.pro-body .bot .swiper-button-next{ right: -1rem; color: #000;}
.pro-body .bot .swiper-button-prev{ left: -1rem; color: #000;}

.p-more{padding: 0.2rem 0.533rem; font-size: 0.267rem; color: #fff;background-image: linear-gradient(180deg,
#009b4d 0%,
#029761 50%,
#039274 100%),
linear-gradient(
        #004db1,
        #004db1);
    background-blend-mode: normal,
    normal;
    border-radius: 0.4rem; margin: 0 auto; display: block; width:max-content; transition: all 0.3s}
.pro-body .p-more{ margin-top: 0.633rem;}
.p-more:hover{ color: #fff;background-image: linear-gradient(180deg,
#06774d 0%,
#0dbb97 50%,
#325e48 100%),
linear-gradient(
        #004db1,
        #004db1);
    background-blend-mode: normal,
    normal;}


.tc-project{ padding: 1.417rem 0 0.75rem; background: url("../images/prj-bg.jpg") bottom center no-repeat; background-size: 100% 70%;}
.poj-body{ display: flex; align-items: stretch; justify-content: flex-start;margin-top: 0.783rem; flex-wrap: wrap;}
.poj-body .item{ width: 32.5%; margin-right: 1.25%;}
.poj-body .item .st{ margin-top: 0.75rem; font-size: 0.333rem; color: #161616; font-weight: bold; display: flex; align-items: center; justify-content: flex-start;}
.poj-body .item .st span{     font-size: 0.267rem;
    color: #db2128;font-weight: normal;
    margin-left: 0.25rem;}
.poj-body .item .st i{font-size:0.4rem;    }
.poj-body .item .desc{	font-size: 0.233rem;color: #666666; margin-top: 0.267rem; line-height: 1.6}
.poj-body .item:nth-child(3)~.item{ width: 23.575%; margin-right: 1.9%; margin-top: 1rem;}
.poj-body .item:nth-child(3),.poj-body .item:nth-child(7){ margin-right: 0;}
.poj-body .item:nth-child(3)~.item:nth-child(7){ margin-right: 0}


.tc-case{ padding: 0.833rem 0 0.617rem;}
.case-swiper{ margin-top: 1.217rem; position: relative; overflow: hidden;}
.case-swiper .swiper-slide{ width: 24%;}
.case-swiper .swiper-slide p{ padding: 0.333rem 0.25rem;	background-image: linear-gradient(180deg,
#009b4d 0%,
#029761 50%,
#039274 100%),
linear-gradient(
        #2c6d35,
        #2c6d35);
    background-blend-mode: normal,
    normal; text-align: center; font-size: 0.3rem; color: #fff;}
.case-swiper .swiper-button-prev,.case-swiper .swiper-button-next{ color: #fff; width: 1.333rem; height: 1.333rem; font-weight: bold; font-size: 0.8rem; background: rgba(0,0,0,.63)}
.case-swiper .swiper-button-prev{ left: 0;}
.case-swiper .swiper-button-next{ right: 0}
.case-swiper .swiper-button-prev:hover,.case-swiper .swiper-button-next:hover{ background: rgba(44,109,53,.63)}

.tc-case .p-more{ margin-top: 1rem; }

.tc-lc{ padding: 1.167rem 0 1.417rem; background: url("../images/lc-bg.png") center no-repeat; background-size: cover;}
.lc-list{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 0.833rem; position: relative;}
.lc-list .item{ display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1}
.lc-list .item .icon{ width: 1.833rem; height: 1.833rem; display: flex; align-items: center; justify-content: center;}
.lc-list .item:nth-child(odd){flex-shrink: 0}
.lc-list .item:nth-child(even){flex-grow: 1;min-width: 0;}
.lc-list .item:nth-child(odd) .icon img{ width: 0.917rem;}
.lc-list .item:nth-child(odd) .icon{background-color: #818181; border-radius: 50%; }
.lc-list .item:nth-child(odd):hover .icon{	background-image: linear-gradient(180deg,
#009b4d 0%,
#029761 50%,
#039274 100%);}
.lc-list::before{ position: absolute; width: 100%; content: ""; display: block; height:1px; background: rgba(0,0,0,.1); top: 0.9rem; z-index: 0}

.lc-list .item p{ font-size: 0.333rem; margin-top: 8px;}
.lc-body .desc{ margin-top: 1.1rem;	font-size: 0.367rem; color: #333; text-align: center;}
.lc-body .st{ font-size: 0.5rem; margin-top: 0.35rem; text-align: center; font-weight: bold;}
.lc-body .info{ display: flex; align-items: center; max-width: max-content;  margin: 0.867rem auto 0;	background-image: linear-gradient(180deg,
#009b4d 0%,
#029761 50%,
#039274 100%),
linear-gradient(
        #197ef5,
        #197ef5);
    background-blend-mode: normal,
    normal;
    border-radius: 0.383rem; padding-left: 0.467rem; color: #fff;}
.lc-body .info>P{	font-size: 0.35rem; font-weight: bold; padding: 0.1rem 0.5rem 0.1rem 0; display: flex; align-items: center;}
.lc-body .info>P img{ margin-right: 0.1rem;}

.tc-about{ padding: 1.05rem 0 1.667rem; background: url("../images/about-bg.png") top center no-repeat; background-size: 100% 85%;}
.tc-about>.mxw-box{box-shadow: 0px 2px 59px 0px
rgba(114, 114, 114, 0.27); display: flex; align-items: stretch; justify-content: space-between; background: #fff;}
.tc-about>.mxw-box .tc-right{ width: 50.5%; flex-shrink: 0; margin-right: -2.35rem;display: flex}
.tc-about>.mxw-box .tc-right img{max-width:initial}
.tc-about>.mxw-box .tc-left{ padding: 1rem 1.083rem 1.1rem 1.167rem; flex-grow: 1; min-width: 0;}
.tc-about>.mxw-box .tc-left .title{ display: flex; align-items: flex-end; justify-content: flex-start;}
.tc-about>.mxw-box .tc-left .title .big{font-size: 1.733rem;	font-family: Arial,"Microsoft Yahei",sans-serif;font-weight: bold; color: #019e68; line-height: 0.75; margin-right: 0.233rem; flex-shrink: 0;}
.tc-about>.mxw-box .tc-left .title .sma{ flex-shrink: 0;}
.tc-about>.mxw-box .tc-left .title .sma .cn{font-size: 0.6rem; font-weight: bold;  }
.tc-about>.mxw-box .tc-left .title .sma .en{	font-size: 0.25rem;}
.tc-about>.mxw-box .tc-left .title .sma .cn::after{ display: block; content: ""; height: 0.167rem; background: rgba(51,148,54,0.35); margin-top: -0.1rem}
.tc-about>.mxw-box .tc-left .title .xt{ border-bottom: 1px solid #8bbd2a; flex-grow: 1;min-width: 0;}
.tc-about>.mxw-box .tc-left .desc{ margin: 0.7rem 0 0.6rem;	font-size: 0.3rem; color: #666; line-height: 2.1; text-indent: 2em;}
.tc-about>.mxw-box .tc-left .a-more{ padding: 0.25rem 0.333rem;font-size: 0.267rem;color: #009b4c; width: max-content;border-radius: 0.1rem;
    border: solid 1px #009b4c; transition: all 0.3s;
    display: block;}
.tc-about>.mxw-box .tc-left .a-more:hover{ color: #fff; background: #009b4c}
.tc-about>.mxw-box .tc-left .gd-box{ display: flex; align-items: center;justify-content: flex-start; margin-bottom: 0.867rem;}
.tc-about>.mxw-box .tc-left .gd-box .item{ flex-grow: 1; min-width: 0; text-align: center;}
.tc-about>.mxw-box .tc-left .gd-box .item .num{font-size: 0;}
.tc-about>.mxw-box .tc-left .gd-box .item .scrolling-numbers{ font-size: 0.867rem; color: #db2128; font-weight: bold; }
.tc-about>.mxw-box .tc-left .gd-box .item sup{ font-size: 0.533rem; color: #db2128; vertical-align: top;}
.tc-about>.mxw-box .tc-left .gd-box .item sub{ font-size: 0.317rem; color: #323333}

.tc-news{ padding-bottom: 1.583rem;}
.news-body{ display: flex;  justify-content: space-between; margin-top: 1rem;    align-items: stretch;}
.news-body .tc-left{ width: 42.25%; flex-shrink: 0;}
.news-body .tc-left .item{ display: flex; align-items: stretch; justify-content: space-between;}
.news-body .tc-left .item .date{	background-image: linear-gradient(180deg,
#009b4d 0%,
#029761 50%,
#039274 100%),
linear-gradient(
        #db2128,
        #db2128);
    background-blend-mode: normal,
    normal; color: #fff; padding: 0.45rem 0.45rem 0.383rem 0.5rem;font-size: 21px; text-align: center; flex-shrink: 0;}
.news-body .tc-left .item .date p{	font-size: 0.5rem; font-weight: bold;}
.news-body .tc-left .item .con{ flex-grow: 1; min-width: 0;border: solid 1px #dedede; padding: 0.333rem 0.383rem; display: flex; flex-direction: column; justify-content: center;}
.news-body .tc-left .item .con .st{font-size: 0.3rem;font-weight: bold;}
.news-body .tc-left .item .con .desc{ margin-top: 0.2rem;	font-size: 0.267rem;}
.news-body .tc-right{ padding-left: 0.917rem; flex-grow: 1; min-width: 0;    justify-content: space-between;    display: flex;
    flex-direction: column;}
.news-body .tc-right .item{ display: flex; align-items: stretch; justify-content: space-between; padding-bottom: 0.483rem; border-bottom: 1px solid #f0f0f0;}
.news-body .tc-right .item .date{	font-size: 0.3rem;color: #a4a4a4; padding-right: 0.633rem; border-right: 1px solid #cdcdcd; flex-shrink: 0;}
.news-body .tc-right .item .date p{	font-size: 0.483rem; color: #333;font-weight: bold;}
.news-body .tc-right .item .con{ flex-grow: 1; min-width: 0; margin-left: 0.533rem;}
.news-body .tc-right .item .con .st{	font-size: 0.3rem; font-weight: bold; color: #393939;}
.news-body .tc-right .item .con .desc{	font-size: 0.25rem; color: #666; margin-top: 0.167rem; line-height: 1.5}
.news-body .tc-right .item:nth-child(1)~.item{ padding-top: 0.533rem;}
.news-body .tc-right .item:hover .st{ color: #0b9547}

footer .top{ display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 0.433rem;}
footer .top .d-box3{ width: 19.4%; flex-shrink: 0; display: flex; align-items: stretch; justify-content: space-between; margin-left: 1.5rem;}
footer .top .d-box3 .item{ width: 45%; text-align: center;}
footer .top .d-box3 .item img{ border: 1px solid #c9c9c9;}
footer .top .d-box3 .item p{ font-size: 0.233rem; color: #666; margin-top: 0.1rem;}
footer .top .title{ font-size: 0.3rem; color: #333; font-weight: bold;}
footer .top .d-box2 .con{ margin-top: 0.35rem;font-size: 0.267rem; color: #666; line-height: 1.8;}
footer .top .d-box2{ width: 27%; flex-shrink: 0; margin-left: 1.5rem;}
footer .top .d-box1{ flex-grow: 1; min-width: 0;}
footer .top .d-box1 .d-menu{ margin-top: 0.3rem; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap; }
footer .top .d-box1 .d-menu a{ margin-right: 0.5rem;font-size: 0.267rem; color: #666; line-height: 1.6;}

footer .top .d-box1 .title:nth-child(3){ margin-top: 0.5rem;}





.flx-msg{ padding: 8px 0; background: url("../images/d-msg.jpg") center no-repeat; background-size: cover; position: fixed; bottom: 0; width: 100%; z-index: 999;}
.flx-msg .mxw-box{ display: flex; align-items: center; justify-content: space-between;width: 90%;max-width: initial;}
.flx-msg .mxw-box .d-logo{ width: 0.65rem;}
.flx-msg .mxw-box .zx{ flex-shrink: 0; margin-left: 0.5rem;}
.flx-msg .mxw-box .zx a{ padding: 0.117rem 0.4rem;border-radius: 0.283rem; color: #fff;	font-size: 0.233rem;
    border: solid 1px #ffffff; transition: all 0.3s;}
.flx-msg .mxw-box .zx a:hover{ background: #fff; color: #333;}
.flx-msg .mxw-box .d-tel{ flex-shrink: 0; display: flex; align-items: stretch; justify-content: space-between;font-size: 0.3rem; font-weight: bold;color: #fff; margin-left: 0.5rem;}
.flx-msg .mxw-box .d-tel .st{ flex-shrink: 0; margin-right: 0.2rem;}
.flx-msg .mxw-box .d-tel .con{ flex-grow: 1; min-width: 0;}
.flx-msg .mxw-box  .msg{ flex-grow: 1; min-width: 0; margin-left: 0.5rem;}
.flx-msg .mxw-box  .msg form{ display: flex; align-items: stretch; justify-content: space-between;}
.flx-msg .mxw-box  .msg form .tc-right{    flex-shrink: 0;}
.flx-msg .mxw-box  .msg form .tc-right button{ height: 100%; padding: 0.1rem 0.233rem; background: #fff;	border-radius: 0.133rem; cursor: pointer;font-size: 0.233rem;color: #4ea3e3;  }
.flx-msg .mxw-box  .msg form .tc-left{ flex-grow: 1; min-width: 0; margin-right: 0.2rem; display: flex; flex-direction: column;justify-content: center;}
.flx-msg .mxw-box  .msg form .tc-left .up1{  display: flex; align-items: stretch; justify-content: space-between;}
.flx-msg .mxw-box  .msg form .tc-left .up1:nth-child(2){ margin-top: 0.2rem;}
.flx-msg .mxw-box  .msg form .tc-left .up1 .item{ width: 25%; background: #fff;	border-radius: 2px;opacity: 0.94;
    font-size: 0.233rem; color: #333;     display: flex; padding: 0 0.233rem 0;
    align-items: center;
    justify-content: space-between;}
.flx-msg .mxw-box  .msg form .tc-left .up1 .item:nth-child(3){ width: 43%; }
.flx-msg .mxw-box  .msg form .tc-left .up1 .item span{    flex-shrink: 0;}
.flx-msg .mxw-box  .msg form .tc-left .up1 .item input{flex-grow: 1;
    min-width: 0; height:35px}
body{ padding-bottom: 1rem;}

.mxw-copy{ }
.mxw-copy .mxw-box{  padding: 0.333rem 0; 	font-size: 0.233rem; color: #666;  text-align: center; border-top: 1px solid #666666;}
.mxw-copy .mxw-box a{font-size: 0.233rem; color: #666;
    }
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; color: #666;}

.n-banner{margin-bottom:50px;}


.fhlb{display: inline-block;width: 250px;background: #b0b0b0;text-align: center;transition: all .4s;    margin-top: 30px;}
.fhlb:hover{background: #e50019;}
.fhlb i{width: 20px;height: 20px;display: inline-block;vertical-align: middle;background: url("../images/fhlb.png") no-repeat center;background-size: cover;}
.fhlb span{display: inline-block;vertical-align: middle;color: #fff;font-size: 18px;line-height: 50px;margin-left: 18px;}








/* ==================== 页面具体样式 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 ==================== */


/* ==================== 产品详情页 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: #172a88;
}
.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;
}
.ny-product-desc .bottom img,.content img{
    max-width: 100%;
    height: auto !important;
}
.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.3667rem;
    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;

    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #db2128;
}
.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 #c10d1a;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #c10d1a;
}
.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: 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 {


}
.ny-news-desc > .mxw-box {
    padding-top: 40px;
}
.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;
    font-size: 15px;
}
.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 {
        font-size: 17px;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */

.ny-product-desc .bottom table tr td img{max-width: 95%;}

.ny-news-desc .article video,.ny-news-desc .article iframe{ max-width:100%; }
.ny-product-desc .bottom video,.ny-product-desc .bottom iframe{ max-width:100%; }
.fYcoZV{right:-15px  !important; bottom:50px !important;}


@media screen and (max-width:1780px) {

.top-box .logo-box >img{ max-height:1.533rem;}
.tc-search>.mxw-box,.lc-list,.tc-title,.case-swiper .swiper-button-prev, .case-swiper .swiper-button-next,.flx-msg{zoom:0.9}
.news-body .tc-right{zoom:0.9}
.flx-msg .mxw-box .d-tel{ zoom: 0.9}
.info-list .item{   zoom: 0.9;}


}

@media screen and (max-width:1680px) {
.news-body .tc-left {
    width: 46.25%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
.news-body .tc-left .mxw-image{    flex-grow: 1;    display: flex;
    min-width: 0;}
.top-box .logo-box >img{ max-height:1.333rem;}
.x-menu > li > a{    font-size: 0.267rem;}

.pro-menu-box .menu-item .list>a{    font-size: 0.233rem;}

.pro-page>.mxw-box .tc-left{top:1.75rem}

}

@media screen and (max-width:1560px) {
	.top-box .right{    padding-left: 0.8rem;}
.top-box .logo-box >img{ max-height:1.233rem;}
.pro-page>.mxw-box .tc-left{top:1.65rem}
.info-list .item .desc{font-size: 0.233rem;}
.info-list .item{    padding: 0.917rem 0.8rem 0.833rem;}
.info-list .item .icon{    zoom: 0.8;}
}

@media screen and (max-width:1480px) {
	.top-box{   width:90%;  max-width: 90%;}
	.lc-list .item,.tc-title,.tc-about>.mxw-box .tc-left .gd-box{zoom:0.8}
	.lc-list::before{    top: 0.72rem;}
.tc-about>.mxw-box .tc-left .desc{font-size: 0.233rem}
.pro-menu-box .menu-item>a{    font-size: 0.233rem;}
.pro-page>.mxw-box .tc-left{top:1.55rem;    width: 18.4%;}
.info-list .item{    width: 31.5%;    padding: 0.617rem 0.7rem 0.633rem;}
}

@media screen and (max-width:1440px) {
.pro-page>.mxw-box .tc-left{top:1.45rem}
.top-box{   width:92%;  max-width: 92%;}
.top-box .logo-box >img {
    max-height: 1rem;
}
.x-menu > li:first-child > a {
    padding: 0.1rem 0.2rem;
}
.info-list .item{    width: 31.5%;    padding: 0.517rem 0.5rem 0.533rem;}



}

@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    .tc-search{}
    .tc-search>.mxw-box{ flex-wrap: wrap;}
    .tc-search>.mxw-box .c1 .text{ font-size: 18px;}
    .tc-search>.mxw-box .c1 .st{ font-size: 14px;}
    .tc-search>.mxw-box .c1 .icon{ zoom: 0.9}
    .tc-search>.mxw-box .center{order: 1; font-size: 14px;}
    .tc-search>.mxw-box .search-box{ width: 100%; margin: 15px 0;}
    .tc-search>.mxw-box .search-box form{ display: flex; justify-content: space-between; width: 100%;}
    .tc-search>.mxw-box .search-box input{ flex-grow: 1; min-width: 0; width:100%;}
    .tc-search>.mxw-box .search-box button{ flex-shrink: 0;}
    .tc-product{ padding: 45px 0;}

    .tc-title .cn{ font-size: 20px;}
    .tc-title .desc{ font-size: 14px; margin-top: 3px;}
    .tc-title .cn::after{ margin-top: 5px;}
    .pro-body .top{ margin-top: 25px; flex-wrap: wrap;}
    .pro-body .top .item{ width: 100%; margin-right: initial; padding: 15px; margin-bottom: 20px;}
    .pro-body .top .item .st{ font-size: 14px; margin-top: 5px;}
    .pro-body .top .item .st span{ font-size: 12px;}
    .pro-body .bot{ margin-top: 0;}
    .pro-body .bot .pro-swiper .swiper-slide p{ font-size: 14px;}
    .pro-body .p-more{ zoom: 0.8; margin-top: 20px;}
    .tc-project{ padding: 45px 0;}
    .poj-body{ margin-top: 25px; justify-content: space-between;}
    .poj-body .item{ width: 100%; margin: initial;}
    .poj-body .item .st{ margin-top: 5px; font-size: 16px;}
    .poj-body .item .desc{ font-size: 12px; margin-top: 5px;}
    .poj-body .item .st span{ margin-left: 10px;zoom: 0.85; margin-top: -3px;}
    .poj-body .item:nth-child(3), .poj-body .item:nth-child(7){ margin-right: initial;}
    .poj-body .item:nth-child(3)~.item{ margin-top: initial; width: 48.5%; margin-right: initial;}
    .poj-body .item:nth-child(1)~.item{ margin-top: 20px; width: 48.5%;}
    .tc-case{ padding: 45px 0;}
    .case-swiper{ margin-top: 25px;}
    .case-swiper .swiper-slide p{ font-size: 14px; padding: 8px 15px;}
    .case-swiper .swiper-button-prev, .case-swiper .swiper-button-next{ font-size: 16px; width: 35px; height: 35px;}
    .case-swiper .swiper-button-prev::after, .case-swiper .swiper-button-next::after{ font-size: 14px;}
    .tc-case .p-more{ margin-top: 25px; zoom: 0.8}
    .tc-lc{ padding: 45px 0;}
    .lc-list{ margin-top: 25px; flex-wrap: wrap; justify-content: space-between;}
    .lc-list .item:nth-child(even){ display: none;}
    .lc-list .item{ width: 23%;}
    .lc-list .item .icon{ width: 90%;  height: 25vw; padding: 10px 0}
    .lc-list .item:nth-child(odd) .icon img{ width: 40%;}
    .lc-list .item p{ font-size: 14px; text-align: center;}
    .lc-list .item:nth-child(8n)~.item{ margin-top: 15px;}
    .lc-list::before{ display: none;}
    .lc-body .desc{ margin-top: 30px; font-size: 16px;}
    .lc-body .st{ font-size: 18px;}
    .lc-body .info{ margin-top: 15px; padding-left: 15px; width: 100%; max-width: 100%;}
    .lc-body .info>P{ font-size: 16px; padding-right: 0.2rem}
    .lc-body .info>a{ zoom: 0.8}

    .tc-about{ padding: 45px 0;}
    .tc-about>.mxw-box{ flex-wrap: wrap;}
    .tc-about>.mxw-box .tc-left{ padding: 15px;}
    .tc-about>.mxw-box .tc-left .title .big{ font-size: 60px;}
    .tc-about>.mxw-box .tc-left .title .sma .cn{ font-size: 18px;}
    .tc-about>.mxw-box .tc-left .title .sma .en{ font-size: 12px;}
    .tc-about>.mxw-box .tc-left .desc{ font-size: 14px; margin: 20px auto;}
    .tc-about>.mxw-box .tc-left .gd-box{ flex-wrap: wrap; margin-bottom: 20px; }
    .tc-about>.mxw-box .tc-left .gd-box .item{ width: 48%;}
    .tc-about>.mxw-box .tc-left .gd-box .item .scrolling-numbers{ font-size: 30px;}
    .tc-about>.mxw-box .tc-left .gd-box .item>p{ font-size: 14px;}
    .tc-about>.mxw-box .tc-left .gd-box .item sup{ font-size: 12px;}
    .tc-about>.mxw-box .tc-left .gd-box .item sub{ font-size: 12px;}
    .tc-about>.mxw-box .tc-left .gd-box .item:nth-child(even){ width: max-content}
    .tc-about>.mxw-box .tc-left .gd-box .item:nth-child(4){ display: none}
    .tc-about>.mxw-box .tc-right{ margin-right: 0; width: 100%;}
    .tc-about>.mxw-box .tc-left .a-more{ zoom: 0.8}
    .tc-news{ padding-bottom: 45px;}
    .news-body{ margin-top: 25px; flex-wrap: wrap;}
    .news-body .tc-left{ width: 100%;}
    .news-body .tc-right{ padding-left: 0; margin-top: 20px;}
    .news-body .tc-left .item .date{ padding: 15px; font-size: 14px;}
    .news-body .tc-left .item .date p{ font-size: 18px;}
    .news-body .tc-left .item .con{ padding: 12px;}
    .news-body .tc-left .item .con .st{ font-size: 16px;}
    .news-body .tc-left .item .con .desc{ font-size: 12px;}
    .news-body .tc-right .item{ padding-bottom: 15px;}
    .news-body .tc-right .item .date p{ font-size: 18px;}
    .news-body .tc-right .item .date{ font-size: 14px; padding-right: 14px; display: flex; flex-direction: column; justify-content: center;}
    .news-body .tc-right .item .con{ margin-left: 12px;}
    .news-body .tc-right .item .con .st{ font-size: 16px;}
    .news-body .tc-right .item .con .desc{ font-size: 14px;}
    .news-body .tc-right .item:nth-child(1)~.item{ padding-top: 15px;}
    .map-box{ margin-top: 25px; height: 400px;}
    footer .top{ flex-wrap: wrap;}
    footer .top .d-box1{ display: none;}
    footer .top .d-box2{ margin-left: 0; width: 100%;}
    footer .top .d-box2 .con{ font-size: 14px;}
    footer .top .d-box3{ margin-left: 0; margin-top: 30px; width: 100%;}

    .flx-msg .mxw-box .d-logo{ display: none;}
    .flx-msg .mxw-box .d-tel{ display: none}
    .flx-msg .mxw-box .zx{display: none}
    .flx-msg .mxw-box .msg{ margin-left: 0}
    .flx-msg .mxw-box .msg form .tc-right{ flex-shrink: 0}
    .flx-msg .mxw-box .msg form .tc-right button{ font-size: 12px; padding: 6px 12px;}
    .flx-msg .mxw-box .msg form .tc-left .up1 input{ font-size: 14px;}
    body{ margin-bottom: 0; padding-bottom: 0.733rem;}
.flx-msg .mxw-box .msg form .tc-left .up1 .item{    padding: 0 5px 0;}
    .about-cate{ margin-top: 15px;}
    .about-cate .mxw-box{ padding: 15px;}
    .about-cate .mxw-box .tc-left .en{ font-size: 12px;}
    .about-cate .mxw-box .tc-left .cn{ font-size: 16px;}
    .about-cate .mxw-box .tc-right a{ font-size: 16px; padding-bottom: 5px;}
    .about-page{ padding: 45px 0;}
    .about-page .content{ font-size: 14px;}
    .pro-page>.mxw-box{ flex-wrap: wrap;}
    .pro-page>.mxw-box .tc-left{ width: 100%;}
    .pro-page>.mxw-box .tc-right{ margin-left: 0}
    .pro-list{ justify-content: space-between; margin-top: 20px;}
    .pro-list .item{ width: 48.5%; margin-right: initial;}
    .pro-list .item .st{ margin-top: 5px; font-size: 14px;}
    .pro-list .item:nth-child(2n)~.item{ margin-top: 25px;}
    .pro-page{ padding-bottom: 45px;}
    .news-list{ margin-top: 25px;}
    .news-list .item{ padding: 15px; flex-wrap: wrap;}
    .news-list .item .mxw-image{ width: 100%;}
    .news-list .item .con{ margin-left: 0;}
    .news-list .item .con .st{ font-size: 16px;}
    .news-list .item .con .st span{ font-size: 12px; margin: 10px auto 10px 0;}
    .news-list .item .con .desc{ font-size: 14px; margin-bottom: 10px;}

    .pro-page>.mxw-box .tc-left{ zoom: 0.8; padding-top: 20px;    position: initial;zoom: 1;}
    .pro-page>.mxw-box .tc-left .menu-title{ padding: 15px}
    .cont-info .title .cn{ font-size: 18px;}
    .cont-info .title .desc{ font-size: 14px;}

    .cont-info{ margin-top: 25px;}
    .info-list{ margin-top: 20px; flex-wrap: wrap;}
    .info-list .item{ width: 100%;}
    .info-list .item:nth-child(1)~.item{ margin-top: 20px;}
    .join_f{ padding: 15px 15px 25px 15px;}
    .j_inp input, .cont_msg .join_f select{ width: 100%; margin-bottom: 10px; font-size: 14px;}
    .b_cent{ margin-top: 15px; zoom: 0.8}

.tc-search>.mxw-box, .lc-list, .tc-title, .case-swiper .swiper-button-prev, .case-swiper .swiper-button-next, .flx-msg{        zoom: initial;}
.lc-list .item p {
    font-size: 18px;
}

.tc-about>.mxw-box .tc-right img{width: 100%;}
table{width: 100%;}

.pro-list .item .st span{font-size: 12px;flex-shrink: 0;}
.mxw-pagination a, .mxw-pagination span{    display: none;}
.mxw-pagination .tips{    display: inline-block;}
.fhlb{    zoom: 0.8;}


.ny-news-desc .article video,.ny-news-desc .article iframe{ max-width:100%;height:220px !important; }
.ny-product-desc .bottom video,.ny-product-desc .bottom iframe{ max-width:100%;height:220px !important; }






}



