@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.Pagination {
    margin-top: 40px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.Pagination  a,.Pagination  span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;

    margin: 4px;
}
.Pagination  a.current,
.Pagination  a:hover {
    background-color: #30a0a4;
    color: #fff !important;
}
.Pagination  a:first-child {
    margin-left: 0;
}
.Pagination  a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .Pagination {
        margin-top: 30px;
    }
    .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: #30a0a4;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #f9f9f9;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #30a0a4;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #30a0a4;
}
.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: #30a0a4;
    border-radius: 0px 5px 5px 0px;
     color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;

}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 30px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #cccccc;
    margin-left: 5px;
    margin-right: 5px;
    border: 2px solid #cccccc;
    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: #30a0a4;
    border-color: #30a0a4;

}
.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: #30a0a4;
}
.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: 1505px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 84.6%;
}
.mxw-box2 {
    max-width: 1500px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    html {

    }
    .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:#30a0a4;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.233rem 2rem 0.233rem 0;
    }
.top-box .logo-box .t-logo>img{ max-height:0.617rem;}
.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: #30a0a4; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; opacity: 0.4 }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;overflow:visible;}
.mxw-link .mxw-link-list{color:#333;position:absolute;top:0;left:0;width:100%;transform:translateY(-100%);padding:10px 0;display:none; background: #fff;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:0.3rem;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:0.267rem;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{
    position: absolute; width: 100%; top: 0; z-index: 100;
    background: rgba(0,0,0,.31);
    border-bottom:1px solid rgba(255,255,255,.28);
}
header .welcome {
    background: #f8f8f8;
    line-height: 0.7rem;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:rgba(255,255,255,.6);
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #333333;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color:#777777;
}


.top-box{ align-items: stretch;}
.top-box .right{ display: flex; flex-grow:1; min-width: 0;  padding-left: 1.5rem; justify-content: flex-end; align-items: center;  }
.top-box .right .tp-tel{ display: flex; align-items: center; width: max-content;}
.top-box .right .tp-tel .con{font-size: 0.4rem;color: #3a3a3a; font-weight: bold;   margin-left: 0.2rem; line-height: 1.2}
.top-box .right .tp-tel img{ height: 0.417rem}
.top-box .right .top-em{ font-size: 0.333rem; color: #3a3a3a; flex-shrink: 0}
.top-box .right .top-em img{ margin-right: 0.167rem;}
.top-box .right .top-em .x-sub-menu{ font-size: 14px; }
.top-ss{  flex-shrink: 0}
.top-ss>a>form{ display: flex; align-items: center; justify-content: space-between; padding: 0.1rem 0.1rem 0.1rem 0.167rem; height: auto;border-radius: 3px;
    border: solid 1px #3a3a3a;}
.top-ss>a button{ flex-shrink: 0; cursor: pointer; }
.top-ss>a input{ flex-grow: 1; min-width: 0; max-width: 1.5rem;}


.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}
.x-menu > li {

    margin: 0;
    text-align: center;
    float: none;
    position: relative;


}

.x-menu > li > a {
    font-size: 0.3rem;
    color: #fff;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.x-menu > li > a:hover {
    color: #fff;
}
.x-menu>li.active{}
.x-menu > li.active > a {
    color: #fff;
}
.x-menu > li > a::after{ display: block; width: 100%; height: 2px; content: ""; margin-top: 4px;}
.x-menu > li.active > a::after{ background: #fff; }


.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 200px;
    left:50%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,20px);
    transform: translate(-50%,20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;

}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#30a0a4;
}

.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%);}

.x-menu > li.lang{ display: flex; align-items: center; justify-content: center; }
.x-menu > li.lang>a{ padding: 0.05rem 0.167rem 0.05rem 0.133rem;border-radius: 0.05rem; height: auto; font-size: 0.233rem; display: flex; align-items: center; justify-content: space-between;
    border: solid 1px #ffffff; }
.x-menu > li.lang>a::after{ display: none;}
.x-menu > li.lang>a img{ margin-left: 0.667rem}








.mxw-banner .swiper-slide{ position: relative;}
.mxw-banner .swiper-slide video{     width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;}
.mxw-banner .swiper-slide .flx{    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center; z-index: 11}

.tc-1800{width: 94%; max-width: 1800px; margin: 0 auto;}

.mxw-keywords{ border-bottom: 1px solid #dddddd}


.tc-about{ padding-top: 1.25rem; background: url("../images/about-bg.jpg") center no-repeat; background-size: cover;}
.tc-about>.mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.tc-about>.mxw-box .tc-right{ margin-right: -3.5rem; flex-shrink: 0; width: 15.4rem; margin-left: 1rem; display: none}
.tc-about>.mxw-box .tc-right>img{    border-radius: 0.167rem 0 0 0.933rem;}
.tc-about>.mxw-box .tc-left { flex-grow: 1; min-width:0; padding-bottom: 1.417rem }
.tc-about>.mxw-box .tc-left .up{ display: flex; align-items: flex-end; justify-content: space-between; }
.tc-about>.mxw-box .tc-left .up .u1{ font-size: 0.933rem; color: rgba(51, 51, 51, 0.1); line-height: 1; font-weight: bold; position: relative;}
.tc-about>.mxw-box .tc-left .up .u1 span{font-size: 0.4rem; color: #333; position: absolute; left: 0; bottom: 0; 	}
.tc-about>.mxw-box .tc-left .up .up1{ flex-grow: 1; min-width: 0; margin-right: 1.2rem;}
.tc-about>.mxw-box .tc-left .up a{ flex-shrink: 0; width: 1.733rem; margin-bottom: 0.333rem; }
.tc-about>.mxw-box .tc-left .up .u2{ font-size: 0.3rem; color: #333; font-weight: bold; margin: 0.3rem auto 0.1rem 0; width: 90%; line-height: 1.3}
.tc-about>.mxw-box .tc-left .up .en{ font-size: 12px; color: #787878; text-transform: uppercase;}
.tc-about>.mxw-box .tc-left .desc{ margin: 0.833rem auto ;color: #666666; line-height: 2; padding-right: 0.3rem; font-size: 0.267rem}
.abc-list{ display: flex; align-items: center; justify-content: flex-start; margin-top: 1rem}
.abc-list .item{ margin-right: 0.733rem; width: 1.783rem;}




.num-box{ display: flex; align-items: center; justify-content: space-between; width: 220%; max-width: 1300px;  position: relative; z-index: 1; margin-right:7rem;box-shadow: 0 0 0.333rem rgba(0,0,0,0.03); background: rgba(255,255,255,.9);}
.num-box .item{ width: 25%; position: relative;}
.num-box .item::after{ position: absolute; 	width: 1px;
    height: 1.567rem;
    background-color: #e7e7e7; right: 0; content: ""; top: 50%; transform: translateY(-50%)}
.num-box .item .con{ padding:  0.4rem 1rem; text-align: center; }
.num-box .item .con p{color: #888888; font-size: 0.267rem;}
.num-box .item .con .num{ margin: 0.2rem auto; font-size: 1.133rem; font-weight: bold; line-height: 1;}
.num-box .item:hover{ background: #30a0a4;
    margin: -0.3rem auto;
}
.num-box .item:hover .con{ margin: 0.3rem auto; color: #fff}
.num-box .item:hover .con p{ color: #fff;}
.num-box .item:hover::after{ visibility: hidden}
.num-box .item:last-child::after{ visibility: hidden}

.tc-product{ padding:1.333rem 0 1.417rem;	background-color: rgba(48, 160, 164, 0.06); }
.tc-title{ text-align: center;}
.tc-title .cn{ font-size: 0.633rem;  }
.tc-title .desc{color: #666666; font-size: 0.267rem; margin-top: 0.2rem;}
.pro-cate{ display: flex; align-items: stretch; justify-content: center; margin-bottom: 0.5rem}
.pro-cate .pro-cate-item{background-color: #fff; padding: 0.183rem 0;	font-size: 0.3rem; color: #333; width: 18.88%; margin-right: 1.4%; text-align: center;border-radius: 0.167rem;}
.pro-cate .pro-cate-item:last-child{ margin-right: 0;}
.pro-cate .pro-cate-item img{ height: 0.7rem; margin-right: 0.167rem; }
.pro-cate .pro-cate-item:hover,.pro-cate .pro-cate-item.active{ color: #fff;
    background-image: linear-gradient(0deg,
    #30a0a4 0%,
    #46b5b9 100%),
    linear-gradient(
            #0bbf64,
            #0bbf64);
    background-blend-mode: normal,
    normal;}
.pro-cate .pro-cate-item:hover img,.pro-cate .pro-cate-item.active img{ filter: grayscale(100%) brightness(600%);  }
.pro-swiper{ overflow: hidden;}
.pro-body{ margin-top: 0.5rem;}
.pro-con-swiper  .item{ overflow: hidden; position: relative; }
.pro-con-swiper  .item .mxw-image{border: 1px solid #e7e7e7; border-radius: 0.25rem; position: relative;}
.pro-con-swiper  .item .mxw-image::after{ position: absolute; z-index: 1; display: block; width: 100%; height: 100%; bottom: 0; left: 0; background: url("../images/pro-ibg.png") center no-repeat; background-size: cover; content: "";transition: all 0.3s; opacity: 0;}
.pro-con-swiper .st{ /*position: absolute;*/ z-index: 2;	font-size: 0.283rem; padding: 0 0.25rem; text-align: center; width: 100%; height: auto; left: 0; right: 0; bottom: 0; margin:0.15rem auto   0; color: #333; }

.pro-con-swiper  .item:hover .mxw-image:after{ opacity: 1;transition: all 0.3s}
.pro-con-swiper  .item:hover .mxw-image{ }
.pro-con-swiper  .item:hover .mxw-image img{ transform: scale(1.1);transition: all 0.3s }
.pro-con-swiper  .item:hover .st{ }

/* ==================== 优势 start ==================== */
.mxw-advantage {
    background-color: #fff;
    padding-top: 1.033rem;
}
.mxw-advantage .advantage-swiper {
    background: url(../images/img09.png) no-repeat center;
    background-size: cover;
    margin-top: 1rem;

}
.mxw-advantage .swiper-slide {
    padding: 1.6667rem 0.6667rem;
    color: #fff;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    transition: background-color 0.4s;
}
.mxw-advantage .swiper-slide:hover {
    background: rgba(0, 0, 0, 0.6);
}
.mxw-advantage .swiper-slide .icon,
.mxw-advantage .swiper-slide .head,
.mxw-advantage .swiper-slide .desc {
    transition: transform 0.4s;
}
.mxw-advantage .swiper-slide .icon {
    display: block;
    width: 0.8333rem;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}
.mxw-advantage .swiper-slide .head {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 0.3rem;
}
.mxw-advantage .swiper-slide .head .text1 {
    font-size: 0.4rem;
    line-height: 1.2;font-weight: 600;
}
.mxw-advantage .swiper-slide .head .text2 {
    font-size: 0.3rem;
    line-height: 1.2;
}
.mxw-advantage .swiper-slide .desc {
    font-size: 0.267rem;
    line-height: 1.8;
    justify-content: space-between;
    position: relative;
}
@media screen and (min-width: 1200px) {
    .mxw-advantage .advantage-swiper {
        min-height: 11.6667rem;
        height: 11.6667rem;
    }
    .mxw-advantage .swiper-slide:hover .icon,
    .mxw-advantage .swiper-slide:hover .head,
    .mxw-advantage .swiper-slide:hover .desc {
        transform: translateY(-1.6667rem);
    }
    .mxw-advantage .swiper-slide:hover .desc:after {
        content: "";
        display: block;
        width: 1rem;
        height: 0.0333rem;
        background-color: #fff;

        position: absolute;
        bottom: -1.3333rem;
        left: 0;
    }
}
@media screen and (max-width: 1200px) {
    .mxw-advantage .mxw-title {
        padding-left: 20px;
        padding-right: 20px;
    }
    .mxw-advantage .swiper-wrapper {
        flex-wrap: wrap;
    }
    .mxw-advantage .swiper-slide {
        padding: 20px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        background-color: rgba(0, 0, 0, 0.4);
    }
    .mxw-advantage .swiper-slide .icon {
        width: 30px;
        margin-bottom: 20px;
        display: none;
    }
    .mxw-advantage .swiper-slide .head {
        margin-bottom: 10px;
    }
    .mxw-advantage .swiper-slide .head .text1 {
        font-size: 18px;
        font-weight: bold;
    }
    .mxw-advantage .swiper-slide .head .text2 {
        font-size: 12px;
    }
    .mxw-advantage .swiper-slide .desc {
        font-size: 12px;
    }
}
/* ==================== 优势 end ==================== */



.tc-video{ background: url("../images/vd-bg.jpg") center no-repeat; background-size: cover; padding: 1.533rem 0 1.1rem;}
.tc-video .body {
    display: flex;
    align-items: flex-start;
    margin-top: 1rem;
}
.tc-video .body .info {
    min-width: 0;
    flex-grow: 1;
}
.tc-video .body .info .text1 {
    font-size: 0.3667rem;
    color: #333;
    line-height: 1.4;
    font-weight: bold;
    padding-right: 0.3333rem;
    text-transform: uppercase; margin-bottom: 0.3rem;
}
.tc-video .body .info .text1:after {
    content: "";
    display: block;
    width: 0.9333rem;
    height: 0.0167rem;
    background-color: #000;
    margin-top: 0.6667rem;
    margin-bottom: 0.5rem; display: none;
}
.tc-video .body .info .desc {
    font-size: 0.267rem;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}
.tc-video .body .right video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.tc-video .body .right iframe{ width: 100%; height: 6rem; overflow: hidden;}

@media screen and (min-width: 1200px) {
    .tc-video  .body .right {
        width: 61.8%;
        flex-shrink: 0;
        margin-left: 0.8rem;
        border-radius: 0.167rem;
        overflow: hidden;
        font-size: 0;
    }
}
@media screen and (max-width: 1200px) {
    .tc-video  .body {
        flex-wrap: wrap;
    }
    .tc-video .body .info .text1 {
        padding-right: 0;
        font-size: 18px;
    }
    .tc-video  .body .info .text1:after {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .tc-video .body .info .desc {
        font-size: 14px;
        line-height: 2em;
        margin-bottom: 30px;
    }
}

.tc-case{ padding: 1.25rem 0 0.917rem;  background: url("../images/case-bg.jpg") center no-repeat; background-size: cover;}
.case-swiper{ margin: 0.917rem 0.333rem 0; overflow: hidden;}
.case-swiper .swiper-slide{ width: 23.5%; text-align: center; background: #fff;}
.case-swiper .swiper-slide .st{ font-size: 0.367rem; padding: 0.2rem 0 0.15rem; font-weight: bold;}
.case-swiper .swiper-slide:hover .st{ color: #30a0a4}
.case-more{ display: block; width: max-content; width: -moz-max-content; margin: 0.75rem auto 0;background-color: #30a0a4;
    box-shadow: 0px 3px 10px 0px
    rgba(0, 0, 0, 0.17);
    border: solid 1px #dcdcdc; color: #fff;
    font-size: 0.3rem; padding: 0.2rem 0.45rem;  border-radius: 0.417rem; transition: all 0.3s; }
.case-more span{ margin: 0 0.75rem; transition: all 0.3s; }
.case-more:hover{ padding: 0.2rem 0.75rem; transition: all 0.3s; }
.case-more:hover span{ margin: 0 0.45rem; transition: all 0.3s; }

/* ==================== 新闻资讯 start ==================== */
.mxw-news {
    background-color: #f3f9fa;
    padding: 1.583rem 0;
}
.mxw-news .mxw-cate {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.917rem;
    margin-top: 0.917rem;
}
.mxw-news .mxw-cate .cate-item {
    text-align: center;
    display: block;
    width: 14.6875%;
    padding-top: 0.3333rem;
    padding-bottom: 0.3333rem;
    font-size: 0.3rem;
    color: #333;
    margin-right: 0.8333rem;
    flex-shrink: 0;
    background-color: #fff;	border-radius: 0.167rem;
}
.mxw-news .mxw-cate .cate-item.active {
    background-image: linear-gradient(0deg,
    #30a0a4 0%,
    #46b5b9 100%),
    linear-gradient(
            #0bbf64,
            #0bbf64);
    background-blend-mode: normal,
    normal;
    color: #fff;
}
.mxw-news .mxw-cate .cate-item:last-child {
    margin-right: 0;
}
.mxw-news .item {
    display: block;
}

.mxw-news .item .date {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0.5rem;
}
.mxw-news .item .date .day {
    font-size: 0.5rem;
    color: #000;
    line-height: 1;
    margin-right: 0.1667rem;
}
.mxw-news .item .date .year {
    font-size: 0.2667rem;
    color: #666;
    line-height: 1.2;
}
.mxw-news .item .image {
    margin-bottom: 0.3rem;
    border-radius: 0.167rem 0.167rem 0rem 0rem;
}
.mxw-news .item .info .title {
    font-size: 0.3667rem;
    color: #333;
    line-height: 1.8em;

    margin-bottom: 0.3667rem;
}
.mxw-news .item .info .desc {
    font-size: 0.2667rem;
    color: #666;
    line-height: 1.6;
    text-align: justify;
    height: 3.2em;
}
.mxw-news .item .info .mxw-more {

    margin-top: 0.8333rem;
    width: 2.1667rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.3333rem;
    background: url(../images/img40.png) repeat-x center bottom;
    transition: transform 0.4s;
}
.mxw-news .item .info .mxw-more:hover {
    transform: translateX(0.1667rem);
}
.mxw-news .item .info .mxw-more:after {
    content: "";
    display: block;
    width: 0.2667rem;
    height: 0.1667rem;
    background: url(../images/img28.png) no-repeat center;
    background-size: 100%;
}
.mxw-news .item:hover .info .title{
    color: #30a0a4;
}
@media screen and (min-width: 1200px) {

    .mxw-news .swiper-slide {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .mxw-news .item {
        width: 28.125%;
    }
}
@media screen and (max-width: 1200px) {
    .mxw-news .mxw-cate {
        margin-bottom: 30px;
    }
    .mxw-news .mxw-cate .cate-item {
        width: 32%;
        margin-right: 0;
        padding: 8px 10px;
        font-size: 12px;
    }
    .mxw-news .mxw-cate .cate-item:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .mxw-news .item {
        margin-bottom: 30px;
    }
    .mxw-news .item:last-child {
        margin-bottom: 0;
    }
    .mxw-news .item .date {
        margin-bottom: 20px;
    }
    .mxw-news .item .date .day {
        font-size: 20px;
        margin-right: 6px;
    }
    .mxw-news .item .date .year {
        font-size: 12px;
    }
    .mxw-news .item .image {
        margin-bottom: 15px;
    }
    .mxw-news .item .info .title {
        font-size: 16px;
        line-height: 1.4;
        font-weight: bold;
        max-height: 2.8em;
        height: auto;
        margin-bottom: 10px;
    }
    .mxw-news .item .info .mxw-more {
        font-size: 12px;
        padding-bottom: 10px;
        margin-top: 20px;
    }
}
/* ==================== 新闻资讯 end ==================== */


footer{ background: url("../images/footer-bg.jpg") center no-repeat; background-size: cover; }
footer>.ftp{  display: flex; align-items: stretch; justify-content: space-between; }
footer>.ftp .tc-right{ padding: 0.75rem 0 0.75rem 0.75rem; width: 6rem; flex-shrink: 0; border-left: 1px solid rgba(255,255,255,.4); color: #fff; }
footer>.ftp .tc-right .cont{ font-size: 0.333rem; line-height: 1.9;}
footer>.ftp .tc-right .list{ margin-top: 1.167rem; display: flex;}
footer>.ftp .tc-right .list .item p{ font-size: 0.233rem; margin-top: 0.25rem; text-align: center;}
footer>.ftp .tc-right .list .item:first-child{ margin-right: 0.667rem;}
footer>.ftp .tc-right .list .item img{ max-width: 1.667rem;}
footer>.ftp .tc-left{ flex-grow: 1; min-width: 0; display: flex; display: -webkit-flex; flex-direction: column;  }
footer>.ftp .tc-left .up{ display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 0.433rem; border-bottom: 1px solid rgba(255,255,255,.4);
    padding-top: 0.583rem; flex-shrink: 0}
footer>.ftp .tc-left .up .cn{	font-size: 0.5rem; font-weight: bold; color: #fff;}
footer>.ftp .tc-left .up .en{font-size: 0.25rem; color: #fff; margin-top: 0.15rem;}
footer>.ftp .tc-left .ud{ padding-top: 0.867rem; flex-grow: 1; min-width: 0; display: flex; display: -webkit-flex; flex-direction: column; justify-content: space-between}
footer>.ftp .tc-left .up .name{ flex-grow: 1; min-width: 0}
footer>.ftp .tc-left .up .fx{ flex-shrink: 0; margin-right: 0.833rem; display: flex; align-items: flex-start; justify-content: flex-end;}
footer>.ftp .tc-left .up .fx .item{ width: 0.783rem; height: 0.783rem; border: 2px solid #2d9d87; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin-left: 0.267rem;}
footer>.ftp .tc-left .up .fx .item:hover{ background: #3eb134; border-color: #3eb134}

.d-mu{ width: 70%; display: flex; align-items: flex-start; justify-content: space-between; }
.d-mu>li>a{ font-size: 0.267rem; font-weight: bold; color: #fff;}
.d-mu>li>a::after{ width: 0.4rem; height: 0.033rem; display: block; content: ""; background: #3eb134; margin-top: 0.3rem;}
.d-mu>li>.subd{ margin-top: 0.333rem;}
.d-mu>li>.subd>li>a{ color: #fff; font-size: 0.233rem; line-height: 2.2}
.tc-link{ display: flex; align-items: flex-start; justify-content: flex-start; margin-top: 1rem; padding-bottom: 0.367rem; border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.267rem}
.tc-link>.title{ font-size: 0.267rem; color: #fff; flex-shrink: 0;}
.tc-link>.list{ color: #fff; font-size: 0.267rem; flex-flow: 1; min-width: 0; margin-right: 1rem; }


/* ==================== 通用 - 内页导航 start ==================== */
.ny-nav .oth-list{
    display: flex; align-items: stretch; justify-content: flex-end;
}
.ny-nav .mxw-box {
    padding-top:0.633rem;
    padding-bottom: 0.733rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e7e7e7;
}

.ny-nav .nav-item {
    display: block;
    font-size: 0.267rem;
    color: #8c8c8c;
    line-height: 1.2;
    margin: 0 5px;
    padding: 0.133rem 0.633rem;
    text-align: center;
    position: relative;
    background-color: #eaeaea;
    border-radius: 0.333rem;
}

.ny-nav .mxw-box .cn{ 	font-size: 0.433rem; line-height: 1.6; font-weight: bold}
.ny-nav .mxw-box .en{font-size: 0.3rem;color: #30a0a4; font-weight: bold; text-transform: uppercase;}
.ny-nav .nav-item.active{	background-color: #30a0a4; color: #fff;}

.about-s1{ padding: 0.917rem 0 0.967rem;}
.about-s1 .title{	font-size: 0.5rem;	color: #333333; text-align: center;}
.about-s1 .title::after{	width: 44px;
    height: 6px; content: ""; display: block;
    background-color: #30a0a4; margin: 0.3rem auto 0.367rem;}
.about-s1 .f-title{ text-align: center;	font-size: 0.467rem; font-weight: bold; margin: 0.4rem auto 0.633rem;}
.about-s1 .desc{	font-size: 0.467rem;	color: #666666; line-height: 1.8;}


.about-box2{ background: #f1f8f8; max-width: 1920px; margin: 0 auto;
    display: flex; align-items: flex-start; justify-content: space-between;}
    display: flex; align-items: flex-start; justify-content: space-between;}
.about-box2 .a-title{ }
.about-box2 .left{ width: 50%; display: none }
.about-box2 .right{ width: 100%; padding-bottom: 0.75rem; padding-top: 0.75rem;}
.lc1-swiper{ margin-top: 0.75rem; overflow: hidden;}
.lc1-swiper .swiper-slide{ font-size: 0.267rem; line-height: 1.8}

.lc2-swiper{ margin-top: 0.7rem; overflow: hidden; position: relative;}
.lc2-swiper .swiper-slide{ text-align: center; }
.lc2-swiper .swiper-slide .ico{ width: 0.3rem; height: 0.3rem; border-radius: 50%; border: 1px solid #fff; background: #30a0a4; margin: 0.1rem auto 0;  }
.lc2-swiper .swiper-slide p{ margin-top: 0.3rem; font-size: 0.267rem; color: #666666; font-weight: bold;}
.lc2-swiper .swiper-slide.swiper-slide-thumb-active .ico{ width: 0.467rem; height: 0.467rem;  margin-top: 0}
.lc2-swiper .swiper-slide.swiper-slide-thumb-active p{ font-size: 0.367rem; color: #30a0a4}
.lc2-swiper .swiper-wrapper{ align-items: stretch; height: auto !important;}
.lc2-swiper::after{ display: block; width: 100%; content: ""; position: absolute; height: 2px; background: #cccccc;
    top: 0.233rem;}
.a-title{ font-size: 0.433rem; color: #333 }
.a-title::after{ width: 0.733rem; height: 0.083rem; background: #30a0a4; content: ""; display: block; margin: 0.333rem auto 0 0;}

.about-box3{ padding-top: 1.5rem;}
.ab-title{ text-align: center;	font-size: 0.433rem;	color: #333333;}
.ab-title::after{width: 44px;
    height: 6px; content: ""; display: block;
    background-color: #30a0a4; margin: 0.3rem auto ;}
.ab3-body{ display: flex; align-items: stretch; justify-content: space-between; padding: 0 0.167rem; margin-top: 0.833rem;}
.ab3-body .item{ text-align: center; padding:0.833rem 0.367rem 1.083rem; width: 28%;	background-color: #f1f8f8;     display: flex;
    flex-direction: column;
    justify-content: flex-start;}
.ab3-body .item .st{font-size: 0.433rem; margin: 0.533rem auto 0.267rem;}
.ab3-body .item .desc{	font-size: 0.233rem;	color: #666666; line-height: 1.9; text-align: left;}
.ab3-body .item .icon img{ height: 1.15rem;}
.about-box4{ padding: 1.25rem 0 1.417rem; background: url("../images/about-b3-bg.jpg") center bottom no-repeat; background-size: cover;}
.ab-dsc{	font-size: 0.267rem; margin-top: 0.4rem; text-align: center;}



#certify {
    position: relative;
    margin: 3% auto 0;
}

#certify .swiper-container {
    padding-bottom: 20px;
}

#certify  .swiper-slide {
    width: 386px;
    height: 531px;
    background: #fff;
    box-shadow: 0 8px 30px #ddd;
}
#certify  .swiper-slide img{
    display:block;
}
#certify  .swiper-slide p {
    line-height: 98px;
    padding-top: 0;
    text-align: center;
    color: #636363;
    font-size: 1.1em;
    margin: 0;
}

#certify .swiper-pagination {
    width: 100%;
    bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
    border: 3px solid #fff;
    background-color: #d5d5d5;
    width: 10px;
    height: 10px;
    opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
    border: 3px solid #00aadc;
    background-color: #fff;
}

.swipexynext{
    position: absolute;
    top:40%;
    right: 0px;
    background: url(//cdn.myxypt.com/574f880f/23/02/243dbb26468f7ac2d239b89972ef9726b9ef0471.png) no-repeat;
    width: 70px;
    height: 47px;
    background-size: 100% 100%;
    z-index: 999;
    border: none;
    outline: none;
    cursor: pointer;
}
.swipexyfrev{
    position: absolute;
    top:40%;
    left: 0px;
    background: url(//cdn.myxypt.com/574f880f/23/02/eef96a561be4611a422858f101362dc664605767.png) no-repeat;
    width: 70px;
    height: 47px;
    background-size: 100% 100%;
    z-index: 999;
    border: none;
    outline: none;
    cursor: pointer;
}


.about-box5{ padding:1.25rem 0 1.3rem;}
.ab5-list{ margin: 0.7rem auto 0; overflow: hidden;}
.ab5-list .scroll-wrap{
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.ab5-list .scroll-wrap .scroll-item{ text-align: center; width: 23.5%; flex-shrink: 0; margin-right: 2%;}
.ab5-list .scroll-wrap .scroll-item .st{ margin: 0.25rem auto 0.267rem;	font-size: 0.333rem;}
.ab5-list .scroll-wrap .scroll-item .img{	border-radius: 5px; overflow: hidden;}
.ab5-list .scroll-wrap .scroll-item .desc{	font-size: 0.233rem;	color: #666666; line-height: 1.5}

.about-box6{background-color: #f1f8f8; padding: 1rem 0 1.083rem;}
.team-swiper{ overflow: hidden; margin: 0.75rem auto 0; position: relative;}
.team-swiper .swiper-slide{ width: 33%;transform: scale(0.8); }
.team-swiper .swiper-slide.swiper-slide-active{
    transform: scale(1);padding: 0.2rem; background: url("../images/team-bg.png") bottom right no-repeat; background-size: 95% 95%;
}
.team-swiper .swiper-button-prev{ left: 34%;}
.team-swiper .swiper-button-next{ right: 34%;}
.team-swiper .swiper-button-next::after,.team-swiper .swiper-button-prev::after{ display: none}

.about-box7{ padding: 1rem 0;}
.ab7-body{ display: flex; align-items: center; justify-content: space-between;margin: 0.7rem auto 0;}
.ab7-body .ab7-swiper{ overflow: hidden; position: relative; }
.ab7-body .ab7-swiper .swiper-pagination{ position: absolute;}
.ab7-body .tc-left{ width: 59.1%; flex-shrink: 0; }
.ab7-body .tc-right{ flex-grow: 1; min-width: 0; padding-left: 0.583rem;}
.ab7-body .tc-right .title{	font-size: 0.5rem;	color: #333333;}
.ab7-body .tc-right .title::after{	width: 0.733rem;
    height: 0.1rem;
    background-color: #30a0a4; margin-top: 0.4rem; content: "";display: block;}
.ab7-body .tc-right .desc1{font-size: 0.3rem;color: #555555; margin: 0.833rem auto; line-height: 1.5}
.ab7-body .tc-right .desc2{	font-size: 0.3rem;	color: #555555;}
.ab7-body .tc-right .desc2 p{	font-size: 0.367rem; margin-bottom: 0.4rem;}
.ab7-body .tc-right .desc2::before{
    width: 2.117rem;
    height: 1px;
    background-color: #2b3242; margin-bottom: 0.8rem;
    content: ""; display: block;
}
.ab7-body .ab7-swiper .swiper-pagination{
    display: flex; align-items: center;justify-content: flex-end; padding-right: 0.333rem; padding-bottom: 0.2rem}
.ab7-body .ab7-swiper .swiper-pagination span{	width: 22px;
    height: 0.367rem; background-color: #ffffff; border-radius: 0; opacity: 1;	color: #a4a4a4; font-size: 0.267rem; font-weight: bold; line-height: 0.367rem;}
.ab7-body .ab7-swiper .swiper-pagination span.swiper-pagination-bullet-active{background-color: #30a0a4; color: #fff;}






















@media screen and (min-width: 1200px) {
    .ny-nav {
     /*   position: sticky;
        top: 0; background: #fff;*/
    }
}/*
@media screen and (max-width: 1200px) {
    .ny-nav .mxw-box {
        justify-content: flex-start;
    }
    .ny-nav .nav-item {
        width: 31%;
        margin: 0;
        font-size: 14px;
        padding-top: 10px;
        padding-bottom: 10px;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .ny-nav .nav-item:nth-child(3n-1) {
        margin-left: 3.5%;
        margin-right: 3.5%;
    }
    .ny-nav .nav-item:nth-child(3) ~ .nav-item {
        margin-top: 2%;
    }
}*/
/* ==================== 通用 - 内页导航 end ==================== */


/* ==================== 内页 - 产品中心 end ==================== */
.ny-product>.nw{ padding-bottom: 1rem; padding-top: 0.667rem}
.ny-product .mxw-cate {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 0.6667rem;
}
.ny-product .mxw-cate .cate-item {
    height: 1.0833rem;
    line-height: 1.0833rem;
    width: 18.75%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3;
    font-size: 0.3rem;
    color: #333;
    margin-right: 20px;
}
.ny-product .mxw-cate .cate-item:last-child {
    margin-right: 0;
}
.ny-product .mxw-cate .cate-item:hover,
.ny-product .mxw-cate .cate-item.active {
    background-color: #3eb134;
    color: #fff;
}
.ny-product .mxw-cate .cate-item:hover .icon img,
.ny-product .mxw-cate .cate-item.active .icon img {
    transform: translateY(0);
}
.ny-product .mxw-cate .cate-item .icon {
    width: 0.5rem;
    height: 0.5rem;
    overflow: hidden;
    margin-right: 0.1667rem;
}
.ny-product .mxw-cate .cate-item .icon img {
    transform: translateY(-50%);
    display: block;
}
.ny-product .item{ }
.ny-product .item .image {
    position: relative;    border-radius: 0.25rem; overflow: hidden; border: 1px solid #e5e5e5
}
.ny-product .item .image::after{ position: absolute; z-index: 1; display: block; width: 100%; height: 100%; bottom: 0; left: 0; background: url("../images/pro-ibg.png") center no-repeat; background-size: cover; content: "";}
.ny-product .item  .title{  z-index: 2;	font-size: 0.283rem; padding: 0 0.25rem; text-align: center; width: 100%; height: auto; left: 0; right: 0; bottom: 0; margin: 0.15rem auto 0; color: #333; }


@media screen and (max-width: 1200px) {
    .ny-product .mxw-cate {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .ny-product .mxw-cate .cate-item {
        width: 49%;
        margin-right: 2%;
        font-size: 12px;
        height: auto;
        line-height: inherit;
        padding: 8px 10px;
    }
    .ny-product .mxw-cate .cate-item:nth-child(2) ~ .cate-item {
        margin-top: 2%;
    }
    .ny-product .mxw-cate .cate-item:nth-child(2n) {
        margin-right: 0;
    }
    .ny-product .mxw-cate .cate-item .icon {
        width: 20px;
        height: 20px;
    }
    .ny-product .item .title {
        font-size: 12px;
        padding: 8px 10px;
    }
    .ny-product{ padding: 45px 0}
}
/* ==================== 内页 - 产品中心 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 #168a53;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #168a53;
}
@media screen and (max-width: 1200px) {
    .ny-product-desc {

    }
    .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: 24px;
    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;
    transition: all 0.4s;
    border: 1px solid #dedede;
    box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.14);
    margin-bottom: 0.6667rem;
}
.ny-news .item:hover {
    box-shadow: 0px 3px 21px 0px
    rgba(224, 224, 224, 0.5);
    border-color: transparent;
}
.ny-news .item:hover .title {
    color: #555555;
}
.ny-news .item .image {
    flex-shrink: 0;

    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.ny-news .item .image img{ height: 3.467rem; width: initial; max-width: initial;}
.ny-news .item .info {
    min-width: 0;
    flex-grow: 1;
    padding: 0.333rem 0.6rem 0.333rem 0;
}
.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;
}
.ny-news .item .time {
    font-size: 0.233rem;
    line-height: 1.2;
    flex-shrink: 0;
}
.ny-news .item .desc {
    font-size: 0.233rem;
    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;
}
.ny-news .item:hover .more{	background-color: #30a0a4; color: #fff; border: 1px solid #30a0a4}
@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;
    }
    .ny-news{ padding: 45px 0}
}
/* ==================== 内页 - 新闻列表2 end ==================== */

/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact {
    overflow: hidden;
    background: url(../images/map.jpg) no-repeat center;
    background-size: cover;
}
.ny-contact .body {
    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;
}
@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;
    }
    .ny-contact{ padding: 45px 0}
}
/* ==================== 内页 - 联系我们 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: #30a0a4;
    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 #30a0a4;
}
@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;
    }
    .ny-message{ padding: 45px 0}
}
/* ==================== 通用留言板 end ==================== */

/* ==================== 内页 - 关于我们 start ==================== */
.ny-about2 {
    overflow: hidden;
}
.ny-about2 .section1 .info {
    min-width: 0;
    flex-grow: 1;
    position: relative;
    z-index: 9;
}
.ny-about2 .section1 .info .text1 {
    font-size: 0.3667rem;
    color: #3eb134;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.ny-about2 .section1 .info .text2 {
    font-size: 0.5833rem;
    line-height: 1.2;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.1667rem;
}
.ny-about2 .section1 .info .text3 {
    font-size: 0.2333rem;
    color: #787878;
    line-height: 1.2;
    letter-spacing: 1.5px;
}
.ny-about2 .section1 .info .desc {
    margin-top: 0.5rem;
    font-size: 0.3rem;
    text-align: justify;
    color: #666;
    line-height: 2;
    margin-bottom: 1rem;
}
.ny-about2 .section1 .info .desc p {
    margin-bottom: 1em;
}
.ny-about2 .section1 .info .desc p:last-child {
    margin-bottom: 0;
}
.ny-about2 .section1 .itembox {
    background-color: #fff;
    padding-top: 0.6667rem;
    padding-bottom: 0.6667rem;
    width: 23.3333rem;
    box-shadow: 0rem 0rem 0.1167rem 0rem rgba(6, 0, 1, 0.15);
    margin-right: -8.1667rem;
    position: relative;
    z-index: 9;
}
.ny-about2 .section1 .item .number {
    margin-bottom: 0.25rem;
}
.ny-about2 .section1 .item .top {
    display: block;
    text-align: center;
}
.ny-about2 .section1 .item .top span {
    font-size: 1.05rem;
    line-height: 1;
    color: #3eb134;
    font-family: 'Impact';
    margin-right: 0.0833rem;
}
.ny-about2 .section1 .item .top i {
    font-size: 0.2333rem;
    color: #666;
    line-height: 1.2;
}
.ny-about2 .section1 .item .text {
    font-size: 0.2833rem;
    color: #666;
    line-height: 1.2;
    width: 100%;
    text-align: center;
}
.ny-about2 .section1 .mxw-more {
    font-size: 0.3rem;
    color: #fff;
    width: 2.5rem;
    height: 0.7333rem;
    border-radius: 0.3667rem 0 0.3667rem 0;
    line-height: 0.7333rem;
    display: block;
    background-color: #3eb134;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
    margin-top: 0.8333rem;
}
.ny-about2 .section1 .mxw-more:hover {
    transform: translateX(0.1667rem);
    box-shadow: 0 0 0.1667rem -0.0333rem #3eb134;
    color: #fff !important;
}
.ny-about2 .section1 .image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 12.5rem;
    flex-shrink: 0;
    margin-right: -4.46667rem;
}
.ny-about2 .section2 {
    background: url(../images/img60.jpg) no-repeat center bottom;
    background-size: cover;
}
.ny-about2 .section2 .item {
    text-align: center;
    padding: 0.8333rem 0.3333rem;
    background-color: #fff;
    box-shadow: 0rem 0.0167rem 0.1667rem 0rem rgba(48, 39, 22, 0.1);
}
.ny-about2 .section2 .item .text1 {
    font-size: 0.4rem;
    color: #3eb134;
    line-height: 1.2;
    font-weight: bold;
}
.ny-about2 .section2 .item .text1:after {
    content: "";
    display: block;
    width: 0.45rem;
    height: 0.0333rem;
    background-color: #f57722;
    margin: 0.3333rem auto;
}
.ny-about2 .section2 .item .desc {
    font-size: 0.3rem;
    color: #787878;
    text-align: center;
    line-height: 1.8;
}
.ny-about2 .section3 .itembox {
    align-items: stretch;
    padding-top: 0.8333rem;
}
.ny-about2 .section3 .item {
    padding: 0 0.3333rem 0.5rem;
    box-shadow: 0rem 0.0167rem 0.1667rem 0rem rgba(48, 39, 22, 0.1);
}
.ny-about2 .section3 .item:hover .title {
    font-weight: bold;
    color: #3eb134;
}
.ny-about2 .section3 .item .number {
    width: 1.6667rem;
    height: 1.6667rem;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.1667rem;
    box-shadow: -0.1333rem -0.1333rem 0rem 0rem #b6e1b2;
    background-color: #3eb134;
    margin-top: -0.8333rem;
}
.ny-about2 .section3 .item .title {
    margin-top: 0.6667rem;
    font-size: 0.4rem;
    color: #777;
    line-height: 1.2;
    margin-bottom: 0.3333rem;
}
.ny-about2 .section3 .item .desc {
    font-size: 0.2667rem;
    color: #888;
    line-height: 2;
    text-align: justify;
}
.ny-about2 .section4 {
    position: relative;
}
.ny-about2 .section4:after {
    content: "";
    display: block;
    width: 100%;
    height: 5.7333rem;
    background-color: #3eb134;
    position: absolute;
    top: 0;
    left: 0;
}
.ny-about2 .section4 .mxw-title,
.ny-about2 .section4 .itembox {
    position: relative;
    z-index: 3;
}
.ny-about2 .section4 .mxw-title .text1,
.ny-about2 .section4 .mxw-title .text2 {
    color: #fff;
}
.ny-about2 .section4 .item .image {
    margin-bottom: 0.3333rem;
}
.ny-about2 .section4 .item .title {
    font-size: 0.3333rem;
    color: #333;
    line-height: 1.2;
    text-align: center;
}
@media screen and (min-width: 1200px) {
    .ny-about2 .section1 .mxw-box {
        display: flex;
        align-items: stretch;
    }
    .ny-about2 .section1 .info {
        padding-right: 0.6667rem;
    }
    .ny-about2 .section1 .image {
        height: auto;
        width: 14.45rem;
        flex-shrink: 0;
        margin-right: -3.5rem;
    }
    .ny-about2 .section2 {
        min-height: 12.1667rem;
        background-attachment: fixed;
    }
    .ny-about2 .section2 .mxw-box {
        padding-top: 1.3333rem;
        padding-bottom: 1.3333rem;
    }
    .ny-about2 .section2 .mxw-box .tc-title{ margin-bottom: 1rem}
    .ny-about2 .section2 .item {
        transition: transform 0.4s;
    }
    .ny-about2 .section2 .item:hover {
        background-color: #3eb134;
        box-shadow: 0rem 0rem 0.2167rem 0rem rgba(62, 177, 52, 0.98);
        transform: translateY(-0.3333rem);
    }
    .ny-about2 .section2 .item:hover .text1 {
        color: #fff;
    }
    .ny-about2 .section2 .item:hover .text1:after {
        background-color: #fff;
    }
    .ny-about2 .section2 .item:hover .desc {
        color: #fff;
    }
}
@media screen and (max-width: 1200px) {
    .ny-about2 .section1 .info {
        padding: 0;
    }
    .ny-about2 .section1 .info .text1 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .ny-about2 .section1 .info .text2 {
        font-size: 18px;
    }
    .ny-about2 .section1 .info .text3 {
        font-size: 12px;
        letter-spacing: 0;
    }
    .ny-about2 .section1 .info .desc {
        margin-top: 20px;
        font-size: 13px;
        line-height: 2;
        margin-bottom: 30px;
    }
    .ny-about2 .section1 .itembox {
        padding-right: 0;
        justify-content: center;
        width: 100%;
        padding: 20px 0;
    }
    .ny-about2 .section1 .item .top {
        margin-bottom: 5px;
    }
    .ny-about2 .section1 .item .top span {
        font-size: 40px;
        margin-right: 5px;
    }
    .ny-about2 .section1 .mxw-more {
        width: 100%;
        margin-top: 20px;
        font-size: 14px;
        height: auto;
        line-height: inherit;
        padding: 8px 10px;
    }
    .ny-about2 .section1 .image {
        width: 100%;
        margin-top: 30px;
    }
    .ny-about2 .section2 .item {
        padding: 20px 15px;
    }
    .ny-about2 .section2 .item:last-child {
        width: 100%;
    }
    .ny-about2 .section2 .item .text1 {
        font-size: 16px;
    }
    .ny-about2 .section3 .itembox {
        padding-top: 20px;
    }
    .ny-about2 .section3 .item {
        padding: 0 15px 15px;
        margin-bottom: 30px;
    }
    .ny-about2 .section3 .item:nth-last-child(1),
    .ny-about2 .section3 .item:nth-last-child(2) {
        margin-bottom: 0;
    }
    .ny-about2 .section3 .item .number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 22px;
        box-shadow: -4px -4px 0 0 #b6e1b2;
        margin-top: -20px;
    }
    .ny-about2 .section3 .item .title {
        margin-top: 20px;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .ny-about2 .section3 .item .desc {
        font-size: 12px;
    }
    .ny-about2 .section4:after {
        height: 190px;
    }
    .ny-about2 .section4 .item .image {
        margin-bottom: 10px;
    }
    .ny-about2 .section4 .item .title {
        font-size: 12px;
    }
    .ny-about2 .section2 .mxw-box .tc-title{ margin-bottom: 20px}
    .ny-about2 .section2,.ny-about2 .section1{ padding: 45px 0}
}
/* ==================== 内页 - 关于我们 end ==================== */


/* ==================== 内页 - 荣誉证书 start ==================== */
.ny-album .section1 .item {
    display: block;
    background-color: #f8f8f8;
    padding: 0.4167rem 0.3333rem;
}
.ny-album .section1 .item:hover .title {
    color: #3eb134;
    font-weight: bold;
}
.ny-album .section1 .item .title {
    font-size: 0.3333rem;
    color: #333;
    line-height: 1.4;
}
.ny-album .section1 .item .bottom {
    margin-top: 0.3333rem;
    font-size: 0.2667rem;
    color: #666;
    position: relative;
}
.ny-album .section1 .item .bottom:after {
    content: "→ ";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.ny-album .section1 .item .image {
    margin-top: 0.5rem;
    display: block;
    width: 100%;
}
.ny-album .section2 {
    background-color: #f8f8f8;
}
.ny-album .section2 .mxw-box {
    padding-top: 60px;
    padding-bottom: 60px;
}
.ny-album .section2 .image {
    text-align: center;
}
.ny-album .section2 .image img {
    width: auto;
}
@media screen and (max-width: 1200px) {
    .ny-album .section1 .item {
        padding: 15px;
    }
    .ny-album .section1 .item .title {
        font-size: 14px;
        font-weight: bold;
    }
    .ny-album .section1 .item .image {
        margin-top: 15px;
    }
    .ny-album .section2 .mxw-box {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
/* ==================== 内页 - 荣誉证书 end ==================== */




.tc-copy{ }
.tc-copy .mxw-box{  padding: 0.333rem 0; 	font-size: 0.233rem; color: #fff;  text-align: center;border-top: 1px solid rgba(255, 255, 255, 0.3); display: flex; align-items: center; justify-content: space-between; }
.tc-copy .mxw-box a{font-size: 0.233rem; color: #fff;
}
.tc-copy .mxw-box a:hover{font-size: 0.233rem; color: #fff;}

/* ==================== 产品详情页 start ==================== */
.ny-product-desc {
    overflow: hidden;
}
.ny-product-desc .product-image {
    width: 44%;
    margin-right: 3%;
    flex-shrink: 0;
    position: relative;
    z-index: 9;
}
.ny-product-desc .product-image img {
    width: 100%;
}
.ny-product-desc .product-desc {
    width: 53%;
}
.ny-product-desc .product-desc .title {
    font-size: 0.4667rem;
    padding-bottom: 0.3333rem;
    border-bottom: 0.0167rem solid #ddd;
    margin-bottom: 0.3333rem;
    font-weight: bold;
    color: #168a53;
}
.ny-product-desc .product-desc .desc {
    word-break: break-all;
    font-size: 0.3rem;
    color: #666;
    line-height: 1.8;
}
.ny-product-desc .bottom {
    margin-top: 0.6667rem;
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.easyzoom-flyout img {
    max-width: inherit!important;
    width: auto!important;
}
@media screen and (max-width: 1200px) {
    .ny-product-desc {

    }
    .ny-product-desc .product-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        pointer-events: none;
    }
    .ny-product-desc .product-desc {
        width: 100%;
    }
    .ny-product-desc .product-desc .title {
        font-size: 18px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .ny-product-desc .top {
        flex-flow: column;
    }
    .ny-product-desc .product-desc .desc {
        font-size: 14px;
    }
    .ny-product-desc .bottom {
        margin-top: 15px;
    }
}
/* ==================== 产品详情页 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ny-product-desc .big-swiper {
    border: 1px solid #ddd;
}
.ny-product-desc .ny-product-image {
    width: 38%;
    flex-shrink: 0;
    margin-right: 5%;
}



.ny-product-desc .right {
    width: 65%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;
}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 0.0167rem solid #dcdcdc;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.5667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;
    max-width: 10rem;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
    max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
    cursor: pointer;
    border: 3px solid #eee;
    border-radius: 0.0833rem;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #168a53;
}
.ny-product-desc .small-image .swiper-button-disabled {
    opacity: 1;
}
.ny-product-desc .small-image .swiper-button-next:after,
.ny-product-desc .small-image .swiper-button-prev:after {
    font-size: 0.4667rem;
    color: #ccc;
}
.ny-product-desc .small-image .swiper-button-next {
    right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
    left: 0rem;
}
.ny-product-desc .bottom {
    margin-top: 0.8333rem;
}
.ny-product-desc .bottom .head {
    width: 100%;
    border-bottom: 0.0167rem solid #d9d9d9;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
    padding: 0 0.3333rem;
    border-bottom: 0.0833rem solid #168a53;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #168a53;
}
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 1400px;
    }
    .ny-product-desc .top {
        align-items: stretch;
    }
}
@media screen and (max-width: 1480px) {
    .ny-product-desc .mxw-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 100%;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {
        margin-bottom: 10px;
    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 16px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }
}
/* ==================== 内页 - 产品详情 end ==================== */
/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 0 0 1.067rem;

}
.ny-news-desc > .mxw-box {
    padding-top: 60px;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 24px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;

}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {

    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */



@media screen and (max-width: 1680px) {

.num-box{    max-width: 1100px;}
.tc-about>.mxw-box .tc-left .desc {
    margin: 0.833rem auto 1.167rem;
}


}

/* ==================== 页面具体样式 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 ==================== */

.tc-gyl{  padding: 1.033rem 0 1.667rem;}
.gyl-body{ margin: 0.633rem auto 0; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.gyl-body .item{ position: relative;border-radius: 0.25rem; overflow: hidden;width: 49.505%;}
.gyl-body .item:nth-child(1){ width: 63.256%;}
.gyl-body .item:nth-child(2){ width: 35.82%;}
.gyl-body .item:nth-child(6){ width: 63.256%;}
.gyl-body .item:nth-child(5){ width: 35.82%;}
.gyl-body .item:nth-child(3){ width: 49.505%;}
.gyl-body .item:nth-child(4){ width: 49.505%;}
.gyl-body .item>img{  transition: all 0.3s}
.gyl-body .item .flx{ position: absolute; width: 100%; height: 100%; left: 0; top: 0;	 color: #fff; display: flex;flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: 0 0.833rem 0.767rem 0.833rem; transition: all 0.3s;background-color: rgba(3, 3, 3, 0.5); }
.gyl-body .item:hover .flx{background-color: rgba(3, 3, 3, 0.5);transition: all 0.3s }
.gyl-body .item:hover>img{ transform: scale(1.1); transition: all 0.3s}
.gyl-body .item:nth-child(2)~.item{ margin-top: 0.217rem;}
.gyl-body .item .title{	font-size: 0.5rem; display: flex; align-items: center;}
.gyl-body .item .title img{ max-height: 0.767rem; margin-right: 0.333rem}
.gyl-body .item .desc{ font-size: 0.3rem;  color: #fff; margin-top: 0.333rem; line-height: 1.6}
.gyl-body .item .title span{  line-height: 1;}
.gyl-body .item .title span::before{ margin-right: 0.25rem; display: inline-block; content: ""; width: 2px;
    height: 0.5rem; background: rgba(255, 255, 255, 0.5); }

.footer{ background: #000;padding-top: 0.833rem;}
.foot-top{ }
.foot-top .d-logo{ padding-bottom: 0.7rem; border-bottom: 1px solid rgba(255, 255, 255, 0.4);}
.foot-top .d-logo img{ height: 0.617rem;}
.foot-con{ color: #fff; display: flex; align-items: flex-start; justify-content: space-between; padding-top: 0.9rem;}
.foot-con .foot-ewm{ margin-left: 1.5rem; width: 2.667rem; flex-shrink: 0; text-align: center; display: none}
.foot-con .foot-ewm p{	font-size: 0.233rem; margin-top: 0.333rem;}
.foot-con .foot-menu{ flex-grow: 1; min-width: 0; margin-right: 1.583rem; display: flex; align-items: flex-start; justify-content: space-between;}
.foot-con .foot-cont{ width: 7rem; flex-shrink: 0;	font-size: 0.317rem; line-height: 2;}
.foot-con .foot-menu .item .f-item{	font-size: 0.333rem;}
.foot-con .foot-menu .item .f-item::after{width: 24px;
    height: 2px;
    background-color: #30a0a4; display: block; content: ""; margin: 0.2rem auto 0.3rem 0;}
.foot-con .foot-menu .item .list{ display: flex; flex-direction: column; 	font-size: 0.283rem;}
.foot-con .foot-menu .item .list a{	color: rgba(255, 255, 255, 0.7); line-height: 1.8}

.gyl-title{	font-size: 0.433rem; margin: 0 auto; text-align: center;}
.gyl-title::after{width: 0.733rem;
    height: 0.1rem; content: ""; display: block;
    background-color: #30a0a4; margin: 0.267rem auto 0;}
.gyl-body2{ padding: 0.833rem 0 1.583rem;}
.gyl-list1{ margin: 0.75rem auto 0;}
.gyl-list1 .item{ display: flex; align-items: center; justify-content: space-between; }
.gyl-list1 .item .mxw-image{ width: 49.85%; flex-shrink: 0;}
.gyl-list1 .item .con{ padding-left: 0.5rem; flex-grow: 1; min-width: 0;}
.gyl-list1 .item .con .cn{	font-size: 0.433rem;color: #30a0a4;}
.gyl-list1 .item .con .en{	font-size: 0.233rem; margin-top: 0.2rem;color: #30a0a4;}
.gyl-list1 .item .con .desc{ margin: 0.4rem auto 0.3rem;	font-size: 0.3rem;	color: #555555; line-height: 1.8}
.gyl-list1 .item:nth-child(2n) .mxw-image{ order: 1;}
.gyl-list1 .item:nth-child(2n) .con{ padding-left: 0; padding-right: 0.5rem;}
.gyl-list1 .item:nth-child(1)~.item{ margin-top: 0.967rem;}
.gyl-list1 .item .con .en::after{	width: 163px;
    height: 2px;
    background-color: #30a0a4; content: ""; display: block; margin:0.417rem auto 0 0;}
.jd-box{ padding-bottom: 1.25rem;}
.jd-swiper{ overflow: hidden; max-width: 1920px;margin: 0.8rem auto 0; width: 100%; position: relative;}
.jd-swiper .swiper-slide{ width: 25%}
.jd-swiper .swiper-button-prev::after,.jd-swiper .swiper-button-next::after{ display: none;}
.jd-swiper .swiper-button-prev,.jd-swiper .swiper-button-next{ width: 0.8rem;height: 0.8rem;}
.jd-swiper .swiper-button-prev{ left: 10%;}
.jd-swiper .swiper-button-next{ right: 10%;}
.gyl-list1 .item:hover .ico img{ height: 0.2rem;}
.gyl-list1 .item:hover .ico img{filter: invert(50%) sepia(96%) saturate(301%) hue-rotate(133deg) brightness(90%) contrast(91%);}

.ny-news>.nw{ padding-top: 0.7rem;padding-bottom: 0.7rem;}
.ny-contact{ background: none;}
.cnt-top{ padding: 0.75rem 0 1.5rem;}
.cnt-top .desc{	color: #666666; line-height: 2; font-size: 0.3rem;}
.cnt-body{ display: flex;  align-items:center; justify-content: space-between; margin: 0.867rem auto 0;}
.cnt-body .tc-left{ width: 57.5%; flex-shrink: 0; min-height: 6rem;}
.cnt-body .tc-left #map{border: solid 1px #cacaca;}
.cnt-body .tc-right{ flex-grow: 1; min-width: 0; padding-left: 1.067rem;}
.cnt-body .tc-right .title{	font-size: 0.5rem; font-weight: bold;}
.cnt-body .tc-right .title::after{ content: ""; display: block;	width: 1.383rem;
    height: 0.1rem; margin: 0.667rem auto 0.5rem 0;
    background-color: #30a0a4;}
.cnt-body .tc-right .desc{	font-size: 0.333rem; color: #666}
.cnt-list{ margin: 0.917rem auto 0; display: flex; align-items: stretch; justify-content: space-around;}
.cnt-list .item{ width: 15%; text-align: center;}
.cnt-list .item p{	color: #666666; font-size: 0.333rem; margin-top: 0.333rem;}

.cnt-msg{ padding-bottom: 1rem}
.cnt-msg .title{ text-align: center;	font-size: 0.5rem; font-weight: bold;}

.cnt-msg form{ margin: 1rem auto 0; display: block; font-size: 0}
.cnt-msg form .up{ display: flex; align-items: stretch; justify-content: space-between;}
.cnt-msg form .up .up1{ width: 31.5%; position: relative;border: solid 2px #e1e1e1;
font-size: 0.267rem;color: #bababa;}
.cnt-msg form .up .up1 input{    padding: 0.3rem 0.417rem;font-size: 0.267rem;	}
.cnt-msg form  textarea{ padding: 0.3rem 0.417rem;border: solid 2px #e1e1e1;
    margin: 0.5rem auto 0; resize: none; height: 2.167rem; width: 100%; font-size: 0.267rem;}
.cnt-msg button{width: 4.3rem;
    height: 1.067rem;
    background-color: #30a0a4;
    border-radius: 0.083rem;	font-size: 0.3rem; color: #fff; margin: 0.917rem auto 0; display: block;}





.ny-product{ padding: 0.6rem 0 1rem;}

.ny-news>.zl .desc{ font-size: 14px;}

/* ==================== äººæ‰æ‹›è˜ start ==================== */
.joinus {
    padding-bottom: 0.7258rem; padding-top: 1rem;
}
.joinus .card {
    position: relative;
    margin-bottom: 0.7258rem;
    transition: all 0.4s;
    overflow: hidden;
}
.joinus .card.open {
    height: auto !important;
}
.joinus .card.open .card-header .card-link:after {
    transform: rotate(0deg);
}
.joinus .card .card-header {
    border: 0;
    padding: 0;
    color: #fff;
    font-size: 0.3226rem;
    border-radius: 0;
    font-weight: bold;
    line-height: 1;
    background-image: linear-gradient(90deg, #30a0a4, #30a0a4);
}
.joinus .card .card-header .card-link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0.3548rem 0.5484rem;
    color: #fff;
    cursor: pointer;
}
.joinus .card .card-header .card-link:hover {
    color: inherit;
}
.joinus .card .card-header .card-link:after {
    content: "";
    display: block;
    width: 0.4839rem;
    height: 0.4839rem;
    position: absolute;
    top: 0.2903rem;
    right: 0.8065rem;
    background: url(../images/img53.png) no-repeat;
    background-size: 100%;
    transition: all 0.4s;
    transform: rotate(180deg);
}
.joinus .card .card-body {
    padding: 0.5rem 0.45rem 0.45rem;
}
.joinus .card .card-body .itembox {
    display: flex;
}
.joinus .card .card-body .itembox .item {
    width: 45%;
}
.joinus .card .card-body .itembox .item:first-child {
    width: 100%;

}
.joinus .card .card-body .itembox .item .title {
    font-size: 0.3226rem;
    font-weight: bold;
    margin-bottom: 0.4839rem;
    line-height: 1;
}
.joinus .card .card-body .itembox .item ul li {
    line-height: 1.8;
    font-size: 0.2581rem;
    color: #666;
}
.joinus .card .card-body .itembox .item ul li:first-child ~ li {
    margin-top: 0.3226rem;
}
.joinus .card .card-body .join {
    text-align: center;
}
.joinus .card .card-body .join .btn {
    display: inline-block;
    color: #30a0a4;
    font-size: 0.2903rem;
    border-radius: 0;
    margin-top: 1.2903rem;
    padding: 0.1935rem 0.7258rem;
    transition: all 0.4s;
    border: 1px solid #30a0a4;
    line-height: 1;
}
.joinus .card .card-body .join .btn.focus,
.joinus .card .card-body .join .btn:focus,
.joinus .card .card-body .join .btn:active {
    box-shadow: none;
}
.joinus .card .card-body .join .btn:hover {
    color: #fff;
    background: #30a0a4;
}
/* ==================== äººæ‰æ‹›è˜ end ==================== */




.zl .itembox{
    margin-top: 1rem;
    padding-bottom: 1rem;
}
.zl .itembox .item {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
    border: 0;
    box-shadow: none;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid #dedede;
    margin-bottom: 0;
}
.zl .itembox .item:nth-child(2n)~.item{ margin-top: 2%}
.zl .itembox .item:hover{ box-shadow: none; }
.zl .itembox .item:hover .title{color: #30a0a4}



.gl .gl-item{ padding: 0.333rem 0.4rem; border-radius: 5px;    background: #f4f7f9;transition: all 0.3s; -webkit-transition: all 0.3s}
.gl .gl-item:nth-child(1)~.gl-item{ margin-top: 0.4rem;}
.gl .gl-item .title{ font-size: 0.4rem; color: #000}
.gl .gl-item .title span{ font-size: 0.267rem; margin-left: 0.25rem; color: #333}
.gl .gl-item .desc{ font-size: 0.233rem; margin-top: 15px; color: #666; line-height: 1.8}
.gl .gl-item:hover{    box-shadow: 0 0 5px rgba(0, 0, 0, .1); transition: all 0.3s; -webkit-transition: all 0.3s}








/*
1031
*/

.gyl-body .item{ width: 100% !important;}
.gyl-body .item:nth-child(1)~.item {
    margin-top: 0.217rem;
}
.pro-con-swiper{ overflow: hidden; margin-top: 0.9rem; }
.pro-con-swiper .item{ width: 20%}
.pro-con-swiper .swiper-pagination{ position: initial; text-align: center; margin-top: 0.35rem}
.pro-con-swiper .swiper-pagination .swiper-pagination-bullet{ width: 0.25rem; height: 0.25rem; }
.pro-con-swiper .swiper-pagination .swiper-pagination-bullet-active{ background: #333;}

.investorbox-sec1 {
    padding: 0.9rem 0 0;
}
.investorbox-sec1 .fz_title {
    color: #222222;
    margin-bottom: 0.5rem; font-weight: normal;
}

.font40 {
    font-size: 0.667rem;
}
.investorbox-sec1 .f_jut .f_tit {
    color: #000000;
    margin-bottom: 0.4rem; font-weight: normal;
}

.investorbox-sec1 .cont {
    border-top: 1px solid #dddddd;
    display: flex;
    flex-wrap: wrap;
}
.investorbox-sec1 .cont .lt {
    width: 26.428%;
    border-right: 1px solid #dddddd;
    padding: 0.9rem 0.167rem 0.7rem 0;
}
.investorbox-sec1 .cont .lt .f_tit {
    color: #000000;
    margin-bottom: 0.433rem;
}

.font20 {
    font-size: 0.333rem;
}

.investorbox-sec1 .cont .lt .name {
    color: #999999;
    font-size: 16px;
    display: block;
    margin-bottom: 0.233rem;
}
.investorbox-sec1 .cont .lt .gup {
    color: #1ac843;
    line-height: 0.8;
    margin-bottom:1.167rem;
}
.font48 {
    font-size: 0.8rem;
}
.investorbox-sec1 .cont .lt .f_time {
    font-size: 14px;
    color: #000000;
    opacity: 0.5;
}
.investorbox-sec1 .cont .gt {
    width: 73.572%;
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    padding: 0.9rem 0.867rem 0 1.667rem;
}
.investorbox-sec1 .cont .gt .li {
    width: 25%;
    border-bottom: 1px solid #dddddd;
    padding-bottom:0.633rem;
    margin-bottom: 1.067rem;
}
.investorbox-sec1 .cont .gt .li .name {
    margin-bottom: 0.267rem;
    display: block;
    color: #999999;
    font-size: 16px;
}
.investorbox-sec1 .cont .gt .f_green .shu {
    color: #1ac843;
}
.investorbox-sec1 .cont .gt .f_red .shu {
    color: #d82d2e;
}
.font30 {
    font-size: 0.5rem;
}
@media (min-width: 768px) {
    .investorbox-sec1 .cont .gt .li2 {
        border-bottom: none;
        margin-bottom: 0;
    }
}
.investorbox-sec1 .cont .gt .li2 .shu {
    color: #333333;
}
.font20 {
    font-size: 0.333rem;
}






    @media screen and (max-width: 768px) {
        .mxw-box{ padding: 0; max-width: 95%; width: 95%;}


        .gl .gl-item{ padding: 18px 20px;}
        .gl .gl-item .title{ font-size: 22px}
        .gl .gl-item .title span{ font-size: 16px;}
        .gl .gl-item .desc{ font-size: 14px; line-height: 1.6; margin-top: 15px}

        .tc-about{ padding: 45px 0;}
        .tc-about>.mxw-box{ flex-wrap: wrap;}
        .tc-about>.mxw-box .tc-left .up a{ display: none}
        .tc-about>.mxw-box .tc-left .up .up1{ margin-right: 0}
        .tc-about>.mxw-box .tc-left .up .u1{ font-size: 20px;}
        .tc-about>.mxw-box .tc-left .up .u2{ font-size: 22px;}
        .tc-about>.mxw-box .tc-left .desc{ font-size: 14px; margin: 25px auto;}
        .tc-about>.mxw-box .tc-right{ margin-left: 0; width: 100%;}
        .num-box{ width: 100%; max-width: 100%; flex-wrap: wrap;}
        .num-box .item{ width: 50%;}
        .num-box .item .con{ padding: 25px 10px;}
        .num-box .item .con p{ font-size: 14px;}
        .num-box .item .con .num{ font-size: 24px; margin: 5px auto;}
        .num-box .item .item:nth-child(2)::after{ display: none}
        .num-box .item:hover{ margin: 0 auto;}
        .num-box .item:hover .con{ padding: 0 0}
        .tc-product{ padding: 45px 0 45px;}
        .tc-title .cn{ font-size: 22px;}
        .tc-title .desc{ font-size: 14px; margin-top: 5px;}
        .pro-cate{ margin-top: 25px; flex-wrap: wrap; justify-content: space-between;}
        .pro-cate .pro-cate-item{ width: 49%; margin: 0; font-size: 16px; padding: 8px 12px; text-align: left}
        .pro-cate .pro-cate-item:nth-child(2n)~.pro-cate-item{ margin-top: 10px;}
        .pro-cate .pro-cate-item img{ height: 28px;}
        .pro-body{ margin-top: 15px;}
        .pro-swiper .swiper-slide .st{ padding: 6px; font-size: 14px;}

        .mxw-advantage .advantage-swiper{ margin-top: 25px;}
        .tc-video .body{ margin-top: 25px;}
        .tc-video{ padding: 45px 0}
        .tc-case{ padding: 45px 0}
        .case-swiper{ margin: 25px 2.5% 0;}
        .case-swiper .swiper-slide .st{ font-size: 14px; padding: 6px}
        .case-more{ font-size: 16px; margin: 20px auto 0}
        .mxw-news{ padding: 45px 0;}
        .mxw-news .mxw-cate{ margin: 25px auto 15px;}
        footer>.ftp{ flex-wrap: wrap;}
        footer>.ftp .tc-left .ud{ display: none}
        footer>.ftp .tc-left .up .fx{ display: none}
        footer>.ftp .tc-left .up .cn{ font-size: 22px;}
        footer>.ftp .tc-left .up .en{ margin-top: 5px; font-size: 14px;}
        footer>.ftp .tc-left .up{ padding: 40px 0 25px;}
        footer>.ftp .tc-right{ width: 100%; border: 0; padding: 0}
        footer>.ftp .tc-right .cont{ font-size: 16px; margin-top: 20px;}
        footer>.ftp .tc-right .list{ margin-top: 25px; margin-bottom: 45px;}



        .tc-copy .mxw-box{ flex-wrap: wrap; text-align: center; justify-content: center; padding: 12px 0}
        .tc-copy .mxw-box>div{ width: 100%; text-align: center;}
        .ny-album{padding: 40px 0 45px;}

        body{ margin-bottom: 0}
        .tc-about>.mxw-box .tc-left{ padding-bottom: 30px;}
        .tc-about>.mxw-box .tc-right{ margin: 0;}
        .tc-about>.mxw-box .tc-right img{ border-radius: 10px;}
        .tc-gyl{ padding: 0 0 45px}
        .pro-cate .pro-cate-item{ font-size: 14px}
        .pro-swiper .swiper-slide .st{ padding: 0 10px; margin-bottom: 16px;}

        .gyl-body .item:nth-child(1){ width: 100%;}
        .gyl-body .item:nth-child(1) .desc{ width: 100%; font-size: 14px; margin-top: 10px;}
        .gyl-body .item .flx{ padding: 20px;}
        .gyl-body .item .title img{ height: 20px; margin-right: 10px;}
        .gyl-body .item .title span{ font-size: 16px;}
        .gyl-body .item .title span::before{ margin-right: 10px; height: 18px;}
        .gyl-body .item:nth-child(2){ width: 100%; margin-top: 12px;}
        .gyl-body .item:nth-child(2) .desc{ width: 100%; font-size: 14px;}
        .gyl-body .item:nth-child(2)~.item{ margin-top: 12px;}
        .gyl-body .item:nth-child(3) .desc{ width: 100%; }
        .gyl-body .item:nth-child(3){ width: 100%;}
        .gyl-body .item .desc{ font-size: 14px; margin-top: 10px;}
        .gyl-body .item:nth-child(4){  width: 100%;}
        .gyl-body .item:nth-child(5){ width: 100%;}
        .gyl-body .item:nth-child(6){ width: 100%;}
        .footer{ padding-top: 45px;}
        .foot-top .d-logo{ padding-bottom: 10px;}
        .foot-top .d-logo img{ height: 30px;}
        .foot-con{ padding-top: 20px; flex-wrap: wrap; padding-bottom: 30px;}
        .foot-con .foot-menu{ display: none}
        .foot-con .foot-cont{ width: 100%; font-size: 14px;}
        .foot-con .foot-ewm{ margin-left: 0; margin-top: 15px;}
        .tc-link{ display: none}

        .ny-nav .mxw-box{ flex-wrap: wrap; padding: 20px 0}
        .ny-nav .mxw-box{}
        .ny-nav .oth-list{ flex-wrap: wrap; justify-content: flex-start; width: 100%}
        .oth-title{ display: none }
        .ny-nav .nav-item{  margin: initial; padding: 8px;}
        .about-s1{ padding: 45px 0}
        .about-s1 .title{ font-size: 22px;}
        .about-s1 .title::after{ height: 4px; margin: 5px auto 15px;}
        .about-s1 .f-title{ font-size: 18px; margin: 10px auto 15px;}
        .about-s1 .desc{ font-size: 14px;}
        .about-box2{ flex-wrap: wrap;}
        .about-box2 .left{ width: 100%;}
        .about-box2 .right{ margin: 15px auto 45px; width: 100%; padding: 0 2.5%;}
        .a-title{ font-size: 20px;}
        .a-title::after{ height: 2px; margin: 5px auto 0 0;}
        .lc1-swiper .swiper-slide{ font-size: 14px; padding-right: 0}
        .lc2-swiper{ margin-top: 25px;}
        .lc2-swiper .swiper-slide.swiper-slide-thumb-active .ico{ width: 25px; height: 25px;}
        .lc2-swiper .swiper-slide.swiper-slide-thumb-active p{ font-size: 18px; margin-top: 10px}
        .lc2-swiper .swiper-slide .ico{ width: 15px; height: 15px; margin: 5px auto 0; }
        .lc2-swiper::after{ top: 13px;}
        .lc2-swiper .swiper-slide p{ margin-top: 10px;}
        .lc1-swiper{ margin-top: 25px}
        .about-box3{ padding-top: 45px;}
        .ab-title{ font-size: 20px;}
        .ab-title::after{ height: 2px; margin: 10px auto 0 auto;}
        .ab3-body{ margin-top: 25px; flex-wrap: wrap;}
        .ab3-body .item{ width: 100%; padding: 25px; }
        .ab3-body .item:nth-child(1)~.item{ margin-top: 25px;}
        .ab3-body .item .st{ font-size: 18px; margin: 10px auto 10px;}
        .ab3-body .item .icon img{ height: 35px;}
        #certify .swiper-slide{ height: auto;}
        .about-box4{ padding: 45px 0 30px;}
        #certify{ margin: 25px auto 0}
        .about-box5{ padding: 45px 0 ;}
        .ab5-list{ margin: 25px auto 0;}
        .ab5-list .scroll-wrap .scroll-item{ width: 48.5%;}
        .ab5-list .scroll-wrap .scroll-item .st{ font-size: 16px; margin: 10px auto;}
        .ab5-list .scroll-wrap .scroll-item .desc{ font-size: 14px;}
        .about-box6{ padding: 45px 0;}
        .team-swiper{ margin-top: 20px;}
        .team-swiper .swiper-button-next{right: 3%;}
        .team-swiper .swiper-button-prev {left: 3%;}
        .ab7-body{ margin: 20px auto 0;flex-wrap: wrap;}
        .about-box7{ padding: 45px 0; }
        .ab7-body .tc-left{ width: 100%;}
        .ab7-body .tc-right{ width: 100%; margin-right: 0; padding: 20px 0 0 0;}
        .ab7-body .ab7-swiper .swiper-pagination span{ font-size: 16px; height: 22px; width: 22px;}
        .ab7-body .tc-right .title{ font-size: 22px;}
        .ab7-body .tc-right .title::after{ margin-top: 10px}
        .ab7-body .tc-right .desc1{ font-size: 14px; margin: 10px auto;}
        .ab7-body .tc-right .desc2{ font-size: 16px;}
        .ab7-body .tc-right .desc2::before{ margin-bottom: 20px;}
        .ab7-body .tc-right .desc2 p{ font-size: 18px; margin-bottom: 10px;}
        .ny-news>.nw{padding-top: 0}
        .ny-news .item .image img{ height: auto; width: 100%;}
        .ny-news .item .info{ padding: 0 ;}
        .ny-news .item .image{ margin-bottom: 10px}
        .ny-news-desc .title{ font-size: 18px;}
        .cnt-top{ padding: 0 0 45px}
        .cnt-top .desc{ font-size: 15px; line-height: 1.5}
        .cnt-body{ margin: 20px auto 0; flex-wrap: wrap}
        .cnt-body .tc-left{ width: 100%; height: 320px;}
        .cnt-body .tc-left #map{ height: 100% !important;}
        .cnt-body .tc-right{ padding: 20px 0 0 0 }
        .cnt-body .tc-right .title{ font-size: 20px;}
        .cnt-body .tc-right .title::after{ margin: 10px auto 15px 0; height: 2px;}
        .cnt-body .tc-right .desc{ font-size: 14px;}
        .cnt-list{ margin: 25px auto; flex-wrap: wrap; justify-content: flex-start;}
        .cnt-list .item{ width: 32%; margin-right: 2%;}
        .cnt-list .item:nth-child(3n){ margin-right: 0;}
        .cnt-list .item p{ font-size: 14px; margin-top: 5px;}
        .cnt-list .item:nth-child(3)~.item{ margin-top: 15px;}
        .cnt-msg .title{ font-size: 22px;}
        .cnt-msg form{ margin: 25px auto 0;}
        .cnt-msg form .up{ flex-wrap: wrap;}
        .cnt-msg form .up .up1{ width: 100%;}
        .cnt-msg form .up .up1 input{ width: 100%; font-size: 14px; padding: 8px 10px;}
        .cnt-msg form .up .up1:nth-child(1)~.up1{ margin-top: 10px;}
        .cnt-msg form textarea{ margin-top: 10px; padding: 6px 10px; font-size: 14px;}
        .cnt-msg{ padding-bottom: 0}
        .cnt-msg button{ font-size: 16px; margin: 20px auto 0; padding: 10px 35px; width: initial; height: initial}


        .pro-swiper .swiper-slide .item::after{ opacity: 1}
        .gyl-body .item .flx{    background-color: rgba(3, 3, 3, 0.5);}

        .gyl-body2{ padding: 45px 0;}
        .gyl-title{ font-size: 22px;}
        .gyl-title::after{ height: 2px; margin: 5px auto 10px;}

        .gyl-list1{ margin-top: 30px; flex-wrap: wrap;}
        .gyl-list1 .item{ flex-wrap: wrap;}
        .oth-title{ display: none}
        .gyl-list1 .item .mxw-image{ width: 100%;}
        .gyl-list1 .item .con{ padding: 10px;}
        .gyl-list1 .item .con .cn{ font-size: 16px;}
        .gyl-list1 .item .con .en{ font-size: 12px; margin-top: 5px}
        .gyl-list1 .item .con .en::after{ margin-top: 10px;}
        .gyl-list1 .item .con .desc{ margin: 10px auto; font-size: 14px}
        .gyl-list1 .item:nth-child(2n) .con{ order: 1;}
        .gyl-list1 .item:nth-child(1)~.item{ margin-top: 25px}
        .jd-swiper{ margin-top: 25px}
        .jd-swiper .swiper-button-prev, .jd-swiper .swiper-button-next{ width: 30px; height: 30px;}
        .jd-swiper .swiper-button-prev{ left: 0}
        .jd-swiper .swiper-button-next{ right: 0}
        .jd-box{ padding-bottom: 45px}
        .tc-video .body .right{ width: 100%}
        .tc-video .body .right iframe{ width: 100%; height: 220px !important;}

        .ny-nav .nav-item{ width: 49%; margin: initial}
        .ny-nav .nav-item:nth-child(3n-1){ margin: initial}
        .ny-nav .oth-list{ justify-content: space-between;}
        .ny-nav .nav-item:nth-child(3) ~ .nav-item{margin-top: initial}
        .ny-nav .nav-item:nth-child(2) ~ .nav-item{ margin-top: 10px}
        .zl .itembox{ margin-top: 25px; padding-bottom: 0}
        .zl .itembox .item{ padding: 5px 0 5px; font-size: 14px}
        .ny-news .zl .itembox  .item .title{ font-size: 14px}
        .tc-about>.mxw-box .tc-left .up .u2{ font-size: 16px;}

        /*
        1031
        */
        .investorbox-sec1{ padding-top: 0}
        .investorbox-sec1 .fz_title{ font-size: 22px; margin-bottom: 15px;}
        .investorbox-sec1 .cont .lt{ width: 100%; border-right: 0; padding: 25px 0 15px;}
        .investorbox-sec1 .cont .lt .f_tit{ font-size: 18px; margin-bottom: 20px}
        .investorbox-sec1 .cont .lt .gup{ font-size: 40px; margin-bottom: 15px;}
        .investorbox-sec1 .cont .gt{ width: 100%; padding: 25px 0 0}
        .investorbox-sec1 .cont .gt .li .name{ margin-bottom: 12px; font-size: 14px;}
        .font30{ font-size: 18px;}
        .investorbox-sec1 .cont .gt .li{ padding-bottom: 15px; margin-bottom: 25px;}
        .gyl-body .item>img{ width: 200%; max-width: initial}
        .gyl-body .item .desc{ max-height: 68px; overflow: hidden}
        .pro-con-swiper{margin-top: 20px;}
        .pro-con-swiper .swiper-pagination .swiper-pagination-bullet{ width: 10px; height: 10px;}
        .pro-con-swiper .item{ width: 48%}

    }












