<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: #032a75;
    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 &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: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 0.7;
    margin-left: 9px;
    margin-right: 9px;
    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: #fff;
    border-color: #fff;
}
.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: 1400px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
    width: 72.91%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 58px !important;
    }
}
@media screen and (max-width: 1680px) {
header{ zoom:0.95}
    .mxw-box {
        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: 18px;}
.mxw-box2{ width: 86.5%; max-width: 1650px; margin: 0 auto; font-size: 18px; color: #333;}
.top-box .logo-box{ margin:0.3rem auto;}
.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; font-weight: bold}
.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{
position: absolute; z-index: 99;
    width: 100%;top: 0;
    background: #fff;
    border-radius: 0 0 2rem 2rem;
}
header .welcome {
    background-color: #fff;
    height: 44px;
    line-height: 44px;
    border-bottom: 1px dashed #e5e5e5;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
}
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{ align-items: stretch; }
.top-box .right{ display: flex; flex-grow: 1; min-width: 0; align-items: center; justify-content: flex-end;}
.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; }



.mxw-banner .swiper-pagination .swiper-pagination-bullet{ width: 0.667rem; height: 0.067rem; background: #fff; border-radius: 0.033rem; border: 0}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{ width: 1.333rem; background: #fff; opacity: 1;}
.x-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 0 1.5rem;
    height: 100%;
}
.x-menu &gt; li {
    width: calc(100% / 7);
    margin: 0;
    text-align: center;
    float: none;
    position: relative;
    height: 100%;
}

.x-menu &gt; li &gt; a {
    font-size: 0.4rem;
    color: #555555;

    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 100%;
    margin: 0 auto;
    padding: 0 0.2rem;
}

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

.x-menu &gt; li.active &gt; a {
    border-bottom: 4px solid #1675ba;
}

.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: 150%;
    left: -25%;
    top: 100%;
    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;
}

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

.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;
}

.n_banner{ position: relative;}


.poz .mxw-box{ font-size: 0.233rem; color: #505050; line-height: 2; margin-top: 0.417rem; padding-bottom: 0.083rem; border-bottom: 1px solid #E6E6E6}
.poz .mxw-box a:last-child{ color: #006BD3}


.about-page{ padding-top: 0.667rem; padding-bottom: 0.667rem;}
.oth-title{ text-align: center;}
.oth-title .cn{ font-size: 0.6rem; color: #006BD3; font-weight: bold; line-height: 1}
.oth-title .en{ font-size: 0.267rem; color: #AAAAAA; margin-top: 0.2rem;}
.about-page .content{ font-size: 0.333rem; margin-top: 0.5rem; line-height: 1.8}

.pro-page{ padding: 0.667rem 0 1.25rem;}
.pro-page .mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.pro-page .left{ width: 18.75%; flex-shrink: 0;}
.pro-page .right{ margin-left: 0.583rem; flex-grow: 1; min-width: 0;}
.pro-page .left .menu-tt{ padding: 0.3rem 0; font-size: 0.533rem; font-weight: bold; width: 100%; color: #fff; background: #006BD3; text-align: center;}

.pro-page .left .menu-list{}
.pro-page .left .menu-list .item{ padding: 0.3rem 0.5rem; font-size: 0.333rem; background: #ECECEB;  display: flex; align-items: center; justify-content: space-between; color: #828282; margin-top: 4px;}
.pro-page .left .menu-list .item .icon{ width: 0.4rem; height: 0.4rem; margin-left: 0.25rem; background: url("../images/pro-ico.png") no-repeat; background-size: cover; flex-shrink: 0; }
.pro-page .left .menu-list .item p{ flex-grow: 1; min-width: 0}
.pro-page .left .menu-list .item:hover,.pro-page .left .menu-list .item.active{ background: #006BD3}
.pro-page .left .menu-list .item:hover p,.pro-page .left .menu-list .item.active p{ color:#FFFFFf }
.pro-page .left .menu-list .item:hover .icon,.pro-page .left .menu-list .item.active .icon{ background: url("../images/pro-ico-on.png") no-repeat;}

.pro-page .left .menu-fw{ background: #006BD3; color: #fff; text-align: center; padding: 12px 15px 15px; margin-top: 4px;}
.pro-page .left .menu-fw .st{ font-size: 0.333rem; margin: 0.083rem auto ;}
.pro-page .left .menu-fw .desc{ font-size: 0.4rem;}
.pro-page .right .list{ display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: flex-start; }
.pro-page .right .list .item{ position: relative;}
.pro-page .right .list .item p{ width: 100%; padding: 0.133rem 0.25rem;color: #333; text-align: center; bottom: 0;}

.pro-page .right .list .item .more{ width: 1.817rem; height: 1.817rem; position: absolute; left: 50%; top: 50%; border-radius: 50%; color: #fff; align-items: center; justify-content: center; display: none; font-size: 0.333rem;}
.pro-page .right .list .item:hover p{ }
.pro-page .right .list .item:hover .more{ display: none;background: rgba(0,0,0,.76); transform: translateY(-50%) translateX(-50%); }

.pro-page .left .menu-tt.c2{ display: block; margin-top: 4px; font-size: 0.533rem; font-weight: normal}

.cont-cate{box-shadow: -2px 6px 11px 0px rgba(0, 0, 0, 0.05);}
.cont-cate .mxw-box{  display: flex; align-items: stretch; justify-content: center; height: 100%;}
.cont-cate .mxw-box .item{ padding: 0.417rem 0; margin: 0 0.5rem}
.cont-cate .mxw-box .item.active{ color: #006BD3; border-bottom: 3px solid #006BD3}


.news-page{ padding: 0.667rem 0;}
.news-page .list .item{ display: flex; align-items: stretch; justify-content: space-between; padding-bottom: 0.5rem; border-bottom: 1px solid #DDD; margin-bottom: 0.5rem;}
.news-page .list .item .left{ width: 35.6%; max-width: 8.283rem; flex-shrink: 0; margin-right: 0.917rem;}

.news-page .list .item .right .desc{ margin-top: 0.333rem;font-size: 0.267rem;color: #777; line-height: 1.8}
.news-page .list .item .right .st{font-size: 0.4rem; display: flex; align-items: flex-end; justify-content: space-between;}
.news-page .list .item .right .st p{color: #767676; font-size: 0.233rem}

.contact-page{ padding: 0.667rem 0 1.25rem;}
.contact-page .contact-box{ padding: 0.467rem 0.5rem; border: 1px solid #C0C0C0; border-radius: 4px;
    margin-top:0.5rem; display: flex; align-items: stretch; justify-content: space-between;}
.contact-page .contact-box .left{ width: 45%; padding-right: 0.7rem; border-right: 1px solid #E6E6E6}
.contact-page .contact-box .left .item{ font-size: 0.3rem; color: #000;  display: flex; align-items: center; justify-content: flex-start;
    margin-bottom:0.333rem; padding:0 0 0.333rem 0.333rem; border-bottom: 0.017rem solid #E6E6E6;  }
.contact-page .contact-box .left .item .icon{ margin-right: 0.333rem; flex-shrink: 0; }
.contact-page .contact-box .left .item:last-child{ margin-bottom: 0; padding-bottom: 0; border: 0;}

.contact-page .contact-box .right{ padding-left: 0.7rem; flex-grow: 1; min-width: 0;}
.contact-page .contact-box .right&gt;.st{ font-size: 0.4rem; color: #006BD3; margin-bottom: 5px;}
.contact-page .contact-box .right input{ border: 1px solid #006BD3; background: rgba(0, 107, 211, 0.60);
    color: #fff; font-size: 0.333rem; padding: 0.1rem; border-radius: 0.133rem; margin-top: 0.2rem;}
.contact-page .contact-box .right input::placeholder{ color: #fff;font-size: 0.333rem;}
.contact-page .contact-box .right .inp{ display: flex; align-items: center; justify-content: space-between;}
.contact-page .contact-box .right .inp input{ width: 49%;}
.contact-page .contact-box .right textarea{ border: 1px solid #006BD3; background: rgba(0, 107, 211, 0.60);
    color: #fff; font-size: 0.333rem; padding: 0.1rem; border-radius: 0.133rem; margin-top: 0.2rem; resize: none; height: 1.167rem; width: 100%;}
.contact-page .contact-box .right textarea::placeholder{ color: #fff;font-size: 0.333rem;}
.contact-page .contact-box .right .code-box{ display: flex; align-items: center; justify-content: space-between; margin-top: 0.2rem;}
.contact-page .contact-box .right .code-box input{ flex-grow: 1; min-width: 0; margin-right: 0.25rem; margin-top: 0;}
.contact-page .contact-box .right .code-box img{ flex-shrink: 0}

.contact-page .contact-box .right .sub{border-radius: 0.767rem;
    background: #006BD3;width: 3.117rem; border: none;
    height: 0.633rem; margin: 12px auto 0; display: block}
.contact-page .map-box{ margin-top: 1.25rem;}


.mxw-pro{ padding: 1.583rem 0;}
.mxw-title{ text-align: center; }
.mxw-title .cn{ color: #006BD3; font-size: 0.667rem; font-weight: bold}
.mxw-title .en{ font-size: 0.8rem; font-weight: bold; text-transform: uppercase}
.mxw-title .cn span{ margin: 0 0.183rem;}

.mxw-pro .pro-body{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 0.5rem; }
.mxw-pro .pro-body .left{ padding: 0.333rem; background: #006BD3; width: 5.333rem; flex-shrink: 0; display: flex;     flex-direction: column;}
.mxw-pro .pro-body .left .title{ font-size: 0.533rem; color: #fff; font-weight: bold; text-align: center; width: 100%; }
.mxw-pro .pro-body .left .list{ background: #fff; margin-top: 0.333rem; flex-grow: 1; min-width: 0; padding: 0.3rem 0 0.1rem 0;}
.mxw-pro .pro-body .right{ flex-grow: 1; min-width: 0; padding-left: 0.783rem;}
.mxw-pro .pro-body .pro-swiper{ overflow: hidden;}
.mxw-pro .pro-body .pro-swiper .swiper-slide{ display: flex; align-items:stretch; justify-content: space-between; flex-wrap: wrap;}
.mxw-pro .pro-body .pro-swiper .swiper-slide .item{ width: 49%; position: relative; margin-bottom: 0.467rem}
.mxw-pro .pro-body .pro-swiper .swiper-slide .item .title{position: absolute; width: 100%; padding: 0.133rem 0.25rem; background: rgba(0,0,0,.76);color: #fff; text-align: center; bottom: 0;}
.mxw-pro .pro-body .c-more{width: 2.767rem;background: #006BD3;
    height: 0.8rem;  border-radius: 0.4rem;font-size: 0.333rem; color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto; border: 1px solid transparent; transition: all 0.3s;}
.mxw-pro .pro-body .c-more:hover{ background: none; border: 1px solid #006BD3; color: #333}

.mxw-pro .pro-body .left .list .item a{ padding: 0.3rem 0.333rem; font-size: 0.267rem;color: #7C7C7C; display: flex; align-items: center; }
.mxw-pro .pro-body .left .list .item{ border-bottom: 1px solid #F5F5F5;}
.mxw-pro .pro-body .left .list .item .icon{ width: 0.4rem; height: 0.4rem; margin-right: 0.167rem; background: url("../images/inc2.png") no-repeat; background-size: 100%;}
.mxw-pro .pro-body .left .list .item.active .icon{ background: url("../images/Subtract.png") no-repeat; background-size: 100%;}
.mxw-pro .pro-body .left .list .item.active a{ font-weight: bold; color: #006BD3;}

.mxw-adv{ padding: 0.667rem 0 1.25rem; background: url("../images/adv-bg.png") no-repeat;background-size: cover;}
.mxw-adv .mxw-title .en{ color: #fff; }
.mxw-adv .mxw-title .cn{ color: #fff; }
.mxw-adv .adv-body{ margin-top: 0.75rem;}
.mxw-adv .adv-body .adv-swiper{ overflow: hidden;}
.mxw-adv .adv-body .adv-swiper .swiper-slide{ position: relative; display: flex; align-items:flex-end; justify-content: flex-end;}
.mxw-adv .adv-body .adv-swiper .swiper-slide .left{width: 46.2%;/* margin-right: -12%; */position: absolute;left: 0;bottom: 0;z-index: 1}
.mxw-adv .adv-body .adv-swiper .swiper-slide .left .up1{ display: flex;align-items: flex-end; justify-content: flex-start;}
.mxw-adv .adv-body .adv-swiper .swiper-slide .left .up1 .sp1{  font-size:0.8rem;color: #FFF741; font-weight: bold; line-height: 1; }
.mxw-adv .adv-body .adv-swiper .swiper-slide .left .up1 .sp1 img{ vertical-align:top}
.mxw-adv .adv-body .adv-swiper .swiper-slide .left .up1 .sp2{ font-size: 0.533rem; font-weight: bold; color: #FFF741}
.mxw-adv .adv-body .adv-swiper .swiper-slide .left .con{margin-top: 0.4rem;border-radius: 0.2rem;padding: 0.533rem 0.917rem 0.833rem 0.583rem;background: url("../images/adv-bg2.png") #fff bottom no-repeat;background-size:100% auto;position: relative;}
.mxw-adv .adv-body .adv-swiper .swiper-slide .left .con .st{ font-size: 0.6rem; line-height: 1; font-weight: bold; padding-bottom: 0.483rem; border-bottom: 1px solid #C3C3C3  }
.mxw-adv .adv-body .adv-swiper .swiper-slide .left .con .desc{font-size: 0.4rem;line-height: 1.8;color: #666;margin-top: 0.533rem;height: 2.1rem;}
.mxw-adv .adv-body .adv-swiper .swiper-slide .left .con .flx{
    position: absolute;
    width: 1.852rem;
    height: 2.108rem;
    background: #FFF741;
    border-radius: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.7rem;
    top: 0;
    right: 0;
    display: none;
    }
.mxw-adv .adv-body .adv-swiper .swiper-slide  .right{width: 55.4%;border-radius: 8px;overflow: hidden;float: right;}
.adv-swiper .swiper-pagination{ position: initial; text-align: left; margin-top: 0.583rem; padding-top: 0.367rem; border-top: 1px solid #CFCFCF}
.adv-swiper .swiper-pagination .swiper-pagination-bullet{ width: 0.333rem; height: 0.333rem; background: #fff; opacity: 0.5}
.adv-swiper .swiper-pagination .swiper-pagination-bullet-active{ background: #FFF741; opacity: 1}


.mxw-case{ padding: 1.583rem 0 1.333rem;}
.mxw-case .case-body{ margin-top: 0.5rem;}
.mxw-case .case-body .case-cate{ display: flex;align-items: center; justify-content: center; margin-bottom: 0.5rem;}
.mxw-case .case-body .case-cate .item{ background: #F5F5F5; padding: 0.25rem 2%; margin: 0 1%; text-align: center; color: #545454; font-size: 0.333rem; border-bottom: 0.133rem; border-radius: 8px;}
.mxw-case .case-body .case-cate .item.active{ background: #006BD3;color: #fff}
.mxw-case .case-body .case-swiper .swiper-slide{ display: flex; align-items: stretch;justify-content: flex-start; flex-wrap: wrap;}
.mxw-case .case-body .case-swiper .swiper-slide .item{ width: 32.53333%; margin-right: 1.2%; margin-bottom: 0.333rem; position: relative;}
.mxw-case .case-body .case-swiper .swiper-slide .item:nth-child(3n){ margin-right: 0;}
.mxw-case .case-body .case-swiper .swiper-slide .item .title{ position: absolute; width: 100%; padding: 0.133rem 0.25rem; background: rgba(0,0,0,.76);color: #fff; text-align: center; bottom: 0;}



.mxw-about{ padding: 1rem 0 0; background:url("../images/about-bg.jpg") no-repeat; background-size: cover;    overflow: initial;    }
.mxw-about .mxw-title .en{ color: #fff; }
.mxw-about .mxw-title .cn{ color: #fff; }
.mxw-about .about-body{ margin-top: 0.833rem; display: flex; align-items: stretch; justify-content: space-between; overflow-x: hidden;}
.mxw-about .about-body .left{ width: 45.5%; flex-shrink: 0;        visibility: hidden !important; }
.mxw-about .about-body .right{ flex-grow: 1; min-width: 0; padding-left: 2.5rem; display: flex;flex-wrap: wrap;     align-content: flex-start; }
.mxw-about .about-body .right .st{ font-size: 0.7rem; color: #FFF741;margin-top: 0.3rem;}
.mxw-about .about-body .right .desc{ font-size: 0.333rem; color: #fff; line-height: 1.8; margin-top: 0.467rem;}
.mxw-about .about-body .right .m-list{ margin-top: 0.5rem;}
.mxw-about .about-body .right .m-list a{ width: 2.767rem;
    height: 0.817rem; display: inline-flex; align-items: center; justify-content: center; color: rgba(17, 67, 136, 1); border-radius: 0.4rem; background: #fff; margin-right: 0.367rem;}

.mxw-hz{ padding: 1.583rem 0 1.333rem;}
.mxw-hz .hz-list{ margin-top: 0.367rem; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.mxw-hz .hz-list .item{ width: 11.625%; margin-right: 1%; }
.mxw-hz .hz-list .item img{    transition: all 0.3s;}
.mxw-hz .hz-list .item:nth-child(8n){ margin-right: 0;}

.mxw-hz .hz-list .item:hover img{    transform: rotate3d(0, 1, 0, 180deg);}

.case-swiper{ overflow: hidden}


.mxw-news{ padding-bottom: 1.333rem;}
.mxw-news .news-body{ margin-top: 0.5rem;}
.news-swiper{ overflow: hidden; padding:0 10px 10px}
.news-swiper .swiper-slide{ padding: 0.267rem;box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10); transition: all 0.3s; width: 32%}
.news-swiper .swiper-slide .title{ font-size: 0.333rem; color: #272727; margin: 0.133rem auto;}
.news-swiper .swiper-slide .time{ color: #626262; font-size: 0.2rem; margin-top: 0.2rem;}
.news-swiper .swiper-slide .desc{ font-size: 0.267rem; color: #626262; line-height: 1.8}
.news-swiper .swiper-slide .icon{ margin-top: 0.083rem;}
.news-swiper .swiper-slide:hover{ background: #006BD3;}
.news-swiper .swiper-slide:hover .title{ color: #fff;}
.news-swiper .swiper-slide:hover .time{ color: #fff}
.news-swiper .swiper-slide:hover .desc{ color: #fff;}
.news-swiper .swiper-slide:hover .icon img{  filter:grayscale(100%) brightness(800%); }
.news-more{width: 2.767rem;
    height: 0.8rem; background: rgba(0, 107, 211, 1); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.333rem; margin: 0.333rem auto 0; border-radius: 0.4rem;}



footer{background: #006BD3; padding-top: 0.5rem;}
footer .mxw-box2 .up{ display: flex; align-items: stretch; justify-content: space-between;margin-bottom: 0.4rem; }
footer .mxw-box2 .left{ display: flex; align-items: stretch; justify-content: space-between;}
footer .mxw-box2 .d-box1{ width: 1.833rem; flex-shrink: 0;  }
footer .mxw-box2 .d-box1 .d-logo{ margin: 0 auto ; text-align: center;}
footer .mxw-box2 .d-box1 .d-ewm{margin-top:0.233rem}
footer .mxw-box2 .up .left{ flex-grow: 1; min-width: 0; margin-right: 1.083rem;}
footer .mxw-box2 .right{ width: 26.1%; flex-shrink: 0;}
footer .mxw-box2 .up .left .d-box2{ flex-grow: 1; min-width: 0; margin-left: 0.8rem;}
footer .mxw-box2 .up .left .d-menu{ color: #fff; display: flex; justify-content: space-between; font-size: 0.4rem;  padding-bottom: 0.5rem; border-bottom: 0.017rem solid #fff;  margin-right: 0.5rem;}



.mxw-links{ margin-top: 0.333rem; color: #fff;}
.mxw-links .st{ font-size: 0.267rem;}
.mxw-links .list{ font-size: 0.233rem; display: flex;  flex-wrap: wrap; line-height: 2; margin-top: 0.25rem}
.mxw-links .list a{ margin-right: 0.5rem;}

footer .mxw-box2 .right .st{ font-size: 0.6rem; color: #fff;}
footer .mxw-box2 .right input{ color: #fff; margin-top: 0.2rem;width: 100%; border-radius: 0.133rem; border: 0.017rem solid #fff; padding: 0.133rem 0.167rem; background: rgba(255,255,255,.3); font-size: 0.333rem;}
footer .mxw-box2 .right input::placeholder{ color: #fff; }
footer .mxw-box2 .right .yz-code{ display: flex; margin-top: 0.2rem;align-items: center}
footer .mxw-box2 .right .yz-code input{ flex-grow: 1; min-width: 0;  margin-top: 0;}
footer .mxw-box2 .right .yz-code img{ flex-shrink: 0; margin-left: 0.25rem;}
footer .mxw-box2 .right .sub input{width: 3.117rem;
    height: 0.667rem; border-radius: 0.333rem; background: #fff; font-size: 0.267rem; color: #000; margin: 0.2rem auto 0; display: block; cursor: pointer;}
footer .mxw-box2 .right .sub input:hover{ background: none; color: #fff;}
.lx-info{ margin-top: 0.5rem; color: #fff;  }
.lx-info .item{ font-size: 0.267rem; margin-right: 1.083rem; margin-bottom: 0.3rem ;display:inline-block}
.lx-info .item:nth-child(2n) ~ .item{ margin-bottom: 0}

.copy{ font-size: 0.2rem; color: #fff; text-align: center; line-height: 1.8; padding-bottom: 0.25rem; }

.tj-pro-swiper{  margin-top: 0.5rem; overflow: hidden; }
.tj-pro-swiper .swiper-slide{ position: relative; border-radius: 0.2rem; overflow: hidden}
.tj-pro-swiper .swiper-slide p{    position: absolute;
    width: 100%;
    padding: 0.133rem 0.25rem;
    background: rgba(0,0,0,.76);
    color: #fff;
    text-align: center;
    bottom: 0;}

.tj-more{width: 2.767rem;background: #006BD3;height: 0.8rem;  border-radius: 0.4rem;font-size: 0.333rem; color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto; border: 0.017rem solid transparent; transition: all 0.3s; margin-top: 0.5rem;}
.tj-more:hover{ background: none; border: 1px solid #006BD3; color: #333;}

.tj-pro{margin-bottom: 1.25rem;}

.tj-hz{ padding-top: 0}
.tj-hz .hz-list{ margin-top: 0.5rem;}











#map{ height: 450px; margin-top: 0.5rem; font-size: 14px;}








/* ==================== 页面具体样式 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: #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 ==================== */


/* ==================== 新闻详情 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 ==================== */


.lx-info .item img{ margin-right: 10px;}
.pro-page .left .menu-list .item .icon{ background-size: 100%; width: 20px; height: 20px; flex-shrink: 0;}
.pro-page .left .menu-list .item:hover .icon, .pro-page .left .menu-list .item.active .icon{background-size: 100%;}
.gd-box{        background:#fff ;box-shadow: 3px 4px 10px 0px rgba(0, 0, 0, 0.12);
    color: #006BD3;
    display: flex;
    align-items: center;
    justify-content: center;padding: 0.55rem 0 0.4rem;}

.gd-box .item{    width: 20%;
    text-align: center;    border-right: 1px solid #ddd;
}
.gd-box .item .p1{    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.gd-box .item .p1 .scrolling-numbers{font-size: 1rem; line-height: 1;    font-weight: bold;}
.gd-box .item .p2{font-size: 0.267rem; margin-top: 0.25rem;}
.gd-box .item:last-child{  border:none }










@media screen and (max-width: 1680px) {
	.mxw-case .case-body .case-cate .item{font-size: 0.3rem;}
	.pro-page .left .menu-list .item{font-size: 0.3rem;}
.pro-page .left{width: 20.75%;}



}



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

    .mxw-box,.mxw-box2{ padding: 0; margin: 0 auto; width: 95%;}
    body{ margin-bottom: 0}
    .mxw-pro{ padding-top: 45px; padding-bottom: 40px;}
    .mxw-title .en{ font-size: 24px}
    .mxw-title .cn{ font-size: 20px;}
    .mxw-title .cn span{ display: none}
    .mxw-pro .pro-body{ flex-wrap: wrap; margin-top: 20px;}
    .mxw-pro .pro-body .left{ width: 100%;}
    .mxw-pro .pro-body .right{ padding: 0; margin-top: 20px;}
    .mxw-pro .pro-body .left .title{ display: none}
    .mxw-pro .pro-body .left{ padding: 5px;}
    .mxw-pro .pro-body .left .list{ margin-top: 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; padding-top: 10px;}
    .mxw-pro .pro-body .left .list .item{ width: 50%;}
    .mxw-pro .pro-body .left .list .item a{ padding: 5px 10px; font-size: 16px}
    .mxw-pro .pro-body .c-more{ zoom: 0.75}
    .mxw-pro .pro-body .pro-swiper .swiper-slide .item .title{ font-size: 14px}
    .mxw-pro .pro-body .pro-swiper .swiper-slide .item{ margin-bottom: 15px;}
    .mxw-adv{ padding: 40px 0;}
    .mxw-adv .adv-body{ margin-top: 20px;}
    .mxw-adv .adv-body .adv-swiper .swiper-slide{ flex-wrap: wrap;}
    .mxw-adv .adv-body .adv-swiper .swiper-slide .left{ position: initial; width: 100%; margin: 0 auto 15px;}
    .mxw-adv .adv-body .adv-swiper .swiper-slide .left .up1 .sp1{ font-size: 22px;}
    .mxw-adv .adv-body .adv-swiper .swiper-slide .left .up1 .sp2{ font-size: 20px;}
    .mxw-adv .adv-body .adv-swiper .swiper-slide .left .up1 .sp1 img{ height: 40px;}
    .mxw-adv .adv-body .adv-swiper .swiper-slide .left .con{ padding: 15px;}
    .mxw-adv .adv-body .adv-swiper .swiper-slide .left .con .st{ font-size: 18px; padding-bottom: 10px;}
    .mxw-adv .adv-body .adv-swiper .swiper-slide .left .con .flx{zoom: 0.75}
    .mxw-adv .adv-body .adv-swiper .swiper-slide .left .con .desc{ font-size: 14px; margin-top: 15px; width: 80%; height: 120px;}
    .mxw-adv .adv-body .adv-swiper .swiper-slide .right{ width: 100%;}
    .adv-swiper .swiper-pagination{ margin-top: 10px; padding-top: 10px;}
    .adv-swiper .swiper-pagination .swiper-pagination-bullet{ width: 12px; height: 12px;}
    .mxw-case{ padding: 45px 0;}
    .mxw-case .case-body{ margin-top: 20px;}
    .mxw-case .case-body .case-cate{ flex-wrap: wrap; justify-content: space-between; margin-bottom: 20px;}
    .mxw-case .case-body .case-cate .item{ margin:0 auto 10px; font-size: 16px; width: 49%; padding: 8px 15px;}
    .mxw-case .case-body .case-swiper .swiper-slide .item{ width: 49%; margin-right: 2%}
    .mxw-case .case-body .case-swiper .swiper-slide .item:nth-child(3n){ margin-right: 2%;}
    .mxw-case .case-body .case-swiper .swiper-slide .item:nth-child(2n){ margin-right: 0}
    .mxw-case .case-body .case-swiper .swiper-slide .item .title{ font-size: 14px;}
    .mxw-about{ padding: 45px 0; background-position: right; background-size: auto }
    .mxw-about .about-body{ margin-top: 20px; flex-wrap: wrap;}
    .mxw-about .about-body .left{ width: 100%; margin-bottom: 15px;    visibility: visible !important;}
    .mxw-about .about-body .right{ padding: 0}
    .mxw-about .about-body .right .st{ font-size: 18px;}
    .mxw-about .about-body .right .desc{ font-size: 14px; margin-top: 10px}
    .mxw-about .about-body .right .m-list{ margin-top: 20px;}
    .mxw-about .about-body .right .m-list a{ zoom: 0.75}
    .mxw-hz{ padding: 45px 0 0;}
    .mxw-hz .hz-list{ margin-top: 20px;}
    .hz-swiper{ width: 100%; height: 215px;}
    .news-swiper{ padding: 5px}
    .news-swiper .swiper-slide .title{ font-size: 16px;}
    .mxw-news{ padding: 45px 0;}
    .news-more{ zoom: 0.75; margin-top: 15px;}
    footer .mxw-box2 .up .left .d-menu{ display: none;}
    footer .mxw-box2 .up{ flex-wrap: wrap;}
    footer .mxw-box2 .d-box1{ width: 100%; display: flex; align-items: center; justify-content: center}
    footer .mxw-box2 .up .left{ flex-wrap: wrap; margin: 0 auto 25px;}
    footer{ padding-top: 35px;}
    footer .mxw-box2 .d-box1 .d-logo{ margin: 0 25px 0 0;}
    footer .mxw-box2 .up .left .d-box2{ margin: 0 auto;}
    .lx-info .item{ margin-bottom: 10px; font-size: 14px;}
    .lx-info .item:nth-child(2n) ~ .item{ margin-bottom: 10px;}
    footer .mxw-box2 .right{ width: 100%;}
    footer .mxw-box2 .right .st{ font-size: 20px;}
    footer .mxw-box2 .right input{ font-size: 14px;}
    .poz .mxw-box{ margin-top: 10px;}
    .oth-title .cn{ font-size: 22px;}
    .oth-title .en{ font-size: 12px; margin-top: 5px;}
    .about-page .content{ margin-top: 20px; font-size: 14px;}
    .tj-pro-swiper{ margin-top: 20px;}
    .tj-pro-swiper .swiper-slide p{ font-size: 14px;}
    .tj-more{ zoom: 0.75; margin-top: 20px;}
    .tj-pro{ margin-bottom: 40px;}
    .pro-page{ padding: 40px 0 25px;}
    .pro-page .mxw-box{ flex-wrap: wrap;}
    .pro-page .left{ width: 100%;}
    .pro-page .left .menu-tt{ font-size: 20px; }
    .pro-page .left .menu-list .item p{ font-size: 16px;}
    .pro-page .left .menu-list{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
    .pro-page .left .menu-list .item{ width: 49%; padding: 8px 10px;}
    .pro-page .left .menu-fw{ display: none}

    .pro-page .right{ width: 100%; margin:20px auto 0;}
    .pro-page .right .list .item p{ font-size: 14px;}
    .pro-page .right .list .item{ width: 49% !important;;  margin-right: 2% !important; margin-left: 0 !important;}
    .pro-page .right .list .item:nth-child(2n){ margin-right: 0 !important;}
    .mxw-pagination{ margin-top: 15px;}
    .tj-hz{ padding-top: 0}
    .pro-page .left .menu-tt.c2{ display: none}
    .cont-cate .mxw-box .item{ font-size: 16px;}
    .cont-cate .mxw-box .item{ padding: 15px 0;}
    .news-page{ padding: 40px 0;}
    .news-page .list{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
    .news-page .list .item{ flex-wrap: wrap; width: 49%; padding-bottom: 5px; margin-bottom: 20px;}
    .news-page .list .item .left{ width: 100%; max-width: initial;}
    .news-page .list .item .right .st{ flex-wrap: wrap;}
    .news-page .list .item .right .st .st1{ font-size: 16px; margin-bottom: 5px;}
    .news-page .list .item .right .desc{ margin-top: 10px; font-size: 14px;overflow: hidden;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3; height: 76px;}
    .contact-page{ padding: 40px 0; }
    .contact-page .contact-box{ flex-wrap: wrap; padding: 15px 15px 25px;}
    .contact-page .contact-box .left{ width: 100%; padding: 0}
    .contact-page .contact-box .left .item{ font-size: 14px; padding: 0 10px 10px;}
    .contact-page .contact-box .left .item .icon{ width: 25px; margin-right: 10px; padding: 0;}
    .contact-page .contact-box .right{ padding: 0; margin-top: 25px;}
    .contact-page .contact-box .right input{ font-size: 14px; }
    .contact-page .contact-box .right input::placeholder{ font-size: 14px;}
    .contact-page .contact-box .right textarea,.contact-page .contact-box .right textarea::placeholder{ font-size: 14px;}
    .contact-page .map-box{ margin-top: 40px;}
    #map{ margin-top: 20px;}
.mxw-about .mxw-title .en{ color:#fff}
.mxw-about .mxw-title .cn{ color:#fff}

.hz-swiper{ margin-top: 20px;   overflow: hidden;}
.gd-box{    width: 100%;   flex-wrap: wrap;    padding: 10px 0 30px;}
.gd-box .item .p1 .scrolling-numbers {
    font-size: 24px;}
.gd-box .item{width: 50%;     margin: 20px 0 0;}

.gd-box .item:nth-child(2n){ border:0}



}








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