<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}
html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 &gt; .u-col {
        width: 48%;
    }
    .u-row-2 &gt; .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 &gt; .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 &gt; .u-col {
        width: 32%;
    }
    .u-row-3 &gt; .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 &gt; .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 &gt; .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 &gt; .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 &gt; .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 &gt; .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 &gt; .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 &gt; .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 &gt; .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 &gt; .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 &gt; .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 &gt; .u-col,
    .u-row-4 &gt; .u-col,
    .u-row-5 &gt; .u-col,
    .u-row-6 &gt; .u-col {
        width: 48%;
    }
    .u-row-3 &gt; .u-col:nth-child(2n),
    .u-row-4 &gt; .u-col:nth-child(2n),
    .u-row-5 &gt; .u-col:nth-child(2n),
    .u-row-6 &gt; .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 &gt; .u-col:nth-child(2) ~ .u-col,
    .u-row-4 &gt; .u-col:nth-child(2) ~ .u-col,
    .u-row-5 &gt; .u-col:nth-child(2) ~ .u-col,
    .u-row-6 &gt; .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;

    margin: 4px;
}
.mxw-pagination  a.current,
.mxw-pagination  a:hover {
    background-color: #f37b1d;
    color: #fff !important;
}
.mxw-pagination  a:first-child {
    margin-left: 0;
}
.mxw-pagination  a:last-child {
    margin-right: 0;
}
.Pagination{

    text-align: center;
}
@media screen and (max-width: 751px) {
    .mxw-pagination {
        margin-top: 25px;
    }
    .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: #053DAD;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #053DAD;
}
.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: #053DAD;
    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: 50px;
    }
    .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 &gt; ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus &gt; ul &gt; li.active &gt; ul {
        display: block;
    }
    .mxw-mob-nav .menus &gt; ul &gt; li &gt; 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 &gt; ul &gt; li &gt; 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 &gt; ul &gt; li &gt; ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus &gt; ul &gt; li &gt; ul &gt; li &gt; a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 1;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #fff;
    outline: none;
}
.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: #ff0000;
    border-color: #ff0000;
}
.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: #fff;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}
.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) {
    .mxw-box {
        max-width: 80%;
    }
}
@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&gt;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&gt;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 ==================== */
body{ font-size: 0.3rem;}
.top-box{ align-items: stretch }
.top-box .logo-box{  margin: 0.233rem auto 0.167rem 0;}
.top-box .logo-box&gt;img{ max-height:1.583rem;}
.mxw-keywords .left .zx{ display: inline-block; font-size: 0.35rem; margin-right: 0.833rem; vertical-align: middle}
.mxw-keywords .left .zx&gt;img{ margin-right: 5px}
.mxw-keywords .left .zx b{ color: #ee1d23; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; padding: 0.5rem 0 }
.mxw-link&gt;.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;padding-top:10px;padding-bottom:10px;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;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:18px;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:16px;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{}
header .welcome {
    background-color: #f2f2f2;
    height: 40px;
    line-height: 40px;

}
header .welcome .mxw-box2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    height: 100%;
}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 13px; color: #333333;
}
header .welcome .right img{ margin-right: 15px;}
header .welcome .right &gt;a {
    padding-left:10px;padding-right:10px;
}
header .welcome .right .title{ display: flex; align-items: center;}
header .welcome .right .title img{ margin-right: 10px; cursor: pointer;}
header .welcome .right .item{ position: relative; cursor: pointer; margin-left: 0.417rem}
header .welcome .right .item .con{ width: 135px; background: #fff; position: absolute; top: 43px; right: 0; left: 0; margin: 0 auto; padding: 3px;z-index: 10; display: none;}
header .welcome .right .item:hover .con{ display: block;}


.top-box .right{ display: flex; flex-grow: 1; min-width: 0; align-items: center; justify-content: flex-end; margin-left: 2rem}
.top-box .right .se-box form{ display: flex; flex-shrink: 0; margin-right: 0.567rem}
.top-box .right .se-box input{	width: 4.667rem;
    height: 0.733rem; text-indent: 1em;
    border: solid 1px #dddddd;}
.top-box .right .se-box button{width: 0.833rem;
    height: 0.733rem; display: flex; align-items: center; justify-content: center;
    background-color: #d11911;}
.top-tel{ display: flex; align-items: flex-end;}
.top-tel .left-box{ padding-right: 0.233rem; border-right: 0.017rem solid #cccccc; margin-right: 0.2rem}
.top-tel .right-box .con{ 	font-size: 0.467rem; color: #d01911; font-weight: bold; line-height: 1;}
.top-tel .right-box .title{ font-size: 0.3rem; color: #777; margin-bottom: 0.15rem;}

.top-box .right .tel-box{ display: flex; align-items: center; justify-content: flex-end;}
.top-box .right .tel-box .icon{ flex-shrink: 0; margin-left: 0.2rem;}
.top-box .right .tel-box .con p{ font-size: 0.267rem; color: #333; text-align: right;}
.top-box .right .tel-box .con div{ font-size: 0.5rem; font-weight: bold;}

.top-box .right .ewm-box{display: flex; align-items: center; justify-content: flex-end; margin-left: 0.6rem;}
.top-box .right .ewm-box p{ font-size: 0.267rem;     writing-mode: tb-rl; margin-left: 0.167rem;}
.top-box .right .meb{ display: flex; align-content: flex-end; margin-left: 0.6rem;}
.top-box .right .meb .zc{ padding: 0.1rem 0.3rem; color: #fff; display: flex; align-items: center; justify-content: center;  font-size: 0.267rem; border-radius: 0.267rem; background: #ee1d23;}
.top-box .right .meb .zc img{ margin-right: 0.083rem;}



.top-tel{ margin-right: 0.583rem; margin-left: 0.333rem; }


.x-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.x-menu &gt; li {

    margin: 0;
    text-align: center;
    float: none;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;

}

.x-menu &gt; li &gt; a {
    font-size: 0.3rem;
    color: #333;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    padding: 0.35rem  0.1rem;

}

.x-menu &gt; li &gt; a:hover {
    color: #ee1d23;
}

.x-menu &gt; li.active &gt; a {
    color: #ee1d23;
    border-top: 4px solid #ff0101;

}
.x-menu &gt; li.active{

}
.x-menu {
    width: 100%;
    float: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}


.x-menu &gt; li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 150px;
    left: -25%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu &gt; li &gt; a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;
}

.x-sub-menu &gt; li &gt; a:hover {
    color: #fff;
    background: #ee1d23;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}


.x-menu &gt; li.active &gt; a::after{ }









/*****注册*****/
.register_box {
    width: 100%;
    height: auto;
    padding: 195px 0 125px;
    background: url(../images/zc_bg.png) center no-repeat;
    background-size: cover;
    display: flex;
    align-items: Center;
}

.register {
    width: 830px;
    margin: 0 auto;
    background: rgba(255,255,255,.9);
    padding-bottom: 65px;
}

.register form span {
    color: #333333;
    width: 210px;
    text-align: right;
    display: inline-block;
    margin-right: 5px;
    font-size: 16px;
    vertical-align: top;
}

.register form {
    margin-top: 10px;
    padding-right: 75px;
}

.register h2 {
    color: white;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
}

.register .yz {
    color: white;
    font-size: 14px;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 25px;
}

.register .yz a {
    color: white;
}

.register form div {
    height: 40px;
    margin-bottom: 15px;
    text-align: center;
    line-height: 40px;
}

.register form input {
    display: inline-block;
    width: 375px;
    border: 1px solid #a0a0a0;
    background: transparent;
    height: 40px;
    padding-left: 5px;
}

.register input[type="submit"] {
    background: #e36909;
    color: white;
    cursor: pointer;
    border: none;
    margin-top: 25px;
}

.register form .yzm input {
    width: 242px;
}

.register form .yzm img {
    height: 40px;
}

.register form .yzm .yzm_m {
    display: inline-block;
    width: 130px;
    height: 40px;
    vertical-align: top;
    text-align: right;
}

.register form .dxk {
    display: inline-block;
    width: 375px;
    height: 40px;
    text-align: left;
}

.register form .dxk label {
    cursor: pointer;
    margin-right: 40px;
}

.register form .dxk label input {
    position: relative;
    bottom: 3px;
}

.zc_bt {
    height: 60px;
    width: 100%;
    background: #e36909;
    line-height: 60px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}


.cont-cate{ background: #fafafa; }
.cont-cate .mxw-box{ display: flex; align-items: stretch; justify-content: center;}
.cont-cate .mxw-box .n1{ padding: 0.35rem 0.467rem; border-left: 1px solid #f1f1f1; border-right: 1px solid #f1f1f1;}
.cont-cate .mxw-box .item{ margin-left: 1.6rem;  display: flex; align-items: center; justify-content: center; font-size: 0.3rem; color: #333; padding: 0.35rem 0;  border-bottom: 3px solid transparent}
.cont-cate .mxw-box .item p{ color: #333;}
.cont-cate .mxw-box .item:hover p{ color:#ff0101;  font-weight: bold}
.cont-cate .mxw-box .item.active,.cont-cate .mxw-box .item:hover{  color: #ff0101;border-bottom: 3px solid #ff0101	}
.cont-cate .mxw-box .item.active p{ color: #ff0101; font-weight: bold; }
.cont-cate .mxw-box .item:first-child{ margin-left: 0}


.pro-box{
    padding: 0.75rem 0 1rem;
}
.pro-box .item{ position: relative; }
.pro-box .item p{ position: absolute; bottom: 0; width: 100%; padding: 0.267rem 0.25rem; background: rgba(0,0,0,.44); text-align: center; font-size: 0.4rem; font-weight: bold; color: #fff}
.pro-box .item .mxw-image{ border: 1px solid #e3e3e3}

.case-box{
    padding: 0.75rem 0 1rem;
}

.case-box .item p{  width: 100%; padding: 0.267rem 0.25rem; background: rgba(0,0,0,.44); text-align: center; font-size: 0.4rem; font-weight: bold; color: #fff}
.case-box .item .mxw-image{ }




.news-page{padding: 1.333rem 0 1.167rem;}
.news-page .news-list{ display: flex; align-items: stretch ; justify-content: space-between; flex-wrap: wrap}
.news-page .news-list .item{ padding: 0.5rem 0.467rem; border: 1px solid #eeeeee; width: 48.2%; display: flex; align-items: center; justify-content: space-between; }
.news-page .news-list .item:nth-child(2n) ~ .item{ margin-top: 0.5rem;}
.news-page .news-list .item .date{ background: #cccccc; color: #fff; font-size: 0.567rem; font-weight: bold; text-align: center; flex-shrink: 0;margin-right: 0.333rem; padding: 0.2rem 0.167rem; }
.news-page .news-list .item .date p{ font-size: 0.333rem; font-weight: normal;}
.news-page .news-list .item .text{ flex-grow: 1; min-width: 0}
.news-page .news-list .item .text .title{ color: #333; font-size: 0.3rem; font-weight: bold;}
.news-page .news-list .item .text .desc{ font-size: 0.233rem; color: #666; margin-top: 0.25rem; line-height: 1.6; height: 0.75rem; overflow: hidden}
.news-page .news-list .item:hover{ border-color: #ff0101}
.news-page .news-list .item:hover .text .title{color: #ff0101}
.news-page .news-list .item:hover .date{ background: #ff0101}

.contact-page{padding: 1.333rem 0 1.167rem;}
.contact-page .box1{box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.08); display: flex; align-items: stretch; justify-content: space-between;}
.contact-page .box1 .right{ width: 62.8%; flex-shrink: 0; font-size: 14px;}
.contact-page .box1 .left{ flex-grow: 1; min-width: 0; padding: 0.533rem 0.417rem 0.367rem 0;}
.contact-page .box1 .left .c-logo{ text-align: center;}
.contact-page .box1 .left .c-name{ margin: 0.667rem auto 0.5rem; padding: 0.1rem 0.5rem 0.15rem 0.633rem; background: #ff0101; color: #fff; display: flex; align-items: center;}
.contact-page .box1 .left .c-name img{ margin-right: 0.167rem;}
.contact-page .box1 .left .c-info{ padding: 0 0.633rem; font-size: 0.267rem; line-height: 2;}
.contact-page .box1 .left .c-box{ margin-top: 0.5rem; display: flex; align-items: stretch; justify-content: flex-start; padding-left: 0.633rem;}
.contact-page .box1 .left .c-box .item{ display: flex; align-items: center; justify-content: flex-start; margin-right: 0.417rem}
.contact-page .box1 .left .c-box .item img{ width: 115px;}
.contact-page .box1 .left .c-box .item p{ writing-mode: vertical-lr;
    font-size: 14px;
    color: #666;
    margin-left: 5px;
    display: grid;
    place-items: center;
    word-break: break-word;}

.contact-page .box2{ margin-top: 0.917rem; }

.mxw-hf1{ margin-top: -1.6rem; position: relative; z-index: 99; padding-bottom: 0.4rem}
.mxw-hf1&gt;.mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.mxw-hf1 .item{ background-color: #ffffff;
    box-shadow: 0px 2px 32px 0px
    rgba(201, 225, 198, 0.31);
    border-radius: 0.25rem; width: 100%; text-align: center; padding: 0.367rem; }
.mxw-hf1 .item:nth-child(1)~.item{ margin-left: 0.3rem;}
.mxw-hf1 .item .cn{ margin-top: 0.2rem;	font-size: 0.3rem; color: #333; font-weight: bold;}
.mxw-hf1 .item .en{	font-size: 12px;text-transform: uppercase;  color: #666; margin-top: 8px;}
.mxw-hf1 .item .icon img{ width: 1.417rem;}
.mxw-hf1 .item:hover{ background: url("../images/hf-bg.png") no-repeat; background-size: cover;}
.mxw-hf1 .item:hover .icon img{filter: grayscale(100%) brightness(800%)}
.mxw-hf1 .item:hover .cn{ color: #fff;}
.mxw-hf1 .item:hover .en{ color: #fff;}

.mxw-pro{ padding-top: 1.5rem; }
.mxw-title{ text-align: center;  }
.mxw-title .en{ text-transform: uppercase; font-weight: bold;font-size: 0.5rem;	color: #ff0101;opacity: 0.3;}
.mxw-title .cn{ display:flex; align-items: center; justify-content: space-between;}
.mxw-title .cn span{	font-size: 0.467rem;font-weight: bold; margin: 0 0.6rem; flex-shrink: 0;}
.mxw-title .cn::after,.mxw-title .cn::before{ content: ""; flex-grow: 1; min-width: 0;	border: solid 1px #ff0101; }

.pro-swiper{ overflow: hidden; margin-top: 0.917rem}
.pro-swiper .swiper-slide{ width: 31%; position: relative;}
.pro-swiper .swiper-slide .mxw-image{ position: relative;}
.pro-swiper .swiper-slide .flx{ position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,.7); z-index: 1; top: 0; display: none; align-items: center; justify-content: center; color: #fff; flex-direction: column;}
.pro-swiper .swiper-slide .flx .cn{ width: 100%;  text-align: center; font-size: 0.4rem; font-weight: bold;}
.pro-swiper .swiper-slide .flx .en{ width: 100%; text-align: center; text-transform: uppercase; font-size: 0.233rem; font-weight: bold; margin-top: 0.2rem;}
.pro-swiper .swiper-slide&gt;p{ position: absolute; bottom: 0; width: 100%; padding: 0.267rem 0.25rem; background: rgba(0,0,0,.44); text-align: center; font-size: 0.4rem; font-weight: bold; color: #fff}
.pro-swiper .swiper-slide:hover&gt;p{display: none;}
.pro-swiper .swiper-slide:hover .flx{ display: flex;}

.p-more{width: 2.267rem;
    height: 0.667rem;
    background-color: #ff0101;
    border-radius: 0.05rem; color: #fff; font-size: 0.267rem; display: flex; align-items: center; justify-content: center; margin: 0 auto;}
.p-more:hover{ color: #ff0101; background: none; border: 1px solid #ff0101}
.mxw-pro .p-more{ margin-top:1.167rem;}

.mxw-app{ padding: 1.833rem 0;}
.app-swiper{ margin-top: 0.917rem; overflow: hidden}
.app-swiper .swiper-slide{ display: flex; align-items: center; justify-content: space-between;}
.app-swiper .swiper-slide .left-box{ width: 49.2%; flex-shrink: 0;}
.app-swiper .swiper-slide .right-box{ flex-grow: 1; min-width: 0; margin-left: 0.667rem;}
.app-swiper .swiper-slide .right-box .list{ display: flex; }
.app-swiper .swiper-slide .right-box .list .item{ margin-right: 0.267rem;}
.app-swiper .swiper-slide .right-box .list .item:last-child{ margin-right: 0}
.app-swiper .swiper-slide .right-box .cn{ color: #ff0101; font-size: 0.667rem;}
.app-swiper .swiper-slide .right-box .en{ color: #787878; font-size: 0.267rem; text-transform: uppercase; margin-top: 0.25rem;}
.app-swiper .swiper-slide .right-box .desc{ margin: 0.667rem auto 0.75rem;}
.app-swiper .swiper-slide .right-box .p-more{ margin-left: 0; margin-bottom: 1.25rem;}
.app-swiper .swiper-pagination{ position: initial; margin-top: 0.633rem;}
.app-swiper .swiper-pagination .swiper-pagination-bullet{ width: 0.2rem; height: 0.2rem; background: #ff0101}

.mxw-about{ padding-top: 1rem; background: url("../images/about-top-img.jpg") top center no-repeat; background-size: 100% auto;}
.mxw-about .about-body{ display: flex; align-items: stretch; justify-content: space-between;}
.mxw-about .about-body .left-box{ width: 51.5%; flex-shrink: 0;}
.mxw-about .about-body .right-box{ flex-grow: 1; min-width: 0; margin-left: 0.667rem;}
.mxw-about .about-body .right-box .en{ color: #fff; font-size: 0.8rem; opacity: 0.3; text-transform: uppercase; line-height: 1}
.mxw-about .about-body .right-box .cn1{ display: flex; align-items: center; margin-top: 0.167rem; }
.mxw-about .about-body .right-box .cn1 span{ color: #fff; font-size: 0.467rem;  flex-shrink: 0; }
.mxw-about .about-body .right-box .cn1::after{ flex-grow: 1; margin-left: 0.383rem; height: 1px; background: #fff; content: "";}
.mxw-about .about-body .right-box .cn2{ font-size: 0.567rem;color: #fff; margin-top: 0.333rem; }
.mxw-about .about-body .right-box .desc{ margin-top: 1.5rem; font-size: 0.267rem; color: #6c6c6c; line-height: 2;}
.mxw-about .about-body .right-box .desc span{ font-size: 0.367rem; color: #ff0101;}
.mxw-about .about-body .right-box .p-more{ margin-top: 0.417rem; margin-left: 0;}

.mxw-jd{ padding: 0 0 1rem;  }
.mxw-jd&gt;.mxw-box{ display: flex; align-items: stretch; justify-content: space-between; }
.mxw-jd&gt;.mxw-box .left-box{  width: 3.333rem; flex-shrink: 0; }
.mxw-jd&gt;.mxw-box .left-box .item{ height: 50%; text-align: center; background: #f5f6fa; width: 100%; display: flex; flex-wrap: wrap; justify-content: center; align-content: center; cursor: pointer;}
.mxw-jd&gt;.mxw-box .left-box .item .cn{ font-size: 0.367rem; color: #333; width: 100%;}
.mxw-jd&gt;.mxw-box .left-box .item .en{ font-size: 0.2rem; color: #999; margin-top: 3px}
.mxw-jd&gt;.mxw-box .left-box .item.active{	background: url("../images/sj.png") center right no-repeat #ff0101;}
.mxw-jd&gt;.mxw-box .left-box .item.active .cn{ color: #fff}
.mxw-jd&gt;.mxw-box .left-box .item.active .en{ color: rgba(255,255,255,.5)}
.mxw-jd&gt;.mxw-box .right-box{ flex-grow: 1; min-width: 0; margin-left: 0.3rem;}
.mxw-jd&gt;.mxw-box .right-box .jd-swiper{ overflow: hidden;}
.mxw-jd&gt;.mxw-box .right-box .jd-swiper .swiper-slide{ display: flex; }
.mxw-jd&gt;.mxw-box .right-box .item{ margin-right: 5px; width: calc((100% - 15px)/4);}
.mxw-jd&gt;.mxw-box .right-box .item:nth-child(4n){ margin-right: 0}
.mxw-jd{ margin-top: 1rem;}

.mxw-honor{ padding: 0.917rem 0 3.083rem; background: url("../images/honor-bg.jpg") no-repeat; background-size: cover;}
.mxw-honor .mxw-title .en{ color: #6c6c6c;opacity: 0.3;}
.mxw-honor .mxw-title .cn{ color: #fff;}
.mxw-honor .mxw-title .cn::after,.mxw-honor .mxw-title .cn::before{ border-color: #fff;}


.mxw-honor .index-section7-swiper1 {
    width:100%;
    overflow: hidden;
    margin-top: 1.333rem;
}
.mxw-honor .index-section7-swiper1 .swiper-slide {
    width: 330px;
    transform-origin: center bottom;
}



@media screen and (max-width: 1100px) {

    .mxw-honor .index-section7-swiper1 {
        width: 100%;
    }
    .mxw-honor .index-section7-swiper1 .swiper-slide {
        width: 42.67vw;
    }
}

.mxw-hf2{ background: url("../images/hf2-bg.jpg") center no-repeat; background-size: cover; margin-top: 1.417rem; padding-top: 0.467rem; position: relative; padding-bottom: 1.583rem; }
.mxw-hf2 .mxw-title .en{color: #fff;opacity: 0.3;}
.mxw-hf2 .mxw-title .cn span{ color: #fff; text-align: center; margin: 0 auto;}
.mxw-hf2 .mxw-title .cn::after,.mxw-hf2 .mxw-title .cn::before{ display: none;}
.mxw-hf2 .hf2-con .st1{ text-align: center; font-size: 0.5rem; color: #fff; margin-top: 0.917rem;}
.mxw-hf2 .hf2-con .st2{ margin-top: 0.417rem; color: #fff; text-transform: uppercase; text-align: center;}
.mxw-hf2 .hf-tel{ padding: 0.367rem 0 0.5rem; position: absolute; background: url("../images/hf-bg2.png") center no-repeat; background-size: auto 100%; text-align: center; width: 100%; left: 0; right: 0; bottom: -0.833rem; font-size: 0.55rem; color:#ff0101; font-weight: bold;}
.mxw-hf2 .hf-tel&gt;img{ height: 0.683rem; margin-right: 0.1rem;}



.mxw-news{ padding: 2rem 0 0.667rem; background: url("../images/news-bg.jpg") no-repeat; background-size: cover;}
.news-body{ margin-top: 1rem; display: flex; align-items: flex-end; justify-content: space-between;}
.news-body&gt;.item{	background-color: #ffffff;box-shadow: 0px 0px 13px 0px
rgba(211, 225, 240, 0.41); width: 32%;flex-shrink: 0;
    padding: 0.667rem 0.5rem; margin-bottom: 0.55rem;}
.news-body&gt;.item:nth-child(2){ width: 37.1%; position: relative; z-index: 1;margin-bottom: 0}
.news-body&gt;.item .title{ text-align: center; font-size: 0.467rem; font-weight: bold; margin-bottom: 0.333rem;}
.news-body&gt;.item:nth-child(2) .title{ font-size: 0.5rem; }
.news-body&gt;.item .list .item{ padding: 0.3rem 0; 	border-bottom: solid 1px #999999; display: block;}
.news-body&gt;.item .list .item .st{	font-size: 0.3rem;}
.news-body&gt;.item .list .item .st2{ display: flex; align-items: center; justify-content: space-between;	}
.news-body&gt;.item .list .item .st2 .dat{font-size: 0.233rem; color: #666; font-weight: bold; margin-top: 0.2rem;}
.news-body&gt;.item .list .item .st2 .n-more{ line-height: 1; padding: 0.1rem 0.25rem;font-size: 0.2rem; color: #999; border: 0.017rem solid #999999; border-radius: 0.233rem;}
.news-body&gt;.item .list .item:hover .st{ color: #ff0101}
.news-body&gt;.item .list .item:hover .n-more{ color: #fff; background: #ff0101; border-color: #ff0101}
.news-body&gt;.item .list .item:last-child{ display: none;}
.news-body&gt;.item:nth-child(2) .list .item:last-child{ display: block;}

.mxw-hz{ padding: 0.667rem 0 1.25rem;}
.hz-swiper{ overflow: hidden;}
.hz-swiper .swiper-slide{border: solid 6px #f0f0f0;}
.mxw-hz&gt;.mxw-box{ position: relative;}
.mxw-hz&gt;.mxw-box .swiper-button-prev{ left: -1rem;  color: #ff0101}
.mxw-hz&gt;.mxw-box .swiper-button-next{ right: -1rem;  color: #ff0101}
.mxw-hz&gt;.mxw-box .swiper-button-prev::after,.mxw-hz&gt;.mxw-box .swiper-button-next::after{font-size: 0.5rem; font-weight: bold;}

footer .foot-top{ padding-top: 1rem; background: url("../images/foot-top-bg.jpg") no-repeat; background-size: cover;}
footer .foot-top&gt;.mxw-box{ display: flex; align-items: flex-end; justify-content: space-between;}
footer .foot-top .left-box{width: 42%; flex-shrink: 0;}
footer .foot-top .left-box .title{ font-size: 0.5rem; font-weight: bold; color: #fff; margin-bottom: 0.583rem;}
footer .foot-top .left-box .con{ display: flex; align-items: stretch; justify-content: space-between;}
footer .foot-top .left-box .con .c1{ width: 36%; flex-shrink: 0; color: rgba(255,255,255,.7)}
footer .foot-top .left-box .con .c1 .dt2{ font-size: 0.3rem; color: #fff; margin-bottom: 0.3rem;}
footer .foot-top .left-box .con .c1 ul{ display: flex; align-items: center; justify-content: space-between; font-size: 0.267rem;line-height: 2; flex-wrap: wrap;}
footer .foot-top .left-box .con .c1 ul li{ width: 50%;}
footer .foot-top .left-box .con .c2{ width: 36%; flex-grow: 1; margin-left: 0.833rem; color: rgba(255,255,255,.7)}
footer .foot-top .left-box .con .c2 .dt2{font-size: 0.3rem; color: #fff; margin-bottom: 0.3rem;}
footer .foot-top .left-box .con .c2 .desc{font-size: 0.233rem;line-height: 1.5;}
footer .foot-top .left-box .con .c2 .ewm{ text-align: center; font-size: 0.233rem; color: #fff; max-width: 1.917rem;}
footer .foot-top .left-box .con .c2 .ewm&gt;img{ margin-bottom: 6px;}

.mxw-link{}
.mxw-link,.mxw-link .list a,.mxw-link .title{ font-size: 14px; color: #fff;opacity: 0.7; line-height: 1;}
.mxw-link&gt;.mxw-box{ align-items: center; padding: 0.333rem 0;}


footer .foot-top .right-box{ flex-grow: 1; min-width: 0; margin-left: 1.917rem;}
footer .foot-top .right-box .msg-box{ background: #fff; padding: 0.583rem 0.667rem 0.75rem ;}
footer .foot-top .right-box .msg-box .msg-tt{ display: flex; align-items: flex-end; justify-content: space-between;}
footer .foot-top .right-box .msg-box .msg-tt .cn{ font-size: 0.5rem; color: #333;}
footer .foot-top .right-box .msg-box .msg-tt .en{ font-size: 0.233rem; color: #666; margin-top: 0.05rem;}
footer .foot-top .right-box .msg-box .msg-tt .tel{ font-size: 0.233rem; font-weight: bold;}
footer .foot-top .right-box .msg-box .msg-tt .tel span{ font-size: 0.4rem; font-weight: bold;}
footer .foot-top .right-box .msg-box form{ margin-top: 0.633rem; display: flex; align-items: stretch; justify-content: space-between;}
footer .foot-top .right-box .msg-box form .l1{ display: flex; flex-direction: column; flex-shrink: 0; width: 26%;}
footer .foot-top .right-box .msg-box form .l1 input{ padding: 0.167rem  0.2rem; border: 0.017rem solid #dddddd; font-size: 0.233rem; color: #dddddd;}
footer .foot-top .right-box .msg-box form .l1 input:nth-child(1)~input{ margin-top: 0.267rem;}
footer .foot-top .right-box .msg-box form .l2{ flex-grow: 1; margin-left: 0.267rem; display: flex; flex-direction: column; }
footer .foot-top .right-box .msg-box form .l2 textarea{padding: 0.167rem  0.2rem; border: 0.017rem solid #dddddd; font-size: 0.233rem; color: #dddddd; resize: none; display: block; width: 100%; flex-grow: 1;}
footer .foot-top .right-box .msg-box form .l2 button{padding: 0.167rem  0.2rem; border: 0.017rem solid #2c2c2c; background: #2c2c2c; font-size: 0.233rem; color: #fff; text-align: center; margin-top: 0.267rem; cursor: pointer}





footer .mxw-copy{background: #000000;}
footer .mxw-copy .mxw-box{ padding: 0.3rem 0 0.367rem; text-align: center; font-size: 0.233rem; color: rgba(255,255,255,.5); }
footer .mxw-copy .mxw-box a{color: rgba(255,255,255,.5);}


.about-page{ padding: 0.667rem 0 1rem;}
.about-box1{ }
.about-box1&gt;.mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.about-box1&gt;.mxw-box .left-box .list{ display: flex;}
.about-box1&gt;.mxw-box .right-box{ width: 46.5%; flex-shrink: 0;box-shadow: 0px 14px 21px 0px rgba(3, 0, 0, 0.28);}
.about-box1&gt;.mxw-box .left-box{  background: url("../images/about-box1-bg.jpg") bottom repeat-x; margin-left: -2.5rem; padding-left: 2.5rem; display: flex; flex-wrap: wrap; align-content: space-between;}
.about-box1&gt;.mxw-box .left-box .list .item{ margin-right: 10px;}
.about-box1&gt;.mxw-box .left-box .desc{    margin-top: 0.3rem;
    font-size: 0.3rem;
    color: #6c6c6c;
    line-height: 2.2; padding-right: 1.333rem;}
.about-box1&gt;.mxw-box .left-box .desc span {
    font-size: 0.367rem;
    color: #ff0101;
}

.about-box2{ padding: 1.25rem 0 1.083rem; margin-top: 1.333rem; background: url("../images/about-box2-bg.jpg") no-repeat; background-size: cover;}
.mxw-title2{ text-align: center;}
.mxw-title2 .cn{ font-size: 0.4rem; color: #ff0101; font-weight: bold;}
.mxw-title2 .en{ font-size: 0.3rem; color: #888; text-transform: uppercase; margin-top: 0.25rem;}
.hn-swiper{ overflow: hidden; width: 86%; margin: 0 auto;}
.about-box2-body{ margin-top: 55px; position: relative;}
.about-box2-body .swiper-button-prev,.about-box2-body .swiper-button-next{ width: 0.45rem; height: 0.45rem;}
.about-box2-body .swiper-button-prev::after,.about-box2-body .swiper-button-next::after{ display: none;}

.about-box3{ padding-bottom: 1rem;}
.about-box3-body{ margin-top: 0.8rem; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap;}
.about-box3-body .item{ width: 32.5%; border-radius: 10px; overflow: hidden;}
.about-box3-body .item:nth-child(3)~.item{ width: 49.3%; margin-top: 0.467rem;}

.top-tel{ position: relative;  height: 100%; display: flex; align-items: center;}
.top_ser{position: relative;}
.pro_serh{position: absolute;top: 100%;right: 0;width: 380px;background: rgba(255,255,255,.9);border: 1px solid #e1e1e1;padding: 20px;z-index: 999;display: none;}
.pro_serh form{height: 40px;}
.pro_serh p{color: #e50112;font-size: 16px;float: none;top: 0;margin-bottom: 10px;line-height: 35px;}
.pro_serh input{background: #f6f6f6;border: none;height: 40px;width: 80%;padding-left: 5px;border: 1px solid #CCCCCC;border-radius: 5px;vertical-align: top;}
.pro_serh button{border:none;background: transparent;margin-left: 5px;height: 40px;vertical-align: top;}
.pro_serh button img{vertical-align: top;}
.pro_serh ul li{display: inline-block;color: #888888;margin-right: 5px;}
.pro_serh ul li a{color: #888888;}
.nav_lx_mod{width: max-content;position: absolute;top: 100%;right: 0;background: rgba(232,1,11,0.8);z-index: 99;padding: 15px 20px;text-align: center;color: white;border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;display: none;transition: 0.3s;}
.nav_lx_mod p{color: white !important;font-size: 16px !important;margin-top: 0 !important;font-weight:bold;}
.top-tel:hover .nav_lx_mod{display: block;transition: 0.3s;}
.nav_lx_mod img{width:130px;}
.top-ss{ position: relative; height: 100%; display: flex; align-items: center;}
.top-ss:hover .pro_serh{ display: block;}
















/* ==================== 页面具体样式 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 {
    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: #f37b1d;
}
.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 ==================== */


/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 44px 64px;

}
.ny-news-desc &gt; .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 &gt; .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 ==================== */



@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    .mxw-hf1{ margin-top: 0; padding-top: 30px; padding-bottom: 20px }
    .mxw-hf1&gt;.mxw-box{ flex-wrap: wrap; justify-content: space-between;}
    .mxw-hf1 .item{ width: 48.5%;}
    .mxw-hf1 .item:nth-child(1)~.item{ margin-left:initial}
    .mxw-hf1 .item:nth-child(2n)~.item{ margin-top: 15px;}
    .mxw-pro{ padding-top: 25px;}
    .mxw-title .en{ font-size: 22px;}
    .mxw-title .cn span{ font-size: 20px}
    .pro-swiper{ margin-top: 25px;}
    .pro-swiper .swiper-slide&gt;p{ font-size: 14px; padding: 8px 15px;}
    .p-more{ zoom: 0.9}
    .mxw-pro .p-more{ margin-top: 20px;}
    .mxw-app{ padding: 45px 0;}
    .app-swiper{ margin-top: 20px}
    .app-swiper .swiper-slide{ flex-wrap: wrap;}
    .app-swiper .swiper-slide .left-box{ width: 100%;}
    .app-swiper .swiper-slide .right-box{ margin-left: 0; width: 100%; display: flex; flex-wrap: wrap;}
    .app-swiper .swiper-slide .right-box .list{ order: -1; margin-top: 20px;}
    .app-swiper .swiper-slide .right-box .cn{ width: 100%; margin-top: 15px; font-size: 20px;}
    .app-swiper .swiper-slide .right-box .en{ margin-top: 5px; font-size: 12px;}
    .app-swiper .swiper-slide .right-box .desc{ margin: 25px auto; font-size: 14px;}
    .app-swiper .swiper-slide .right-box .p-more{ margin-bottom: 0}
    .app-swiper .swiper-pagination{ margin-top: 10px; zoom: 0.9}
    .mxw-about .about-body{ flex-wrap: wrap;}
    .mxw-about .about-body .left-box{ width: 100% }
    .mxw-about .about-body .right-box{ margin-left: 0;}
    .mxw-about .about-body .right-box .en{ color: #333; font-size: 18px; margin-top: 10px; }
    .mxw-about .about-body .right-box .en br{ display: none;}
    .mxw-about .about-body .right-box .cn1 span{ color: #333; font-size: 20px;}
    .mxw-about .about-body .right-box .cn2{ color: #333; margin-top: 10px; font-size: 20px; display: none;}
    .mxw-about .about-body .right-box .desc{ margin-top: 15px; font-size: 14px;}
    .mxw-about .about-body .right-box .desc span{ font-size: 16px;}
    .mxw-jd{ padding: 0 0 45px; margin-top: 25px;}
    .mxw-jd&gt;.mxw-box{ flex-wrap: wrap;}
    .mxw-jd&gt;.mxw-box .left-box{ width: 100%; display: flex; align-items: stretch; justify-content: space-between; margin-bottom: 15px;}
    .mxw-jd&gt;.mxw-box .left-box .item{ height: 65px; width: 50%; padding: 15px 0}
    .mxw-jd&gt;.mxw-box .left-box .item .cn{ font-size: 18px}
    .mxw-jd&gt;.mxw-box .right-box{ margin-left: 0}
    .mxw-jd&gt;.mxw-box .right-box .item{ width: 48.5%; margin-right: 3%;}
    .mxw-jd&gt;.mxw-box .right-box .item:nth-child(2n){ margin-right: 0}
    .mxw-jd&gt;.mxw-box .right-box .jd-swiper .swiper-slide{flex-wrap: wrap}
    .mxw-jd&gt;.mxw-box .right-box .item:nth-child(2n)~ .item{ margin-top: 20px;}

    .mxw-honor{ padding: 45px 0;}
    .mxw-honor .index-section7-swiper1{ margin-top: 25px}
    .mxw-hf2{ margin-top: 45px;}
    .mxw-hf2 .hf2-con .st1{ font-size: 18px; margin-top: 20px;}
    .mxw-hf2 .hf2-con .st2{ font-size: 16px;}
    .mxw-hf2 .hf-tel{ font-size: 16px;}
    .mxw-hf2 .hf-tel&gt;img{ height: 25px;}

    .mxw-news{ padding: 80px 0 40px;}
    .news-body{ margin-top: 25px; flex-wrap: wrap;}
    .news-body&gt;.item{ width: 100%; padding:20px; margin-bottom: 0;}
    .news-body&gt;.item .title{ font-size: 18px; margin-bottom: 15px;}
    .news-body&gt;.item:nth-child(2){ width: 100%; margin: 20px 0;}
    .mxw-hz{ padding: 0 0 45px;}
    .mxw-hz .swiper-slide{ width: 48%}
    footer .foot-top{ padding-top: 45px;}
    footer .foot-top&gt;.mxw-box{ flex-wrap: wrap;}
    footer .foot-top .left-box{ width: 100%;}
    footer .foot-top .left-box .title{ font-size: 18px;}
    footer .foot-top .left-box .con{ flex-wrap: wrap;}
    footer .foot-top .left-box .con .c1{ width: 100%; display: none}
    footer .foot-top .left-box .con .c2{ width: 100%;  margin-left: 0}
    footer .foot-top .right-box{ margin-left: 0;  padding:25px 0 15px;}
    footer .foot-top .right-box .msg-box{ padding: 15px;}
    footer .foot-top .right-box .msg-box .msg-tt .cn{ font-size: 22px;}
    footer .foot-top .right-box .msg-box .msg-tt .title{ zoom: 0.85}
    .about-page{ padding: 40px 0 45px;}
    .about-box1&gt;.mxw-box{ flex-wrap: wrap;}
    .about-box1&gt;.mxw-box .left-box{ margin: 0; padding: 0;  background: none;}
    .about-box1&gt;.mxw-box .left-box .desc{ margin: 0; padding: 0; font-size: 14px; line-height: 1.6}
    .about-box1&gt;.mxw-box .left-box .desc span{ font-size: 16px;}
    .about-box1&gt;.mxw-box .left-box .list{ margin: 20px auto;}
    .about-box1&gt;.mxw-box .right-box{ width: 100%;}
    .about-box2{ margin-top: 35px; padding: 40px 0;}
    .mxw-title2 .en{ margin-top: 5px;}
    .about-box2-body{ margin-top: 25px;}
    .about-box3{ padding-bottom: 45px;}
    .about-box3-body{ margin-top: 25px; flex-wrap: wrap;}
    .mxw-title2 .cn{ font-size: 20px;}
    .mxw-title2 .en{ font-size: 16px;}
    .about-box3-body .item{ width: 100%;}
    .about-box3-body .item:nth-child(3)~.item{ width: 100%;}
    .about-box3-body .item:nth-child(1)~.item{ margin-top: 20px;}
    .cont-cate .mxw-box .item{ margin-left: 0; width: 33.33%; font-size: 14px; padding: 10px 5px;}
    .pro-box{ padding: 45px 0;}
    .pro-box .item p{ font-size: 14px; padding: 8px 10px; }
    .ny-product-desc{ padding: 40px 0}
    .cont-cate .mxw-box{ flex-wrap: wrap; justify-content: flex-start;}
    .case-box .item p{ font-size: 14px; padding: 8px 10px;}

    footer .mxw-copy .mxw-box{ flex-wrap: wrap;}
    footer .mxw-copy .mxw-box&gt;div{ width: 100%; text-align: center}
    .mxw-ny-news-desc{ padding: 30px 0;}
    .ny-news-desc .title{ font-size: 20px;}

    .news-page{ padding: 45px 0;}
    .news-page .news-list{ flex-wrap: wrap;}
    .news-page .news-list .item{ width: 100%; padding: 10px; }
    .news-page .news-list .item:nth-child(1)~.item{ margin-top: 15px;}
    .ny-news-desc .article {
        font-size: 15px;
    }
    .contact-page{ padding: 40px 0;}
    .contact-page .box1{ flex-wrap: wrap;}
    .contact-page .box1 .left{ padding: 20px 0; width: 100%;}
    .contact-page .box1 .right{ height: 400px; width: 100%;}
    .contact-page .box1 .left .c-name{ margin: 20px auto;}
















}












</pre></body></html>