@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
    image-rendering: -moz-crisp-edges; /* Firefox */
   image-rendering: -o-crisp-edges; /* Opera */
   image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
   -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination > a,.mxw-pagination > span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: block;
    margin: 4px;
}
.mxw-pagination > a.active,
.mxw-pagination > a:hover {
    background-color: #0748b2;
    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 ==================== */
.Pagination {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 15px;
}
.Pagination a {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #CCCCCC;
}
.Pagination .current {
    color: white;
}
.Pagination .current {
    background: #000;
    border-color: #000;
}
.Pagination a {
    color: #666666;
    font-size: 12px;
}
/* ==================== 分页样式 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: 50px;
        max-width: 750px;
        width: 100%;

        position: fixed;
        top: 0;
        left: 0; right: 0;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
        margin: 0 auto;
        text-align: center;
        position: absolute;
        z-index: 0; left: 39%;
        width: max-content;
        width: -moz-max-content;
    }
    .mxw-mob-nav .logo img {
        height: 30px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 15px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
        margin-right: 0;
        margin-left: auto;
        position: relative;
        z-index: 99;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 1px;

        background-color: #000;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: -100%;

        z-index: 9999;
        transition: all 0.5s;


    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;transition: all 0.5s; right: 0;
    }
    .mxw-mob-nav .menus-box.active .menus {
         transition: all 0.5s;
    }
    .mxw-mob-nav .menus {
        width: 100%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;

        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        padding-top: 20px;
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: flex;
        align-items: center; justify-content: space-between;
        width: 100%;
        padding: 10px 18px 10px;
        font-size: 20px;
        color: #000;
        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: 18px; height: 18px; background: url("../images/day.png") center no-repeat;
        background-size: 100% auto; border: 0;
        transition: all 0.3s
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 2.5%;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 18px;
        color: #000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;

        line-height: 1.75;
        padding: 5px 10px 5px 1em;
        display: flex; align-items: center; justify-content: space-between;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;


        font-size: 16px;
        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; position: relative;
}
.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: #f58321;
    border-color: #f58321;

}
.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 {

    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: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 50px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#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;  padding:0.4rem 0 0.3rem 0;  flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start;}
.top-box .logo-box .t-logo>img{ max-height:1.283rem;}

.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{
    background: #fff;
    position: sticky;
    z-index: 999;
    width: 100%;
    top: 0;
}
header .welcome {
    line-height: 34px;
    border-bottom: 1px solid #e5e5e5; display: none;
}
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: #333; }







.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;
    display: flex;
    align-items: center; justify-content: center;
}

.x-menu > li > a {
    font-size: 0.3rem;
    color: #080808;
    display: flex;
    align-items: center;
    position: relative;
    align-content: center;
    justify-content: center;
    padding:0 ;
    line-height: 1.2;
    width: 100%;
    border-right: 1px solid #d6d6d6;
}
.x-menu > li > a::after{ }
.x-menu > li:last-child>a{ }
.x-menu > li > a:hover {
    color: #080808;
}
.x-menu>li.active{ 	 	}
.x-menu > li.active > a {
    color: #333; font-weight: bold;
}
.x-menu > li.active > a::after{ background: #333; transition: all 0.3s}
.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% + 0px);
    background: #fff;

    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,0px);
    transform: translate(-50%,0px);
    -webkit-transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
    transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin: 10px auto;
    align-content: center;
    width: max-content;
    width: -moz-max-content;
    max-width: 100%;
    padding: 2px 3px;
    border-bottom: 1px solid transparent;
}

.x-sub-menu > li:hover  > a{
    border-bottom: 1px solid #333;
}

.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; display: none;
}
.x-menu > li:nth-child(6)~li>a{ border-right:0}




header .x-menu > li .pc-sub-menu {
    width: 100vw;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    padding-top: 0;
    color: #333;
    border-top: 1px solid #ddd;
    background: #fff;
}
header .x-menu > li .pc-nav-box {
     width: 86%;
    margin: 0 auto;
    padding:15px 15px;
    display: flex;align-items:stretch;flex-wrap:wrap;
    position: relative;
    justify-content: center;
    -webkit-transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
    transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: perspective(1200px) rotateX(-90deg);
    transform: perspective(1200px) rotateX(-90deg);
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
header .x-menu > li .pc-nav-box > li {
    color: #333;
    width:15%;
    position:relative;
    display: flex; align-items: center;justify-content: center;
}
header .x-menu > li .pc-nav-box > li:last-child:after,
header .x-menu > li .pc-nav-box > li:nth-child(4n):after{display:none;}
header .x-menu > li .pc-nav-box > li:after{content:"";display:block;width:1px;height:50%;background-color:rgba(255,255,255,0.4);position:absolute;right:0;top:50%;transform:translateY(-50%);}
header .pc-menu > li .pc-nav-box > li:hover {
    background: rgba(0, 0, 0, 0.05);
}
header .x-menu > li .pc-nav-box > li > a {
    color: #333;
    display: block;
    text-align: center;
    font-size: 14px;
    padding: 8px 15px;
}
header .x-menu > li:hover .pc-sub-menu {
    opacity: 1;
    visibility: visible;
}

header .x-menu > li:hover .pc-sub-menu .pc-nav-box {
    transform: perspective(1200px) rotateX(0deg);
    -webkit-transform: perspective(1200px) rotateX(0deg);
    -moz-transform: perspective(1200px) rotateX(0deg);
    -ms-transform: perspective(1200px) rotateX(0deg);
    -o-transform: perspective(1200px) rotateX(0deg);
}




.x-sub-menu>li {
    position: relative;
}

.x-sub-menu>li .x-sub-menux {
    position: absolute;
    left: 100%;
    top: -26px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 200px;
}

.x-sub-menu>li .x-sub-menux a {
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: #333;
    /* padding: 0 2%; */
    box-sizing: content-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all ease .3s;
    padding: 2px 3px;
    width: -moz-max-content;
    width: max-content;
    margin: 6px auto;
    max-width: 100%;
    border-bottom: 1px solid transparent;
}

.x-sub-menu>li .x-sub-menux a:hover {
    border-bottom: 1px solid #333;
    color: #000;
}

.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;
}






@keyframes todown {
    0% {
        margin-bottom: 30px;
    }
    50% {
        margin-bottom: 10px;
    }
    100% {
        margin-bottom: 30px;
    }
}
body{
    --scale:1;
}
.mxw-banner{ position: relative;     }
.mxw-banner .flx{ position: absolute; z-index: 11; text-align: center; bottom: 0.867rem; margin: 0 auto; left: 0; right: 0;
    cursor: pointer; font-size: 18px; color: #fff;
   }
.mxw-banner .flx .c1{ font-size: 20px;}
.mxw-banner .flx .c2{ width: max-content; width: -moz-max-content; margin: 10px auto 0; font-size: 16px; border-bottom: 1px solid #fff;}
.mxw-banner .flx .icon{ -webkit-animation: todown 2s infinite linear;
    animation: todown 2s infinite linear;}
.mxw-banner .flx p{font-size: 0.267rem; color: #fff;text-align: center; margin-top: 0.15rem;}

.x-menu > li.lang,.x-menu > li.top-ss{	flex-shrink: 0; flex-grow: initial; min-width: initial; width: initial; position: relative;}
.x-menu > li.lang>a{ /*border: solid 1px #07010f !important;*/ height: auto;
    font-size: 0.267rem; padding: 0.1rem 0.25rem 0.1rem 0.167rem; }
.x-menu > li.lang>a img{ margin-left: 0.333rem;}
.x-menu > li.top-ss{ margin-left: 0.633rem;	font-size: 0.267rem;}
.x-menu > li.top-ss img{ margin-right: 0.167rem; height: 0.32rem}
.x-menu > li.lang{ margin-left: 0.25rem}
.x-menu > li.top-ss .se-box{     position: absolute;
    right: -35px; display: none; padding: 20px;background: #fff; z-index: 95;
    top: 100%; width: 20vw}
.x-menu > li.top-ss .se-box form{     display: flex;
    align-items: center;border-bottom: 1px solid #444;
    justify-content: space-between;     }
.x-menu > li.top-ss:hover .se-box{ /*display: block;*/}

.x-menu > li.top-ss .se-box form input{  font-size:14px; padding: 5px; flex-grow: 1; min-width: 0;}
.x-menu > li.top-ss .se-box form button{ width: 60px;  color: #333; flex-shrink: 0; font-size: 14px; cursor: pointer; margin-bottom: 5px; border-left: 1px solid #333 }

.tc-box1{ margin-top: 0.9rem;}
.tc-box1 .con{ display: flex; align-items: stretch; justify-content: space-between; display: -webkit-flex; display: -moz-flex; display: -ms-flex;    margin-top: 0.433rem;}
.tc-box1 .item{ width: 50%; position: relative;}
.tc-box1 .item>img{ width: 100%;}
.tc-box1 .item .flx{ position: absolute; display: flex; align-items: center; justify-content: center; flex-direction: column; display: -webkit-flex; display: -moz-flex; display: -ms-flex; width: 100%; height: 100%; top: 0; left: 0; color: #fff;}
.tc-box1 .item .flx .st{	font-size: 0.667rem;line-height: 1;}
.tc-box1 .item .flx .desc{ margin: 0.75rem auto 0.417rem;}
.tc-box1 .item .flx .b1-more{	border: solid 1px #ffffff; display: inline-block;
    font-size: 0.267rem; padding: 0.317rem 1.083rem; transition: all 0.3s; border-radius: 0.5rem}
.tc-box1 .item .flx:hover .b1-more{ background: #fff; transition: all 0.3s; color: #333;}

.tc-pro{ text-align: center; padding: 1.25rem 0 0.833rem; }
.tc-title{ text-align: center;}
.tc-title .cn{	font-size: 0.367rem;	color: #222222; margin-bottom: 0.15rem; line-height: 1;}
.tc-title .en{	font-size: 0.233rem; font-weight: lighter; text-transform: capitalize; line-height: 1;}
.tc-pro .list{ margin-top: 0.433rem; display: flex; flex-wrap: wrap; display: -webkit-flex; display: -moz-flex; display: -ms-flex;}
.tc-pro .list .item{ margin-right: 1.25%; width: 23.75%; }
.tc-pro .list .item:nth-child(4n){ margin-right: 0}
.tc-pro .list .item p{ text-align: left;	color: #000;	font-size: 0.267rem; text-transform: capitalize; margin-top: 0.25rem;  }
.tc-pro .list .item .st{ margin-top: 6px;	color: #333333; text-align: left;	font-size: 0.233rem; text-transform: capitalize; }
.tc-pro .list .item:nth-child(4n)~.item{ margin-top: 0.6rem;}
.p-more{ display: inline-block;  font-size: 0.267rem; color: #fff; padding: 0.3rem 1.083rem; border: 1px solid #fff; margin-top: 1rem;}
.tc-pro .p-more{border-radius: 0.467rem;border: 0.017rem solid #000; background: none; color: #333	}
.pro2-list  .p-more{border-radius: 0.467rem;border: 0.017rem solid #000; background: none; color: #333	}
.tc-pro2{ padding: 0.8rem 0 0;}
.big-imgs{ width: 100%; margin-top: 0.433rem; height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;}
.big-imgs img{ width: 100%; position: absolute;
    top: 0;
    left: 0;
   }
.tc-pro .p-more:hover{ box-shadow: inset 0 0 0 1px #000; transition: all 0.3s; -webkit-transition: all 0.3s}
.pro2-list{ padding-top: 0.433rem; padding-bottom: 0.75rem; background: #fff; text-align: center}
.pro2-list  .p-more:hover{box-shadow: inset 0 0 0 1px #000; transition: all 0.3s; -webkit-transition: all 0.3s}
.pro2-list>.mxw-box{display: flex; flex-wrap: wrap; display: -webkit-flex; display: -moz-flex; display: -ms-flex; }
 .pro2-list .item{ margin-right: 1.25%; width: 23.75%; }
 .pro2-list .item:nth-child(4n){ margin-right: 0}
.pro2-list .item:nth-child(4)~.item{  display: none}
 .pro2-list .item p{	color: #000; text-align: left;	font-size: 0.267rem; text-transform: capitalize; margin-top: 0.25rem;  }
 .pro2-list .item .st{ margin-top: 10px;	color: #333333; text-align: left;	font-size: 0.233rem; text-transform: capitalize;  }
 .pro2-list .item:nth-child(4n)~.item{ margin-top: 0.333rem;}

.tc-brand{ padding: 0.8rem 0 0.833rem; background: #fff;}
.tc-brand .pc-none img,.tc-brand3 .pc-none img,.tc-brand .m-none img,.tc-brand3 .m-none img{ width: 100%}
.tc-brand .body{ margin-top: 0.433rem; position: relative;}
.tc-brand .body>img{ width: 100%;}
.tc-brand .body .flx{position: absolute; right: 8.5%; top: 14%; z-index: 1; width: 40%;}
.tc-brand .body .flx .st{ 	font-size: 0.3rem; color: #fff;}
.tc-brand .body .flx .st img{vertical-align: text-bottom; display: inline-block; margin-right: 0.417rem; height: 1.583rem;}
.tc-brand .body .flx .desc{	font-size: 0.3rem;	color: #ffffff; margin: 0.833rem auto 1.1rem; line-height: 2.1}
.tc-brand .p-more{ margin-top: 0;transition: all 0.3s;-webkit-transition: all 0.3s; border-radius: 0.5rem;}
.tc-brand .p-more:hover{ background: #fff; transition: all 0.3s;-webkit-transition: all 0.3s; color: #333;}

.tc-brand2{ padding: 0.8rem 0;background: #fff;}
.tc-brand2 .list{ margin-top: 0.467rem;
    /*display: flex; align-items: stretch; justify-content: space-between; display: -webkit-flex; display: -moz-flex; display: -ms-flex;*/ }
.brand2-swiper{ overflow: hidden}
.brand2-swiper .swiper-pagination{ display: none }
.tc-brand2 .list .item{ margin-right: 0.75%; width: calc(98.5% / 3 ) }
.tc-brand2 .list .item .mxw-box .img{ width: 100%;}
.tc-brand2 .list .item:last-child{ margin-right: 0;}
.tc-brand2 .list .item .st1{ text-align: center;	font-size: 0.3rem; color: #333; margin: 0.167rem auto 0.1rem;}
.tc-brand2 .list .item .st2{text-align: center;font-size: 0.233rem; color: #333; text-transform: capitalize;}

.tc-brand3{ padding-top: 0.8rem;background: #fff;}
.tc-brand3 .body{ margin-top: 0.417rem; position: relative;}
.tc-brand3 .body>img{ width: 100%;}
.tc-brand3 .body .flx{ position: absolute; right: 8.5%; top: 30%; z-index: 1; width: 40%;}
.tc-brand3 .body .flx .desc{	font-size: 0.3rem; line-height: 2.5; margin: 1rem auto 1.667rem; color: #fff;}
.tc-brand3 .body .flx .st img{ height: 1.733rem;}

.tc-brand3 .p-more:hover{ background: #fff; transition: all 0.3s;-webkit-transition: all 0.3s; color: #333;}
.tc-brand3 .p-more{border-radius: 0.833rem;}

footer{ padding-top: 1.083rem;background: #fff; border-top: 1px solid rgba(47, 51, 52, 0.2); }
footer .up{ display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 1rem;}
footer .up .title{	font-size: 0.267rem;color: #000; font-weight: bold; margin-bottom: 0.25rem;}
footer .up .d1{	font-size: 0.267rem;line-height: 1.8}
footer .up .d2 p{	font-size: 0.233rem;color: #444; line-height: 2.1}
footer .up .d3 p{	font-size: 0.233rem;color: #444; line-height: 2.1}
footer .up .d4 p{font-size: 0.233rem;color: #444; line-height: 2.1}
footer .up .d4 .st{	font-size: 0.233rem; font-weight: bold; margin-top: 0.633rem}

.dm-banner {
    position: relative;
}
.dm-banner .banner-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    z-index: 3;
    cursor: pointer;
}
.dm-box {
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    font-size: 0;
    color: #333;
}
.dm-sub-box {
    padding-top: 1.6667rem;
    padding-bottom: 1.6667rem;
}
.dm-ny-about .desc {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    text-align: justify;
}

/* ==================== 内页标题 start ==================== */
.ny-title {
    text-align: center;
    color: #000;
    font-size: 0.6667rem;
    line-height: 1.2;
    padding-bottom: 1rem;
}
/* ==================== 内页标题 end ==================== */
/* ==================== 内页 - 二级分类 start ==================== */
.sub-category {
    margin-bottom: 60px;
}
.sub-category > .dm-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
.sub-category > .dm-box .cate-item {
    font-size: 18px;
    line-height: 1.8;
    padding: 5px 20px;
    margin: 5px;
}
.sub-category > .dm-box .cate-item.active,
.sub-category > .dm-box .cate-item:hover {
    background: #000;
    color: #fff;
    border-radius: 5px;
}
/* ==================== 内页 - 二级分类 end ==================== */
/* ==================== 内页 - 产品页面样式 start ==================== */
.dm-ny-product .item .image {
    margin-bottom: 25px;
}
.dm-ny-product .item .info {
    color: #707070;
    margin-bottom: 20px;
}
.dm-ny-product .item .name {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}
.dm-ny-product .item .desc {
    line-height: 1.8;
    height: 3.6em;
    font-size: 14px;
    margin-bottom: 20px;
}
.dm-ny-product .item .dm-more {
    width: 100%;
}
/* ==================== 内页 - 产品页面样式 end ==================== */
/* ==================== 内页 - 产品详情样式 start ==================== */
.dm-ny-product-desc > .dm-box {
    align-items: flex-start;
    max-width: 1200px;
}
.dm-ny-product-desc .left {
    flex-grow: 1;
    min-width: 0;
}
.dm-ny-product-desc .left .head {
    font-size: 17px;
    letter-spacing: 2px;
    border-top: 2px solid #DDD;
    display: block;
    color: #707070;
    padding-top: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}
.dm-ny-product-desc .right {
    width: 400px;
    flex-shrink: 0;
    margin-left: 40px;
}
.dm-ny-product-desc .right .title {
    line-height: 1.8em;
    text-transform: uppercase;
    font-size: 22px;
    color: #000;
    font-weight: bold;
}
.dm-ny-product-desc .right .list-item {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #ddd;
}
.dm-ny-product-desc .right .list-item .head {
    font-size: 16px;
    color: #707070;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: bold;
}
.dm-ny-product-desc .right .list-item .desc {
    font-size: 14px;
    color: #707070;
    line-height: 1.8;
}
.dm-ny-product-desc .product-big {
    margin-left: 30px;
}
.dm-ny-product-desc .product-min {
    flex-shrink: 0;
    width: 140px;
    height: 584px;
}
.dm-ny-product-desc .product-min .my-slide-thumb-active .image {
    border-color: #000;

}
.dm-ny-product-desc .product-min .image {
    border: 1px solid #ddd;
    cursor: pointer;height:auto; width:initial;
}
.dm-ny-product-desc .product-other .image {
    border: 1px solid #ddd;
}
.dm-ny-product-desc .product-bottom {
    margin-top: 40px;
}
/* ==================== 内页 - 产品详情样式 end ==================== */
/* ==================== 内页 - 联系我们 start ==================== */
.dm-ny-contact .itembox {
    margin-bottom: 50px;
    margin-top: 30px;
}
.dm-ny-contact .item .icon {
    width: 50px;
    margin: 0 auto 20px;
}
.dm-ny-contact .item .desc {
    font-size: 14px;
    color: #000;
    line-height: 1.8;
    text-align: center;
}
/* ==================== 内页 - 联系我们 end ==================== */

/* ==================== 置顶按钮 start ==================== */
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #000;
    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-bottom: -7px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 0;
    }
}
/* ==================== 置顶按钮 end ==================== */























    /* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 0 0 1.067rem;

}
.ny-news-desc > .mxw-box {
    padding-top: 60px;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;

}
.ny-news-desc .article p {
    line-height: 1.8;
}
.pg{ font-size: 14px; line-height: 1.8; margin-top: 50px}
@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 45px 0;
    }
    .ny-news-desc .article {

    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */












body{ overflow-x: hidden; background: #fff; position: relative; z-index: 1;}



.mxw-copy{  }
.mxw-copy .mxw-box{ padding: 0.2rem 0; 	font-size: 0.233rem; 		color: #333333; text-align: center; border-top: 1px solid rgba(47, 51, 52, 0.2); }
.mxw-copy .mxw-box .tc-left{ text-align: left}
.mxw-copy .mxw-box .tc-right{ text-align: right}
.mxw-copy .mxw-box a{font-size: 0.233rem; 		color: #333333;}
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; 		color: #333333;}

.cont .desc{  margin-top: 0.25rem; text-align: center; font-size: 0.3rem}








.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 ;}

@media screen and (min-width: 1921px) {
    .x-menu{ max-width: 90%}

}



@media screen and (max-width: 1600px) {




}


@media screen and (max-width: 1440px) {
    .top-box{ width: 90%; max-width: 90%;}






}

/* ==================== 页面具体样式 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 ==================== */


/* ==================== 内页 - 产品详情 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 #ee1d23;
    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: #ee1d23;
}
.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 #ee1d23;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #ee1d23;
}
.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 ==================== */
.xf-hy{
    position: fixed;
    background: rgba(0,0,0,.5);
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;    transition: all 0.3s;
    justify-content: center;
    z-index: 999;
}
.xf-hy p{    color: #fff;
    font-size: 18px;
    margin-top: 15px;
    text-align: center;}
.xf-s:hover{
    cursor: pointer;
}
.flx-text{ position: absolute;   height: 100%; display: flex; display: -webkit-flex; display: -ms-flex; display: -moz-flex; align-items: center; justify-content: center; top: 0; left: 0; right: 0; text-align: center; z-index: 1; color: #fff; font-size: 0.5rem; text-transform: uppercase;}

.dm-ny-product-desc .right .list,.dm-ny-product-desc .pc-list .right .sys-list{ display: none}

@media screen and (max-width: 768px) {
    @keyframes todown {
        0% {
            margin-bottom: 20px;
        }
        50% {
            margin-bottom: 5px;
        }
        100% {
            margin-bottom: 20px;
        }
    }

    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    body{ margin-bottom: 0}

    .mxw-banner .flx{ bottom: 25px}
    .mxw-banner .flx .c1{ font-size: 18px;}
    .mxw-banner .flx .c2{ font-size: 14px;}
    .mxw-banner .flx p{ font-size: 12px;}
    .mxw-banner .flx .icon img{ width: 15px;}

    .tc-box1{ margin-top:45px; }
    .tc-box1 .item{ width: 100%;}
    .tc-box1 .con{flex-wrap: wrap;}
    .tc-box1 .item .flx .st{ font-size: 22px;}
    .tc-box1 .item .flx .desc{  margin: 30px auto 25px;  padding: 0 35px; font-size: 14px; text-align: center;}
    .tc-box1 .item .flx .b1-more{ font-size: 14px; padding: 8px 25px; }
    .tc-pro{ padding: 45px 0;}
    .tc-title .cn{ font-size: 20px;}
    .tc-title .en{ font-size: 12px; margin-top: 5px;}
    .tc-pro .list{ margin-top: 25px; flex-wrap: wrap; justify-content: space-between}
    .tc-pro .list .item{ width: 48.5%; margin: initial;}
    .tc-pro .list .item .st{ margin-top: 0;opacity: 0.6}
    .tc-pro .list .item:nth-child(2n)~.item{ margin-top: 20px;}
    .tc-pro .list .item:nth-child(6)~.item{ display: none;}
    .tc-pro .list .item p{ font-size: 14px; margin-top: 8px;}
    .p-more{ font-size: 14px; padding: 10px 30px; color: #333; border: 1px solid rgba(0, 0, 0, 0.75); border-radius: 25px; background: none;
     margin-top: 45px;}
    .tc-pro .p-more{ margin-top: 30px;}
    .tc-pro2{ padding-top: 45px;}
    .big-imgs{  height: auto; display: flex; display: -webkit-flex; align-items: center; justify-content: center; }
    .big-imgs img{ position: initial; }

    .pro2-list{ padding: 20px 0 45px;}
    .pro2-list>.mxw-box{ flex-wrap: wrap; justify-content: space-between;}
    .pro2-list .item{ margin: initial; width: 48.5%;}
    .pro2-list .item:nth-child(4)~.item{ display: block}
    .pro2-list .item p{ margin-top: 5px; font-size: 14px; }
    .pro2-list .item .st{ font-size: 12px; margin-top: 0px; opacity: 0.6}
    .pro2-list .item:nth-child(2n)~.item{ margin-top: 20px; }

    .tc-brand{ padding: 45px 0; }
    .tc-brand .body{ margin-top: 20px;}
    .tc-brand .body .flx{ position: initial;  width: 100%; padding: 20px 2.5% 0;text-align: center }
    .tc-brand .body .flx .st img{ height: 35px;filter:brightness(0); -webkit-filter: brightness(0);}
    .tc-brand .body .flx .st{ display: none; color: #333; font-size: 18px;}
    .tc-brand .body .flx .desc{ color: #333; font-size: 14px; margin: 0px auto 30px; padding: 0 5%; text-align: justify}
    .tc-brand .body .flx .st img{ margin-right: 15px;}
    .tc-brand2 .list{ margin-top: 20px;}
    .brand2-swiper{ overflow: initial; width: 80%; margin: 0 auto;}
    .brand2-swiper .swiper-pagination{ position: initial; display: block; margin-top: 15px}
    .brand2-swiper .swiper-pagination .swiper-pagination-bullet-active{ background: #000}
    .tc-brand2 .list .item{ width: 31%; margin: initial;}
    .tc-brand2 .list .item .st1{ font-size: 16px; margin: 10px auto 0;}
    .tc-brand2 .list .item .st2{ font-size: 12px}
    .tc-brand3 .body{ margin-top: 20px;}
    footer{ padding-top: 45px;}
    footer .up{ flex-wrap: wrap; }
    footer .up .d1{ font-size: 14px; width: 100%; display: none}
    footer .up .d2{ width: 100%;}
    footer .up .d3{ width: 100%; margin: 20px auto;}
    footer .up .title{ font-size: 16px; font-weight: initial}
    footer .up .d4 .st{ font-size: 14px; margin-top: 20px;}
    footer .up{ padding-bottom: 35px;    }
    footer .up .item:last-child{ border-bottom: 1px solid #e1e1e1}
    footer .up .item{ margin: 0 auto;  width: 90%; padding: 16px 0;     border-top: 1px solid #e1e1e1;}
    footer .up .title{ margin-bottom: 0}
    .sub-box{ padding-top: 15px;}
    footer .up .d4 .st{ padding-top: 15px;  border-top: 1px solid #e1e1e1;}
    .dm-sub-box {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .dm-box {
        padding: 30px 20px;
    }
    .dm-ny-product .item .info {
        margin-bottom: 10px;
    }
    .dm-ny-product .item .image {
        margin-bottom: 10px;
    }
    .dm-ny-product .item .name {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .dm-ny-product .item .desc {
        font-size: 14px;
        line-height: 1.6;
        height: 3.2em;
        margin-bottom: 10px;
    }
    .dm-ny-product-desc .left {
        width: 100%;
    }
    .dm-ny-product-desc .left .top {
        flex-flow: column;
        width: 100%;
    }
    .dm-ny-product-desc .left .bottom {
        display: none;
    }
    .dm-ny-product-desc .product-top {
        flex-flow: column;
        padding-bottom: 10px;
    }
    .dm-ny-product-desc .product-min {
        width: 100%;
        height: auto;margin-top: 15px;
    }
    .dm-ny-product-desc .product-big {
        width: 100%;
        order: -1;
        margin-left: 0;
    }
    .easyzoom {
        pointer-events: none;
    }
    .dm-ny-product-desc .left .head {
        margin-top: 30px;
        padding-top: 20px;
    }
    .dm-ny-product-desc .right {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    .dm-ny-product-desc .right .title {
        font-size: 18px;
    }
    .dm-ny-product-desc .product-bottom {
        margin-top: 20px;
    }
    .dm-ny-contact .itembox{ flex-wrap: wrap; margin-top: 0}
    .dm-ny-contact .itembox .item{ width: 100%}
    .dm-ny-contact .itembox .item:nth-child(2){ margin-top: 4%;}
    .ny-title {
        font-size: 22px;
        padding-bottom: 30px;
    }
    .flx-text{ font-size: 22px; padding: 0 10%}
    .dm-banner .banner-down{ display: none}
    .tc-brand3 .body .flx{ position: initial; width: 100%; color: #333; padding: 0 2.5%}
    .tc-brand3 .body .flx .desc{ font-size: 14px; margin: 15px auto 15px; color: #333 }
    .tc-brand3 .body .flx .st img{ margin-top: 25px; height: 35px;    filter: brightness(0);
        -webkit-filter: brightness(0);}
    .tc-brand3{ padding-bottom: 45px;text-align: center;}
    .tc-brand3 .p-more{ margin-top: 0; }
    .sub-box{ display: none}

    header .search {
        width: 30px;
        margin-right: 15px;
        margin-left: auto;display: none;
    }
    header .search img {
        max-width: 80%;
    }
     .search-form {
        position: initial;
        top:0;
        left: 0;
        background: #fff;
        width: 100%;
        padding: 10px 20px;
        box-shadow: 0 2px 10px -5px rgba(0, 0, 0, 0.1);
       /* border-top: 1px solid #eee;
        transform: translateY(5%);*/
        opacity: 1;
        visibility: visible;
        transition: all 0.4s;
    }
     .search-form.active {
        opacity: 1;
        visibility: visible;
    }
     .search-form form {
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        border: 1px solid #eee; border-radius: 25px;
    }
     .search-form form input {
        min-width: 0;
        flex-grow: 1;
        padding: 10px 10px;
        font-size: 14px;
    }
     .search-form form button {
        flex-shrink: 0;
        width: 30px;
        margin-left: 10px;
        padding: 7px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
     .search-form form button img {
        height: auto;
    }
    input[type="text"] {
        -webkit-appearance: none;
        outline: none;
    }

    input[type="text"]::-webkit-search-decoration,
    input[type="text"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }
    footer .up .item p{ line-height: 2.8; font-size: 12px}
    footer .up .item .title{ display: flex; align-items: center; justify-content: space-between}
    footer .up .item .title::after{ content: "+"; display: block; width: 20px; height: 20px; text-align: center;font-size: 18px; margin-top: -5px   }
    footer .up .item.active .title::after{ content: "-"}
    footer{ border-top: none}
    footer .up .item:last-child{ border-bottom: none}

    .lv3{display:none}

    .lv3{ padding: 10px 0;    font-size: 14px;
        color: #888;}
    .lv3 li{ }
    .lv3 a{font-size: 16px;
        color: #000; line-height: 1.75}
    .mxw-mob-nav .menus > ul>.active>a,.mxw-mob-nav .menus .tms2 .active>a,.lv3>.active{color: #000;}
    .tms2> li>a.sub:after{
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 16px; height: 16px; background: url("../images/day.png") center no-repeat;
        background-size: 100% auto; border: 0;transition: all 0.3s
    }
    .tms2>li.active1>ul{ display: block}
    .lv3 li>a{ display: block;    padding: 5px 10px 5px 2em;}
    .mxw-mob-nav .menus > ul>.active>a::after, .mxw-mob-nav .menus .tms2 .active>a::after{ transform: rotate(90deg); transition: all 0.3s }

    .tc-brand3{ display: none}
    .d-logo{    margin: 0 auto;
        width: 90%; padding: 25px 0; text-align: center;    border-top: 1px solid #e1e1e1;}

    .cont .desc{ font-size: 14px; margin-top: 15px; line-height: 1.7}
    .dm-ny-contact .itembox .item:nth-child(2){ margin-left: 0}
    .dm-ny-contact .itembox .item:nth-child(1)~.item{ margin-top: 30px}
    .dm-ny-contact .item .icon{ margin-bottom: 10px}
    .mxw-mob-nav .menus-head .mxw-close{ background: none;}
    * {
        -webkit-tap-highlight-color: transparent;
    }

}












