@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;
}
/* 针对特定浏览器的Vendor Prefixes，为了更好的兼容性 */
img {
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (非标准命名) */
    max-width: 100%;
}

/* 对于高分辨率屏幕，考虑更平滑的渲染而不是 nearest-neighbor */
@media only screen and (min-resolution: 2dppx) {
    img {
        image-rendering: auto; /* 为高分辨率屏幕自动选择最佳渲染方法 */
    }
}

/* 考虑到SVG图像的兼容性问题，如果需要对SVG图像应用相同的优化，需要单独处理 */
svg {
    image-rendering: optimizeQuality; /* 对于SVG，尽量保证质量 */
    -ms-interpolation-mode: bicubic; /* IE 对SVG的优化 */
}
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: #ad1e2f;
    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: #ad1e2f;
    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%;

}
.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: #ad1e2f;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #ad1e2f;
}
.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: #ad1e2f;
    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: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
    height: 100%; text-align: center;
}
.mxw-banner .swiper-slide img {
       width: auto;
    max-width: initial;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    border: 2px solid #fff;
    outline: none;
    opacity: 1;
    border-radius: 50%;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0bbf64;
    border-color: #0bbf64;

}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 1.383rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: none;
    outline: none;

}
.mxw-banner .swiper-button-next::after,
.mxw-banner .swiper-button-prev::after {
    font-size: 0.667rem;
    color: #fff;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 84.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: 1880px) {
    /* 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 {
        max-width: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#ad1e2f;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 240%;
        width:240%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
    .footer3 ul li .iconfont{ width:initial; height:initial}
    .product-detail-tab .product-detail-tabcon iframe,.product-detail-tab .product-detail-tabcon video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content  iframe, .xypg-right-content  video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content img{ max-width: 100%; height: auto !important;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}
.top-box .logo-box{  font-size: 0;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start;
    padding: 0.267rem 0;
}
.top-box .logo-box .t-logo>img{ max-height:1.567rem;}


.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: ##48a94a; 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.in{ position: fixed; top: 0; width: 100%; z-index: 99; background: #fff;box-shadow: 0px 2px 16px 0px
rgba(0, 0, 0, 0.06);}
header .welcome {

    line-height: 0.7rem;
    border-bottom:1px solid #f6f6f6;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:#666666;
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #666666;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color:#666666;
}


.top-box{ align-items: stretch; width:84.6%; max-width: 1600px; }
.top-box .right{ display: flex; flex-grow:1; min-width: 0;  padding-left: 1.55rem;  justify-content: flex-end; }
.top-box .right .lang{ display: flex; align-items: center; justify-content: center; margin-left: 0.6rem;    padding-bottom: 0.3rem; }
.top-box .right .lang a{ background-color: #48a94a; width: 0.633rem; height: 0.633rem; font-size: 0.267rem; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; }






.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    margin: 0 auto;

}
.x-menu > li {
    margin: 0;
    text-align: center;
    float: none;
    position: relative;

}

.x-menu > li > a {
    font-size: 0.333rem;
    color: #000000;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    line-height: 1.2;

}

.x-menu > li > a:hover {
    color: #48a94a;
}
.x-menu > li>a::after{
    display: block;
    height: 4px;
    content: "";
    width: 100%;
    margin-top: 0.167rem;
}
.x-menu>li.active{ color: #000000;  }
.x-menu > li.active > a {
    color: #48a94a;    font-weight: bold;
}
.x-menu > li.active > a::after{

    background-color: #48a94a;

}


.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: max-content;
    min-width: 120px;
    left:50%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,20px);
    transform: translate(-50%,20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;

}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#48a94a;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}

.x-menu > li > a>span{ margin-left: 5px }
.x-menu > li.active > a>span{  filter: invert(52%) sepia(46%) saturate(3044%) hue-rotate(165deg) brightness(92%) contrast(100%);}

.mxw-banner .swiper-slide{ position: relative;}
.mxw-banner .swiper-slide video{     width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;}
.mxw-banner .swiper-slide .flx{    position: absolute;

    width: 100%;
    text-align: center; z-index: 11}
.mxw-banner .swiper-slide .flx img{ height:2.75rem}
.tc-1800{width: 94%; max-width: 1800px; margin: 0 auto;}

.mxw-banner .swiper-pagination{ }

#index-section1{ display: flex; align-items:flex-end; justify-content: center;}
#index-main-swiper {
    height: 100vh;
}
#index-main-swiper>.swiper-wrapper>.swiper-slide {
    height: 100vh;
}
.mxw-banner {
    font-size: 0;
    position: relative;    height: calc(100vh - 2.1rem) !important;    margin-top: 2.1rem;
}
.mxw-banner .banner-swiper{ position: relative;}

.index-section2>.con{ background: url("../images/about-img.jpg") bottom center no-repeat; background-size: cover;  margin-top: 2.1rem; height: calc(100vh - 2.1rem) !important;  display: flex;align-items: center; justify-content: center;  }

.about-body{ display: flex; align-items: center; justify-content: space-between;}
.about-body .tc-right{ width: 45.13%; flex-shrink: 0;}
.about-body .tc-left{ margin-right: 1rem; flex-grow: 1; min-width: 0;}
.about-body .tc-left .en{ position: relative;}
.about-body .tc-left .en img{ height: 0.917rem;}
.about-body .tc-left .en span{ position: absolute; left: 0.967rem;font-size: 0.267rem;	color: #48a94a; border-left: 0.083rem solid #48a94a; top: 0.2rem; padding-left: 0.833rem; }
.about-body .tc-left .desc{ 	color: #444444; font-size: 0.3rem; line-height: 2; margin: 0.5rem  0 0.8rem  0rem; text-indent: 2em }
.about-body .tc-left .cn{ font-size: 0.617rem; line-height: 1; margin-top: 0.5rem; margin-left:0rem}
.about-body .tc-left .a-more{	font-size: 0.333rem; 	color: #48a94a;border-radius: 0.367rem 0rem 0.367rem 0rem;
    border: solid 1px rgba(72, 169, 74, 0.4); padding: 0.167rem 0.5rem; line-height: 1;margin-left: 2.167rem;transition: all 0.3s}
.about-body .tc-left .a-more:hover{ background: #48a94a; color: #fff; transition: all 0.3s}
.about-body .center{ display: flex; flex-direction: column;  flex-shrink: 0; margin-right: 0.833rem; }
.about-body .center .item{ margin-bottom: 0.75rem; display: flex; align-items: center; justify-content: flex-end;}
.about-body .center .item .icon{width: 0.783rem;height: 0.9rem; margin-left: 0.3rem;filter: invert(26%) sepia(35%) saturate(19%) hue-rotate(347deg) brightness(95%) contrast(86%);

}
.about-body .center .item .text{	color: #fff;    text-align: right;max-width: 100px;}
.about-body .center .item:hover .text,.about-body .center .item.active .text{color: #48a94a;}
.about-body .center .item:hover .icon,.about-body .center .item.active .icon{ filter: none}


.index-section3{ background: url("../images/pro-bg.jpg") center no-repeat; background-size: cover;}
.index-section3>.con{ display: flex; align-items: center; justify-content: center; margin-top: 2.1rem; height: calc(100vh - 2.1rem) !important;   }
.pro-body .list{ display: flex; margin-top: 0.917rem; display: -webkit-flex; align-items: stretch; justify-content: flex-start }
.pro-body .list .item{ width: calc((100% - 1.5rem)/3);position: relative; margin-right: 0.75rem; overflow: hidden }
.pro-body .list .item:nth-child(3n){ margin-right: 0; }
.pro-body .list .item .img{ position: relative;    font-size: 0;}
.pro-body .list .item .img .text{ position: absolute; left: 0.45rem; bottom: 0.5rem; color: #000;}
.pro-body .list .item .img .text .cn{font-size: 0.4rem; font-weight: bold; z-index: 1;}
.pro-body .list .item .img .text .en{ font-size: 0.233rem; margin-top: 0.1rem}
.pro-body .list .item .flx{ color: #fff; position: absolute; width: 100%; height: 100%; z-index: 2; left: 0;  background: url("../images/fx-bg.png") center;padding: 0.25rem 0.833rem 0.25rem 0.667rem; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; display: -webkit-flex; bottom: -100%; transition: all 0.3s;}
.pro-body .list .item .flx .cn{ 	font-size: 0.4rem; font-weight: bold;}
.pro-body .list .item .flx .cn::after{	width: 2.217rem;
    height: 0.067rem;
    background-color: #ffffff; content: ""; margin-top: 0.333rem; display: block;}
.pro-body .list .item .flx .desc{font-size: 0.267rem; line-height: 1.5;letter-spacing: 0; margin:  0.667rem auto 0.7rem;}
.pro-body .list .item .flx .icon{ margin-left: -0.3rem; width: 1.167rem;}

.pro-body .list .item:hover .flx{ bottom: 0; transition: all 0.3s}
.pro-body .list .item:hover .img .text{display:none}

.ot-title{ display: flex;align-items: center; justify-content: space-between; margin-bottom: 0.5rem;}
.ot-title .en{ position: relative; flex-shrink: 0}
.ot-title .en img{ height: 0.917rem;}
.ot-title .en span{ position: absolute; left: 0.967rem;font-size: 0.267rem;	color: #48a94a; border-left: 0.083rem solid #48a94a; top: 0.2rem; padding-left: 0.833rem; }
.ot-title .en p{font-size: 0.617rem; left: 0; bottom: 0;position: absolute;white-space: nowrap;}
.con-more{font-size: 0.333rem; 	color: #48a94a;border-radius: 0.367rem 0rem 0.367rem 0rem;
    border: solid 1px rgba(72, 169, 74, 0.4); padding: 0.167rem 0.5rem; line-height: 1;margin-left: 2.167rem;transition: all 0.3s}
.con-more:hover{ background: #48a94a; color: #fff; transition: all 0.3s}


.index-section4{ background: url("../images/sc-bg.jpg") center no-repeat; background-size: cover;}
.index-section4>.con{display: flex;  justify-content: flex-end; display: -webkit-flex; flex-direction: column; margin-top: 2.1rem; height: calc(100vh - 2.1rem) !important; padding-top: 1.167rem;}
.index-section4 .ot-title .en span{ /*color: #fff; border-left-color: #fff;*/}
.index-section4 .ot-title .en p{ color: #fff;}

.index-section4 .info-box{ display: flex; align-items: flex-start; justify-content: space-between; display: -webkit-flex; margin-top: 0.5rem;}
.index-section4 .info-box .desc{font-size: 0.3rem;color: #fff; line-height: 1.8; max-width: 84%; }
.index-section4 .info-box .con-more{ border-color: #fff; color: #fff;}
.index-section4 .info-box .con-more:hover{ background: #fff; color: #333}

.index-section4 .sc-body{ flex-grow: 1; min-width: 0; margin-top: 1.333rem; display: flex; display: -webkit-flex; align-items: stretch; justify-content: center;}
.index-section4 .sc-body .item{ width: 20%; padding: 0.5rem 0.7rem; height: 100%; border-top: 1px solid #fff;border-left: 1px solid #fff; text-align: center; display: flex; display: -webkit-flex; flex-direction: column;justify-content: center; align-items: center; position: relative; overflow: hidden;}
.index-section4 .sc-body .item .icon{  text-align: center; }
.index-section4 .sc-body .item .icon img{ height: 1.333rem;}
.index-section4 .sc-body .item:last-child{ border-right: 1px solid #fff;}
.index-section4 .sc-body .item .st{	font-size: 0.367rem;	color: #ffffff; font-weight: bold; margin-top: 0.5rem}
.index-section4 .sc-body .item .desc{	font-size: 0.3rem; color: #fff; margin-top: 0.25rem; line-height: 1.6; height: 0.967rem}
.index-section4 .sc-body .item .mo{ margin-top: 0.5rem; color: #fff; visibility: hidden}
.index-section4 .sc-body .item:hover .mo{color: #fff; visibility: visible}
.index-section4 .sc-body .item>.img{ position: absolute; z-index: 1; width: 100%; height: 100%; visibility: hidden;transition: all 0.3s}
.index-section4 .sc-body .item>.img::after{ display: block; width: 100%; height: 100%; content: ""; position: absolute; z-index: 2; top: 0; left: 0; 	background-color: rgba(72, 169, 74, 0.6);}
.index-section4 .sc-body .item>.con{ position: relative; z-index: 3;}
.index-section4 .sc-body .item:hover .img{ visibility: visible; transition: all 0.3s}


.index-section5{ background: url("../images/news-bg.jpg") center no-repeat; background-size: cover;}
.index-section5>.con{display: flex;  justify-content: flex-start; display: -webkit-flex; flex-direction: column; margin-top: 2.1rem; height: calc(100vh - 2.1rem) !important; padding-top: 1rem;}
.index-section5 .ot-title{ margin-bottom: 0;}
.news-cate{ display: flex; align-items: stretch; justify-content: flex-end;}
.news-cate .item{ padding: 0.2rem 0.8rem; background: #fff;color: #333333; font-size: 0.3rem; margin-left: 0.583rem;}
.news-cate .item.active{	background-image: linear-gradient(
        #48a94a,
        #48a94a),
linear-gradient(
        #3eb134,
        #3eb134);
    background-blend-mode: normal,
    normal;
    box-shadow: 0px 0px 8px 0px
    rgba(0, 0, 0, 0.32); color: #fff;}

.news-swiper{ overflow: hidden; margin-top: 0.75rem;}
.news-swiper>.swiper-wrapper>.swiper-slide{ display: flex; align-items: stretch; justify-content: space-between;}
.news-swiper>.swiper-wrapper>.swiper-slide .tc-right{ width: 44.18%; flex-shrink: 0; padding: 0.6rem 0.5rem; background: #fff;    height: 8.667rem;}
.news-swiper>.swiper-wrapper>.swiper-slide .tc-right .st{color: #000; font-size: 0.333rem;font-weight: bold;}
.news-swiper>.swiper-wrapper>.swiper-slide .tc-right .desc{ 	font-size: 0.267rem; color: #999999; margin: 0.3rem auto 0.5rem;  line-height: 1.7}
.news-swiper>.swiper-wrapper>.swiper-slide .tc-right .date{font-size: 0.267rem;color: #48a94a;padding-left: 1rem;height: auto;position: relative;padding-bottom: 0.3rem;}
.news-swiper>.swiper-wrapper>.swiper-slide .tc-right .date p{	font-size: 0.5rem; color: #48a94a; font-weight: bold;}
.news-swiper>.swiper-wrapper>.swiper-slide .tc-right .date::before{
    width: 0.05rem;
    height: 1.267rem;
    background-color: #48a94a;
    margin: 0 0.333rem 0.217rem 0;
    content: "";
    display: inline-block;
    position: absolute;
    left: 0.55rem;
}
.news-swiper>.swiper-wrapper>.swiper-slide .tc-right:hover .st{ color: #48a94a}

.cz-swiper{ overflow: hidden; height: 8.667rem;}

.news-swiper>.swiper-wrapper>.swiper-slide .tc-left{ flex-grow: 1; min-width: 0; margin-right: 1rem;}
.news-swiper>.swiper-wrapper>.swiper-slide .tc-left .title{ display: flex; justify-content: space-between;}
.news-swiper>.swiper-wrapper>.swiper-slide .tc-left .st{color: #000; font-size: 0.333rem; flex-grow: 1;min-width: 0}
.news-swiper>.swiper-wrapper>.swiper-slide .tc-left .date{	font-size: 0.217rem;	color: #999999; flex-shrink: 0; margin-left: 0.5rem;}
.news-swiper>.swiper-wrapper>.swiper-slide .tc-left .desc{ font-size: 0.217rem; color: #666; line-height: 2;   margin-top: 0.333rem}
.cz-swiper .swiper-slide{padding-bottom: 0.55rem; border-bottom: 1px solid #b8b8b8;padding-top: 0.667rem; }

.cz-swiper .swiper-slide:nth-child(1)~.swiper-slide{ padding-top: 0.667rem; }

.news-swiper .cz-swiper .swiper-slide:hover .st{ color: #48a94a}
.index-section6{background: url("../images/hr-bg.jpg") center no-repeat; background-size: cover; }

.index-section6>.con{display: flex;  justify-content: flex-start; display: -webkit-flex; flex-direction: column; margin-top: 2.1rem; height: calc(100vh - 2.1rem) !important; padding-top: 1rem;}
.index-section6 .ot-title .en span{ color: #fff; border-left-color: #fff;}
.index-section6 .ot-title .en p{ color: #fff;}
.hr-body{ display: flex; align-items: stretch; justify-content: flex-start; margin-top: 0.75rem;}
.hr-body .item{ margin-right: 0.767rem; width: calc((100% - 1.533rem)/3); position: relative; font-size: 0}
.hr-body .item:last-child{ margin-right: 0;}
.hr-body .item .flx{ transition: all 0.3s; position: absolute; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; display: -webkit-flex;top: 0; left:0; flex-direction: column;}
.hr-body .item .flx .icon{ width: 1.2rem; margin-bottom: 0.533rem; z-index: 2; }
.hr-body .item .flx p{	font-size: 0.367rem; font-weight: bold; color: #fff;}
.hr-body .item:hover .flx{	background-color: rgba(72, 169, 74, 0.7);}

.index-section7{ height: auto !important; min-height: 100%;}
.index-section7>.con{display: flex;  justify-content: flex-end; display: -webkit-flex; flex-direction: column; margin-top: 2.1rem; height: calc(100vh - 2.1rem) !important;}
.index-section7>.con footer{display: flex;  justify-content: flex-end; display: -webkit-flex; flex-direction: column;}





.mxw-link{ padding-top: 0.667rem; margin-top: 0.667rem; border-top: 1px solid rgba(255,255,255,.1);
    padding-bottom: 0.6rem;}
.mxw-link .title{ color: #fff; font-weight: bold; font-size: 0.283rem;}
.mxw-link .mxw-box{ opacity: 1;}
.mxw-link .mxw-link-list{ padding:10px;}
.mxw-link .list{ opacity: 0.4; font-size: 0.217rem;}


footer{ height: 100%; background: url("../images/ft-bg.jpg") center no-repeat; background-size: cover;}
footer .ft-text{	font-size: 0.9rem; padding: 1.167rem; border-bottom: 1px solid rgba(255,255,255,.2); text-align: center; font-weight: bold; color: #fff}

footer .ft-con{ display: flex; align-items: stretch; justify-content: space-between; color: #fff; padding-top: 0.833rem;}
footer .ft-con .ft-logo{ width: 12%; flex-shrink: 0;text-align: center;	font-size: 0.3rem; line-height: 1.5}
footer .ft-con .ft-logo p{ margin-top:  0.533rem;}
footer .ft-con .ft-menu{ flex-grow: 1; min-height: 0;}
footer .ft-con .ft-cont{ width: 19%; flex-shrink: 0;}
footer .ft-con .ft-ewm{ width: 2.217rem;flex-shrink: 0; margin-left: 1.15rem;}
footer .ft-con .ft-ewm p{	font-size: 0.233rem; line-height: 1.5; font-weight: bold; display: flex; align-items: center; margin-bottom: 0.55rem;}
footer .ft-con .ft-ewm p img{ margin-right: 0.167rem; }

footer .ft-con .ft-cont .st{	font-size: 0.333rem; font-weight: bold;}
footer .ft-con .ft-cont .st img{ margin-right: 0.167rem;}
footer .ft-con .ft-cont .num{	font-size: 0.5rem; margin: 0.267rem auto;}
footer .ft-con .ft-cont .con{	font-size: 0.267rem;line-height: 2;}
footer .ft-con .ft-menu{ margin: 0 0.7rem; display: flex; display: -webkit-flex; align-items: flex-start; justify-content: space-between;}
footer .ft-con .ft-menu>.item{ margin:0 0.15rem;    width: 19%;}
footer .ft-con .ft-menu>.item>a{font-size: 0.3rem; line-height: 1.8;color: #fff; font-weight: bold;}
footer .ft-con .ft-menu ul{ margin-top: 0.167rem;}
footer .ft-con .ft-menu ul li{margin-bottom:0.2rem}
footer .ft-con .ft-menu ul a{	font-size: 0.25rem;color: #b6b6b6; line-height:1.5; }
footer .ft-con .ft-menu ul a:hover{ color: #48a94a;}

footer .ft-meiti{ display: -webkit-flex; display: flex; justify-content: flex-end;}
footer .ft-meiti .item{margin-left: 0.333rem;margin-top: 0.667rem;position: relative;}
footer .ft-meiti .item .flx{ position:absolute; top:100%; width:120px; left:-40px;    display: none;}
footer .ft-meiti .item:hover .flx{display: block;}

.tc-link{ display: flex; align-items: center; justify-content: space-between; display: -webkit-flex; margin: 0.6rem auto; }
.tc-link .title{ margin-right: 0.4rem; padding-right: 0.4rem; border-right: 1px solid #fff; flex-shrink: 0;}
.tc-link .list{ flex-grow: 1; min-width: 0;}
.tc-link .list a{font-size: 0.233rem; color: #fff;}






body{ overflow-x: hidden}

/* ==================== 内页通用分类 start ==================== */
.ny-cate {
    border-bottom: 1px solid #e9e9e9;
}
.ny-cate .mxw-box{
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;

}
.ny-cate .cate-item {
    font-size: 0.3rem;
    color: #333;
    line-height: 1.2;

    padding: 0.5rem 0;
    margin: 0 0.7rem;
    display: block;
    position: relative;
}
.ny-cate .cate-item:last-child {
    margin-right: 0;
}
.ny-cate .cate-item:after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background-color: #48a94a;
    line-height: 1.2;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s;
}
.ny-cate .cate-item:hover:after,
.ny-cate .cate-item.active:after {
    width: 100%;
}
@media screen and (min-width: 1200px) {
    .ny-cate {
        /* position: sticky;*/
        top: 0;
        z-index: 99;
    }
}
@media screen and (max-width: 1200px) {
    .ny-cate .mxw-ny-box {
        justify-content: flex-start;
    }
    .ny-cate .cate-item {
        width: 24%;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 13px;
        margin-right: 0;
        text-align: center;    margin-left: 0;
    }
    .ny-cate .cate-item:nth-child(4n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .ny-cate .cate-item:nth-child(4) ~ .cate-item {
        margin-top: 2%;
    }
}
/* ==================== 内页通用分类 end ==================== */


/* ==================== 内页 - 产品中心 start ==================== */
.ny-product .list {
    flex-wrap: wrap;
    display: flex;
    align-items: flex-start;
}
.ny-product .list-item:hover .title {
    background-color: #3eb134;
    border-bottom-color: #3eb134;
}
.ny-product .h_list .list-item:hover .title{
    background-color:#fff;
    border-bottom-color: #f2f2f2;
}
.ny-product .list-item:hover .name {
    color: #fff;
}
.ny-product .h_list .list-item:hover .name {
    color: #333;
}
.ny-product .list-item:hover .arrow {
    border-color: #fff;
    color: #fff;
}
.ny-product .h-item {
    width: 24.25%;
    margin-right: 1%;
}

.ny-product .list-item .title,.ny-product .h-item .title {
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
    padding: 0.3333rem 0.2rem;
    display: flex;
    align-items: center;
    transition: all 0.4s;
}
.ny-product .list-item .name,.ny-product .h-item .name {
    color: #333;
    font-size: 0.2833rem;
    line-height: 1.2; text-align: center;
    min-width: 0;
    flex-grow: 1;
    transition: all 0.4s;
}
.ny-product .list-item .arrow {
    width: 1rem;
    height: 0.8333rem;
    line-height: 0.8333rem;
    border: 1px solid transparent;
    font-size: 0.4167rem;
    text-align: center;
    transition: all 0.4s;
    flex-shrink: 0;
}
.ny-product .list-item:hover .mxw-more .text{color:#fff;}
.ny-product .list-item:hover .mxw-more .icon{
    background-color:#fff;
}
.ny-product .list-item:hover .mxw-more .icon:after{
    border-top-color:#fff;
    border-right-color:#fff;
}
@media screen and (min-width: 751px) {
    .ny-product .list-item {
        width: 24.25%;
        margin-right: 1%;
    }
    .ny-product .list-item:nth-child(4n) {
        margin-right: 0;
    }
    .ny-product .list-item:nth-child(4) ~ .list-item {
        margin-top: 0.8333rem;
    }
}
@media screen and (max-width: 751px) {
    .ny-product .list-item {
        width: 48%;
    }
    .ny-product .list-item:nth-child(2n) {
        margin-left: 4%;
    }
    .ny-product .list-item:nth-child(2) ~ .list-item {
        margin-top: 20px;
    }
    .ny-product .list-item .arrow {
        display: none;
    }
    .ny-product .list-item .title {
        padding: 10px 10px;
        font-size: 12px;
    }
}
/* ==================== 内页 - 产品中心 end ==================== */

/* ==================== 产品详情页 start ==================== */
.ny-product-desc {
    overflow: hidden;
}
.ny-product-desc .product-image {
    width: 10rem;
    margin-right: 0.6667rem;
    flex-shrink: 0;
    position: relative;
    z-index: 9;
}
.ny-product-desc .product-image img {
    width: 100%;
}
.ny-product-desc .product-desc {
    flex-grow: 1;
}
.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: #3eb134;
}
.ny-product-desc .product-desc .desc {
    font-size: 0.3rem;
    color: #666;
    line-height: 1.8;
}
.ny-product-desc .bottom {
    margin-top: 0.6667rem;
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.easyzoom-flyout img {
    max-width: inherit!important;
    width: auto!important;
}
.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 #3eb134;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #3eb134;
}
@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 .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;
    }
    .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;
    }
    .ny-product-desc{ padding: 40px 0 50px}
}
/* ==================== 产品详情页 end ==================== */

/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 0 0 1.067rem;

}
.ny-news-desc > .mxw-box {
    padding-top: 60px;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;

}
.ny-news-desc .article p {
    line-height: 1.8;
}
.pg{ margin: 1rem auto 0; font-size: 0.267rem; line-height: 1.8}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {

    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
    .pg{ margin: 30px auto 0; font-size: 14px; line-height: 1.8}
    .ny-news-desc .title{ font-size: 22px;}
    .ny-news-desc{ padding: 40px 0}
}
/* ==================== 新闻详情 end ==================== */

/* ==================== 内页 - 新闻列表2 start ==================== */
.ny-news .item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    transition: all 0.4s;
    border: 0.0167rem solid #dedede;
    box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.14);
    margin-bottom: 0.6667rem;
}
.ny-news .item:hover {
    box-shadow: 0rem 0rem 0.1667rem 0rem rgba(0, 0, 0, 0.14);
}
.ny-news .item:hover .title {
    color: #3eb134;
}
.ny-news .item .image {
    flex-shrink: 0;
    width: 4.6667rem;
    margin-right: 0.5rem; max-height: 3rem;overflow: hidden;
}
.ny-news .item .info {
    min-width: 0;
    flex-grow: 1;
}
.ny-news .item .head {
    display: flex;
    align-items: center;
    color: #888;
    padding-bottom: 0.1667rem;
    border-bottom: 0.0167rem solid #888;
    margin-bottom: 0.3333rem;
}
.ny-news .item .title {
    flex-grow: 1;
    font-size: 0.3rem;
    line-height: 1.2;
  color:#333
}
.ny-news .item .time {
    font-size: 0.233rem;
    line-height: 1.2;
    flex-shrink: 0;
  color: #666;
    margin-bottom: 0.15rem;
}
.ny-news .item .desc {
    font-size: 0.2667rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.ny-news .item .more {
    width: 2.0833rem;
    height: 0.6rem;
    line-height: 0.6rem;
    background-color: #fff;
    border: solid 0.0167rem #dedede;
    display: block;
    text-align: center;
    font-size: 0.2rem;
    color: #888888;
}
@media screen and (max-width: 1200px) {
    .ny-news .item {
        padding: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .ny-news .item .image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .ny-news .item .info {
        width: 100%;
    }
    .ny-news .item .head {
        margin-bottom: 10px;
    }
    .ny-news .item .title {
        font-size: 16px;
    }
    .ny-news .item .time {
        font-size: 12px;
    }
    .ny-news .item .desc {
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 1.8em;
        height: 3.6em;
        margin-bottom: 10px;
        overflow: hidden;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: inherit;
    }
    .ny-news .item .more {
        width: 100%;
        padding: 8px 20px;
        font-size: 12px;
        height: auto;
        line-height: inherit;
    }
}
/* ==================== 内页 - 新闻列表2 end ==================== */


.about3-box1{ padding: 1.583rem 0 1.667rem;}
.about3-box1 .list .item{ border: 2px solid #e8e8e8;}









.mxw-copy{	background-color: #2c2c2c;	border-top: 1px solid rgba(255, 255, 255, 0.4);}
.mxw-copy .mxw-box{ display: flex; align-items: center; justify-content: space-between; padding: 0.333rem 0; 	font-size: 0.233rem; color: #fff;  text-align: center; }
.mxw-copy .mxw-box a{font-size: 0.233rem; color: #fff; }
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; color: #fff;}


.product-detail-tabcon table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.product-detail-tabcon table th,
.product-detail-tabcon table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.product-detail-tabcon table td p{line-height:1.8!important;}
.product-detail-tabcon table tr:hover{background-color:#f2f2f2!important;}
.product-detail-tabcon table tr:nth-child(2n-1){background-color:#fff ;}
.product-detail-tabcon table tr:nth-child(2n){background-color:#fdfdfd ;}

.xypg-detail-con table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.xypg-detail-con table th,
.xypg-detail-con table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.xypg-detail-con table td p{line-height:1.8!important;}
.xypg-detail-con table tr:hover{background-color:#f2f2f2!important;}
.xypg-detail-con table tr:nth-child(2n-1){background-color:#fff ;}
.xypg-detail-con table tr:nth-child(2n){background-color:#fdfdfd ;}
/* ==================== 通用 - 招聘卡片 start ==================== */
.job-itembox .job-item {
  margin-bottom: 0.6667rem;
}
.job-itembox .job-item:last-child {
  margin-bottom: 0;
}
.job-itembox .job-item .head {
  cursor: pointer;
  background-image: linear-gradient(90deg, #3eb134 9%, #55cf4b 100%);
  height: 1.05rem;
  line-height: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.5rem;
  padding-right: 0.8333rem;
}
.job-itembox .job-item .head.active:after {
  transform: rotateX(-180deg);
}
.job-itembox .job-item .head:after {
  content: "";
  display: block;
  background: url(../images/job-btn.png) no-repeat center;
  background-size: 100%;
  width: 0.5rem;
  height: 0.5rem;
  transition: all 0.4s;
}
.job-itembox .job-item .head .text {
  font-size: 0.3333rem;
  color: #fff;
  font-weight: bold;
}
.job-itembox .job-item .body {
  display: none;
  border: 1px solid #d7d7d7;
}
.job-itembox .job-item .itembox {
  display: flex;
  align-items: flex-start;
  border-top: 0;
  padding: 0.6667rem 0.5833rem;
}
.job-itembox .job-item .item {
  position: relative;
}
.job-itembox .job-item .item:after {
  content: "";
  display: block;
  width: 1px;
  height: 3.1667rem;
  background: #d5d5d5;
  position: absolute;
  right: 0;
  top: 0;
}
.job-itembox .job-item .item:last-child:after {
  display: none;
}
.job-itembox .job-item .item p {
  font-size: 0.3rem;
}
.job-itembox .job-item .item.item1 {
  width: 4.3333rem;
  flex-shrink: 0;
}
.job-itembox .job-item .item.item1 .text {
  font-size: 0.3333rem;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
}
.job-itembox .job-item .item.item1 .text02 {
  margin-bottom: 0.8333rem;
}
.job-itembox .job-item .item.item2 {

}
.job-itembox .job-item .item.item3 {
  flex-grow: 1;
  min-width: 0;
  padding-left: 1rem;
}
.job-itembox .job-item .item .item-head {
  font-size: 0.3333rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.job-itembox .job-item .desc {
  font-size: 0.3333rem;
  color: #333;
  line-height: 2;
}
.job-itembox .job-item .mxw-btn {
  display: block;
  font-size: 0.3rem;
  width: 2.7333rem;
  text-align: center;
  height: 0.7333rem;
  line-height: 0.7333rem;
  background: #fff;
  color: #3eb134;
  border: solid 0.0167rem #3eb134;
}
@media screen and (max-width: 1200px) {
  .job-itembox .job-item {
    margin-bottom: 15px;
  }
  .job-itembox .job-item .head {
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
  }
  .job-itembox .job-item .head .text {
    font-size: 15px;
  }
  .job-itembox .job-item .head:after {
    width: 15px;
    height: 15px;
  }
  .job-itembox .job-item .itembox {
    flex-wrap: wrap;
    padding: 20px;
  }
  .job-itembox .job-item .item {
    width: 100%!important;
  }
  .job-itembox .job-item .item::after {
    display: none;
  }
  .job-itembox .job-item .item.item1 .text {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .job-itembox .job-item .item.item2 {
    padding: 0;
    margin-bottom: 30px;
  }
  .job-itembox .job-item .item.item3 {
    padding: 0;
  }
  .job-itembox .job-item .item .item-head {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .job-itembox .job-item .item p {
    font-size: 14px;
  }
  .job-itembox .job-item .mxw-btn {
    width: 90%;
    font-size: 14px;
    height: auto;
    line-height: inherit;
    padding: 8px 20px;
    margin: 0 auto 20px;
  }
  .ny-job .section03 {
    padding-bottom: 0;
  }
}
/* ==================== 通用 - 招聘卡片 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact {
  overflow: hidden;

  background-size: cover;
}
.ny-contact .body {font-size: 0;
  background: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0rem 0.1167rem 0.5333rem 0rem rgba(3, 0, 0, 0.11);
}
.ny-contact .image {
  width: 45%;
  flex-shrink: 0;
}
.ny-contact .info {
  min-width: 0;
  flex-grow: 1;
  padding: 0.9167rem;
}
.ny-contact .info .text1 {
  font-size: 0.5833rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  margin-bottom: 0.8333rem;
}
.ny-contact .info .desc {
  font-size: 0.2833rem;
  color: #333;
  line-height: 2.6;
  text-align: justify;
}
#map{    margin-top: 1rem;font-size: 14px;}
@media screen and (max-width: 1200px) {
  .ny-contact .body {
    flex-wrap: wrap;
  }
  .ny-contact .image {
    width: 100%;
  }
  .ny-contact .info {
    padding: 20px 15px;
    background: none;
  }
  .ny-contact .info .text1 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  .ny-contact .info .desc {
    font-size: 14px;
    line-height: 2;
  }

}
/* ==================== 内页 - 联系我们 end ==================== */
/* ==================== 通用留言板 start ==================== */
.ny-message {
  overflow: hidden;
}
.ny-message .title {
  text-align: center;
  font-size: 0.6667rem;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.6667rem;
  font-weight: bold;
}
.ny-message .mxw-form {
  background-color: #f1f3f5;
  padding: 4%;
}
.ny-message .mxw-form .top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.ny-message .mxw-form input,
.ny-message .mxw-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #e4e6e8;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  transition: all 0.4s;
}
.ny-message .mxw-form input:focus,
.ny-message .mxw-form textarea:focus {
  border-color: #3eb134;
}
.ny-message .mxw-form input::-webkit-input-placeholder,
.ny-message .mxw-form textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
.ny-message .mxw-form input:-moz-placeholder,
.ny-message .mxw-form textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
.ny-message .mxw-form input::-moz-placeholder,
.ny-message .mxw-form textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
.ny-message .mxw-form input:-ms-input-placeholder,
.ny-message .mxw-form textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
.ny-message .mxw-form input {
  padding: 8px 15px;
}
.ny-message .mxw-form textarea {
  width: 100%;
  height: 140px;
  padding: 15px;
  resize: none;
}
.ny-message .mxw-form button {
  background-color: #3eb134;
  color: #fff;
  font-size: 16px;
  text-align: center;
  height: 46px;
  line-height: 46px;
  width: 200px;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  cursor: pointer;
  transition: all 0.4s;
}
.ny-message .mxw-form button:hover {
  box-shadow: 0 0 8px #3eb134;
}
@media screen and (min-width: 1200px) {
  .ny-message .mxw-form input {
    width: 49%;
    margin-bottom: 2%;
  }
  .ny-message .mxw-form input:nth-child(2n) {
    margin-left: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .ny-message .title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .ny-message .mxw-form {
    padding: 6% 4%;
  }
  .ny-message .mxw-form input {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .ny-message .mxw-form textarea {
    padding: 8px 15px;
  }
  .ny-message .mxw-form button {
    width: 100%;
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    margin-top: 10px;
  }
}
/* ==================== 通用留言板 end ==================== */


.ny-product .list.a-td .mxw-image{    font-size: 0;
    border-radius: 50%;}

.mxw-banner .swiper-slide{display: flex;
    align-items: center;
    justify-content: center;}
.team-list .list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: #ccc 0px 0px 2px;
    padding: 0.25rem 0.5rem;
}
.team-list .list-item .image{
    width: 35%;
    /* border-radius: 50%; */
    flex-shrink: 0;
}

.team-list .list-item .info{ flex-grow:1; min-width:0; margin-left:0.3rem;}
.team-list .list-item .info .name{ font-size:0.3rem;}
.team-list .list-item .info .desc{ font-size:0.233rem; margin-top:0.15rem; line-height:1.6;}



.ny-about .section3 {
 
  background-size: cover;
}
.ny-about .section3 .body {
  position: relative;
}
.ny-about .section3 .ny-title .number {
  color: rgba(255, 255, 255, 0.09);
}
.ny-about .section3 .ny-title .text {
  color: #333;
}
.ny-about .section3 .swiper-slide {
  height: auto;    border: 1px solid #ccc;width:25%;
}
.ny-about .section3 .item {
  display: block;
  height: 100%;
  padding: 0.6667rem 0.3333rem;
  background-color: rgba(255, 255, 255, 0.16);
}
.ny-about .section3 .item:hover {
  background-color: #fff;
}
.ny-about .section3 .item:hover .year {
  color: #3eb134;
  border-bottom-color: #ececec;
}
.ny-about .section3 .item:hover .desc {
  color: #333;
}
.ny-about .section3 .item .year {
  font-size: 0.5333rem;
  color: #333;
  padding-bottom: 0.3333rem;
  border-bottom: 0.0167rem solid #ccc;
  width: 100%;
  display: block;
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: bold;
}
.ny-about .section3 .item .desc {
  font-size: 0.2667rem;
  color: #333;
  line-height: 2.2;
}
.ny-about .section3 .item .desc p {
  padding-left: 0.3333rem;
  position: relative;
}
.ny-about .section3 .item .desc p:before {
  content: ">";
  position: absolute;
  top: 0;
  left: 0;
}
.ny-about .section3 .swiper-button-prev:after,
.ny-about .section3 .swiper-button-next:after {
  font-size: 0.5667rem;
  color: #9098ac;
  font-weight: bold;
}
.ny-about .section3 .swiper-button-prev {
  left: -0.9167rem;
}
.ny-about .section3 .swiper-button-next {
  right: -0.9167rem;
}


.ny-about .section3 .ny-title .text {
    color: #333;    font-size: 0.6rem;text-align: center;    margin-bottom: 0.6667rem;
}

.mxw-banner .banner-swiper{ height: 100%}
@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 ==================== */


/***************************************************/
footer{ background: #006935}
footer .ft-con .ft-menu ul a{ color: #ffff;}
footer .ft-con .ft-menu ul a:hover{ color: #fff;}

.index-section7>.con{display: flex;  justify-content: flex-end; height: 100% !important; margin-top: 0; display: -webkit-flex; flex-direction: column; }
.index-section7>.con footer{display: flex; padding-top: 2.1rem; justify-content: flex-end; display: -webkit-flex; flex-direction: column;}



















@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}

    #index-main-swiper>.swiper-wrapper>.swiper-slide{ height: auto !important;}
    .mxw-banner{ height: auto !important; margin-top: 0}
    #index-main-swiper{ height: auto !important;}
    #index-main-swiper > .swiper-wrapper {
        flex-flow: column;
        height: auto;
    }
    .index-section2>.con{ margin-top: 0; height: auto !important;}
    .mxw-banner .swiper-slide{ height: auto;}
    .about-body{ flex-wrap: wrap; padding: 45px 0 }
    .about-body .tc-left{ width: 100%; margin-right: 0}
    .about-body .tc-left .en img{ max-height: 40px; height: auto;}
    .about-body .tc-left .en span{ left: 20px; padding-left: 20px;}
    .about-body .tc-left .cn{ margin-left: 0; margin-top: 10px; font-size: 18px;}
    .about-body .tc-left .desc{ margin: 25px auto; font-size: 14px;}
    .about-body .tc-left .a-more{ margin-left: 0; font-size: 14px; padding: 8px 20px;}
    .about-body .center{ margin: 25px auto; width: 100%; flex-direction: initial;}
    .about-body .center .item{ width: 25%; margin-bottom: 0; flex-wrap: wrap; text-align: center;justify-content: flex-end;}
    .about-body .center .item .text{ font-size: 14px; order: 1; color: #666}
    .about-body .center .item .icon{ margin-left: initial; width: 38px;}
    .about-body .tc-right{ width: 100%;}
    .index-section3>.con{ margin-top: 0; padding: 45px 0; height: auto !important;}
    .ot-title{ position: relative; width: 100%;margin-bottom: 15px;}
    .ot-title .en{ width: 100%; }
    .ot-title .en img{max-height: 40px; height: auto; max-width: 100%; }
    .ot-title .en span{left: 20px; padding-left: 20px;}
    .ot-title .en p{ font-size: 22px; left: 40%;}
    .con-more{ font-size: 14px; padding: 8px 20px; margin-left: auto;}
    .pro-body .list{ margin-top: 20px; flex-wrap: wrap;}
    .pro-body .list .item{ width: 100%; margin-right: 0;}
    .pro-body .list .item .img .text{ left: 30px; bottom: 25px;}
    .pro-body .list .item .img .text .cn{ font-size: 20px;}
    .pro-body .list .item .img .text .en{font-size: 14px}

    .index-section4>.con{ flex-wrap: wrap; height: auto !important; margin-top: 0; padding: 45px 0}
    .index-section4 .info-box{ margin-top: 0; width: 100%; }
    .index-section4 .info-box .desc{ width: 60%; font-size: 14px;max-width: initial}
    .index-section4 .info-box .con-more{ margin-left: auto;}
    .index-section4 .sc-body{ margin-top: 25px; flex-wrap: wrap;}
    .index-section4 .sc-body .item{ width: 50%; padding: 30px 15px; }
    .index-section4 .sc-body .item .icon img{ height: 40px;}
    .index-section4 .sc-body .item .st{ font-size: 16px; margin-top: 10px;}
    .index-section4 .sc-body .item .desc{ font-size: 14px; margin-top: 10px;}
    .index-section4 .sc-body .item .mo{ visibility: visible; margin-top: 10px; font-size: 14px;}
    .index-section4 .sc-body .item:nth-child(2n){ border-right: 1px solid #fff}
    .index-section4 .sc-body .item:last-child{ width: 100%; border-bottom: 1px solid #fff}

    .index-section5>.con{  padding: 45px 0; margin:0 auto; height: auto !important;}
    .news-swiper{ margin-top: 25px;}
    .news-swiper>.swiper-wrapper>.swiper-slide{ flex-wrap: wrap;}
    .news-swiper>.swiper-wrapper>.swiper-slide .tc-left{ width: 100%; margin-right: 0;}
    .news-swiper>.swiper-wrapper>.swiper-slide .tc-left .desc{ overflow: hidden; padding-bottom: 0}














    footer .ft-con .ft-menu{ display: none}
    .index-section7>.con{ padding: 0; margin: 0; height: auto !important;}

    body{ margin-bottom: 0}
    footer .ft-con{ padding-top: 30px; flex-wrap: wrap; padding-bottom: 30px;}
    footer .ft-con .ft-logo{ width: 100%; text-align: center; display: none}
    footer .ft-text{ padding:30px 0; font-size: 20px; }
    footer .ft-con .ft-logo p{ font-size: 14px; margin-top: 10px;}
    footer .ft-con .ft-cont{  width: 100%;}
    footer .ft-con .ft-cont .st{ font-size: 18px;}
    footer .ft-con .ft-cont .num{ font-size: 22px; margin: 10px auto 15px; }
    footer .ft-con .ft-cont .con{ font-size: 14px;}
    footer .ft-con .ft-ewm{ margin-top: 20px; margin-left: 0}
    footer .ft-con .ft-ewm p{ font-size: 14px; margin-bottom: 10px;}
    .tc-link,footer .ft-meiti{ display: none}
    .mxw-copy .mxw-box{ flex-wrap: wrap;}

    .news-cate{ margin-top: 15px; flex-wrap: wrap; justify-content: space-between;}
    .news-cate .item{ font-size: 14px; padding: 8px 15px; width: 48.5%; text-align: center; margin: initial}
    .news-cate .item:nth-child(2n)~.item{ margin-top: 12px;}

    .cz-swiper .swiper-slide{ padding-bottom: 15px;padding-top: 15px;}
    .cz-swiper .swiper-slide:nth-child(1)~.swiper-slide{ padding-top: 15px;}
    .news-swiper>.swiper-wrapper>.swiper-slide .tc-left{ order: 1; margin-top: 15px}
    .news-swiper>.swiper-wrapper>.swiper-slide .tc-left .title .st{ font-size: 16px;}
    .news-swiper>.swiper-wrapper>.swiper-slide .tc-left .title .date{ font-size: 12px;}
    .news-swiper>.swiper-wrapper>.swiper-slide .tc-left .desc{ font-size: 14px; margin-top: 5px; height: 56px;}
    .cz-swiper{ height: 340px;}
    .news-swiper>.swiper-wrapper>.swiper-slide .tc-right{ width: 100%; margin-top: 0px;}
    .news-swiper>.swiper-wrapper>.swiper-slide .tc-right{ padding: 20px 15px;}

    .news-swiper>.swiper-wrapper>.swiper-slide .tc-right .st{ font-size: 18px;}
    .news-swiper>.swiper-wrapper>.swiper-slide .tc-right .desc{ font-size: 14px; margin: 12px auto 15px; height: 48px;}

    .news-swiper>.swiper-wrapper>.swiper-slide .tc-right .date{ font-size: 14px; padding-left: 45px; padding-bottom: 15px;}
    .news-swiper>.swiper-wrapper>.swiper-slide .tc-right .date::before{ width: 3px; margin-right: 15px; height: 65px;}
    .news-swiper>.swiper-wrapper>.swiper-slide .tc-right .date p{ font-size: 24px;}

    .index-section6>.con{ margin-top: 0; height: auto !important; padding: 45px 0;}
    .hr-body{ margin-top: 25px; flex-wrap: wrap;}
    .hr-body .item{ width: 100%;}
    .hr-body .item{ margin-right: 0;}
    .hr-body .item:nth-child(1)~.item{ margin-top: 25px;}


.index-section6 .ot-title .en p{left: 50%;}
 .ny-cate .mxw-box{ justify-content: flex-start;}

    .mxw-ny-box{ padding: 45px 0 60px;}

.mxw-banner .swiper-slide img{width: 100%;}
.team-list .list-item{ flex-wrap:wrap; padding:15px}
    .team-list .list-item .image{ width:40%; margin:0 auto; border-radius:50%}
    .team-list .list-item .info{ width:100%; text-align:center;}
.team-list .list-item:nth-child(1)~.list-item{ margin-top:25px}

    .team-list .list-item .info .name{ font-size:18px; margin:10px auto 15px;}

  .team-list .list-item .info .desc{ font-size:14px; line-height:2}


 .ny-about .section3 .item {
    padding: 20px 15px;
  }
  .ny-about .section3 .item .year {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .ny-about .section3 .item .desc {
    font-size: 12px;
  }

.mxw-banner .swiper-slide .flx img{    height: 40px;
    width: auto;}







.desc.ccp,.ny-news-desc .article{font-size: 14px;}



}












