@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', 'PingFang SC', Arial, 'Helvetica Neue', 'Segoe UI', Verdana, Roboto, 'SF Pro Text', sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
    image-rendering: -moz-crisp-edges; /* Firefox */
   image-rendering: -o-crisp-edges; /* Opera */
   image-rendering:-webkit-crisp-edges; /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
   -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 30px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination  a,.mxw-pagination  span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: inline-block;
    margin: 4px;
}
.mxw-pagination  a.current,
.mxw-pagination  a:hover {
    background-color: #0099d9;
    color: #fff !important;
}
.mxw-pagination  a:first-child {
    margin-left: 0;
}
.mxw-pagination  a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .mxw-pagination {
        margin-top: 30px;
    }
    .mxw-pagination  a {
        font-size: 12px;
        margin: 2px;
        padding: 8px 10px;
    }
}
/* ==================== 分页样式 end ==================== */

/* ==================== 通用标签页 start ==================== */
/* 标签页 */
.mxw-tabs {
    padding-left: 0;
    padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.mxw-tabs .mxw-tabs-wrap {
    position: relative;
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
    align-items: center;
    justify-content: flex-start;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
    display: none;
}
.mxw-tabs .mxw-tabs-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    font-size: 0.3rem;
    white-space: nowrap;
    background: #eaeaea;
    color: #333;
    padding: 0rem 0.5rem;
    margin-right: 0.9rem;
    line-height: 0.6667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #0748b2;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    font-size: 0;
    border-bottom: 1px solid #e5e5e5;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: stretch;
    font-size: 0;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    padding-left: 0.333rem;
    display: flex; align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}
.mxw-keywords .left strong {
    vertical-align: inherit; color: #444444;
}
.mxw-keywords .left span {
    color: #000;
    vertical-align: middle;
    /*font-weight: bold;*/
    display: flex; align-items: center;
}
.mxw-keywords .left span img{ margin-right: 0.167rem;}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #0748b2;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right{
    display: flex;
    align-items: center;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
   /* content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);*/
}
.mxw-keywords .right input {
    width: 394px;
    border-radius: 24px;
    height: 48px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::-moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    height: 48px;
margin-left: -18px;
    border-radius: 24px;
cursor: pointer;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;
    background-size: cover;
}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;z-index: 0;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
    height: 100%; text-align: center;
}
.mxw-banner .swiper-slide img {
    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: 12px;
    height: 12px;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    outline: none;
    opacity: 1;
    border-radius: 6px;
}
.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: #0089e1;
    border-color: #0089e1;

}
.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: #245eb5;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 84.1%;
}
.mxw-box2 {
    max-width: 1600px;
    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: 1600px;
        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 ==================== */
.pg{ margin: 1rem auto 0; font-size: 0.267rem; line-height: 1.8}

/* ==================== 通用细节调整 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:#0748b2;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.2rem 0;
   }
.top-box .logo-box .t-logo>img{ max-height:1.267rem;}

.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: #0748b2; 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{

}
header .welcome {
    line-height: 34px;
    border-bottom: 1px solid #e5e5e5;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}


.top-box{ align-items: stretch;}
.top-box .right{ display: flex; flex-grow:1; min-width: 0;  padding-left: 2rem; justify-content: flex-end; align-items: center;  color: #fff; }









.nav-bg{ 	background-color: #0062e7;}
.nav-bg>.mxw-box{ max-width: 1500px; width: 82%}


.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;

}
.x-menu > li {
    margin: 0;
    text-align: center;
    float: none;
    position: relative;
    flex-grow: 1;
    min-width: 0;
    z-index: 1;
}

.x-menu > li > a {
    font-size: 0.333rem;
    color: #333;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;

    line-height: 1.2;
    width: 100%;


}
.x-menu > li:last-child>a{ background: none}
.x-menu > li > a:hover {
    color: #333;
}
.x-menu>li.active{ 		}
.x-menu > li.active > a {
    color: #0099d9; background: none;
}

.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:#3553e9;
}

.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.tel{ align-items: center; display: flex;}
.x-menu > li.tel>span{ padding: 0.167rem 0.5rem 0.167rem;border-radius: 0.383rem;
    border: solid 0.017rem #1a87d2;	font-size: 0.4rem;color: #1a87d2; display: flex; align-items: center; line-height: 1; font-weight: bold;}
.x-menu > li.tel>span img{ height: 0.367rem; margin-right: 0.3rem}
.top-tel li{ color: #333}
.x-menu > li.se-box{ flex-grow: initial}
.x-menu > li.se-box{ flex-shrink: 0; width: 2.867rem;  flex-grow: initial}
.x-menu > li.se-box form{ position: relative; margin-top: 0.5rem; border: 1px solid #ccc; border-radius: 26px}
.x-menu > li.se-box form button{ width: 0.633rem; height: 0.633rem; position: absolute; right: 0; bottom: 0; z-index: 1; cursor: pointer}
.x-menu > li.se-box form input{	background-color: #ffffff; width: 100%;
    border-radius: 0.317rem;	color: #505050; font-size: 0.233rem; padding: 0.15rem 0.233rem;}
.se-box>a>img{ height: 30px;}
.ss {
    display: none;
    position: absolute;
    right: -15px;
    top: 100%;
    width: 238px;
    padding: 20px;
    border-radius: 20px;
    z-index: 999;
    background: #2B61CC;
}

.ss input {
    outline: none;
    line-height: 30px;
    width: 20%;
    background: none;
    border: 1px solid #fff;
    background: #fff;
    font-size: 13px;
    color: #1c4086;
    float: left;
}

.ss #keyword {
    padding-left: 5px;
    line-height: 30px;
    width: 80%;
    background: none;
    border: 1px solid #fff;
    outline: none;
    font-size: 13px;
    color: #fff;
    float: left;
}

.ss #keyword:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.ss #keyword::placeholder {
    color: #fff;
}
.x-menu > li.se-box:hover .ss{ display: block;}


.tc-about{ padding: 1.717rem 0 1.483rem; background: url("../images/tcabout-bg.jpg") center no-repeat;}
.tc-about .mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.tc-about .mxw-box .tc-right{width: 48.94%; flex-shrink: 0; padding: 0 0.933rem 1.367rem 0; background: url("../images/about-bg.jpg") right bottom no-repeat; background-size: 80%; position: relative;}
.about-swiper{ overflow: hidden; position: relative; }
.tc-about .mxw-box .tc-left{ flex-grow: 1; min-width: 0; padding-right: 1.6rem;}
.tc-about .mxw-box .tc-left .en{	font-size: 1.167rem; line-height: 1; font-weight: bold; margin-bottom: 0.5rem;color: #0099d9;}
.tc-about .mxw-box .tc-left .cn{	font-size: 0.6rem; line-height: 1;}
.tc-about .mxw-box .tc-left .cn span{color: #0099d9; font-weight: bold;}
.tc-about .mxw-box .tc-left .desc{	font-size: 0.4rem; margin: 0.6rem auto 0.8rem}
.tc-about .mxw-box .tc-left .body{	font-size: 0.3rem; color: #666666; line-height: 1.6}
.tc-about .mxw-box .tc-left .num-box{ margin: 1rem auto 0.7rem; display: flex; align-items: stretch; justify-content: flex-start;}
.tc-about .mxw-box .tc-right .flx{ position: absolute; background: #0099d9; z-index: 1; bottom: 0;left: 0.917rem; padding: 0.533rem 0.05rem 0.5rem; text-align: center;}
.tc-about .mxw-box .tc-right .flx .desc{	font-size: 0.233rem; color: #fff;}
.tc-about .mxw-box .tc-right .flx .bt{	font-size: 0.333rem; font-weight: bold; margin: 0.2rem auto 0.15rem; color: #fff;}
.about-swiper .swiper-slide img{width: 100%;}
.tc-about .mxw-box .tc-right .swiper-button-next::after,.tc-about .mxw-box .tc-right .swiper-button-prev::after{ display: none; }
.tc-about .mxw-box .tc-right .swiper-button-next,.tc-about .mxw-box .tc-right .swiper-button-prev{width: 50px; height: 50px; opacity: 1; }
.tc-about .mxw-box .tc-right .swiper-button-next{ right: 0.417rem;}
.tc-about .mxw-box .tc-right .swiper-button-prev{ left: 0.833rem;}

















.ab-more{ padding: 0.25rem 0.8rem;	color: #ffffff;	background-color: #0099d9;
    border-radius: 25px; display: inline-block; line-height: 1;}
.tc-about .mxw-box .tc-left .num-box .item{ text-align: center; font-size: 0; margin-right: 0.933rem; width: 20%;}
.tc-about .mxw-box .tc-left .num-box .item p{	font-size: 0.267rem; margin-top: 0.15rem;}
.tc-about .mxw-box .tc-left .num-box .item .num{ display: flex; align-items: flex-end; justify-content: center;}
.tc-about .mxw-box .tc-left .num-box .item .num .scrolling-numbers{font-size: 0.6rem;	font-family: Impact,sans-serif;	color: #0099d9; line-height: 1;}
.tc-about .mxw-box .tc-left .num-box .item .num sub{	font-size: 0.267rem;color: #0099d9; margin-left: 4px;}

.tc-pro{ padding:1.583rem 0 0;}
.tc-title{ text-align: center; line-height: 1}
.tc-title .cn{font-size: 0.6rem; color: #333;}
.tc-title .en{	font-size: 0.267rem;color: rgba(0, 153, 217, 0.6); margin-top: 0.3rem; text-transform: uppercase; }
.pro-cate{ margin: 1rem auto 0.633rem; display: flex; align-items: center; justify-content: center; }
.pro-cate .item{font-size: 0.3rem;	color: #333333; padding: 0 0.167rem 0.3rem; border-bottom: 0.067rem solid transparent; margin: 0 0.3rem;}
.pro-cate .item.active{color: #0099d9; font-weight: bold;border-bottom: 0.067rem solid #0099d9; }
.pro-cate .item:hover{}

.pro-swiper{ overflow: hidden; max-width: 1920px; margin: 0 auto;}
.poc-swiper{ width: 100%; overflow: hidden;}
.poc-swiper>.swiper-wrapper>.swiper-slide{ width: 20%; text-align: center; padding-top: 1.1rem;}
.poc-swiper>.swiper-wrapper>.swiper-slide:nth-child(2n){/*	background-color: #f8f8f8;*/}
.poc-swiper>.swiper-wrapper>.swiper-slide .st{	font-size: 0.367rem;}
.poc-swiper>.swiper-wrapper>.swiper-slide .ico{ margin: 0.15rem auto 0.667rem; opacity: 0; transition: all 0.3s;}
.poc-swiper>.swiper-wrapper>.swiper-slide .mxw-image{ margin: 0 auto 0.3rem; width: 85%; }
.poc-swiper>.swiper-wrapper>.swiper-slide:hover .ico{ opacity: 1; transition: all 0.3s;}
.poc-swiper>.swiper-wrapper>.swiper-slide:hover .st{	color: #0099d9;}
.poc-swiper>.swiper-wrapper>.swiper-slide:hover .ico img{ height: 0.467rem;}
.poc{ position: relative;}
.poc .swiper-button-prev::after,.poc .swiper-button-next::after{ display: none; }

.tc-lc{ padding: 1.583rem 0 1.25rem; background: url("../images/lc-bg.jpg") center no-repeat; background-size: cover;}
.tc-lc .tc-title .cn{ color: #fff;}
.tc-lc .tc-title .en{ color: rgba(255, 255, 255, 0.6);}

.lc-body{ margin: 1.367rem auto 0; display: flex; align-items: stretch; justify-content: center;}
.lc-body .item img{ height: 100%; width: initial; max-width: initial;}
.lc-body .item{ display: flex; align-items: center; justify-content: center; width: 14.7%; overflow: hidden; cursor: pointer; transition: all 0.3s; flex-shrink: 0; height: 10.01rem; position: relative;}
.lc-body .item.active{ width: 41.3%; transition: all 0.3s; flex-grow: 1; min-width: 0}
.lc-body .item .st1{ position: absolute; left: 0; top: 0; width: 1.083rem; height: 1.083rem; color: #fff; background: url("../images/sanjiao.png") top left no-repeat; background-size: 100%;	font-size: 0.317rem; line-height: 1; padding: 0.167rem 0 0 0.1rem;}
.lc-body .item .st2{ display: none; padding: 0.3rem 0.533rem; color: #ffff;background-color: #0099d9;	font-size: 26px; line-height: 1; position: absolute; left: 0; top: 0;}
.lc-body .item.active .st1{ display: none;}
.lc-body .item.active .st2{ display: block;}

.tc-case{  padding: 1.583rem 0 1.5rem; background: url("../images/case-bg.jpg") center no-repeat; background-size: cover;}
.case-cate{ display: flex; align-items: stretch; justify-content: space-between; margin: 0.75rem auto; text-align: center;
    border-bottom: solid 1px rgba(142, 143, 142, 0.3);}
.case-cate .item{ border-bottom: 0.05rem solid transparent; padding-bottom: 0.333rem; width: 7%; text-align: center;}
.case-cate .item p{	font-size: 0.267rem; margin-top: 0.2rem;}
.case-cate .item .ico img{ height: 0.633rem;}
.case-cate .item.active{ border-bottom: 3px solid #0099d9}
.case-swiper{ overflow: hidden;}
.case-swiper .item{ position: relative;}
.case-swiper .item .st{ width: 100%; bottom: 0.467rem; padding: 0 0.25rem; text-align: center; font-size: 0.317rem; z-index: 1;  margin-top: 5px; }

.tc-honor{ padding: 1.583rem 0 2.3rem; background: url("../images/honnor-bg.jpg") center no-repeat; background-size: cover;}
.honor-body{margin: 1.8rem auto 0 4.333rem; padding: 0 1.167rem;}
.honor-swiper{ overflow: hidden; }
.honor-swiper .swiper-slide{ text-align: center; width: 25%;}
.honor-swiper .swiper-slide p{	font-size: 0.267rem;color: #444444; margin-top: 0.2rem;}

.tc-hb{ padding: 0.917rem 0 0.833rem;}
.hz-swiper{ overflow: hidden; margin: 0.6rem auto 0; width: 95%;}
.hz-swiper .swiper-slide{	border: solid 1px #eeeeee;}
.hz-body{ position: relative;}


.tc-news{ padding: 0.833rem 0 1.167rem;}
.news-cate{ margin: 0.917rem auto; display: flex; align-items: center; justify-content: center;}
.news-cate .item{ padding: 0.15rem 0.417rem;background-color: rgba(68, 68, 68, 0.3);
    border-radius: 0.333rem;	font-size: 0.3rem;color: #444444;}
.news-cate .item{ margin: 0 0.35rem;}
.news-cate .item.active{	background-color: #0099d9;	color: #ffffff;}
.news-swiper{ overflow: hidden;}
.news-swiper .swiper-slide .item .st{	font-size: 0.333rem; color: #333; margin: 0.333rem auto 0.267rem;}
.news-swiper .swiper-slide .item .desc{	font-size: 0.233rem;	color: #888888; line-height: 1.6}
.news-swiper .swiper-slide .item .list{ margin: 0.433rem auto 0; padding-top: 0.167rem; border-top: 1px solid #e0e0e0;}
.news-swiper .swiper-slide .item .list .item-c{ display: flex; align-items: center; justify-content: space-between;	font-size: 0.267rem;color: #333333; line-height: 1.8}
.news-swiper a:hover .st{ color: #007aff !important;}
.news-swiper .swiper-slide .item .list .item-c:hover p{ color: #007aff}


footer{	background-color: #181818; border-top: 0.133rem solid #0099d9; padding-top: 0.533rem;}
.tc-link .mxw-box{ display: flex; align-items: center; justify-content: flex-start; color:#fff;}
.tc-link .mxw-box .title{ flex-shrink: 0;}
.tc-link .mxw-box .title img{ margin-right: 0.3rem; }
.tc-link .mxw-box .list{ flex-grow: 1; min-width: 0; margin-left: 0.5rem;}
.tc-link .mxw-box .list a{ font-size: 0.233rem; color: #fff; margin-right: 0.5rem;}
.tc-link{ padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.967rem;}

footer .foot-con{ display: flex; align-items: flex-start; justify-content: space-between;}
footer .foot-con .d-add{ width: 27.3%; flex-shrink: 0;color: #fff;  }
footer .foot-con .d-logo{ width: 10.2%; flex-shrink: 0;}
footer .foot-con .d-add .d-tel{ display: flex; align-items: center; justify-content: space-between;}
footer .foot-con .d-add .d-tel .icon{ width: 1.467rem; height: 1.467rem; flex-shrink: 0;}
footer .foot-con .d-add .d-tel .d-con{ flex-grow: 1; min-width: 0; margin-left: 0.3rem;}
footer .foot-con .d-add .d-tel .d-con .d-st{	font-size: 0.333rem; color: #fff;}
footer .foot-con .d-add .d-tel .d-con .d-st span{	font-size: 0.267rem;	color: #0099d9;}
footer .foot-con .d-add .d-tel .d-con .num{	font-size: 0.66rem; margin-top: 0.167rem; font-weight: bold; line-height: 1; letter-spacing: -1px}
.d-add-txt{ margin: 0.3rem 0  0 1.5rem;	font-size: 0.267rem; line-height: 1.8; color: #fff;}
.d-ewm{ margin-left: 1.5rem; margin-top: 0.633rem;  max-width: 2.883rem; text-align: center;}
.d-ewm p{ margin-top: 0.2rem;	font-size: 0.233rem; color: #999999;}
.d-menu{ margin: 0 1rem 0.5rem 0.6rem; display: flex; align-items: flex-start; justify-content: space-between; color: #fff; font-size: 0.3rem; flex-grow: 1; min-width: 0}
.d-menu .mni{ flex-grow: 1; min-width: 0; padding: 0 0.833rem; background: url("../images/dmu-bg.png") top right no-repeat;}
.d-menu .mni .list{ margin-top: 0.4rem;}
.d-menu .mni .list a{ display: block;	color: #999999; line-height: 2.3; font-size: 0.267rem;}






/* ==================== 通用 - 内页导航 start ==================== */
.ny-nav .oth-list{
    display: flex; align-items: stretch; justify-content: flex-end;
    flex-wrap: wrap;flex-grow: 1; min-width: 0;
}
.ny-nav .oth-list .nav-item{ flex-shrink: 0; margin-bottom: 0}
.ny-nav .oth-list.cat2{ flex-grow: 1; min-width: 0; justify-content: flex-start}
.ny-nav .oth-list.cat2 .nav-item{ margin-bottom: 0.25rem;}
.ny-nav .mxw-box {
    padding-top:0.633rem;
    padding-bottom: 0.233rem;
    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;
    padding: 0.133rem 0.633rem;
    text-align: center;
    position: relative;
    background-color: #eaeaea;
    border-radius: 0.333rem;
    width: 18%;
    margin: 0 0 15px 2%;
}
.ny-nav .mxw-box .oth-title{flex-shrink: 0; margin-right: 1rem}
.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: #0099d9; font-weight: bold; text-transform: uppercase;}
.ny-nav .nav-item.active{	background-color: #0099d9; color: #fff;}

@media screen and (max-width: 1710px) {

    .ny-nav .nav-item{padding: 0.133rem 0.433rem;}

}

@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: #0099d9;
    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{ position: relative;   }
.ny-product .item .image {
    border-radius: 0.25rem; overflow: hidden; border: 1px solid #e5e5e5
}

.ny-product .item  .title{ 	font-size: 0.283rem; padding: 0 0.25rem; text-align: center; width: 100%; height: auto;  margin: 10px 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;
    }

}
/* ==================== 内页 - 产品中心 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: #0099d9;
}
.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 #ccc;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #0099d9;
}
.ny-product-desc .bottom .desc{}
.ny-product-desc .bottom .desc img{ height: auto !important;}
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {
        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 ==================== */

/* ==================== 内页 - 新闻列表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;
    width: 4.767rem;
    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;
}
.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: #0099d9; color: #fff; border: 1px solid #0099d9}
@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 ==================== */
.ny-news>.nw{ padding-top: 0.7rem;padding-bottom: 0.7rem;}



.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.3rem;	color: #666666; line-height: 2;}


.about-box2{ background: #f1f8f8; max-width: 1920px; margin: 0 auto;
    display: flex; align-items: flex-start; justify-content: space-between;}
.about-box2 .left{ width: 50%; }
.about-box2 .right{ width: 50%; padding-left: 1.533rem; padding-top: 1rem;}
.lc1-swiper{ margin-top: 1rem; overflow: hidden;}
.lc1-swiper .swiper-slide{ padding-right: 2.5rem; font-size: 0.25rem; line-height: 1.8}

.lc2-swiper{ margin-top: 1rem; 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.2rem auto 0;  }
.lc2-swiper .swiper-slide p{ margin-top: 0.6rem; font-size: 0.267rem; color: #666666; font-weight: bold;}
.lc2-swiper .swiper-slide.swiper-slide-thumb-active .ico{ width: 0.667rem; height: 0.667rem;  margin-top: 0}
.lc2-swiper .swiper-slide.swiper-slide-thumb-active p{ font-size: 0.467rem; 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.333rem;}
.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; }
.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}

.about-box4{ padding: 1.25rem 0 1.417rem; 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: 497px;
    background: #fff;
    box-shadow: 0 8px 30px #ddd;
}

#certify  .swiper-slide img{
    display:block; width: 100%;
}
#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:0 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-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;}

.hz-body .swiper-button-next::after,.hz-body .swiper-button-prev::after{ display: none}
.hz-body .swiper-button-prev,.hz-body .swiper-button-next{ width: 1rem; height: 1rem;}




.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;}







/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 0 0 1.067rem;

}
.ny-news-desc > .mxw-box {
    padding-top: 60px;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;

}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {

    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */




body{ overflow-x: hidden}




.mxw-copy{ }
.mxw-copy .mxw-box{  padding: 0.333rem 0; 	font-size: 0.233rem; color: #fff;  text-align: center; opacity: 0.6}
.mxw-copy .mxw-box a{font-size: 0.233rem; color: #fff; }
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; color: #fff;}


.product-detail-tabcon table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.product-detail-tabcon table th,
.product-detail-tabcon table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.product-detail-tabcon table td p{line-height:1.8!important;}
.product-detail-tabcon table tr:hover{background-color:#f2f2f2!important;}
.product-detail-tabcon table tr:nth-child(2n-1){background-color:#fff ;}
.product-detail-tabcon table tr:nth-child(2n){background-color:#fdfdfd ;}

.xypg-detail-con table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.xypg-detail-con table th,
.xypg-detail-con table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.xypg-detail-con table td p{line-height:1.8!important;}
.xypg-detail-con table tr:hover{background-color:#f2f2f2!important;}
.xypg-detail-con table tr:nth-child(2n-1){background-color:#fff ;}
.xypg-detail-con table tr:nth-child(2n){background-color:#fdfdfd ;}

.ny-product-desc .bottom table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.ny-product-desc .bottom table th,
.ny-product-desc .bottom table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.ny-product-desc .bottom table td p{line-height:1.8!important;}
.ny-product-desc .bottom table tr:hover{background-color:#f2f2f2!important;}
.ny-product-desc .bottom table tr:nth-child(2n-1){background-color:#fff ;}
.ny-product-desc .bottom table tr:nth-child(2n){background-color:#fdfdfd ;}


@media screen and (max-width: 1440px) {
    .top-box{ width: 95%; max-width: 95%;}






}

/* ==================== 页面具体样式 end ==================== */






/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll {
    overflow: hidden;
}
.mxw-scroll .scroll-wrap {
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.mxw-scroll .scroll-item {
    flex-shrink: 0;
}

@media screen and (max-width: 500px) {
    .mxw-scroll .scroll-item {
        width: 48%;
        margin-right: 4%;
    }

}
/* ==================== 通用 - 无缝滚动 end ==================== */


    @media screen and (max-width: 768px) {
        .mxw-box{ padding: 0; max-width: 95%; width: 95%;}

        .tc-about{ padding: 45px 0;}
        .tc-about .mxw-box{ flex-wrap: wrap;}
        .tc-about .mxw-box .tc-left{ padding-right: 0}

        .tc-about .mxw-box .tc-left .en{ font-size: 22px; margin-bottom: 10px}
        .tc-about .mxw-box .tc-left .cn{ line-height: 1; font-size: 18px}
        .tc-about .mxw-box .tc-left .desc{ font-size: 16px; margin: 10px auto 15px;}
        .tc-about .mxw-box .tc-left .body{ font-size: 14px;}
        .tc-about .mxw-box .tc-left .num-box{ margin: 20px auto; flex-wrap: wrap;}
        .tc-about .mxw-box .tc-left .num-box .item{ width: 25%; }

        .tc-about .mxw-box .tc-left .num-box .item{ margin-right: 0}
        .tc-about .mxw-box .tc-left .num-box .item .num .scrolling-numbers{ font-size: 24px}
        .tc-about .mxw-box .tc-left .num-box .item p{ font-size: 14px; margin-top: 5px;}
        .ab-more{ font-size: 14px; padding: 10px 30px;}
        .tc-about .mxw-box .tc-right{ margin-top: 30px; width: 100%; padding: 0 15px 15px 0; background-size: 90%;}

        .tc-about .mxw-box .tc-right .swiper-button-next{ right: 10px; width: 30px; height: 30px;}
        .tc-about .mxw-box .tc-right .swiper-button-prev{ left: 10px; width: 30px; height: 30px;}
        .tc-about .mxw-box .tc-right .flx{ display: none}
        .tc-pro{padding-top: 45px;}
        .tc-title{ padding: 0 2.5%;}
        .tc-title .cn{ font-size: 20px}
        .tc-title .en{ font-size: 12px; margin-top: 10px;}

        .pro-cate{ margin: 25px auto 15px; flex-wrap: wrap; justify-content: space-between; padding: 0 2.5%;}
        .pro-cate .item{ font-size: 14px; padding: 0 3px 5px;
            width: 48%;
            margin: 0 ;
        }
        .pro-cate .item:nth-child(2n){ margin-right: 0; }
        .pro-cate .item:nth-child(2n)~.item{ margin-top: 12px;}
        .poc-swiper>.swiper-wrapper>.swiper-slide{ padding: 20px 0 10px;}
        .poc-swiper>.swiper-wrapper>.swiper-slide .st{ font-size: 14px; margin-bottom: 15px;}
        .poc-swiper>.swiper-wrapper>.swiper-slide .ico{ display: none;}

        .tc-lc{ padding: 45px 0;}
        .lc-body{ margin: 30px auto 0; flex-wrap: wrap; justify-content: space-between;}
        .lc-body .item{ width: 48.5%; height: auto;}
        .lc-body .item.active{ width: 48.5%;flex-grow: initial}
        .lc-body .item img{ width: 100%;}
        .lc-body .item:nth-child(2n)~.item{ margin-top: 15px;}
        .lc-body .item .st2{ font-size: 14px; padding: 5px 8px;}
        .lc-body .item .st1{ display: none;}
        .lc-body .item .st2{ display: block;}
        .tc-case{ padding: 45px 0;}
        .case-cate{ margin: 30px auto 15px;flex-wrap: wrap; justify-content: flex-start; padding: 0 2.5%;}
        .case-cate .item{ width: 15%; padding-bottom: 10px; margin-right: 2%; }
        .case-cate .item .icon{ height: 28px;}
        .case-cate .item .icon img{max-height: 100%;}
        .case-cate .item:nth-child(6n){ margin-right: 0}
        .case-cate .item:nth-child(6n)~.item{ margin-top: 15px;}

        .case-cate .item p{ font-size: 12px; margin-top: 5px;}
        .case-swiper .item .st{ font-size: 14px; padding: 0 10px; bottom: 15px}
        .tc-honor{ padding: 45px 0;}
        .honor-body{ margin: 25px auto 0; padding: 0;}

        .tc-hb{ padding: 45px 0;}
        .hz-swiper{ margin: 20px auto 0; padding: 5px;}
        .hz-body .swiper-button-prev,.hz-body .swiper-button-next{ width: 35px; height: 35px;}

        .tc-news{ padding-top: 0; padding-bottom: 45px;}
        .news-cate{  margin: 25px auto 15px;}
        .news-cate .item{margin: 0 10px; font-size: 14px; padding: 8px 15px;}

        .news-swiper .swiper-slide .item .st{ font-size: 14px; margin: 5px auto 5px;}
        .news-swiper .swiper-slide .item .desc{ font-size: 12px;}
        .news-swiper .swiper-slide .item .list{ margin: 10px auto 0;}
        .news-swiper .swiper-slide .item .list .item-c p{font-size: 14px;}
        .news-swiper .swiper-slide .item .list .item-c span{font-size: 12px}
        footer{ padding-top: 45px;}
        .tc-link .mxw-box .title{font-size: 14px}
        .tc-link .mxw-box .title img{ height: 30px;margin-right: 5px;}
        .tc-link{ padding-bottom: 10px; margin-bottom: 20px;}

        .d-menu{ display: none}
        footer .foot-con .d-logo{ display: none}
        footer .foot-con{ flex-wrap: wrap;}
        footer .foot-con .d-logo{ width: 100%;}
        footer .foot-con .d-add{ width: 100%;}
        footer .foot-con .d-add .d-tel .icon{ display: none}
        footer .foot-con .d-add .d-tel .d-con{ margin-left: 0}

        footer .foot-con .d-add .d-tel .d-con .d-st{ font-size: 16px;}
        footer .foot-con .d-add .d-tel .d-con .d-st span{ font-size: 12px;}
        footer .foot-con .d-add .d-tel .d-con .num{ font-size: 20px;}
        .d-add-txt{ font-size: 14px; margin-left: 0;}
        .d-ewm{ margin-top: 15px; margin-left: 0; margin-bottom: 35px;}
        body{ margin-bottom: 0}

        .ny-nav .mxw-box{ padding: 15px 0;}
        .ny-nav .mxw-box .oth-title{ display: none;}
        .ny-nav .oth-list{ flex-wrap: wrap; justify-content: flex-start; width: 100%; }
        .ny-nav .nav-item{ padding: 8px 10px;}
        .ny-nav .nav-item{ padding: 8px 10px;
            margin: 0 2% 0 0; width: 32%;
        }
        .ny-nav .nav-item:nth-child(3n-1){ margin: initial; width: 32%;}
        .ny-nav .nav-item:nth-child(3n){ margin-right: 0}
        .about-s1{ padding: 45px 0;}
        .about-s1 .title{ font-size: 20px;}
        .about-s1 .title::after{ margin: 10px auto 10px; height: 3px;}
        .about-s1 .f-title{ margin: 10px auto 15px; font-size: 16px;}

        .about-s1 .desc{ font-size: 14px;}
        .about-box4{ padding: 0 0 20px;}

        .ab-title{ font-size: 20px;}
        .ab-title::after{ height: 3px; margin: 10px auto;}
        .ab-dsc{ font-size: 14px; line-height: 1.6}


        #certify .swiper-slide{ height: auto; font-size: 0;}
        .about-box4{ padding: 0 0 45px;}
        .ab-title{ font-size: 20px;}
        .ab-title::after{ margin: 10px auto; height: 3px;}
        .ab-dsc{font-size: 14px; margin-top: 0}
        #certify{ margin-top: 25px;}
        .ab5-list{ margin: 25px auto 0;}
        .ab5-list .scroll-wrap .scroll-item{ width: 49%}
        .about-box5{ padding-bottom: 45px;}
        .about-box6{ padding: 45px 0;}
        .team-swiper{ margin: 25px auto 0;}
        .swipexynext,.swipexyfrev{ display: none;}
        .ny-product>.nw{ padding-bottom: 0}
        .ny-product-desc{padding: 45px 0;}


        .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}
        .ny-contact>.mxw-box{ margin: 45px auto}

        .team-swiper .swiper-button-next{ right: 0}
        .team-swiper .swiper-button-prev{ left: 0}
        .ny-nav .oth-list{ justify-content: space-between;}
        .ny-nav .nav-item{ width: 48.5%; margin: initial;}
        .ny-nav .nav-item:nth-child(3n-1){ width: 48.5%;}
        .ny-nav .nav-item:nth-child(2) ~ .nav-item{ margin-top: 2%;}
        header .tool {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        header .tool .menu-btn {
            cursor: pointer;
        }
        header .search {
            width: 30px;
            margin-right: 15px;
        }
        header .search img {
            max-width: 80%;
        }
        header .search-form {
            position: fixed;
            top: 5px;
            left: 0;
            background: #fff;
            width: 100%;
            padding: 10.2px 19.8px;
            box-shadow: 0 4.8px 10.2px -4.8px rgba(0, 0, 0, 0.1);
            border-top: 1.2px solid #eee;
            transform: translateY(100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
        }
        header .search-form.active {
            opacity: 1;
            visibility: visible;
        }
        header .search-form form {
            width: 100%;
            display: flex;
            align-items: stretch;
            justify-content: flex-start;
        }
        header .search-form form input {
            min-width: 0;
            flex-grow: 1;
            border: 1.2px solid #eee;
            padding: 7.8px 10.2px;
            font-size: 12px;
        }
        header .search-form form button {
            flex-shrink: 0;
            width: 30px;
            background: #0099d9;
            padding: 7.2px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        header .search-form form button img {
            filter: brightness(0) invert(1);
        }
        .ny-nav .oth-list.cat2 .nav-item{ margin-bottom: 0}
        .ny-nav .oth-list.cat2{ justify-content: space-between;}
        header{ position: relative;}
        .ny-news .item .info{ padding: 0}
        .ny-news>.nw{ padding: 0}


        .foot-tool{padding: 10px 20px;
            position: fixed;
            bottom: 0;z-index: 999;
            background: rgb(1 108 224);
            width: 100%;  display: flex; align-items: center; justify-content: space-between}
        .foot-tool .item{  width: 48%; padding: 6px 10px; border-radius: 20px; background: #fff; color: #333; text-align: center;  font-size: 14px;}
        body{ padding-bottom: 50px;}

    }












