@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
@font-face {
    font-family: mxw_font;
    src: url(font/mxw-font.ttf);
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}
html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
  padding: 20px 0 1rem;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination   a,.mxw-pagination   span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: inline-block;
    margin: 4px;
}
.mxw-pagination   a.current,
.mxw-pagination   a:hover {
    background-color: #a00103;
    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: #032a75;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #00a2ea;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #00a2ea;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
}
.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 {
    outline: none;
    border-width: 0;
    cursor: pointer;
    background: #00a2ea;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;

}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;
    margin-left: 12px;
}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1680px;
    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: 18px;
    height: 18px;
    background-color: #ffffff; opacity: 1;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 18px;
    height: 18px;
    background-image: linear-gradient(0deg,
    #b6980e 0%,
    #ffee77 49%,
    #c2af23 100%),
    linear-gradient(
            #ff6a69,
            #ff6a69);
    background-blend-mode: normal,
    normal;
    box-shadow: 2px 4px 0px 0px
    rgba(0, 0, 0, 0.24);
    border: 0;
}
.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: #00a2ea;
}
.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: 1420px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
}

/* 内页 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) {
    .mxw-box {
        max-width: 86%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#00a2ea;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%;}
}


/* ==================== 通用细节调整 end ==================== */

/* ==================== 头部 start ==================== */
header {
    width: 100%;
    z-index: 99;
}
header .top {
    background: url(../images/img01.jpg) no-repeat center;
    background-size: cover;
}
header .top > .mxw-box {
    height: 128px;
    overflow: visible;
}
header .top .logo {
    width: 315px;
    flex-shrink: 0;
    margin: 0 0 0 0;
    align-self: flex-start;
    position: relative;
    z-index: 3;
}
header .top .left,
header .top .right {
    flex-grow: 1;
    font-family: "mxw_font",'宋体',sans-serif;
    font-weight: bold;
    font-size: 30px;
    line-height: 1.2;
    text-align: left;
    width: 100%;
    align-self: center;
    color: #e0b375;
    background-image: -webkit-linear-gradient(top, #fcf0de, #e0b375);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}
header .top .left {
    text-align: left;
}
header .bottom {
    height: 60px;
    background: url(../images/img52.jpg) no-repeat center;
    background-size: cover;
    border-top: 3px solid #f4dfb4;
}
header .bottom .pc-menu > li {
    min-width: 188px;
}
header .bottom .pc-menu:nth-child(1) {
    margin-right: 3rem;
}
header .bottom .pc-menu:nth-child(2){
    margin-left: 3rem;
}

header .pc-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "mxw_font",'宋体',sans-serif;
}
header .pc-menu > li {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-left: 30px;
    padding-right: 34px;
    border-radius: 100px;
    font-family: inherit;
    margin-right: 25px;
    line-height: 46px;
    height: 46px;
}
header .bottom .pc-menu:nth-child(2)>li{
 
    margin-right: 10px;
}
header .pc-menu > li::before,
header .pc-menu > li::after {
    content: "";
    display: none;
    position: absolute;
    top: 0;
    height: 46px;
}
header .pc-menu > li::before {
    left: 0;
    background-image: url(../images/img50.png);
    width: 60px;    background-size: 100%;  background-position: center;    background-repeat: no-repeat;
}
header .pc-menu > li::after {
    right: 0;
    background-image: url(../images/img51.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 61px;
}
header .pc-menu > li:last-child {
    margin-right: 0;
}
header .pc-menu > li.active,
header .pc-menu > li:hover {
    background: url(../images/img49.png) no-repeat center;
}
header .pc-menu > li.active:before,
header .pc-menu > li:hover:before,
header .pc-menu > li.active:after,
header .pc-menu > li:hover:after {
    display: block;
}
header .pc-menu > li.active > a,
header .pc-menu > li:hover > a {
    color: #02231e;
}

header .pc-menu > li:hover .pc-sub-menu {
    opacity: 1;
    visibility: visible;
}
header .pc-menu > li.active .pc-sub-menu .pc-nav-box,
header .pc-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);
    padding-bottom: 5px;
}
header .pc-menu > li.active .pc-sub-menu .pc-nav-box:before,
header .pc-menu > li:hover .pc-sub-menu .pc-nav-box:before {
    width: 100%;
    visibility: visible;
}
header .pc-menu > li:first-child > a {
    padding-left: 0;
}
header .pc-menu > li > a {
    color: #fce9c8;
    position: relative;
    z-index: 9;
    display: block;
    font-family: inherit;
}
header .pc-menu > li .pc-sub-menu {
    width: 200px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    color: #333;
    padding-top: 4px;
}
header .pc-menu > li .pc-nav-box {
    position: relative;
    background: rgba(0,0,0,.6);
    -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 .pc-menu > li .pc-nav-box::before {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    visibility: hidden;
    left: 0;
    top: 0;
    position: absolute;
    transition: all 0.4s;
}
header .pc-menu > li .pc-nav-box > li {
    line-height: 1.8;
}
header .pc-menu > li .pc-nav-box > li:hover {
    background: rgba(252,201,119,.6);
}
header .pc-menu > li .pc-nav-box > li > a {
    display: block;
    text-align: center;
    padding: 5px 20px;
    font-size: 18px;
    color: #fff;
    font-weight: initial;
}
@media screen and (max-width: 1660px) {
    header .bottom .pc-menu:nth-child(1) {
        margin-right: 200px;
    }
    header .bottom .pc-menu > li {
        min-width: 170px;
    }
    header .pc-menu > li {
        font-size: 20px;
        margin-right: 20px;
    }
    header .pc-menu > li:last-child {
        margin-right: 0;
    }
    header .top .logo {
        margin-left: 30px;
        margin-right: 30px;
    }
    header .top .left,
    header .top .right {
        font-size: 30px;
    }
    header .top > .mxw-box {
        height: 90px;
    }
    header .top .logo {
        width: 170px;
    }
}
@media screen and (max-width: 1450px) {
    header .pc-menu > li {
        padding-left: 20px;
        padding-right: 20px;
        margin-right: 0;
    }
}
@media screen and (max-width: 1330px) {
    header .top > .mxw-box {
        height: 80px;
    }
    header .top .logo {
        width: 140px;
    }
    header .top .left,
    header .top .right {
        font-size: 28px;
    }
    header .pc-menu > li {
        font-size: 18px;
    }
    header .bottom .pc-menu > li {
        min-width: 150px;
        padding-left: 10px;
        padding-right: 10px;
    }
    header .bottom .pc-menu:nth-child(1) {
        margin-right: 150px;
    }
}
/* ==================== 头部 end ==================== */


/* ==================== 页面具体样式 start ==================== */
body{ font-size: 18px;}

.t-maol .text{
    font-size: 20px;
    letter-spacing: 0px;
    color: #fce9c8;
    box-shadow: -3px 2px 7px 0px
    rgba(121, 15, 19, 0.35);
    font-family: "mxw_font",'宋体',sans-serif;
}

.ssbox .text{
    font-size: 20px;
    letter-spacing: 0px;
    color: #fce9c8;
    box-shadow: -3px 2px 7px 0px
    rgba(121, 15, 19, 0.35);
    font-family: "mxw_font",'宋体',sans-serif;
}

header .top .right{ display: flex; align-items: center; justify-content: flex-end}
header .top .right  .item{ margin: 0 0.25rem;position: relative;}
header .top .right  .item:hover .xf-boxz{    display: block;}
header .top .right  .item .xf-boxz{z-index: 999;    top: 40px;}
header .top .right  .item .xf-boxz p{    -webkit-text-fill-color: initial;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0;
    background: #fff;
    color: #333;
    padding: 5px 0 10px;}

.page-position{ max-width: 1645px; width: 85.7%; margin: 0 auto;
    padding-top: 0.433rem; font-size: 0.267rem;}

.pro-page{ background: url("../images/product-bg.jpg") top center; background-size: cover;}
.cate-list{ padding: 0.667rem 0 1.167rem; }
.cate-list .cate-item{max-width: 1645px; width: 85.7%; margin: 0 auto 0.5rem;
 display: flex; align-items: stretch; justify-content: space-between;
}
.mxw-xl{ text-align: center; padding: 0.467rem 0 0.333rem;border-bottom: 1px solid #e8e8e8}
.mxw-xl p{ margin-top: 0.3rem; color: #333; font-size: 0.433rem; }
.cate-list .cate-item .right{ width: 50%;}
.cate-list .cate-item .left{ width: 50%; align-content: center; display: flex; justify-content: center; flex-wrap: wrap; background: url("../images/text-bg.png") center no-repeat; }
.cate-list .cate-item .st{ font-size: 0.5rem; color: #000; text-align: center; width: 100%;}
.cate-list .cate-item .st2{ font-size: 0.3rem;color: #333; margin: 0.3rem auto 0.55rem; width: 100%; text-align: center}
.cate-list .cate-item .desc{ text-align: center; width: 100%; font-size: 0.3rem; color: #444; line-height: 1.8;}
.cate-list .cate-item .c-more-btn{ font-size: 0.3rem; color: #333; padding: 0.333rem 0.25rem; margin: 0 auto; border: 1px solid #000000;     width: 50px;
    display: block;}
.cate-list .cate-item .c-more{ width: 100%; margin-top: 1.167rem; }
.cate-list .cate-item .left::before{ width: 1px; height: 1.567rem; content: ""; background: #000;
margin: 0 auto  0.967rem; display: block}
.cate-list .cate-bg:nth-child(2n) .cate-item .left{ order: 1;}
.pro-page.tj{ padding-bottom: 0 }

.pro-page.tj::before{
    width: 7.167rem;
    height: 4.77rem;
    background:url("../images/meihua.png") center;
    background-size: cover;
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    right: 0; display: none;
}

.pro-nbody .top-img{ margin-top: 0.667rem}
.pro-nbody .bg-cen{ padding: 1rem 0 1.917rem; background: url("../images/bg-cen.jpg") no-repeat; background-size: cover;}
.pro-nbody .cen-list{ display: flex; align-items: flex-start; justify-content: space-between; margin-top: 0.467rem}
.pro-nbody .cen-list .item{ width: 23.8%; text-align: center;}
.pro-nbody .cen-list .item .st{ font-size: 0.333rem; color: #a00103; margin-top: 0.333rem; font-weight: bold;}
.pro-nbody .cen-list .item .desc{ font-size: 0.3rem; color: #222; margin-top: 10px}


.n-cate{ margin-top: 0.333rem; display: flex; align-items: stretch; justify-content:center; white-space: nowrap; }
.n-cate .item{ padding: 0.167rem 0.583rem; font-size: 0.333rem; text-align: center; margin: 0 15px}
.n-cate .item.active{ color: #fff; background: #a00205}
.n-cate .item:hover{ color: #a00205}
.n-cate .item.active:hover{color: #fff}


.news-nbody{
    background: url("../images/news-con-bg.png") center bottom no-repeat ;
    background-position-y: 85%;
}
.news-nlist{ padding-bottom: 30px; flex-grow: 1; min-width: 0;}
.news-nlist .item{ display: flex; align-items: center; justify-content: space-between; margin-top: 0.667rem;}
.news-nlist .item .mxw-image{ padding-right: 0.867rem; margin-right: 1rem; flex-shrink: 0;position: relative;}
.news-nlist .item .mxw-image .date{ position: absolute; right: 0; top: 0; display: flex; width: 1.433rem; height: 1.433rem; background: #b10304; align-items: center; justify-content: center; align-content: center; flex-wrap: wrap; color: #fff;font-size: 0.417rem;}
.news-nlist .item .mxw-image .date p{ width: 100%; font-size: 0.267rem; text-align: center;}
.news-nlist .item .right{ flex-grow: 1; min-width: 0;}
.news-nlist .item .right .st{ font-size: 0.333rem; color: #000; font-weight: bold; margin-bottom: 0.467rem;}
.news-nlist .item .right .desc{ font-size: 0.267rem; color: #666666; line-height: 1.8}

.news-nbody-box{ display: flex; align-items: flex-start; justify-content: space-between; }
.r-gz{ width: 5.867rem; flex-shrink: 0;  margin-left: 0.667rem; margin-top: 0.5rem; background: #fff; padding: 0.667rem; border: 1px solid #d5d5d5; position: sticky;    top: 0;}
.r-gz .tt{ font-size: 0.333rem; padding-bottom: 0.333rem; border-bottom: 1px solid #f3f3f3;}
.r-gz .ewm{ margin: 45px auto 35px; text-align: center;}
.r-gz .tt2{ font-size: 0.3rem; text-align: center; color: #000;}
.r-gz .desc{ font-size: 0.233rem; color: #555555; line-height: 1.6; margin-top: 0.333rem;}

.ppyl{ display: flex; align-items: stretch; justify-content: space-between;  margin-top: 0.667rem; max-width: 1645px; width: 87.5%; padding-bottom: 8px;}
.ppyl .right{ flex-shrink: 0; width:50%; margin-left: 1.167rem; }
.ppyl .left{ flex-grow: 1; min-width: 0; background: url("../images/pp-bg1.png") center bottom no-repeat; display: flex; flex-wrap: wrap; align-content: center;}
.ppyl .left .st1{ font-size: 0.5rem; color: #b10304; font-weight: bold; width: 100%;}
.ppyl .left .st2{ font-size: 0.433rem; font-weight:bold; margin: 0.333rem auto 0.633rem 0; width: 100%;}
.ppyl .left .desc{ font-size: 0.3rem; color: #444; line-height: 1.8; width: 100%;}

.pp2-bg{ background: url("../images/pp2-bg.png") center no-repeat; background-size: cover; }
.pp2-bg .pp2-box{display: flex; align-items: stretch; justify-content: space-between;   max-width: 1645px; width: 87.5%;}
.pp2-bg .pp2-box .left{ width: 7.2rem; flex-shrink: 0;}
.pp2-bg .pp2-box .right{ background-color: #f9f9f9;
    box-shadow: -3px 2px 7px 0px
    rgba(200, 186, 163, 0.35);
    padding: 0.5rem 1.083rem; display: flex; align-content: center; flex-wrap: wrap;}
.pp2-bg .pp2-box .right .st1{ font-size: 0.5rem; color: #b10304; font-weight: bold; width: 100%; text-align: right;}
.pp2-bg .pp2-box .right .st2{ font-size: 0.433rem; font-weight:bold; margin: 0.333rem auto 0.633rem 0; width: 100%; text-align: right;}
.pp2-bg .pp2-box .right .desc{ font-size: 0.3rem; color: #444; line-height: 1.8; width: 100%;}
.pp2-bg .pp2-box .right .desc span{ color: #790e12;}


.pp3-bg{ padding: 1.75rem 0 1.3rem;}
.pp3-bg .pp3-box{  max-width: 1645px; width: 87.5%;}
.pp3-bg .pp3-box  .st1{ font-size: 0.5rem; color: #b10304; font-weight: bold; width: 100%; text-align: center}
.pp3-bg .pp3-box  .st2{ font-size: 0.433rem; font-weight:bold; margin: 0.333rem auto 0.633rem 0; width: 100%; text-align: center;}
.pp3-bg .pp3-box  .desc{ font-size: 0.3rem; color: #444; line-height: 1.8; width: 100%;}
.video-box{ padding-left: 0.667rem; padding-bottom: 0.75rem; margin: 0.75rem auto 0; max-width: 1390px; width: 85%; background: url("../images/video-bg.png") left bottom no-repeat;  background-size: 90%;}

.ln-box1{ max-width: 1645px; width: 87.5%;
    padding: 0.667rem 0 1rem; display: flex; align-items: stretch; justify-content: space-between;}
.ln-box1 .right{ width: 50%; flex-shrink: 0;}
.ln-box1 .left{ display: flex; align-content: center; flex-wrap: wrap; padding-right: 1.2rem;}
.ln-box1 .left .st1{ font-size: 0.5rem; color: #b10304; font-weight: bold; width: 100%; }
.ln-box1 .left .st2{ font-size: 0.433rem; font-weight:bold; margin: 0.333rem auto 0.633rem 0; width: 100%; }
.ln-box1 .left .desc{ font-size: 0.3rem; color: #444; line-height: 1.8; width: 100%;}

.shiyi{ background: url("../images/shiyi-bg.jpg") center no-repeat;}
.shiyi .mxw-box{ max-width: 1645px; width: 87.5%; }
.shiyi .box1{ display: flex; align-items: flex-start; justify-content: space-between; margin: 0.75rem auto 2rem;}
.shiyi .box1 .item{ width: 24.6%}
.shiyi .box2{ display: flex; align-items: flex-start; justify-content: space-between; text-align: center; max-width: 1320px;padding-bottom: 1rem;}
.shiyi .box2 .item{ width: 28%;}
.shiyi .box2 .item .st{ margin-top: 0.3rem; color: #323232; font-size: 0.367rem;}
.shiyi .box2 .item .desc{margin-top:0.7rem; color: #323232; font-size: 0.3rem; line-height: 1.6; text-align: left}

.pro-page.contact{ background: url("../images/contact-bg.jpg") center no-repeat; background-size: cover;}

.lx-box1{max-width: 1645px; width: 87.5%;  display: flex; align-items: stretch; justify-content: space-between;
    margin-top: 0.667rem; margin-bottom: 0.917rem;}
.lx-box1 .item{ background: url("../images/lx-box1-bg.jpg") center no-repeat; background-size: cover; width: 31%; display: flex; align-items: center; justify-content: center; padding: 0.533rem 0.25rem; flex-wrap: wrap;}
.lx-box1 .item p{ color: #fff; width: 100%; margin-top: 0.25rem; text-align: center;}

.msg-tt{ font-size: 0.433rem;color: #333; text-align: center;}
.cont_msg{max-width: 1645px; width: 87.5%;
    margin-top: 0.5rem;}

.cont_msg .join_f {
    background: #ececec;
    padding: 0.6667rem 0.75rem;
}
.cont_msg .j_inp input {
    background: #fff;
}
.cont_msg .j_inp input,
.cont_msg .join_f select {
    width: 48%;
    height: 0.8rem;
    border: 0.0167rem solid #e4e6e8;
    padding-left: 0.3333rem;
    font-size: 0.2667rem;
}
.cont_msg .j_inp input:nth-child(even) {
    float: right;
}
.cont_msg .j_inp {
    margin-bottom: 0.3333rem;
}
.cont_msg .join_f textarea {
    width: 100%;
    height: 2.0833rem;
    border: 0.0167rem solid #e4e6e8;
    padding-left: 0.3333rem;
    padding-top: 0.25rem;
    resize: none;
}
.cont_msg .b_cent {
    text-align: center;
    margin-top: 0.5rem;
}
.cont_msg .b_cent button {
    width: 3rem;
    height: 0.75rem;
    border: none;
    background: #a00103;
    color: white;
    font-size: 0.3rem;
    cursor: pointer;
}

.map-bg{ padding-top: 1rem;}
.map-bg .map{ margin-top: 0.5rem;}
.map-bg .map img{ max-width: initial; width: initial}

footer{ background: url("../images/footer-bg.jpg") center no-repeat; padding-top: 0.583rem; background-size: cover;}
footer>.mxw-box{ max-width: 1640px;width: 85.5%;}
footer .d-logo{ text-align: center; width: 100%;}
footer .d-ud{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 0.833rem;}
footer .d-ud .left,footer .d-ud .right{ display: flex; align-items: flex-start; justify-content: space-between}
footer .d-ud .d-box1{ width: 6.2rem;flex-shrink: 0; margin-right: 1rem}
footer .d-ud .d-box1,footer .d-ud .d-box2{ color: #fff; line-height: 3; font-size: 0.233rem;}
footer .d-ud .d-box2{  display: flex; align-items: stretch; justify-content: space-between; flex-grow: 1; min-width: 0}
footer .d-ud .d-box2 ul:first-child{ margin-right: 1.583rem}
footer .d-ud .d-box2 ul{}
footer .d-ud .d-box3{  display: flex; margin-top: 0;flex-grow: 1; min-width: 0}
footer .d-ud .d-box3 .item{ margin: 0 0.25rem;position: relative;}
footer .d-ud .d-box3 .item .icon{    background: #fff;}
footer .d-ud .d-box4{ width: 3.5rem; flex-shrink: 0; font-size: 0.233rem; color: #fff; margin-left: 0.667rem}
footer .d-ud .d-box4 a{ color: #fff;}
.xf-boxz{
    position: absolute;
    width: 180px;
    height: auto;
    background: #fff;
    padding: 0px;
    bottom: 35px;
    text-align: center;
    padding-bottom: 10px;
    border-radius: 5px;
    left: -85px;
display: none;
}
footer .d-ud .d-box3 .item:hover .xf-boxz{    display: block;}
footer .d-ud .d-box3 .item p{    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-top: 10px;}
.copy{ color: #fff; font-size: 14px; padding: 15px 0; border-top: 1px solid #9a2626;
    margin-top: 0.583rem}
.copy .mxw-box{color: #fff; font-size: 12px; text-align: center;}
.copy .mxw-box a{ font-size: 12px; color: #fff; line-height: 1.8}

.nxw-adv{ background: url("../images/mxw-adv-bg.jpg") center no-repeat; padding: 1.083rem 0; position: relative; background-size: cover;}
.nxw-adv::before{ width: 7.167rem; height: 4.75rem; content: ""; background: url("../images/meihua2.png") center no-repeat; background-size: cover; display: block; position: absolute; left: 0; top: 0; z-index: 0; display: none}
.nxw-adv::after{ width: 5.167rem; height: 7.333rem; content: ""; background: url("../images/fenghuang.png") center no-repeat; background-size: cover; display: block; position: absolute; right: 0.3rem; bottom: -3.333rem}
.nxw-adv .mxw-box{ display: flex; align-items: stretch; justify-content: center;}
.nxw-adv .mxw-box .item{ padding: 1.167rem 0.8rem 0.583rem; text-align: center; border-right: 1px solid #cfcfcf}
.nxw-adv .mxw-box .item:last-child{ border-right: 0;}
.nxw-adv .mxw-box .item .st{ font-size: 0.4rem; margin-top: 0.667rem;color: #000;}
.nxw-adv .mxw-box .item .desc{ font-size: 0.267rem; color: #868686; line-height: 1.8; margin-top: 0.4rem}
.nxw-adv .mxw-box .item .icon{    transition: all 0.3s;}
.nxw-adv .mxw-box .item:hover .icon{    transform: rotate3d(0, 1, 0, 180deg);}

.mxw-pro{ background: url("../images/mxw-pro-bg.jpg") no-repeat; background-size: cover; padding: 1.25rem 0 1.583rem; }
.mxw-pro .mxw-title{ color: #fff; text-align: center;}
.mxw-pro .mxw-title .cn{ font-size: 0.767rem;font-family: 宋体,"Microsoft YaHei",sans-serif;}
.mxw-pro .mxw-title .en{ font-size: 0.333rem;font-family: 宋体,"Microsoft YaHei",sans-serif; letter-spacing: 2px}

.pro-swiper{ margin-top: 0.7rem; overflow: hidden}
.pro-swiper .swiper-slide{ background: #fff; padding: 0 ; border-radius: 0.25rem; overflow: hidden; text-align: center;position: relative;}
.pro-swiper .swiper-slide p{ font-size: 0.267rem; margin-top: 0.25rem; padding: 0 0.333rem;    bottom: 0;    position: absolute;
    width: 100%;
    padding-bottom: 0.5rem;}

.mxw-pro2{ margin-top: 0.967rem; padding-top: 1.083rem; background: url("../images/pro2-bg.jpg") no-repeat; padding-bottom: 1.917rem; background-size: cover;}
.mxw-pro2 .mxw-box{ width: 86%; max-width: 1640px;}
.pro2-swiper .swiper-slide{ background: #fff; display: flex; align-items: stretch; justify-content: space-between;}
.pro2-swiper .swiper-slide .right{ width: 48.4%; flex-shrink: 0; text-align: right}
.pro2-swiper .swiper-slide .left{ flex-grow: 1; min-width: 0; padding: 0 2.8rem 0 1.917rem; display: flex; flex-wrap: wrap;align-content: center}
.pro2-swiper .swiper-slide .left>div{ width: 100%;}
.pro2-swiper .swiper-slide .left .icon img { width: 1.3rem;}
.pro2-swiper .swiper-slide .left .st1{ font-size: 0.433rem; color: #a30000; font-weight: bold; margin: 0.633rem auto 1.083rem 0}
.pro2-swiper .swiper-slide .left .st2{ font-size: 0.35rem; color: #000;font-family: 宋体,"Microsoft YaHei",sans-serif;}
.pro2-swiper .swiper-slide .left .desc{ margin-top: 0.9rem; color: #000; font-size: 0.267rem; line-height: 2;}
.pro2-swiper .swiper-slide .left .more1{ margin-top: 1.333rem;}
.more1 a{ 	width: 2.967rem;
    height: 0.9rem;
    background-image: linear-gradient(0deg,
    #790e12 0%,
    #8c100e 45%,
    #bd2121 100%),
    linear-gradient(
            #a30000,
            #a30000);
    background-blend-mode: normal,
    normal;
    border-radius: 4px;
    font-size: 0.333rem; display: flex; justify-content: center; align-items: center; color: #fff;}

.mxw-why{ padding: 1.333rem 0; background: url("../images/why-bg.jpg") center no-repeat; background-size: cover; margin-top: 0.967rem;   }
.mxw-why .mxw-box{ width: 80%; }
.why-swiper{overflow: hidden;    position: relative;    padding-bottom: 0.3rem;}
.why-swiper .swiper-slide{ color: #fff; display: flex; align-items: stretch; justify-content: space-between; }
.why-swiper .swiper-slide .left{ padding-left: 1.517rem; display: flex; align-content: center; flex-wrap: wrap;}
.why-swiper .swiper-slide .right{ width: 43%; text-align: right; flex-shrink: 0;}
.why-swiper .swiper-slide .right img{    max-height: 395px;
}

.why-swiper .swiper-slide .left>div{ width: 100%;}
.why-swiper .swiper-slide .left .st1{ font-size: 0.433rem; font-weight: bold; }
.why-swiper .swiper-slide .left .st2{ font-size: 0.75rem;  margin: 0.75rem auto 0.583rem 0; font-family: 宋体,"Microsoft YaHei",sans-serif;}
.why-swiper .swiper-slide .left .desc{ font-size: 0.333rem; line-height: 2.5;font-family: "Microsoft YaHei",sans-serif;}
.why-swiper .swiper-pagination{    margin-left: 1.5rem;
display: flex;
    position: initial;
   }
.why-swiper .swiper-pagination-bullet{    width: 0.517rem;
	height: 0.567rem;
    background-color: #ffffff;
    border-radius: 0.067rem;	font-size: 0.333rem;	color: #630000;    display: flex;    opacity: 1;
    align-items: center;
    justify-content: center;}
.why-swiper .swiper-pagination-bullet-active{	background-image: linear-gradient(0deg, 
		#790e12 0%, 
		#8c100e 45%, 
		#bd2121 100%), 
	linear-gradient(
		#a30000, 
		#a30000);color: #fff}

.mxw-about{  padding: 1.417rem 0 1.083rem; background: url("../images/ab-bg.jpg") center no-repeat; background-size: cover;    }
.mxw-about .mxw-box{ width: 86%; max-width: 1650px;}


.mxw-video{ padding: 2.083rem 0 1.333rem; margin-top: 0.967rem; background: url("../images/vdi-bg.jpg") center no-repeat; background-size: cover; }
.mxw-video .mxw-box .vdo-box{ margin: 0 0.083rem; padding: 0 0 0.767rem 0.717rem; background: url("../images/vdo-bg.png") left bottom no-repeat; background-size: 90%;}

.mxw-news{ padding: 1.333rem 0; background: url("../images/news-bg.jpg") center no-repeat; background-size: cover;}
.mxw-news .mxw-box{width: 86%; max-width: 1640px;}
.mxw-news .mxw-title { text-align: center;}
.mxw-news .mxw-title .cn{ font-size: 0.767rem; color: #000; font-family: 宋体,"Microsoft YaHei",sans-serif; }
.mxw-news .mxw-title .en{ font-size: 0.333rem; color: #9e4b47; letter-spacing: 2px; text-transform: uppercase;}
.mews-swiper{ overflow: hidden; margin-top: 1.167rem;}
.mews-swiper .swiper-slide .st{ font-size: 0.3rem; font-weight: bold; margin: 0.5rem auto 0.3rem 0;}
.mews-swiper .swiper-slide .desc{ font-size: 0.25rem; color: #333 height:1rem; }

.mews-swiper .swiper-slide:hover .st{color: #c4342b;}

.more1 a:hover{ color:#630000;     background: #fff;}

.mxw-box .img-box .itembox1{ display: flex; align-items: stretch; justify-content: space-between;}
.mxw-box .img-box .item1{ width: 25.5%;  overflow: hidden; transition: all 2s; position: relative;     justify-content: center;display: flex;}
.mxw-box .img-box .item1:last-child{ margin-right: 0;}
.mxw-box .img-box .item1.active{ flex-grow: 1; min-width: 0;}
.mxw-box .img-box .item1>img{max-width: initial;height: 12.717rem}
.mxw-box .img-box .item1 .fx{    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    justify-content: center;
    display: flex;    align-items: center;}

.mxw-box .img-box .item1.active .fx{display:none}

.mxw-link{    margin: 15px auto 30px;}

.social-share .social-share-icon{    border-color: #fff     border-color: #fff !important;}

.jiange{        background: url(../images/jiange2.jpg) center repeat-x;     height: 0.8rem;}

.mxw-video,.mxw-pro2,.mxw-why{    margin-top: 0;}








/* ==================== 页面具体样式 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-news-desc {
    padding: 44px 64px;

}
.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;
    font-size: 15px;
}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {
        font-size: 17px;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */

.job-itembox{ padding-bottom: 1.133rem;}

.job-itembox .job-item {
    margin-bottom: 0.6667rem;
}
.job-itembox .job-item:last-child {
    margin-bottom: 0;
}
.job-itembox .job-item .head {
    cursor: pointer;
    background-image: linear-gradient(90deg, #8d0505 9%, #840102 100%);
    height: 1.05rem;
    line-height: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0.5rem;
    padding-right: 0.8333rem;
}
.job-itembox .job-item .head.active:after {
    transform: rotateX(-180deg);
}
.job-itembox .job-item .head:after {
    content: "";
    display: block;
    background: url(../images/job-btn.png) no-repeat center;
    background-size: 100%;
    width: 0.5rem;
    height: 0.5rem;
    transition: all 0.4s;
}
.job-itembox .job-item .head .text {
    font-size: 0.3333rem;
    color: #fff;
    font-weight: bold;
}
.job-itembox .job-item .body {
    display: none;
    border: 1px solid #d7d7d7;
}
.job-itembox .job-item .itembox {
    display: flex;
    align-items: flex-start;
    border-top: 0;
    padding: 0.6667rem 0.5833rem;
    background: #fff;
}
.job-itembox .job-item .item {
    position: relative;
}
.job-itembox .job-item .item:after {
    content: "";
    display: block;
    width: 1px;
    height: 3.1667rem;
    background: #d5d5d5;
    position: absolute;
    right: 0;
    top: 0;
}
.job-itembox .job-item .item:last-child:after {
    display: none;
}
.job-itembox .job-item .item p {
    font-size: 0.3rem;
}
.job-itembox .job-item .item.item1 {
    width: 4.3333rem;
    flex-shrink: 0;
}
.job-itembox .job-item .item.item1 .text {
    font-size: 0.3333rem;
    line-height: 1.2;
    margin-bottom: 0.6667rem;
}
.job-itembox .job-item .item.item1 .text02 {
    margin-bottom: 0.8333rem;
}
.job-itembox .job-item .item.item2 {
    width: 9.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.job-itembox .job-item .item.item3 {
    flex-grow: 1;
    min-width: 0;
    padding-left: 1rem;
}
.job-itembox .job-item .item .item-head {
    font-size: 0.3333rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.job-itembox .job-item .desc {
    font-size: 0.3333rem;
    color: #333;
    line-height: 2;
}
.job-itembox .job-item .mxw-btn {
    display: block;
    font-size: 0.3rem;
    width: 2.7333rem;
    text-align: center;
    height: 0.7333rem;
    line-height: 0.7333rem;
    background: #fff;
    color: #8d0505;
    border: solid 0.0167rem #8d0505;
}
@media screen and (max-width: 1200px) {
    .job-itembox .job-item {
        margin-bottom: 15px;
    }
    .job-itembox .job-item .head {
        padding: 0 15px;
        height: 40px;
        line-height: 40px;
    }
    .job-itembox .job-item .head .text {
        font-size: 15px;
    }
    .job-itembox .job-item .head:after {
        width: 15px;
        height: 15px;
    }
    .job-itembox .job-item .itembox {
        flex-wrap: wrap;
        padding: 20px;
    }
    .job-itembox .job-item .item {
        width: 100%!important;
    }
    .job-itembox .job-item .item::after {
        display: none;
    }
    .job-itembox .job-item .item.item1 .text {
        margin-bottom: 15px;
        font-size: 16px;
    }
    .job-itembox .job-item .item.item2 {
        padding: 0;
        margin-bottom: 30px;
    }
    .job-itembox .job-item .item.item3 {
        padding: 0;
    }
    .job-itembox .job-item .item .item-head {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .job-itembox .job-item .item p {
        font-size: 14px;
    }
    .job-itembox .job-item .mxw-btn {
        width: 90%;
        font-size: 14px;
        height: auto;
        line-height: inherit;
        padding: 8px 20px;
        margin: 0 auto 20px;
    }
    .ny-job .section03 {
        padding-bottom: 0;
    }
}





/* ==================== 头部样式 start ==================== */
.toobest-header .head {
  font-size: 0;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  display: flex;
  align-items: center;
  height: 60px;
  justify-content: space-between;
  max-width: 750px;
  transform: translateX(-50%);
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  background: #7f0f13;
  z-index: 99;
}
.toobest-header .logo {
  display: block;
  flex-shrink: 0;
}
.toobest-header .logo img {
  height: 40px;
}
.toobest-header .menu-btn {
  flex-shrink: 0;
  height: 100%;
  width: 0.5rem;
  padding-right: 0.2rem;
  background: url(../images/menu.png) no-repeat center left;
  background-size: 100%;
  cursor: pointer;
  outline: none;
}
.toobest-header .menus-box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 50%;
  max-width: 7.5rem;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transform: translateX(50%);
}
.toobest-header .menus-box.active {
  visibility: visible;
  opacity: 1;
}
.toobest-header .menus-box.active .menus {
  transform: translateX(0);
}
.toobest-header .menus {
  width: 60%;
  height: 100%;
  margin-right: 0;
  margin-left: auto;
  background: #fff;
  transform: translateX(100%);
  transition: all 0.5s;
}
.toobest-header .menus-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8F8F8;
  border-bottom: 0.01rem solid #eee;
  font-size: 0.28rem;
  font-weight: bold;
  line-height: 0.9rem;
  height: 0.9rem;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.toobest-header .menus-head .text {
  color: #333;
  line-height: 1.2;
}
.toobest-header .menus-head .close {
  flex-shrink: 0;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../images/close.png) no-repeat center;
  background-size: 100%;
  cursor: pointer;
  outline: none;
}
.toobest-header .menus-list > .menus-item.active > span {
  background: #eee;
}
.toobest-header .menus-list > .menus-item.active .menus-sub-list {
  display: block;
}
.toobest-header .menus-list > .menus-item > span,
.toobest-header .menus-list > .menus-item > a {
  display: block;
  width: 100%;
  padding: 0.25rem 0.3rem;
  font-size: 0.24rem;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toobest-header .menus-list > .menus-item > span {
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toobest-header .menus-list > .menus-item > span:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-top: 0.06rem solid #555;
  border-left: 0.05rem solid transparent;
  border-right: 0.05rem solid transparent;
  border-bottom: 0;
  margin-left: 0.05rem;
}
.toobest-header .menus-sub-list {
  display: none;
  padding: 0.15rem 0.4rem;
}
.toobest-header .menus-sub-list > .menus-item > a {
  font-size: 0.24rem;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 0.6rem;
  height: 0.6rem;
}
/* ==================== 头部样式 end ==================== */

.mxw-about .info{padding: 0 1.9rem;}
.mxw-about .info .desc{ font-size:0.333rem; margin: 0.97rem auto 1.1rem; color:#fff; line-height:1.8;text-indent: 2em;}
.mxw-about .info .st2{font-size:0.75rem;color:#fff;font-family: 宋体,"Microsoft YaHei",sans-serif; margin:0.75rem auto 0}
.mxw-about .info .st1{ font-size: 0.433rem; color: #fff; font-weight: bold;  margin-top: 1rem;}





/* ==================== 产品详情页 start ==================== */
.ny-product-desc {
  overflow: hidden;
}
.ny-product-desc .product-image {
  width: 44%;
  margin-right: 3%;
  flex-shrink: 0;
  position: relative;
  z-index: 9;
}
.ny-product-desc .product-image img {
  width: 100%;
}
.ny-product-desc .product-desc {
  width: 53%;
}
.ny-product-desc .product-desc .title {
  font-size: 0.4667rem;
  padding-bottom: 0.3333rem;
  border-bottom: 0.0167rem solid #ddd;
  margin-bottom: 0.3333rem;
  font-weight: bold;
  color: #172a88;
}
.ny-product-desc .product-desc .desc {
  word-break: break-all;
  font-size: 0.3rem;
  color: #666;
  line-height: 1.8;
}
.ny-product-desc .bottom {
  margin-top: 0.6667rem;
  font-size: 0.2667rem;
  line-height: 1.8;
  text-align: justify;
}
.easyzoom-flyout img {
  max-width: inherit!important;
  width: auto!important;
}
@media screen and (max-width: 1200px) {
  .ny-product-desc {
    padding: 0;
  }
  .ny-product-desc .product-image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    pointer-events: none;
  }
  .ny-product-desc .product-desc {
    width: 100%;
  }
  .ny-product-desc .product-desc .title {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .ny-product-desc .top {
    flex-flow: column;
  }
  .ny-product-desc .product-desc .desc {
    font-size: 14px;
  }
  .ny-product-desc .bottom {
    margin-top: 15px;
  }
}
/* ==================== 产品详情页 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ny-product-desc .big-swiper {
  border: 1px solid #ddd;
}
.ny-product-desc .ny-product-image {
  width: 38%;
  flex-shrink: 0;
  margin-right: 5%;
}



.ny-product-desc .right {
  width: 65%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.ny-product-desc .info {
  flex-grow: 1;
  width: 100%;
}
.ny-product-desc .info .head {
  padding-bottom: 0.1667rem;
  width: 100%;
  border-bottom: 0.0167rem solid #dcdcdc;
  margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
  font-size: 0.5667rem;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  text-align: justify;
}
.ny-product-desc .info .head .text2 {
  font-size: 0.2667rem;
  color: #606060;
  line-height: 1.8;
  text-align: justify;
}
.ny-product-desc .info .detail {
  font-size: 0.2667rem;
  line-height: 1.8;
  text-align: justify;
}
.ny-product-desc .info .mxw-more {
  margin-top: 1rem;
  border-radius: 1.6667rem;
  margin-left: 0;
}
.ny-product-desc .small-image {
  width: 100%;
  max-width: 10rem;
  margin-top: 0.5rem;
  position: relative;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
  max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
  cursor: pointer;
  border: 3px solid #eee;
  border-radius: 0.0833rem;
  height:107px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
  border-color: #172a88;
}
.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 #c10d1a;
  font-size: 0.3rem;
  line-height: 0.8333rem;
  height: 0.8333rem;
  color: #c10d1a;
}
.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 ==================== */

.mxw-box .img-box{    position: relative;	}

.mxw-about .covered {
    position: absolute;
    height: 100%;
    background: center no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;    font-size: 0;
}

.mxw-about .changeable {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: url(../images/about.png);
  border: none !important;    font-size: 0;
background-size: cover;
}

.mxw-about .changeable_div {

  background: center no-repeat;
  background-size: cover;
  position: relative;

}







.mxw-about .handle {
  position: absolute;
  width: 47px;
  height: 47px;    font-size: 0;
  margin-left: -24px;
  margin-top: -24px;
  text-align: center;
  z-index: 3;
  color: #fdfaf8;
    
}







.mproduct .slick-contanier{
    position: relative;
    display: none;
}
.mproduct .slick-contanier .slick-dots{
    text-align: center;
    position: absolute;
    bottom: 10px;
        bottom: -18px;
    left: 0;
    right: 0;
}

.mproduct .slick-contanier .slick-dots li{
    display: inline-block;
    margin: 0 5px;
   
}

.mproduct .slick-contanier .slick-dots li button{
    outline: none;
    border:none;
    text-indent: -100000px;
     border-radius: 50%;
    width: 20px;
    height: 20px;
    background: #e8b96f;
}

.mproduct .slick-contanier .slick-dots li.slick-active button{
    background: #c6c6c6; 
}

.mproduct .slick-contanier img{
    width: 100%;
}

.pv-cover>div{    opacity: 1 !important;
    background: none !important;}





@media(max-width:996px){
    .product{
        display:none;
    }
    .mproduct .slick-contanier{
        display:block;
        margin-top: 0.35rem;
    }
}


.pro2-swiper{ overflow:hidden}
.mxw-banner{   }



@media screen and (max-width: 1860px) {
.nxw-adv::before,.nxw-adv::after{ zoom:0.85}
	.nxw-adv .mxw-box .item .icon img{ height:0.95rem}

}


@media screen and (max-width: 1780px) {
.nxw-adv::before,.nxw-adv::after{ zoom:0.6}


}
@media screen and (max-width: 1680px) {
.nxw-adv::before,.nxw-adv::after{ zoom:0.5}


}




/* ==================== 通用工具栏 start ==================== */
.mxw-tool {
  position: fixed;
  z-index: 99;
}
.mxw-tool .icon {
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .mxw-tool {
right:0;
    top: 60%;
    transform: translateY(-50%);
  }
  .mxw-tool .tool-item {
    margin-bottom: 5px;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-color: #eb6100;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 12px;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.4s;
  }
  .mxw-tool .tool-item:hover {
    box-shadow: 0 0 10px -8px #eb6100;
  }
  .mxw-tool .tool-item:hover .tool-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 9;
  }
  .mxw-tool .tool-item:hover .tool-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 9;
  }
  .mxw-tool .tool-item .icon {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 auto 5px;
  }
  .mxw-tool .tool-item .text {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
  }
  .mxw-tool .tool-content {
    position: absolute;
    top: 0;
    height: 100%;
    background: #fff;
    width: 3.3333rem;
    right: 1.4333rem;
    color: #333;
    font-size: 0.2333rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0.3333rem;
    font-size: 0.2667rem;
    line-height: 1.6;
    border: 0.0167rem solid #ddd;
    border-radius: 0.0833rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 751px) {
  .mxw-tool {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    font-size: 14px;
  }
  .mxw-tool .icon {
    text-align: center;
  }
  .mxw-tool .tool-item {
    width: 18%;
    height: 50px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .mxw-tool .tool-item:nth-child(5) ~ .tool-item {
    display: none;
  }
  .mxw-tool .tool-item .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
   margin: 0 auto 5px;
  }
  .mxw-tool .tool-item .text {
    font-size: 13px;
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
    text-indent: 1px;
  }
}
/* ==================== 通用工具栏 end ==================== */

.video_m {
    position: relative;
    overflow: hidden;    cursor: pointer;
}
.video_m .bf {
    position: absolute;
    top: 50%;
    text-align: center;
    left: 0;
    right: 0;
    margin: -36px auto 0;
}
.xf_video {
    width: 100%;
    height: 100%;
    position:absolute;
    top: 0;
   display:none;
    z-index: 9;    max-width: initial;
}
.closev {
    position: absolute;
    background-color: #000;
    z-index: 99999;
    cursor: pointer;
    top: 35px;
    right: 40px;
}
.xf_video .video_box {
    position: absolute;
    text-align: center;
    width: 100%;
height:100%;
}
.video_box iframe,.video_box video{    width: calc(100% + 1px);
height:100%;}

#toolbar li.ewm:hover .ewm-box{    background: #fff;
    font-size: 14px !important;
    text-align: center !important;}
.join-bg{ padding-bottom: 0.667rem}

.join .box1 .mxw-box2{ background: url("/skin/images/zs-bg1.png") center no-repeat; background-size: cover; width: 88%; max-width: 1645px; margin: 0 auto; padding: 0.933rem 1.25rem 1.25rem;}
.join  .j-title{ font-size: 0.4rem; color: #c02125; text-align: center; padding: 0.333rem 0; background: url("/skin/images/tt-bg.png") center no-repeat; font-weight: bold; }
.join .box1 .mxw-box2 .con{ display: flex; align-items: center; justify-content: space-between; margin-top: 0.767rem;}
.join .box1 .mxw-box2 .con .left{ width: 56%; flex-shrink: 0; margin-right: 0.917rem;}
.join .box1 .mxw-box2 .con .right{ font-size: 0.333rem; color: #f1e3b9; flex-grow: 1; min-width: 0; line-height: 1.6}
.box2.mxw-box2{ background: url("/skin/images/b2-bg.jpg") no-repeat; background-size: cover; width: 88%; max-width: 1645px; margin: 0 auto; padding: 1.4rem 1.25rem 1.133rem;}
.box2.mxw-box2 .list{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap; margin-top: 0.867rem;}
.box2.mxw-box2 .item{ padding: 0.333rem; border-radius: 0.25rem; border: 0.017rem solid #ff0006; background: #fff; text-align: center; font-size: 0.3rem; color: #c02125; font-weight: bold; width: 31.5%; margin-right: 2.75%;}
.box2.mxw-box2 .item:nth-child(3n){ margin-right: 0;}
.box2.mxw-box2 .item:nth-child(3n)~.item{ margin-top: 0.333rem;}
.box5{ background: #9c0607; width: 88%; max-width: 1645px;
    margin: 0.75rem auto 0; display: flex; align-items: flex-start; justify-content: space-between;}
.box5 .left{ background: #fff; width: 5.833rem; flex-shrink: 0; padding: 0.75rem 0.667rem 0.5rem 0.75rem; margin-left: 2.133rem; margin-top: -0.5rem; text-align: center;}
.box5 .right{
    flex-grow: 1; min-width: 0;
    margin: 0.583rem 0.333rem 0.267rem 2.167rem;
}
.box5 .right .msg-tt{ font-size: 0.367rem; color: #fff; display: flex; align-items: center;}
.box5 .right .msg-tt span{ display: flex; align-items: center; justify-content: center; width: 3.467rem; height: 1.1rem; background: url("/skin/images/sg-bg.png") no-repeat; background-size: cover; margin-right: 0.25rem; font-size: 0.4rem; color: #c02125; font-weight: bold;}
.box5 .right .join_f {
    padding-top: 0.8rem;
}
.box5 .right .j_inp input {
    background: #fff;
}
.box5 .right .j_inp input,
.box5 .right .join_f select {
    width: 48%;
    height: 0.8rem;
    border: 0.0167rem solid #e4e6e8;
    padding-left: 0.3333rem;
    font-size: 0.2667rem;
}
.box5 .right.j_inp input:nth-child(even) {
    float: right;
}
.box5 .right .j_inp {
    margin-bottom: 0.3333rem;
    display: flex; align-items: stretch; justify-content: space-between;
}
.box5 .right .join_f textarea {
    width: 100%;
    height: 2.0833rem;
    border: 0.0167rem solid #e4e6e8;
    padding-left: 0.3333rem;
    padding-top: 0.25rem;
    resize: none;
}
.box5 .right .b_cent {
    text-align: center;
    margin-top: 0.25rem;
}
.box5 .right .b_cent button {
    width: 3rem;
    height: 0.75rem;
    border: none;
    background: #f8bb5c;
    color: white;
    font-size: 0.3rem;
    cursor: pointer;
}
.box4{width: 88%; max-width: 1645px;
    background: url("/skin/images/box4-bg.jpg") no-repeat;
    margin: 1.417rem auto 0;
    padding: 0.75rem 1.25rem 1rem;
    background-size: cover;
}
.box4 .list{ margin-top: 0.75rem;}
.box4 .list .item{ display: flex; align-items: center; justify-content: flex-start;}
.box4 .list .item span{ width: 0.683rem; height: 0.683rem; background: #c02125; border-radius: 50%; display: flex; align-items: center;justify-content: center; font-size: 0.333rem; color: #fff; margin-right: 0.333rem; flex-shrink: 0}
.box4 .list .item{ font-size: 0.3rem;}
.box4 .list .item:nth-child(1)~.item{ margin-top: 0.2rem;}

.box3{width: 88%; max-width: 1645px;
    margin: 1.25rem auto 0;
}
.box3 .j-title{  background: url("/skin/images/b3-t.png") center no-repeat;}
.box3 .list{ display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; margin-top: 1rem;}
.box3 .list .item{ width: 14.5%; margin: 0 2.5%; text-align: center;}
.box3 .list .item .st{ background: url("/skin/images/bo3-tt.png") center no-repeat; padding: 0.2rem 0 0.267rem; font-size: 0.367rem;  color: #fcf5c1; margin: 0.167rem auto 0.333rem;    background-size: contain;}
.box3 .list .item .desc{ font-size: 0.25rem; color: #565656; line-height: 1.6 ;}
.box3 .list .item:nth-child(5n)~.item{ margin-top: 0.667rem;}
.box3 .list .item .img{ width: 3.133rem; margin: 0 auto;}
.join-bg{ background:url("/skin/images/join-bg.png") top no-repeat; background-size: 100% auto;}
@media screen and (max-width: 768px) {
    .join .box1 .mxw-box2{ width: 95%;     background: #bb1b21; flex-wrap: wrap;padding: 40px 20px;}
    .join .j-title{ zoom: 0.8; }
    .join .box1 .mxw-box2 .con{ flex-wrap: wrap; margin-top: 20px}
    .join .box1 .mxw-box2 .con .left{ width: 100%}
    .join .box1 .mxw-box2 .con .right{ width: 100%; font-size: 14px; margin-top: 15px}
    .box2.mxw-box2{ width: 95%; padding: 40px 20px;}
    .box2.mxw-box2 .list{ margin-top: 20px; flex-wrap: wrap;}
    .box2.mxw-box2 .item{ width: 100%; font-size: 16px; margin: 0; padding: 8px 10px; text-align: left}
    .box2.mxw-box2 .item:nth-child(1)~.item{ margin-top: 10px;}
    .box3{ width: 95%; margin-top: 40px;}
    .box3 .list{ margin-top: 25px;}
    .box3 .list .item{ width: 48%; margin: 0 4% 0 0;}
    .box3 .list .item .st{ margin: 5px auto 10px; padding: 8px 10px; font-size: 16px;}
    .box3 .list .item:nth-child(2n){ margin-right: 0}
    .box3 .list .item:nth-child(2n)~.item{ margin-top: 20px}
    .box3 .list .item .img{ width: 75%; margin: 0 auto;}
    .box4{ width: 95%; margin-top: 40px; padding: 40px 20px;}
    .box4 .list .item{ font-size: 14px;}
    .box4 .list{ margin-top: 25px;}
    .box4 .list .item:nth-child(1)~.item{ margin-top: 15px;}
    .box5{ width: 95%; margin: 40px auto; flex-wrap: wrap;}
    .box5 .left{ width: 80%; margin: 40px auto 20px; padding: 15px;}
    .box5 .right{ width: 100%; padding: 0 20px 40px; margin: 0;}
    .box5 .right .msg-tt{ flex-wrap: wrap; font-size: 14px; text-align: center; justify-content: center;}
    .box5 .right .msg-tt span{zoom: 0.8; margin: 20px auto 15px;}
    .box5 .right .j_inp input, .box5 .right .join_f select{ width: 100%;}
    .box5 .right .j_inp{ flex-wrap: wrap; margin-bottom: 15px}
    .box5 .right .j_inp input:last-child{ margin-top: 15px;}
    .box5 .right .join_f textarea{ font-size: 16px; }

}








@media screen and (max-width: 768px) {
.mxw-box{
    padding: 0;
    width: 95%;
   max-width: 95%;
}
    .ppyl.mxw-box{  width: 88%;
        max-width: 88%;}
.nxw-adv{ padding:45px 0;}
.nxw-adv::before{    zoom: 0.4;}
.nxw-adv .mxw-box{    flex-wrap: wrap;}
.nxw-adv .mxw-box .item{     padding: 10px 15px;    margin-bottom: 20px;    width: 50%;}
.nxw-adv .mxw-box .item .st{ font-size:16px; margin-top: 10px}
    .nxw-adv .mxw-box .item .desc{ font-size: 14px; margin-top: 10px}

    .nxw-adv .mxw-box .item:nth-child(2n){ border-right: 0}
    .nxw-adv::after{ zoom: 0.4}
    .mxw-pro{ padding: 45px 0}

    .pro-swiper .swiper-slide p{ font-size: 14px;height: 50px;
    padding-bottom: 10px;}
	
    .mxw-pro .mxw-title .cn{ font-size: 22px}
    .mxw-pro .mxw-title .en{ font-size: 18px}
    .pro-swiper{ margin-top: 20px}
    .mxw-pro2{ margin-top: 25px; padding: 45px 0}
    .mxw-pro2 .mxw-box{ width: 95%;}
    .pro2-swiper .swiper-slide{ flex-wrap: wrap}
    .pro2-swiper .swiper-slide .right{ width: 100%;}
    .pro2-swiper .swiper-slide .left{ padding: 15px}
    .pro2-swiper .swiper-slide .left .icon img{ width: 40px;}
    .pro2-swiper .swiper-slide .left .st1{ margin: 10px auto 15px; font-size: 18px;}
    .pro2-swiper .swiper-slide .left .st2{ font-size: 25px;}
    .pro2-swiper .swiper-slide .left .desc{ font-size: 14px; line-height: 1.8; margin-top: 15px;}
    .pro2-swiper .swiper-slide .left .more1{ margin-top: 15px; zoom: 0.7}
    .mxw-why{ margin-top: 25px; padding: 45px 0}
    footer .d-ud{ flex-wrap: wrap;}
    .mxw-why .mxw-box{ width: 95%; max-width: initial;}
    .why-swiper .swiper-slide{ flex-wrap: wrap;}
    .why-swiper .swiper-slide .left{ padding: 0; width: 100%;}
    .why-swiper .swiper-slide .right{ width: 100%;}
    .why-swiper .swiper-slide .left .st1{ font-size: 24px;}
    .why-swiper .swiper-slide .left .st2{ margin: 15px auto; font-size: 20px}
    .why-swiper .swiper-slide .left .desc{ margin-top: 0; line-height: 1.8; font-size: 14px; margin-bottom: 15px}
    .mxw-about{margin-top: 25px; padding: 45px 0}
    .mxw-about .mxw-box{ width: 95%; max-width: initial;}
    .mxw-about .info{ padding: 10px 15px;}
    .mxw-about .info .st1{ font-size: 20px; margin-top: 0}
    .mxw-about .info .st2{ font-size: 22px; margin-top: 10px;}
    .mxw-about .info .desc{ font-size: 14px; margin-top: 10px; margin-bottom: 15px;}
    .more1 a{ zoom: 0.8}
    .mxw-video{ margin-top: 25px;padding: 45px 0}
    .mxw-video .mxw-box .vdo-box{ padding: 0 ; background: none}
    .mxw-news{padding: 45px 0}
    .mxw-news .mxw-title .en{ font-size: 16px;}
    .mxw-news .mxw-title .cn{ font-size: 20px;}
    .mews-swiper{ margin-top: 20px;}
    .mews-swiper .swiper-slide .st{ font-size: 16px; margin: 5px auto 10px}
    footer{ padding-top: 45px;}
    footer>.mxw-box{ width: 95%; max-width: initial;}
    footer .d-ud .left, footer .d-ud .right{ flex-wrap: wrap;}
    footer .d-ud .d-box1, footer .d-ud .d-box2{ width: 100%; line-height: 1.8}
    footer .d-ud{ margin-top: 25px;}
    footer .d-ud .d-box2{ display: none}
    footer .d-ud .d-box3{ margin-top: 20px; width: 100%; justify-content: center}
    footer .d-ud .d-box4{ margin-top: 20px; width: 100%; margin-left: 0}
    .page-banner>img{ width: 100%;}
    .page-position{ width: 95%; font-size: 14px; padding-top: 10px}
    .mxw-xl{ padding: 20px 0;}
    .mxw-xl img{ width: 50px}
    .mxw-xl p{ font-size: 18px; margin-top: 10px;}
    .cate-list{ padding: 40px 0}
    .cate-list .cate-item{ width: 95%; flex-wrap: wrap;}
    .cate-list .cate-item .left{ width: 100%;}
    .cate-list .cate-item .left::before{ display: none}
    .cate-list .cate-item .st{ font-size: 20px; margin-top: 10px}
    .cate-list .cate-item .st2{ font-size: 16px; margin: 15px auto 20px}
    .cate-list .cate-item .desc{ font-size: 14px}
    .cate-list .cate-item .c-more{ margin: 15px auto 20px;}
    .cate-list .cate-item .c-more-btn{ width: max-content; zoom: 0.8; padding: 8px 20px;}
    .cate-list .cate-item .right{ width: 100%; order: -1;}
    .pro-page.tj::before{ zoom: 0.3; }
    .pro-nbody .top-img{ margin-top: 20px;}
    .pro-nbody .bg-cen{ padding: 40px 0 25px;}
    .pro-nbody .cen-list .item{ width: 49%; margin-bottom: 20px;}
    .pro-nbody .cen-list{ flex-wrap: wrap;}
    .pro-nbody .cen-list .item .st{ font-size: 16px; margin-top: 5px; }
    .pro-nbody .cen-list .item .desc{ font-size: 14px;}
    .n-cate{ margin-top: 40px;}
    .n-cate .item{ width: 32%; margin: 0 ; font-size: 16px;}
    .n-cate{ justify-content: center;}
    .r-gz{ display: none;}
    .news-nlist{ padding-bottom: 45px;}
    .news-nlist .item{ flex-wrap: wrap; margin-top: 25px; width: 100%;}
    .news-nlist .item .mxw-image{ padding: 0; width: 100%;}
    .news-nlist .item .right .st{ font-size: 16px; margin-top: 5px; margin-bottom: 10px;}
    .news-nlist .item .right .desc{ font-size: 14px; line-height: 1.6;}
    .ppyl{ flex-wrap: wrap;}
    .ppyl .left .st1{ font-size: 20px;}
    .ppyl .left .st2{ font-size: 20px; margin: 10px auto 15px;}
    .ppyl .left .desc{ font-size: 14px;}
    .ppyl .right{ width: 100%; margin: 10px auto 20px;}
    .pp2-bg .pp2-box{ width: 95%; flex-wrap: wrap;}
    .pp2-bg .pp2-box .left{ width: 100%;}
    .pp2-bg .pp2-box .right{ padding: 15px;}

    .pp2-bg .pp2-box .right .st1{ font-size: 20px;}
    .pp2-bg .pp2-box .right .st2{ font-size: 18px; margin: 10px auto 15px;}
    .pp2-bg .pp2-box .right .desc{ font-size: 14px;}
    .pp3-bg{ padding: 45px 0;}
    .pp3-bg .pp3-box .st1{ font-size: 20px;}
    .pp3-bg .pp3-box .st2{ font-size: 18px; margin: 10px auto 15px;}
    .pp3-bg .pp3-box .desc{ font-size: 14px;}
    .video-box{ margin: 15px auto 0; padding: 0; width: 100%; background: none}
    .pp3-bg .pp3-box{ width: 95%}
    .ln-box1{ flex-wrap: wrap; margin-top: 25px;}
    .ln-box1 .left{ width: 100%; padding: 0}
    .ln-box1 .left .st1{ font-size: 20px;}
    .ln-box1 .left .st2{ font-size: 18px; margin: 10px auto 15px;}
    .ln-box1 .left .desc{ font-size: 14px;}
    .ln-box1 .right{ width: 100%; margin-top: 15px;}
    .ln-ad{ margin: 15px auto; width: 95%;}
    .shiyi .box1{ flex-wrap: wrap; margin: 15px auto;}
    .shiyi .box1 .item{ width: 49.5%; margin-bottom: 10px;}
    .shiyi .box2{ width: 95%; flex-wrap: wrap; padding-bottom: 30px;}
    .shiyi .box2 .item{ width: 100%; margin-bottom: 20px;}
    .shiyi .box2 .item .icon{ zoom: 0.7}
    .shiyi .box2 .item .st{ font-size: 18px;margin-top: 10px;}
    .shiyi .box2 .item .desc{ font-size: 14px; margin-top: 10px; text-align: center}
    .lx-box1{ flex-wrap: wrap; margin: 20px auto 15px}
    .lx-box1 .item{ width: 100%; margin-bottom: 20px;}
    .lx-box1 .item p{ font-size: 16px;}


    .msg-tt{ font-size: 24px;}
    .cont_msg{ margin: 15px auto 0}
    .cont_msg .join_f{ padding: 15px 15px 25px 15px;}
    .cont_msg .j_inp input, .cont_msg .join_f select{ width: 100%; margin-bottom: 10px; font-size: 14px;}
    .cont_msg .b_cent{ margin-top: 15px; zoom: 0.8}


    
    .map-bg{ margin-top: 30px;}

    .job-itembox .job-item .body{ background: #fff;}

.vdo-box iframe{      height: 220px !important;}

.why-swiper .swiper-pagination{margin-top: 20px;}



.mxw-video,.mxw-pro2,.mxw-why,.mxw-about{    margin-top: 0;}
.jiange{height:25px;    background-size: auto 100%;}

.ny-product-desc .info .detail iframe{ height: 220px !important; max-width:100%; }
    .ny-product-desc{ padding: 45px 0}
    .pro-swiper .swiper-slide{ padding-bottom: 50px}



}

