@charset "UTF-8";/*fp-seed:vdd8ifq114f2 block:xyeuxfbfx6iy*/

/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}/*v3.80 g4f56vpt*/
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination > a,.mxw-pagination > span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: block;
    margin: 4px;
}
.mxw-pagination > a.active,
.mxw-pagination > a:hover {
    background-color: #c9151e;
    color: #fff !important;
}
.mxw-pagination > a:first-child {
    margin-left: 0;
}
.mxw-pagination > a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .mxw-pagination {
        margin-top: 30px;
    }
    .mxw-pagination > a {
        font-size: 12px;
        margin: 2px;
        padding: 8px 10px;
    }
}
/* ==================== 分页样式 end ==================== */

/* ==================== 通用标签页 start ==================== */
/* 标签页 */
.mxw-tabs {
    padding-left: 0;
    padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.mxw-tabs .mxw-tabs-wrap {
    position: relative;
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
    align-items: center;
    justify-content: flex-start;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
    display: none;
}
.mxw-tabs .mxw-tabs-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    font-size: 0.3rem;
    white-space: nowrap;
    background: #eaeaea;
    color: #333;
    padding: 0rem 0.5rem;
    margin-right: 0.9rem;
    line-height: 0.6667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #c9151e;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    font-size: 0;
    border-bottom: 1px solid #e5e5e5;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: stretch;
    font-size: 0;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    padding-left: 0.333rem;
    display: flex; align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}
.mxw-keywords .left strong {
    vertical-align: inherit; color: #444444;
}
.mxw-keywords .left span {
    color: #000;
    vertical-align: middle;
    /*font-weight: bold;*/
    display: flex; align-items: center;
}
.mxw-keywords .left span img{ margin-right: 0.167rem;}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #c9151e;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right{
    display: flex;
    align-items: center;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    /* content: "";
     display: block;
     width: 2px;
     height: 16px;
     background-color: #d9d9d9;
     position: absolute;
     left: 10px;
     top: 50%;
     transform: translateY(-50%);*/
}
.mxw-keywords .right input {
    width: 394px;
    border-radius: 24px;
    height: 48px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::-moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    height: 48px;
    margin-left: -18px;
    border-radius: 24px;
    cursor: pointer;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    font-size: 0;
    background: url(../images/519b2352_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%;

        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 45px;
    }
    .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);
    }/*rev-3dh29neff2l8*/
    .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;
    left: 0;
    right: 0;
    margin: 0 auto;

}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 32px;
    height: 5px;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    outline: none;
    opacity: 1;
    border-radius: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #d80817;
    border-color: #d80817;

}
.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: #d80817;
}
.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 {
       padding: 0.75rem 0.75rem 1.1rem; background: #fff;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
#xy-share,.page-message-img,.cpcomment{ display: none;}
.page-product-detail-effect .big-img{ width: 100%}
.product-detail-slick a.slick-item{ height: auto;}
.xypg-product-detail{ font-size: 14px;}
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;background:#7f8082;}
.product-detail-tab .product-detail-tabli li{font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:16px;line-height:2;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: 100%;
        width:100%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}

    .product-detail-tab .product-detail-tabcon iframe,.product-detail-tab .product-detail-tabcon video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content  iframe, .xypg-right-content  video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content img{ max-width: 100%; height: auto !important;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}
.top-box .logo-box{margin: 0.3rem auto 0.3rem 0;  font-size: 0; padding: 0; line-height: 1;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start;}
.top-box .logo-box .t-logo>img{ max-height:2.067rem;}

.mxw-keywords .left .zx{ display: inline-block; font-size: 0.35rem; margin-right: 0.833rem; vertical-align: middle}
.mxw-keywords .left .zx>img{ margin-right: 5px}
.mxw-keywords .left .zx b{ color: #c9151e; font-size: 0.35rem}
.mxw-link{ padding: 0.333rem 0 0.3rem;}
.mxw-link .mxw-box{color:#fff; }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-start;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.233rem;cursor:pointer;line-height:1.8;flex-shrink: 0;	color: rgba(255, 255, 255, 0.5); }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start; flex-grow: 1; min-width: 0; flex-wrap: wrap;}/*@component ni9sqj*/
.mxw-link .list a{font-size:0.233rem;line-height:1.8;display:block; 	color: rgba(255, 255, 255, 0.5); margin-right: 0.167rem;}






header{
   
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(4, 0, 3,1);
}
header .welcome {
    line-height: 55px;
    font-size: 16px;	color: #666; border-bottom: 1px solid #f1f1f1;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

}
header .welcome .xt{	font-size: 0.3rem;	color: #ffffff;	background-color: #d80817; padding: 0 0.267rem; font-weight: bold; font-style: italic; margin-right: 0; margin-left: auto;}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    color: #666;
    margin-left: 0.3rem;
    font-size: 0.267rem;
}
header .welcome .right a{ margin: 0 5px;}
header .welcome .right img{width: 0.35rem; margin-right: 0.25rem;}
header .welcome .right span{	font-size: 0.367rem;	color: #d80817;  font-weight: bold;}

.top-box{ align-items: stretch }
.top-box .right{flex-grow:1; min-width: 0;  padding-left: 1.5rem; justify-content: flex-end;   color: #333;  display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; }



.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    flex-grow: 1;
    min-width: 0;
}
.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.3rem;
    color: #fff;
    display: flex;
    height: 100%;
    align-items: center;
    align-content: center;
    justify-content: center;
    line-height: 1;
    width: max-content;
    width: -moz-max-content;
    margin: 0 auto;
    padding: 0.333rem 0;
}

.x-menu > li:last-child>a{

}

.x-menu > li > a:hover {
    color: #fff;
}
.x-menu > li > a::before{

}
.x-menu>li.active{

}
.x-menu>li.active>a::before{

}
.x-menu > li.active > a {
    color: #fff; font-weight: bold;
}

.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 200px;
    left:50%;
    top: calc(100% + 9px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,20px);
    transform: translate(-50%,20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;

}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#d80817;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -9px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}

.x-sub-menu>li .x-sub-menux {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.x-sub-menu>li .x-sub-menux a {
    display: block;
    line-height: 35px;
    font-size: 14px;
    font-weight: normal;
    color: #041d38;
    /* padding: 0 2%; */
    box-sizing: content-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all ease .3s;
    padding: 0 0.7rem;
}

.x-sub-menu>li .x-sub-menux a:hover {
    background-color: #d80817;
    color: #fff;
}

.x-sub-menu>li:hover .x-sub-menux {
    z-index: 99;
    opacity: 1;
    visibility: visible;
}

.x-sub-menux>li{ position: relative;}
.x-sub-menux>li>div {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;

}

.x-sub-menux >li:hover>div {
    z-index: 99;
    opacity: 1;
    visibility: visible;
}
.x-menu > li.tel{
    flex-grow: initial; display: flex; align-items: center;
    padding-bottom: 10px;
    flex-shrink: 0;
    font-size: 0.333rem; font-weight: bold;
}
.x-menu > li.top-tel  .icon{  margin-right: 0.167rem; flex-shrink: 0; width: 0.6rem}
.x-menu > li.top-tel{ width: max-content; width: -moz-max-content; flex-shrink: 0; flex-grow: initial; display: flex; display: -webkit-flex; align-items: center; margin-left: 0.7rem; }
.x-menu > li.top-tel>a img{ height: 0.433rem; }
.x-menu > li.top-tel>a::before{
    display: none;}
.x-menu > li.top-tel>a .text .num{ font-size: 0.367rem;	color: #fff; font-weight: bold;}
.x-menu > li.se-box{ display: flex; display: -webkit-flex; align-items: center; margin-left: 0.633rem;}
.x-menu > li.se-box form{border-radius: 0.25rem; font-size: 0; display: -webkit-flex; display: flex; align-items: stretch; justify-content: space-between;
    border: solid 1px #ffffff;}
.x-menu > li.se-box form input{ width: 1.167rem; height: 0.5rem; text-indent: 1em; color: #fff; }
.x-menu > li.se-box form button{ width: 0.833rem; border-left: 1px solid #fff; cursor: pointer}
.x-menu > li.se-box form button img{ height: 12px;}
.x-menu > li.na5{ background-color: #d80817;  }


.mxw-banner{ position: relative;}
.tc-title{ text-align: center;}
.tc-title .en{	font-size: 0.233rem;	color: #999999; text-transform: uppercase;}
.tc-title .cn{	font-size: 0.667rem; font-weight: bold; margin-top: 0.4rem;}
.tc-title .cn::after{	width: 1.083rem;
    height: 0.067rem; margin: 0.2rem auto 0; content: ""; display: block;
    background-color: #d80817;
    border-radius: 1px;}
.tc-pro{ padding: 2.667rem 0 1rem;}
.pro-cate{ margin-top: 0.6rem; display: flex; display: -webkit-flex; align-items: center; justify-content: center;}
.pro-cate span{ width: 6px; height: 6px; background: #333333;
    margin: 0 0.6rem 0.433rem;  }
.pro-cate span:last-child{ display: none;}    
.pro-cate .item{ padding: 0 0.1rem 0.433rem;	font-size: 0.3rem;}
.pro-cate .item.active{ background: url("../images/b76b6a4f_d4eea3b23adb6f6d5660a0af06f62de7273d8138.png") center bottom  repeat-x;}
.tc-pro .body{ background: url("../images/fcd7e4bd_da9c4e0ef40797d90d335757dca50ef5a1b8c96a.png") center bottom no-repeat; background-size: 100% auto; padding-bottom: 5.083rem;margin-top: 0.417rem;}
.pro-cate .item.active{ color: #333;}
.pro-swiper{ overflow: hidden;}
.pro-swiper>.swiper-wrapper>.swiper-slide{ position: relative;}
.pns-con{ overflow: hidden; text-align: center;}
.pns-con .swiper-slide{ position: relative;}
.pns-con .swiper-slide .img{ max-width: 13.333rem; margin: 0 auto;}
.pns-con .swiper-slide:hover{color: #333;}
.pns-con .swiper-button-prev,.pns-con .swiper-button-next{	width: 1.033rem;height: 1.033rem;}
.pns-con .swiper-button-prev::after,.pns-con .swiper-button-next::after{ display: none;}
.pns-con .swiper-button-prev{ left: 1rem}
.pns-con .swiper-button-next{ right: 1rem}
.pns-con .swiper-slide .flx{ position: absolute; top: 3.167rem; left: 5.55rem; text-align: left;}
.pns-con .swiper-slide .flx .icon{ padding-left: 0.8rem;}
.pns-con .swiper-slide .flx .icon img{ height: 1.25rem;}
.pns-con .swiper-slide .flx p{	font-size: 0.333rem; margin-top: 0.167rem;}

.wzpz{ margin-top: -1rem;}
.wzpz .tc-title .desc{font-size: 0.267rem; margin-top: 0.417rem; color: #333;}
.wzpz .list{ margin-top: 1rem; display: flex; display: -webkit-flex; align-items: stretch; flex-wrap: wrap; justify-content: space-between;}
.wzpz .list .item{	border: solid 1px #c5c5c5; position: relative;
 width: calc((100% - 0.9rem )/3); margin-right: 0.45rem; overflow: hidden}
.wzpz .list .item .img img{ width: 100%;}
.wzpz .list .item:nth-child(3n){ margin-right: 0}
.wzpz .list .item:nth-child(3n)~.item{ margin-top: 0.45rem;}
.wzpz .list .item .info{ position: absolute; top: 100%;  width: 100%; height: 100%; display: flex; display: -webkit-flex; flex-direction: column; align-items: center; justify-content: center; 	background: rgba(0, 0, 0, 0.4);transition: all 0.3s; -webkit-transition: all 0.3s}
.wzpz .list .item .info p{	font-size: 0.333rem; color: #fff; margin-top: 0.267rem;}
.wzpz .list .item .info i{	width: 0.667rem;
    height: 0.067rem; margin: 0.267rem auto 0;
    background-color: #ffffff;}
.wzpz .list .item:hover .info{ top: 0; transition: all 0.3s; -webkit-transition: all 0.3s}

.tc-about{ padding: 2.583rem 0 2.083rem; background: url("../images/cbfddd20_81b83199e352192973c92a688d4ad74c526b118c.jpg") center no-repeat; background-size: cover; text-align: center;}
.tc-about .tc-title .cn::after{	background-color: #000000;}
.tc-about .desc{ margin-top: 1.033rem;text-align: center;}
.tc-about .st1{  	font-size: 0.5rem;	color: #d80817; font-weight: bold;}
.tc-about .text{	font-size: 0.267rem;	color: #333333; margin-top: 0.55rem;}
.tc-about .list{ display: flex; align-items: stretch; justify-content: center; margin-top: 2.367rem; padding: 0 10%; }
.tc-about .list .item{ text-align: center; width: 33%;  }
.tc-about .list .item p{	font-size: 0.3rem;	color: #333333;}
.tc-about .list .item .num{ font-size: 0; display: flex; display: -webkit-flex; align-items: self-end; justify-content: center;  margin: 0.333rem auto 0;}
.tc-about .list .item .num .scrolling-numbers{ display: inline-block;	font-size: 1rem; line-height: 1; font-weight: bold;}
.tc-about .list .item .num sub{	font-size: 0.3rem; margin-left: 0.267rem; margin-bottom: 5px}
.tc-about .list .item:last-child{ margin-right: 0;}
.a-more{ display: inline-block;	background-color: #d80817;
    border-radius: 0.417rem; margin: 1.417rem auto 0;	font-size: 0.267rem; padding: 0.233rem 0.467rem;	color: #fefefe;
    border: 1px solid transparent}
.a-more img{ margin-top: -0.05rem; margin-left: 0.25rem; height: 0.217rem;}
.tc-about .a-more{ margin: 1.417rem auto 0;color: #fff;}
.tc-about .a-more:hover{ background: #e80404; color: #fff;}

.tc-case{ padding: 2.167rem 0 1.417rem;}
.tc-case .tc-title .desc{ margin-top: 0.4rem;	font-size: 0.267rem;}
.tc-case .list{ margin-top: 1.033rem; display: -webkit-flex; display: flex; flex-wrap: wrap;  }
.tc-case .list .item{ width: 24.0625%; margin-right: 1.125%; position: relative;}
.tc-case .list .item:nth-child(4n){ margin-right: 0;}
.tc-case .list .item:nth-child(4n)~.item{ margin-top: 0.367rem;}
.tc-case .list .item p{ position: absolute; color: #fff; background: url("../images/ee9f9963_fc8e9885f822c3702056a1cb1d5b3f8774201702.png") left center no-repeat;  top: 0.267rem; left: -0.1rem;	font-size: 0.3rem; padding-bottom: 0.1rem;  background-size: auto 100%;
    min-width: 1.667rem;}
.tc-case .list .item p span{ display: inline-block; background:#e80404; padding: 0.12rem; width: 100%; line-height: 1;  }

.tc-about2{ background:url("../images/c014d509_663a6b24dd89b1818832f2e9132f3c5aac8dc8e3.jpg") center no-repeat; background-size: cover; padding: 2.75rem 0 1.833rem;}
.tc-about2 .desc{ padding: 0.533rem 2.1rem 1.417rem; text-align: center;	font-size: 0.267rem; line-height: 1.8}
.tc-about2 .list{ display: flex; display: -webkit-flex; text-align: center; }
.tc-about2 .list .item{ width: 19%; margin-right: 2%;	background-color: #ffffff; padding: 0.833rem 0.533rem 0.333rem;
    box-shadow: 0px 1px 4px 0px
    rgba(0, 0, 0, 0.1);
    border: solid 1px #ffffff;}
.tc-about2 .list .item .icon img{ max-height: 1.267rem;}
.tc-about2 .list .item .st{ 	font-size: 0.367rem; margin: 0.433rem auto 0.267rem; font-weight: bold;}
.tc-about2 .list .item .text{	font-size: 0.267rem; line-height: 1.5;}
.tc-about2 .list .item:last-child{ margin-right: 0;}
.tc-about2 .list .item:hover{	background-color: #d80817;}
.tc-about2 .list .item:hover .st{ color: #fff;}
.tc-about2 .list .item:hover .text{ color: #fff;}
.tc-about2 .list .item:hover .icon img{ filter:brightness(100); -webkit-filter:brightness(100) }

.tc-news{ padding: 2.6rem 0 1.733rem; background: url("../images/5771b390_24316342b4f6b3ffc358944790727e3ac0a9b498.jpg") center no-repeat; background-size: cover; }
.tc-news .tc-title .desc{ margin-top: 0.4rem;
    font-size: 0.267rem;}
.news-cate{ margin: 0.7rem auto 1.133rem; display: -webkit-flex; display: flex; align-items: center; line-height: 1; justify-content: center;font-weight: bold;font-size: 0.367rem;}
.news-cate span{ margin: 0 0.25rem;}
.news-cate span:last-child{ display: none;}
.news-cate .item{		color: #000000; }
.news-cate .item.active{	color: #d80817;}
.news-swiper{ overflow: hidden;}
.n-ncon{ overflow: hidden;}
.n-ncon .swiper-slide{ width: 30%;}
.n-ncon .swiper-slide .img{ border: 1px solid #e6e6e6;}
.n-ncon .swiper-slide .info{ padding: 0.267rem 0.167rem 0;}
.n-ncon .swiper-slide .st{ font-size: 0.333rem; font-weight: bold; color: #333;}
.n-ncon .swiper-slide .desc{	font-size: 0.233rem; margin-top: 0.233rem;	color: #999999; line-height: 1.6; height: 1.117rem;}
.n-ncon .swiper-slide .n-m{	font-size: 12px;	color: #cc0001; margin-top: 0.367rem;}

footer{	background-color: #1c1c1c; padding-top: 0.967rem;}
footer .mxw-box .top{ display: flex; align-items: center; justify-content: space-between; display: -webkit-flex;}
footer .mxw-box .top .d-logo{display: flex; align-items: center; justify-content: flex-start; display: -webkit-flex;}
footer .mxw-box .top .d-logo img{ height: 1.267rem;}
footer .mxw-box .top .d-logo .text{	font-size: 0.633rem; color: #fff; margin-left: 0.583rem; padding-left: 0.617rem; border-left: 1px solid #777777;}
footer .mxw-box .top .to-top img{ height: 0.767rem;}
footer .mxw-box .d-con{ margin-top: 0.5rem; padding-top: 1rem; border-top: 1px solid #464646;border-bottom: 1px solid #464646; display: flex; display: -webkit-flex; align-items: flex-start; justify-content: space-between;
    padding-bottom: 0.467rem;  color: #fff;}
footer .mxw-box .d-con .d-ewm{ width: 3.1rem; margin-top: 0.833rem; flex-shrink: 0}
footer .mxw-box .d-con .title{	font-size: 0.333rem; color: #fff; opacity: 0.6}
footer .mxw-box .d-con .d-content{ width: 26%; flex-shrink: 0; margin: 0 2.833rem;}
footer .mxw-box .d-con .d-content .con{	font-size: 0.267rem; line-height: 1.6; margin-top: 1.1rem; opacity: 0.8}
footer .mxw-box .d-con .d-content .con p{ margin-bottom: 0.25rem}
footer .mxw-box .d-con .d-menu{ flex-grow: 1; min-width: 0; display: flex; display: -webkit-flex; align-items: flex-start; justify-content: space-between;}
footer .mxw-box .d-con .d-menu .item .con{	font-size: 0.267rem;	color: #e8e8e8; margin-top: 1rem;
    line-height: 1.9}
footer .mxw-box .d-con .d-menu .item .con p{ margin-bottom: 0.1rem}
footer .mxw-box .d-con .d-menu a:hover{color: #fff;}




.pro-title{ margin: 1.167rem 0 0.7rem; text-align: center; line-height: 1;}
.pro-title .cn{ font-size: 00.5rem; font-weight: bold;	color: #040404;}
.pro-title .en{	 text-transform: uppercase;   font-size: 0.433rem; margin-top: 0.333rem;color: #818181;}
.pro-title .desc{	    font-size: 0.267rem; line-height: 2; margin-top: 0.5rem;	color: #555555;}

.pro-bg{	background-color: #f9f9f9; height: auto; overflow: hidden;}
.page-wrap.cp{background: #f9f9f9; }

.pro-bg .tc-case{ background: #fff; padding-top: 1.5rem;}
.pro-bg .tc-case .pro-title{ margin-top: 0; margin-bottom: 00.9rem;}
.xypg-product-list li{ padding: 0; border: 0;}
.xypg-product-list li .img{
    background-color: #ffffff;
    border-radius: 8px;
    border: solid 1px #e5e5e5;
}
.xypg-product-list li h3 a{	color: #333333; font-size: 00.3rem; font-weight: normal;}
.xypg-product-list li:hover h3 a{ color: #000;}
.xypg-left-con.cp{	background-color: #ffffff;
    border: 0;  margin-top: 0.42rem; padding: 0 0.267rem; }
.xypg-left-title.cp{ background: url('../images/c04799b7_1cc35cafa44585bf5b052d822a9aa07e710689d7.png') #fff bottom center no-repeat; background-size: 100% auto; color: #fff; text-align: center; padding: 0.3rem 10px 0.4rem;}
.xypg-left-title.cp .cn{font-size: 0.433rem; font-weight: bold; }
.xypg-left-title.cp .en{ font-size: 0.3rem; opacity:0.5;}
.page-wrap.cp .page-wrap-left{border: solid 1px #7f8082; background: #fff;border-bottom: 4px solid #7f8082 ;}
.xypg-left-nav.cp>li>a{	background-color: #7f8082; color: #fff;}
.xypg-left-nav.cp > li .first-nav-btn{   background: url('../images/9f7b8c43_88c70dbc0944495b80426ce796849b02485471fe.png') center no-repeat;     transform: rotate3d(0, 1, 0, 180deg); -o-transform:rotate3d(0, 1, 0, 180deg) ; -webkit-transform: rotate3d(0, 1, 0, 180deg); -moz-transform: rotate3d(0, 1, 0, 180deg); }
.xypg-left-nav.cp > li.clicked .xypg-left-subnav{ display: block; padding: 12px 0;}
.xypg-left-nav.cp > li{ margin-bottom: 00.2rem;}
.xypg-left-nav.cp > li{ border-bottom: 0;}

.xypg-left-nav.cp > li.clicked .first-nav-btn{transform: rotate3d(0, 0, 1, 270deg); -o-transform:rotate3d(0, 0, 1, 270deg) ; -webkit-transform: rotate3d(0, 0, 1, 270deg); -moz-transform: rotate3d(0, 0, 1, 270deg);}
.xypg-left-nav.cp .xypg-left-subnav{ padding: 0 6px;	font-size: 0.267rem; color: #333;}
.xypg-left-nav.cp  .xypg-left-subnav > li > a{color: #333;}
.xypg-left-nav.cp  .xypg-left-subnav > li{    border-top: 0;border-bottom: 1px dashed #cdcdcd;}
.xypg-left-nav.cp .xypg-left-subnav > li > a{ padding: 15px 0;}
.xypg-left-nav.cp .xypg-left-subnav > li > a::before{ width: 10px; height: 10px; display: inline-block; content: ""; opacity: .5; background: url('../images/3a8772b9_8914122f6392e23f62850173fa21c58a71260624.png')  no-repeat; background-size: 100%; margin-right: 10px;}
.xypg-left-nav.cp .xypg-left-subnav > li.clicked>a{ color: #000; }
.xypg-left-nav.cp .xypg-left-subnav > li.clicked>a::before{ opacity: 1;}
.page-wrap.cp .product-detail-tab{
    border: solid 1px #efefef; min-height: 650px;
}
.page-wrap.cp .product-detail-tab .product-detail-tabli{	height: auto; border: 0;
    background-color: #b4b4b4;}
.page-wrap.cp .product-detail-tab .product-detail-tabli li{	font-size: 20px; color: #fff; padding: 13px 23px; width: initial; line-height: 1;  border: 0;}
.page-wrap.cp .product-detail-tab .product-detail-tabli li.on{ color: #000; background: #fff;}

.page-wrap.cp .product-detail-slick{ width: 235px;}

.s-por{ margin-bottom: 1.1rem;}
.s-por .por-title{ display: flex; display: -webkit-flex; align-items: flex-end; justify-content: flex-start; padding-bottom: 0.5rem; border-bottom:1px solid #dadada; }
.s-por .por-title .cn{	font-size: 20px; font-weight: bold; display: flex; display: -webkit-flex; align-items: flex-end;}
.s-por .por-title .cn .en{	font-size: 18px;	color: #c9c9c9; font-weight: lighter; margin-left: 6px;}
.por-swiper{ margin: 0.7rem auto 0; overflow: hidden; }
.por-swiper .swiper-slide{ text-align: center;}
.por-swiper .swiper-slide .img{	border-radius: 8px;
    border: solid 1px #e5e5e5;background-color: #ffffff;}
.por-swiper .swiper-slide p{ margin-top:00.3rem;}
.por-swiper .swiper-pagination{ position: initial; font-size: 0; margin-top: 00.333rem;}
.por-swiper .swiper-pagination .swiper-pagination-bullet{ width: 0.25rem; height: 0.25rem; background: #000;}







@media screen and (max-width: 1905px) {

}





@media screen and (max-width: 1680px) {

}


body{ overflow-x: hidden}

.mxw-copy{ padding: 0.267rem 0 0.267rem;	color: #d3d3d3;	}
.mxw-copy a{font-size: 0.267rem; color: #d3d3d3; }
.mxw-copy  a:hover{font-size: 0.267rem; color: #d3d3d3;}



.kkff{ display: none !important;}
.product-detail-tabcon table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.product-detail-tabcon table th,
.product-detail-tabcon table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.product-detail-tabcon table td p{line-height:1.8!important;}
.product-detail-tabcon table tr:hover{background-color:#f2f2f2!important;}
.product-detail-tabcon table tr:nth-child(2n-1){background-color:#fff ;}
.product-detail-tabcon table tr:nth-child(2n){background-color:#fdfdfd ;}

.xypg-detail-con table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.xypg-detail-con table th,
.xypg-detail-con table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.xypg-detail-con table td p{line-height:1.8!important;}
.xypg-detail-con table tr:hover{background-color:#f2f2f2!important;}
.xypg-detail-con table tr:nth-child(2n-1){background-color:#fff ;}
.xypg-detail-con table tr:nth-child(2n){background-color:#fdfdfd ;}
.page-position,.page-mob-tool{z-index: 1;}



@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 ==================== */

.c-more{ display: inline-block;}
.pro-swiper .swiper-slide .list .item:nth-child(4){ display: none}


@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    .xypg-left-nav .xypg-left-subnav{ position: initial}
    .mxw-banner .swiper-pagination{ padding-left: 0;  right: 0; left: 0;}

    .tc-pro{ padding: 45px 0;}
    .tc-title .en{ font-size: 12px;}
    .tc-title .cn{ font-size: 20px; line-height: 1; margin-top: 5px;}
    .tc-title .cn::after{ height: 2px; margin-top: 5px;}
    .pro-cate{ margin-top: 25px;}
    .pro-cate .item{ font-size: 18px; padding: 0 6px 6px; background-size: 60%; line-height: 1;}
    .pro-cate span{ width: 4px; height: 4px; margin: 0 10px 12px;}
.pro-cate .item.active{background: none; border-bottom: 1px solid #d80817;}
.pns-con .swiper-button-prev{ left: 10px; width: 30px;}
.pns-con .swiper-button-next{ right: 10px;width: 30px;}
.pns-con .swiper-slide .flx{ left: 0;}
.pns-con .swiper-slide .img{ width: 60%; margin: 0 0 0 auto;}
.pns-con .swiper-slide .flx{ top: 100px; padding-left: 20px;}

footer .mxw-box .d-con{ flex-wrap: wrap;}
.pns-con .swiper-slide .flx .icon img{ width: 80%;}
.pns-con .swiper-slide .flx p{ font-size: 14px; margin-top: 10px; }
.tc-pro .body{ background-size: 60% auto; background-position: bottom right; padding-bottom: 30px;}
.wzpz{ margin-top: 0;}
.wzpz .tc-title .desc{ font-size: 14px; margin-top: 10px;}
.wzpz .list{ justify-content: space-between; margin-top: 25px;}
.wzpz .list .item{ width: 48.5%; margin: initial; }
.wzpz .list .item:nth-child(2n)~.item{ margin-top: 15px;}
.wzpz .list .item .info img{ height: 35px;}
.wzpz .list .item .info p{ font-size: 14px; margin-top: 0;}
.wzpz .list .item .info i{ margin: 10px auto 8px;}

.tc-about{ padding: 45px 0;}
.tc-about .desc{ margin-top: 25px;}
.tc-about .st1{ font-size: 20px;}
.tc-about .text{ font-size: 14px; margin-top: 15px;}
.tc-about .list{ padding: 0; margin-top: 25px;}

.tc-about .list .item p{ font-size: 14px; height: 44px;}
.tc-about .list .item .num .scrolling-numbers{ font-size: 30px;}
.tc-about .list .item .num sub{ bottom: 4px; margin-bottom: 0; margin-left: 6px;}

.tc-about .list .item .num{ margin-top: 10px;}
.tc-about .a-more{ margin-top: 35px; font-size: 14px; padding: 8px 25px;}
.tc-about .a-more img{ height: 12px; margin-left: 8px;}

.tc-case{ padding: 45px 0;}
.tc-case .tc-title .desc{ margin-top: 10px; font-size: 14px;}
.tc-case .list{ margin-top: 15px; justify-content: space-between;}
.tc-case .list .item{ margin: initial; width: 48.5%;}
.tc-case .list .item:nth-child(2n)~.item{ margin-top: 15px;}
.tc-case .list .item p span{ padding: 8px; font-size: 14px;}
.tc-case .list .item p { padding: 0; padding-bottom: 6px; left: -6px;}
.tc-about2{ padding: 45px 0;}
.tc-about2 .desc{ padding: 0; font-size: 14px; margin: 20px auto;}
.tc-about2 .list{ justify-content: space-between; flex-wrap: wrap;}
.tc-about2 .list .item{ width: 48.5%; margin: initial; padding: 15px 10px;}
.tc-about2 .list .item:nth-child(2n)~.item{ margin-top: 15px;}
.tc-about2 .list .item .icon img{ height: 35px;}
.tc-about2 .list .item .st{ font-size: 16px; margin: 12px auto 8px;}
.tc-about2 .list .item .text{ font-size: 12px;}
.n-ncon .swiper-slide .n-m{ margin-top: 10px;}

.tc-news{ padding: 45px 0;}
.tc-news .tc-title .desc{ font-size: 14px; margin-top: 15px;}
.news-cate{ margin: 20px auto; font-size: 18px;}
.news-cate .item{ font-size: 18px;}
.n-ncon .swiper-slide .info{ padding: 0;}
.n-ncon .swiper-slide .info .st{ font-size: 16px;}
.n-ncon .swiper-slide .info .desc{ font-size: 14px; margin-top: 10px;}
footer .mxw-box .top .d-logo img{ height: 35px;}
fonter{ padding-top: 45px;}
footer .mxw-box .top .d-logo .text{ margin-left: 10px; padding-left: 10px; font-size: 16px;}
footer .mxw-box .top .to-top img{ flex-shrink: 0; width: 30px; height: 30px;}
footer .mxw-box .d-con .d-menu{ display: none;}
footer .mxw-box .d-con{ margin-top: 10px; padding-top: 20px;}
footer .mxw-box .d-con .d-content{ width: 100%; margin: 0 auto;}
footer .mxw-box .d-con .title{ font-size: 16px;}
footer .mxw-box .d-con .d-content .con{ font-size: 14px; margin-top: 10px;}
footer .mxw-box .d-con .d-content .con p{ margin-bottom: 0;}

footer .mxw-box .d-con .d-ewm{ margin-top: 10px; width: 120px;}
.mxw-copy{ padding: 10px 0; font-size: 14px;}
.mxw-copy a{ font-size: 14px;}
.pro-title{margin: 45px auto 25px; max-width: 95%;}
.pro-title .cn{ font-size: 18px;}
.pro-title .en{ font-size: 16px; margin-top: 10px;}
.pro-title .desc{ font-size: 14px; text-align: left;}
.pro-title .desc br{ display: none;}
.xypg-product-list li h3 a{ font-size: 14px; margin-top: 5px; padding: 0;}
.page-wrap.cp{ padding-bottom: 45px;}
.pro-bg .tc-case{ padding-top: 45px;}
.pro-title .desc{ margin-top: 10px;}
.page-wrap.cp .product-detail-tab .product-detail-tabli li{ font-size: 16px;}
.s-por .por-title .cn{ font-size: 16px;}
.s-por .por-title .en{ font-size: 14px;}
.s-por .por-title{ padding-bottom: 12px;}
.por-swiper{ margin-top: 12px;}
.por-swiper .swiper-slide p{ font-size: 14px; margin-top: 5px;}
.por-swiper .swiper-pagination{ display: none;}
.s-por{ margin-bottom: 45px;}
.pns-con .swiper-slide .flx{ right: 30%; width: 70%; top: 85px;}
    .ny-product-desc{ padding: 45px 0}
    .ny-news_desc-box{ padding: 45px 0}
    .ny-news-desc .title{ font-size: 18px;}
    .ny-news-desc .article{ min-height: 200px;}
    .xymob-menu-click .xypg-left{ padding: 10vh 0 5vh}
    header{ display: none;}
    .waponline{ display: none;}
    .pns-con .swiper-slide .flx .icon img{ height: auto; width: 100%;}
}












