@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%;
    image-rendering: -moz-crisp-edges; /* Firefox */
   image-rendering: -o-crisp-edges; /* Opera */
   image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
   -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
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: block;
    margin: 4px;
}
.mxw-pagination > a.active,
.mxw-pagination > a:hover {
    background-color: #c9151e;
    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: #c9151e;
    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%;
    font-size: 0;
    border-bottom: 1px solid #e5e5e5;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: stretch;
    font-size: 0;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    padding-left: 0.333rem;
    display: flex; align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}
.mxw-keywords .left strong {
    vertical-align: inherit; color: #444444;
}
.mxw-keywords .left span {
    color: #000;
    vertical-align: middle;
    /*font-weight: bold;*/
    display: flex; align-items: center;
}
.mxw-keywords .left span img{ margin-right: 0.167rem;}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #c9151e;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right{
    display: flex;
    align-items: center;
}
.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: 394px;
    border-radius: 24px;
    height: 48px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #e5e5e5;
    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 {
    height: 48px;
margin-left: -18px;
    border-radius: 24px;
cursor: pointer;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;
    background-size: cover;
}
.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: 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;z-index: 0;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
    height: 100%; text-align: center;
}
.mxw-banner .swiper-slide img {

}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;

}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 32px;
    height: 5px;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    outline: none;
    opacity: 1;
    border-radius: 0;
}
.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: #007e49;
    border-color: #007e49;

}
.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: #007e49;
}
.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: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width:84.1%;
}
.mxw-box2 {
    max-width: 1655px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 87%;
}

/* 内页 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 {

    }
    .mxw-box {
        max-width: 89%;
    }
}
@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 ==================== */
#xy-share,.page-message-img,.cpcomment{ display: none;}
.page-product-detail-effect .big-img{ width: 100%}
.product-detail-slick a.slick-item{ height: auto;}
.xypg-product-detail{ font-size: 14px;}
.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;background:#c9151e;}
.product-detail-tab .product-detail-tabli li{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%;}

    .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; padding: 0; line-height: 1;  width: 4.833rem;   flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: -1.4rem; z-index: 90; }
.top-box .logo-box .t-logo>img{}

.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: #c9151e; 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{
background: #007e49;
border-bottom: 2px solid #fff;
    position: fixed; top: 0; width: 100%;
    z-index: 100;
}
header .welcome {
    line-height: 34px;
    font-size: 13px;	color: #888888;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 13px;	color: #888888;
}
header .welcome .right a{ margin: 0 5px;}
.top-box{ align-items: stretch;}
.top-box .left{ flex-grow:1; min-width: 0;   justify-content: space-between;  display: flex; align-items: center; }
.top-box .right{flex-grow:1; min-width: 0;   justify-content: space-between;   display: flex; align-items: center; }




.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;
    flex-grow: 1;
    min-width: 0;
    z-index: 100;
}

.x-menu > li > a {
    font-size: 0.333rem;
    color: #fff;
    display: flex;
    height: 100%;
    align-items: center;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    line-height: 1.2;
    width: max-content;
    width: -moz-max-content;
    margin: 0 auto;
    padding: 0.3rem 0;
}

.x-menu > li:last-child>a{

}

.x-menu > li > a:hover {
    color: #fff;
}
.x-menu > li > a::after{

}
.x-menu>li.active{
    background: url("../images/sanj.png") top center no-repeat;
}
.x-menu>li.active>a::after{

}
.x-menu > li.active > a {
   color: #fff;font-weight: bold;
}

.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% + 9px);
    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:#007e49;
}

.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: -9px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}

.x-sub-menu>li .x-sub-menux {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.x-sub-menu>li .x-sub-menux a {
    display: block;
    line-height: 35px;
    font-size: 14px;
    font-weight: normal;
    color: #041d38;
    /* padding: 0 2%; */
    box-sizing: content-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all ease .3s;
    padding: 0 0.7rem;

}

.x-sub-menu>li .x-sub-menux a:hover {
    background-color: #007e49;
    color: #fff;
}

.x-sub-menu>li:hover .x-sub-menux {
    z-index: 99;
    opacity: 1;
    visibility: visible;
}

.x-sub-menux>li{ position: relative;}
.x-sub-menux>li>div {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;

}

.x-sub-menux >li:hover>div {
    z-index: 99;
    opacity: 1;
    visibility: visible;
}


.pon{ width: 80%; max-width: 1400px;
    margin: -0.433rem auto 0;	background-color: #f7f7f7;
    box-shadow: 3px 1px 4px 0px
    rgba(32, 32, 32, 0.1);
    border-radius: 0.4rem; position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 7px 0.5rem; }
.pon .tc-left{	color: #515050;}
.pon .tc-right form{	width: 5.333rem;
    border-radius: 0.3rem;
    border: solid 1px #e5e5e5; display: flex; align-items: center; justify-content: space-between;
    padding: 0.12rem 0.25rem; line-height: 1;}
.pon .tc-right form button{cursor: pointer; flex-shrink: 0}
.pon .tc-right form input{ flex-grow: 1; min-width: 0; margin-right: 0.417rem;}

.about-page{ padding: 1.25rem 0 1.367rem; }
.tc-title2{ text-align: center;}
.tc-title2 .cn{font-size: 0.6rem;	color: #333333; line-height: 1;}
.tc-title2 .en{	font-size: 0.267rem;	color: #666666; text-transform: uppercase; line-height: 1; margin-top: 0.2rem;}
.about-box1 .tc-title2 .cn::before,.about-box1 .tc-title2 .cn::after{width: 133px;
    height: 2px;
    background-color: #333333; display: block; content: ""; margin: 0 0.417rem;}
.about-box1 .tc-title2 .cn{ display: flex; align-items: center;justify-content: center; }
.ab-cate{ display: flex; align-items: center; justify-content: center;}
.ab-cate .item{	font-size: 0.333rem; line-height: 1.1;	color: #007e49; padding: 0.233rem 1rem;border-radius: 0.417rem; background: #cce5db;}
.about-box1 .ab-cate{ margin: 1.1rem auto 0.933rem;}
.ab-cate .item:nth-child(1)~.item{ margin-left: 1.2rem;}
.ab-cate .item.active{color: #ffffff;	background-color: #007e49;}
.about-box1 .body{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 0.933rem; }
.about-box1 .body .tc-right{ width: 53.5%; flex-shrink: 0; }
.about-box1 .body .tc-left{ flex-grow: 1; min-width: 0;	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.19);
    padding: 0.733rem 1.067rem 0.767rem 0.833rem;}
.about-box1 .body .tc-left .st{	font-size: 0.4rem; font-weight: bold;	color: #333333;}
.about-box1 .body .tc-left .desc{ line-height: 2;	color: #333333;}
.about-box1 .body .tc-left .img{ margin: 0.4rem auto 0.633rem;}
.about-box2{ padding-top: 1.833rem;}
.about-box2 .top{ margin-top: 1.167rem; background: url("../images/gs-img.jpg") center no-repeat; background-size: cover; padding: 0.933rem 0; color: #fff;}
.about-box2 .top .st{ text-align: center;	font-size: 0.433rem; font-weight: bold;}
.about-box2 .top>.mxw-box{ color: #fff;}
.about-box2 .top .desc{	font-size: 0.267rem; line-height: 2; text-align: center; margin-top: 0.833rem;}
.about-box2 .num-list{ margin-top: 1.1rem; display: flex; align-items: flex-start; justify-content: space-between;}
.about-box2 .num-list .item{ text-align: center;width: 13%; flex-shrink: 0; }
.about-box2 .num-list .item .num{ line-height: 1; font-size: 0}
.about-box2 .num-list .item .num span{display: inline-block; line-height: 1;	font-family: Impact,sans-serif;	color: #007e49;	font-size: 0.933rem;}
.about-box2 .num-list .item .num sub{	font-size: 0.5rem;color: #007e49; display: inline-block; margin-left: 5px}
.about-box2 .num-list .item .num sup{ font-size: 0.5rem;color: #007e49; margin-left: 5px;    vertical-align: top;}
.about-box2 .num-list .item p{ 	font-size: 0.267rem; color: #666; line-height: 1.6; margin-top: 0.2rem;}

.about-box2 .img-list{ margin-top: 0.417rem; border-top: 1px solid #d3d3d3;
    display: flex; align-items: center; justify-content: flex-start;}
.about-box2 .img-list .item{ width: calc((100% - 200px)/6);}
.about-box2 .img-list .item:nth-child(1)~.item{ margin-left: 0.667rem;}


.pro-page{ padding: 1.25rem 0;}
.pro-page .tc-title2 .cn{ display: flex; align-items: center; justify-content: center; }
.pro-page .tc-title2 .cn::before,.pro-page .tc-title2 .cn::after{width: 133px;
    height: 2px;
    background-color: #333333; display: block; content: ""; margin: 0 0.417rem;}
.pro-cate{ margin: 1.1rem auto 0.933rem; display: flex; align-items: center; justify-content: center;}
.pro-cate .item{	background-color: #cce5db; padding: 0.2rem 1rem; 	color: #007e49; font-size: 0.333rem;
    border-radius: 0.417rem;}
.pro-cate .item:nth-child(1)~.item{ margin-left: 1.133rem;}
.pro-cate .item.active{	background-color: #007e49; color: #fff;}
.pro-body{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.pro-body .item{ width: calc((100% - 90px)/5); margin-right: 18px }
.pro-body .item:nth-child(5n){ margin-right: 0}
.pro-body .item .mxw-image{	background-color: #1a191b;
    border-radius: 0.333rem; position: relative; overflow: hidden;}
.pro-body .item .mxw-image .flx{ background: rgba(0,0,0,.5); position: absolute; width: 100%; height: 100%; z-index: 10; bottom: 0; left: -100%; display: flex; align-items: center; justify-content: center;  transition: all 0.3s}
.pro-body .item .mxw-image .flx span{	font-size: 0.267rem;	color: #007e49; padding: 0.15rem 0.567rem;	background-color: #ffffff;
    border-radius: 0.333rem;}
.pro-body .item .title{	font-size: 0.333rem; text-align: center; margin: 0.15rem auto 0.2rem;}
.pro-body .item .jian{	width: 0.667rem;
    height: 0.667rem;	font-size: 0.283rem; color: #fff; border-radius: 50%; text-align: center; line-height: 0.667rem;
    background-color: #007e49; margin: 0 auto;	opacity: 0.2;transition: all 0.3s}
.pro-body .item:nth-child(5n)~.item{ margin-top: 1rem;}
.pro-body .item:hover .jian{ opacity: 1;transition: all 0.3s}
.pro-body .item:hover .mxw-image .flx{ left: 0; transition: all 0.3s}

.md-body{ margin: 1rem auto 0;}
.md-body .title{ font-size: 0.333rem; margin-top: 0.167rem; text-align: center;}

.news-list{ display: flex; align-items: stretch ; justify-content: space-between; flex-wrap: wrap}
.news-list .item{ padding: 0.5rem 0.467rem; border: 1px solid #eeeeee; width: 48.2%; display: flex; align-items: center; justify-content: space-between; }
.news-list .item:nth-child(2n) ~ .item{ margin-top: 0.5rem;}
.news-list .item .date{ background: #cccccc; color: #fff; font-size: 0.567rem; font-weight: bold; text-align: center; flex-shrink: 0;margin-right: 0.333rem; padding: 0.2rem 0.167rem; }
.news-list .item .date p{ font-size: 0.333rem; font-weight: normal;}
.news-list .item .text{ flex-grow: 1; min-width: 0}
.news-list .item .text .title{ color: #333; font-size: 0.3rem; font-weight: bold;}
.news-list .item .text .desc{ font-size: 0.233rem; color: #666; margin-top: 0.25rem; line-height: 1.6; height: 0.75rem; overflow: hidden}
.news-list .item:hover{ border-color: #007e49}
.news-list .item:hover .text .title{color: #007e49}
.news-list .item:hover .date{ background: #007e49}

.contact-page{padding: 1.333rem 0 1.167rem;}
.contact-page .box1{box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.08); display: flex; align-items: stretch; justify-content: space-between;}
.contact-page .box1 .right{ width: 62.8%; flex-shrink: 0; font-size: 14px;}
.contact-page .box1 .left{ flex-grow: 1; min-width: 0; padding: 0.533rem 0.417rem 0.367rem 0;}
.contact-page .box1 .left .c-logo{ text-align: center;}
.contact-page .box1 .left .c-name{ margin: 0.667rem auto 0.5rem; padding: 0.1rem 0.5rem 0.15rem 0.633rem; background: #007e49; color: #fff; display: flex; align-items: center;}
.contact-page .box1 .left .c-name img{ margin-right: 0.167rem;}
.contact-page .box1 .left .c-info{ padding: 0 0.633rem; font-size: 0.3rem; line-height: 2;}
.contact-page .box1 .left .c-box{ margin-top: 0.5rem; display: flex; align-items: stretch; justify-content: flex-start; padding-left: 0.633rem;}
.contact-page .box1 .left .c-box .item{ display: flex; align-items: center; justify-content: flex-start; margin-right: 0.417rem}
.contact-page .box1 .left .c-box .item img{ width: 115px;}
.contact-page .box1 .left .c-box .item p{ writing-mode: vertical-lr;
    font-size: 14px;
    color: #666;
    margin-left: 5px;
    display: grid;
    place-items: center;
    word-break: break-word;}

.contact-page .box2{ margin-top: 0.917rem; }

.nhz-list1{ margin: 0.933rem auto 0 }
.nhz-list1 .item{ text-align: center; border-radius: 0.167rem; box-shadow: 0 0 0.333rem 0.167rem #f6f6f6; padding: 1rem 0.667rem 1.1rem;}
.nhz-list1 .item img{ height: 1.15rem;}
.nhz-list1 .item .st{	font-size: 0.433rem; font-weight: bold; margin: 0.267rem auto 0.333rem;}
.nhz-list1 .item .desc{	font-size: 0.3rem; text-align: left; line-height: 1.8}
.nhz-desc{ text-align: center; margin-bottom: 0.867rem}
.nhz-cate{ margin: 1.25rem auto 0.583rem;}

.nhz-swiper{ overflow: hidden; margin: 0 auto;}
.nhzs{ overflow: hidden; position: relative;}
.nhzs-sw{overflow: hidden; width: 89%; margin: 0 auto;}
.nhzs-sw .swiper-slide{ width: 24%; text-align: center;}
.nhz-swiper>.swiper-wrapper>.swiper-slide .swiper-button-prev{ left: 0;}
.nhz-swiper>.swiper-wrapper>.swiper-slide .swiper-button-next{ right: 0;}
.nhz-swiper>.swiper-wrapper>.swiper-slide .swiper-button-next::after,.nhz-swiper>.swiper-wrapper>.swiper-slide .swiper-button-prev::after{
    color: #007e49;
}

.hz-box2{display: flex; align-items: stretch; justify-content: space-between;}
.hz-box2 .tc-right{ width: 61.82%; flex-shrink: 0; margin-right: -2rem;}
.hz-box2 .tc-left{ flex-grow: 1; min-width: 0;	background-color: rgba(0, 126, 73, 0.73);	 margin-right: -0.333rem; padding: 8px;
    border-radius: 0.317rem; position: relative; z-index: 1;}
.hz-box2 .tc-left .con{  border-radius: 0.317rem;  background: url("../images/ly-bg.png") center no-repeat; background-size: cover; height: 100%;}
.hz-box2 .tc-left .con form{ display: flex;flex-direction: column; justify-content: flex-end; padding: 0.667rem 0 0.767rem; height: 100%;}
.hz-box2 .tc-left .con .cn{	font-size: 0.6rem;	letter-spacing: 0.233rem;
    color: #404040; font-weight: bold; text-align: center; line-height: 1;}
.hz-box2 .tc-left .con .en{ text-align: center;	font-size: 0.267rem; color: #666; margin: 0.2rem auto 0.4rem;}
.hz-box2 .tc-left .con .desc{ font-size: 0.267rem; text-align: center; margin-bottom: 0.867rem; }
.hz-box2 .tc-left .con .n1{display: flex;border-top: 2px solid #007e49;box-shadow: inset 0rem 0rem 0.133rem 0.033rem rgb(69 161 122 / 20%);	font-size: 0.3rem; }
.hz-box2 .tc-left .con .n1:nth-child(10){border-bottom: 2px solid #007e49;}
.hz-box2 .tc-left .con .n1 label{	color: #007e49; font-weight: bold; width: 2.5rem; flex-shrink: 0; text-align: center; border-right: 1px solid #007e49;padding: 0.12rem;}
.hz-box2 .tc-left .con .n1 .box{ flex-grow: 1; min-width: 0}
.hz-box2 .tc-left .con .n1 input{ width: 100%; height: 100%; padding: 0.15rem; text-align: left;}
.hz-box2 .tc-left .con button{	font-size: 0.267rem; padding: 0.2rem 0.7rem;	background-color: #007e49; color: #fff;       width: max-content; width: -moz-max-content; margin:0.667rem auto 0; cursor: pointer;}

.pro-page .hz-lc .tc-title2 .cn::before, .pro-page .hz-lc .tc-title2 .cn::after{ display: none;}
.pro-page .hz-lc{ margin-top: 1.667rem; padding-top: 1.267rem; border-top: 1px solid rgba(102, 102, 102, 0.2);}
.lc-box{ margin-top: 1.1rem;}
.foot-msg{ padding: 0 0 0.75rem;}
.foot-msg>.mxw-box2{	background-color: #007e49; color: #fff; padding: 0.75rem 0.833rem 0.633rem;}
.foot-msg>.mxw-box2 .cn{	font-size: 0.667rem; font-weight: bold; text-align: center; color: #fff; line-height: 1;}
.foot-msg>.mxw-box2 .desc{ text-align: center;	font-size: 0.267rem;	color: #ffffff;line-height: 1; margin-top: 0.3rem;}
.foot-msg>.mxw-box2 form{ display: block; margin-top: 0.5rem; }
.foot-msg>.mxw-box2 form .up{ display: flex; align-items: stretch; justify-content: space-between;}
.foot-msg>.mxw-box2 form .up .item{	background-color: #ffffff; width: 32.5%;	font-size: 0.267rem;	color: #a8a8a8; padding: 0.333rem;}
.foot-msg>.mxw-box2 form .up .item input{ font-size: 0.267rem; width: 100%;}
.foot-msg>.mxw-box2 form .ud{ margin-top: 0.333rem; display: flex; align-items: stretch; justify-content: space-between;}
.foot-msg>.mxw-box2 form .ud button{
    background-color: #ffffff; margin-left: 0.3rem;	font-size: 0.6rem; flex-shrink: 0;	color: #007e49; font-weight: bold; padding: 0.75rem 0.833rem; cursor: pointer; line-height: 1;
    border: solid 1px #eaeaea;}
.foot-msg>.mxw-box2 form .ud textarea{ flex-grow: 1; min-width: 0; resize: none; padding: 0.333rem; line-height: 1.8;	font-size: 0.267rem;	color: #a8a8a8;}

.foot-hz{ position: relative; height: 5rem; overflow: hidden;}
.foot-hz{  background: url("/skin/images/d-hz-ng.jpg") center no-repeat; background-size: cover}
.foot-hz .flx{   display: flex; align-items: center; justify-content: center; flex-direction: column; height: 100%;  width: 100%; bottom: 0; color: #fff;}
.foot-hz .flx .st{	font-size: 0.6rem; font-weight: bold;}
.foot-hz .flx .desc{ margin: 0.3rem auto 0.6rem;	font-size: 0.333rem;}
.foot-hz .flx .hz-more{font-size: 0.267rem; line-height: 1; padding: 0.2rem 0.383rem;	border: solid 1px #ffffff; transition: all 0.3s}
.foot-hz .flx .hz-more:hover{ background: #fff; color: #333;transition: all 0.3s}

footer{ padding-top: 1.333rem;}
footer .up{ display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 1.25rem;}
footer .up .dc1{ width: 16.8%; flex-shrink: 0;}
footer .up .dc1 .list{ display: flex; align-items: flex-start; justify-content: space-between;  margin-top: 0.25rem; margin-right: -30%}
footer .up .dc1 .list .item{ width: 48%;	}
footer .up .dc1 .list .item .img{ border: solid 1px #007e49; text-align: center }
footer .up .dc1 .list .item p{	font-size: 0.233rem; margin-top: 0.3rem; text-align: center;}

footer .up .title{font-size: 0.3rem; font-weight: bold; color: #666; margin-bottom: 0.45rem;}
footer .up .dc3{ width: 24%; flex-shrink: 0;}
footer .up .dc3 .desc{	font-size: 0.3rem;	color: #666666; line-height: 2;}
footer .up .dc2{ margin: 0 1.533rem 0 1.75rem; flex-grow: 1; min-width: 0; display: flex; align-items: flex-start; justify-content: space-between;}
footer .up .dc2 p{ line-height: 2;	font-size: 0.267rem; color: #666}

.cz-pro1{ height: 100vh; position: relative;}
.cz-pro1>.flx{ position: absolute; width: 100%; height: 100%; background: url("../images/xfmb.png") left center no-repeat; background-size: auto 100%; padding-top: 1.5rem; display: flex; flex-direction: column; justify-content: center;}
.cz-pro1>.flx .mxw-box2{ color: #fff; padding-left: 1.667rem;}
.cz-pro1>.flx .mxw-box2 .img{	border: solid 2px rgba(255, 255, 255, 0.5);
    max-width: 3.833rem; display: block}
.cz-pro1>.flx .mxw-box2 .desc{	font-size: 0.333rem; line-height: 1.9; max-width: 8.833rem; margin: 1rem auto 1.333rem 0; display: block}
.cz-pro1>.flx .mxw-box2 .cz-more{	font-size: 0.333rem; padding: 0.2rem 0.767rem;	background-color: #ffffff;
    border-radius: 0.417rem;	color: #007e49;}

.cz-pro1.liyu>.flx{ background: url("../images/xfmb2.png") right center no-repeat; background-size: auto 100%; }
.cz-pro1.liyu>.flx .mxw-box2{ padding:0 1.667rem 0 55%; }
#foot-slide {
    height: auto !important;

}
#foot-slide .fd-box{ height: calc(100vh - 1.5rem) !important; margin-top: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; }
.index-main-swiper {
    height: 100vh;
}
.index-main-swiper>.swiper-wrapper>.swiper-slide {
    height: 100vh;
}
.index-main-swiper>.swiper-wrapper>.swiper-slide.index-section1{ display: flex; flex-direction: column; justify-content: flex-end;}
.mxw-banner {
    font-size: 0;


}
.mxw-banner>.banner-swiper{ height: 100%;}
.cz-pro1.liyu>.flx .mxw-box2 .cz-more,.cz-pro1.xiaoxin>.flx .mxw-box2 .cz-more{	color: #ff6600;}
.mxw-banner .swiper-slide{ display: flex; align-items: center;justify-content: center; display: -webkit-flex; display: -ms-flex; display: -moz-flex}


@media screen and (min-width: 1880px) and (min-height:950px) {

    .mxw-banner .swiper-slide img{ max-width: initial;  height: calc(100vh - 1.5rem) !important; width:initial;}
}


@media screen and (max-width: 1880px) {
    .mxw-banner .swiper-slide img{ max-width: initial; height: auto; width: 100%;}
    .foot-msg{ zoom: 0.92}

}


/* ==================== 新闻详情 start ==================== */
.ny-news-desc {


}
.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;
}
.pg{ font-size: 14px; line-height: 1.8; margin-top: 50px}
@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 45px 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 ==================== */


/*
box-shadow: 0px 6px 13px 0px
		rgba(0, 2, 2, 0.6);
*/



/* ==================== 内页 - 产品详情 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 #5d8a31;
    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: #5d8a31;
}
.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 #5d8a31;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #5d8a31;
}
.ny-product-desc .bottom .desc{}
.ny-product-desc .bottom .desc img{ height: auto !important;}
.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 {

    }
    .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 ==================== */








@media screen and (max-width: 1600px) {



}




















body{ overflow-x: hidden}




.mxw-copy{		background-color: #007e49;	}
.mxw-copy .mxw-box2{  padding: 0.233rem 0; 	font-size: 0.233rem; color: #fff;  text-align: center;  line-height: 1.6 }
.mxw-copy .mxw-box2 .tc-left{ text-align: left}
.mxw-copy .mxw-box2 .tc-right{ text-align: right}
.mxw-copy .mxw-box2 a{font-size: 0.233rem; color: #fff; }
.mxw-copy .mxw-box2 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 ;}
.page-position,.page-mob-tool{z-index: 1;}



.about-box1 .body .tc-left .desc table{width:100%;font-size:16px;margin-top:15px;margin-bottom:15px;color:#333}
.about-box1 .body .tc-left .desc table th,
.about-box1 .body .tc-left .desc table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important; width: 50%}
.about-box1 .body .tc-left .desc table td p{line-height:1.8!important;}
.about-box1 .body .tc-left .desc table tr:hover{background-color:#f2f2f2!important;}
.about-box1 .body .tc-left .desc table tr:nth-child(2n-1){background-color:#fff ;}
.about-box1 .body .tc-left .desc table tr:nth-child(2n){background-color:#fdfdfd ;}





@media screen and (max-width: 1440px) {
    .top-box{ width: 95%; max-width: 95%;}






}

/* ==================== 页面具体样式 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 ==================== */
.pg{ margin-top: 40px; font-size: 14px; line-height: 1.8}

@media screen and (max-width: 768px) {

    .about-box1 .body .tc-left .desc table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#333}
    .about-box1 .body .tc-left .desc table td{ width: 65%}
    .about-box1 .body .tc-left .desc table td:nth-child(2){ width: 35%}

    .mxw-box2,.mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    .xypg-left-nav .xypg-left-subnav{ position: initial}
    .mxw-banner .swiper-pagination{ padding-left: 0;  right: 0; left: 0;}

    .index-main-swiper>.swiper-wrapper>.swiper-slide{ height: auto !important;}
    .mxw-banner{ height: auto !important; margin-top: 0;}
    .index-main-swiper{ height: auto;}
    .index-main-swiper>.swiper-wrapper{ display: block; height: auto;}
    .index-main-swiper>.swiper-wrapper>.swiper-slide.cz-pro1{ height: 500px !important;}
    .cz-pro1>.flx{ padding: 45px 0;}
    .cz-pro1>.flx .mxw-box2{ padding: 0;}
    .cz-pro1>.flx .mxw-box2 .img{ width: 200px;}
    .cz-pro1>.flx .mxw-box2 .desc{ font-size: 16px; line-height: 1.8; margin: 35px auto 40px;}
    .cz-pro1>.flx .mxw-box2 .cz-more{ font-size: 14px; padding: 9px 20px;}
    .cz-pro1.liyu>.flx .mxw-box2{ padding: 0; text-align: right;}
    .cz-pro1.liyu>.flx .mxw-box2 .img{ margin-right: 0; margin-left: auto;}
    #foot-slide .fd-box{ height: auto !important; margin-top: 0;}
    .foot-msg{ padding: 45px 0;}
    .foot-msg>.mxw-box2{ padding: 30px 20px;}
    .foot-msg>.mxw-box2 .cn{ font-size: 20px;}
    .foot-msg>.mxw-box2 .desc{ font-size: 14px; margin-top: 10px;}
    .foot-msg>.mxw-box2 form{ margin-top: 25px;}
    .foot-msg>.mxw-box2 form .up{ flex-wrap: wrap;}
    .foot-msg>.mxw-box2 form .up .item{ width: 100%; padding: 10px;}
    .foot-msg>.mxw-box2 form .up .item:nth-child(1)~.item{ margin-top: 15px;}
    .foot-msg>.mxw-box2 form .up .item input{ font-size: 14px;}
    .foot-msg>.mxw-box2 form .ud{ margin-top: 15px; flex-wrap: wrap;}
    .foot-msg>.mxw-box2 form .ud textarea{width: 100%; padding: 10px; font-size: 14px;}
    .foot-msg>.mxw-box2 form .ud button{ font-size: 16px; padding: 8px 25px; margin: 15px auto 0;}
    .foot-hz{ height: auto; background: url("/skin/images/d-hz-ng.jpg") center no-repeat; background-size: cover}
    .foot-hz>img{ }
    .foot-hz .flx{ padding: 45px 0;}
    .foot-hz .flx .st{ font-size: 20px;}
    .foot-hz .flx .desc{ font-size: 14px; margin: 15px auto 25px;}
    .foot-hz .flx .hz-more{ font-size: 14px; padding: 9px 25px;}
    footer{ padding-top: 45px;}
    footer .up{ flex-wrap: wrap;}
    footer .up .dc2{ display: none;}
    footer .up .dc1{ width: 100%; }
    footer .up .dc1 .list{ justify-content: flex-start;}
    footer .up .dc1 .list .item{ max-width: 120px; margin-right: 15px;}
    footer .up .dc1 .d-logo{ max-width: 255px;}
    footer .up .dc3{ width: 100%; margin-top: 25px;}
    footer .up .title{ font-size: 18px; margin-bottom: 15px;}
    footer .up .dc3 .desc{ font-size: 14px; line-height: 1.8}
    .pon{ display: none;}
    .about-page{ padding: 45px  0 0;}
    .about-box1 .tc-title2 .cn{ font-size: 22px}
    .about-box1 .tc-title2 .cn::before, .about-box1 .tc-title2 .cn::after{ display: none !important;}
    .tc-title2 .en{ font-size: 14px;}
    .about-box1 .ab-cate{ margin: 15px auto 25px; justify-content: space-between}
    .ab-cate .item{ font-size: 14px; padding: 9px 20px;}
    .ab-cate .item:nth-child(1)~.item{ margin: initial}
    .about-box1 .body{ margin: 25px auto 0; flex-wrap: wrap;}
    .about-box1 .body .tc-left{ padding: 15px;}
    .about-box1 .body .tc-left .st{ font-size: 18px;}

    .about-box1 .body .tc-left .img{ margin: 10px auto 15px;}
    .about-box1 .body .tc-left .desc{ font-size: 14px; line-height: 1.8}
    .about-box1 .body .tc-right{ width: 100%;}
    .about-box2{ padding-top: 45px;}
    .tc-title2 .cn{ font-size: 22px;}
    .about-box2 .top{ margin-top: 25px; padding: 45px 0;}
    .about-box2 .top .st{ font-size: 20px;}
    .about-box2 .top .desc{ margin-top: 20px; font-size: 14px;}
    .about-box2 .num-list{ margin: 20px auto 0; flex-wrap: wrap; justify-content: space-between;}
    .about-box2 .num-list .item{ width: 48%;}
    .about-box2 .num-list .item .num span{ font-size: 28px;}
    .about-box2 .num-list .item .num sub{ font-size: 14px;}
    .about-box2 .num-list .item p{ font-size: 14px; margin-top: 5px;}
    .about-box2 .num-list .item:nth-child(2n)~.item{ margin-top: 15px;}
    .about-box2 .img-list{ flex-wrap: wrap; justify-content: space-between;}
    .about-box2 .img-list .item{ margin: initial; width: 48.5%}
    .about-box2 .img-list .item:nth-child(1)~.item{ margin: initial}

    .about-box2 .img-list .item:nth-child(2)~.item{ margin-top: 15px}

    .pro-page{ padding: 45px 0 0}
    .pro-page .tc-title2 .cn::before, .pro-page .tc-title2 .cn::after{ display: none}
    .pro-cate{ flex-wrap: wrap; justify-content: space-between; margin: 25px auto 15px}
    .pro-cate .item{ margin: initial; width: 48.5%; font-size: 14px; padding: 9px 10px; text-align: center}
    .pro-cate .item:nth-child(1)~.item{ margin: initial;}
    .pro-cate .item:nth-child(2n)~.item{ margin-top: 10px}
    .pro-body{ flex-wrap: wrap; justify-content: space-between;}
    .pro-body .item{ width: 48.5%; margin: initial}
    .pro-body .item .title{ font-size: 14px; margin: 10px auto;}
    .pro-body .item .jian{ width: 35px; height: 35px; font-size: 16px;}
    .pro-body .item:nth-child(2n)~.item{ margin-top: 25px}
    .pro-body .item .mxw-image .flx span{ font-size: 14px; padding: 8px 25px;}
    .md-body{ margin: 25px auto 0}
    .md-body .item .title{ font-size: 14px; margin-top: 5px}
    .nhz-list1{ margin: 25px auto 0}
    .nhz-list1 .item{ padding: 20px 15px}
    .nhz-list1 .item img{ height: 40px;}
    .nhz-list1 .item .st{ font-size: 18px; margin: 10px auto 15px;}
    .nhz-list1 .item .desc{ font-size: 14px; line-height: 1.8}
    .nhz-desc{ font-size: 14px; line-height: 1.8; margin-bottom: 20px;}
    .nhz-swiper>.swiper-wrapper>.swiper-slide .swiper-button-next::after, .nhz-swiper>.swiper-wrapper>.swiper-slide .swiper-button-prev::after{ font-size: 30px;}
    .nhz-swiper>.swiper-wrapper>.swiper-slide .swiper-button-prev{ left: -5px;}
    .nhz-swiper>.swiper-wrapper>.swiper-slide .swiper-button-next{ right: -5px}


    .pro-page{ padding: 45px 0 0;}
    .pro-page .news-list{ flex-wrap: wrap;}
    .pro-page .news-list .item{ width: 100%; padding: 10px; }
    .pro-page .news-list .item:nth-child(1)~.item{ margin-top: 15px;}
    .ny-news-desc .article {
        font-size: 15px;
    }

    .contact-page{ padding: 45px 0 0;}
    .contact-page .box1{ flex-wrap: wrap;}
    .contact-page .box1 .left{ padding: 20px 0; width: 100%;}
    .contact-page .box1 .right{ height: 400px; width: 100%;}
    .contact-page .box1 .left .c-name{ margin: 20px auto;}

    .hz-box2{ flex-wrap: wrap;}
    .hz-box2 .tc-right{ width: 100%; margin: 15px auto 0; }
    .pro-page .hz-lc{ margin-top: 45px; padding-top: 45px;}

    .hz-box2 .tc-left{ margin: 25px auto 0;}
    .hz-box2 .tc-left .con .cn{ font-size: 20px;}
    .hz-box2 .tc-left .con .en{ font-size: 14px; margin: 10px auto 15px;}
    .hz-box2 .tc-left .con .desc{ font-size: 14px; padding: 0 20px; margin-bottom: 25px;}
    .hz-box2 .tc-left .con .n1 label{ font-size: 16px; width: 120px;}
    .hz-box2 .tc-left .con .n1 input{ font-size: 14px;}
    .hz-box2 .tc-left .con button{ font-size: 14px; padding: 10px 30px; margin: 15px auto 0;}
    .hz-box2 .tc-left .con form{ padding: 40px 0}
    .lc-box{ margin-top: 25px;}

    .xymob-menu-click .xypg-left{ padding: 10vh 0 5vh}
    body{ margin-bottom: 0}

}












