<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 ==================== */
.Pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.Pagination   a,.Pagination   span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: block;
    margin: 4px;
}
.Pagination   a.current,
.Pagination   a:hover {
    background-color: #032a75;
    color: #fff !important;
}
.Pagination   a:first-child {
    margin-left: 0;
}
.Pagination  a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .Pagination {
        margin-top: 30px;
    }
    .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: 1535px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
    width: 81%;
}

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




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-box {
        max-width: 86%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#00a2ea;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner&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;}

.top-box .logo-box{ margin:0.3rem auto 0.2rem 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; 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 .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 1rem;
    height: 100%;
}
.x-menu &gt; li {
    width: calc(100% / 7);
    margin: 0;
    text-align: center;
    float: none;

    height: 100%;
}

.x-menu &gt; li &gt; a {
    font-size: 0.367rem;
    color: #000;
    font-weight: bold;
    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: 75px;
    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;    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;


}
.n_banner img{width:100%;image-rendering: -webkit-optimize-contrast;
-ms-interpolation-mode: bicubic;
object-fit: cover;  width: initial;
    max-width: initial;}
.cont-cate{ position: absolute; bottom: 0; background: rgba(0,0,0,.69); padding: 0.3rem 0 0.2rem; width: 100%;}
.cont-cate .mxw-box{ display: flex; align-items: stretch; justify-content: center;}
.cont-cate .item{ font-size: 0.433rem; color: #fff; text-align: center; margin: 0 1.5rem}
.cont-cate .item .icon img{ max-height: 0.9rem;}
.cont-cate .item p{ margin-top: 0.25rem}

.cont-info{ margin: 1rem auto 1.167rem;}
.cont-info .content{ font-size: 0.433rem; line-height: 2; color: #333;}


.kwn_from {
    margin-bottom: 50px;
}

.kwn_from .w {
    padding: 70px 110px 40px;
    -webkit-box-shadow: 0 0px 7px 0 rgba(216, 216, 216, 0.35);
    box-shadow: 0 0px 7px 0 rgba(216, 216, 216, 0.35);
}

.kwn_from .kwn_from_title {
    text-align: center;
    margin-bottom: 52px;
}

.kwn_from .kwn_from_title .title_top {
    padding-bottom: 20px;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 20px;
}

.kwn_from .kwn_from_title .title_top .cn {
    font-size: 32px;
    color: #666;
}

.kwn_from .kwn_from_title .title_top .en {
    font-size: 16px;
    color: #666;
}

.kwn_from .kwn_from_title .title_bottom {
    font-size: 16px;
    color: #323232;
}

.kwn_from .form_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.kwn_from .form_row .form_col {
    width: 380px;
    height: 60px;
    position: relative;
}

.kwn_from .form_row .form_col input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: #eeeeee;
    padding-left: 2em;
    font-size: 19px;
}

.kwn_from .form_row .form_col .red::before {
    content: '*';
    position: absolute;
    color: red;
    font-size: 18px;
    top: 38%;
    left: 5%;
}

.kwn_from .form_message {
    background: #eeeeee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 320px;
    padding-bottom: 30px;
}

.kwn_from .form_message .message_title {
    text-align: center;
    font-size: 24px;
    color: #555555;
    margin-bottom: 25px;
    display: none;
}

.kwn_from .form_message.join_in {
    height: auto;
    padding: 30px 0;
}

.kwn_from .form_message.join_in .form_row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 972px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 5px;
}

.kwn_from .form_message.join_in .form_row .money_tabs {
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #999;
    line-height: 50px;
}

.kwn_from .form_message.join_in .form_row .money_tabs input[type="text"] {
    height: 24px;
    width: 30%;
    padding: 0;
    border: 1px solid #999999;
    margin-right: 10px;
}

.kwn_from .form_message.join_in .form_row .form_col {
    height: 40px;
    margin-right: 30px;
    width: auto;
}

.kwn_from .form_message.join_in .form_row .form_col input[type="checkbox"],
.kwn_from .form_message.join_in .form_row .form_col input[type="radio"] {
    margin: 0 5px 0 0;
    padding: 0;
}

.kwn_from .form_message.join_in .form_row p {
    width: 100%;
    font-size: 17px;
    color: #666;
}

.kwn_from .form_message.join_in .form_row label {
    font-size: 15px;
    color: #999;
    font-weight: unset;
}

.kwn_from .form_message.join_in .form_row textarea {
    width: 100%;
    margin-top: 20px;
}

.kwn_from .form_message.join_in .form_row input[type="submit"] {
    margin: 0 auto;
}

.kwn_from .form_message .form_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
}

.kwn_from .form_message .form_row .form_col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    margin-right: 50px;
    font-size: 15px;
}

.kwn_from .form_message .form_row .form_col:last-child {
    margin-right: 0;
}

.kwn_from .form_message .form_row .form_col input[type="checkbox"],
.kwn_from .form_message .form_row .form_col input[type="radio"] {
    width: 1em;
    height: 1em;
    position: relative;
    font-size: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* padding: 0 20px 0 0; */
    margin: 0 10px 0 0;
    padding: 0;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.kwn_from .form_message .form_row .form_col input[type="checkbox"]:checked::before,
.kwn_from .form_message .form_row .form_col input[type="radio"]:checked::before {
    background-image: url(../images/pick1.png);
    border: none;
}

.kwn_from .form_message .form_row .form_col input[type="checkbox"]::before,
.kwn_from .form_message .form_row .form_col input[type="radio"]::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*

    background: url(../images/pick.png) no-repeat center center; */
    border: 1px solid #999;
    background-size: contain;
    /* transition: all 0.3s; */
    cursor: pointer;
}


.kwn_from .form_message .form_row textarea {
    font-size: 14px;
    width: 895px;
    outline: none;
    border: none;
    resize: none;
    padding: 1em;
    margin-bottom: 30px;
    height: 153px;
}

.kwn_from .form_message .form_row input[type="submit"] {
    width: 222px;
    height: 52px;
    background-color: #ee7800;
    border-radius: 23px;
    border: solid 1px #f1943e;
    color: #fff;
    font-size: 18px;
    text-align: center;
}


.job-box{ padding: 1.167rem 0 0.75rem; background: #f2f5f8}
.n-title{ font-size: 0.5rem; font-weight: bold; text-align: center;}
.job-list{ margin-top: 1rem; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.job-list .job-item{ background: #fff; border: 0.017rem solid transparent;	border-radius: 0.1rem; width: 28.75%; margin-right: 6.875%; padding: 1.75rem 0.9rem 1rem; margin-bottom: 1.25rem;}
.job-list .job-item:nth-child(3n){ margin-right: 0; }
.job-list .job-item .st{	font-size: 0.5rem; font-weight: bold;color: #000000;}
.job-list .job-item .tm{ font-size: 0.333rem; color: #333; margin: 1rem auto 1.083rem 0}
.job-list .job-item .more{width: 3.333rem;
    height: 0.833rem;
    background-color: #0068b4;
    border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #fff;}




.about-box{ padding: 1rem 0;}
.about-box .about-top{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; margin-top: 0.967rem;}
.about-box .about-top .item{ width: 49.39%; margin-bottom: 0.417rem;	box-shadow: 0px 2px 18px 0px
rgba(0, 0, 0, 0.25);
    border-radius:6px;    overflow: hidden;}
.about-box .about-top .item .info{ padding: 0.667rem 0.333rem 0.833rem;	font-size: 0.267rem;color: #666; line-height: 1.5;  flex-grow: 1; min-width: 0}
.about-box .about-top .item .info p{ width: 100%;}

.about-center{ background: url("../images/center-bg.jpg") center no-repeat; background-size: cover; padding: 1.75rem 0 2rem;}
.about-center .mxw-box{ display: flex; align-items: stretch; justify-content: center;}
.about-center .mxw-box .item{ padding: 0.633rem;border-radius: 14px;
background: rgba(255,255,255,.82);width: 28.51%; text-align: center; margin: 0 0.267rem;}
.about-center .mxw-box .item .icon img{ max-height: 0.8rem;}
.about-center .mxw-box .item .st{ font-size: 0.333rem; font-weight: bold; 	color: #0154a4; margin: 0.4rem auto 0.267rem}
.about-center .mxw-box .item .desc{	font-size: 0.3rem; color: #666; line-height: 1.8;}

.about-bottom{ padding-top: 1rem;}
.about-bottom .desc{ margin: 0.583rem auto 0.733rem;	font-size: 0.333rem; line-height: 1.5; color: #333; text-align: center; padding: 0 0.75rem;}

.about-swiper .swiper-slide{display: flex;align-items: stretch; justify-content: space-between;}
.about-swiper .swiper-slide .left{ width: 49.8%;    border-radius: 6px;   overflow: hidden;position: relative;}
.about-swiper .swiper-slide .right{ width: 49.8%; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.about-swiper .swiper-slide .right .item{ width: 49.5%; margin-bottom: 5px; border-radius: 6px;   overflow: hidden;position: relative;}
.about-swiper .swiper-slide .right .item p{ position: absolute; padding: 0.167rem 0.25rem 0.133rem; background:rgba(0,0,0,.8); width: 100%; color: #fff; bottom: 0; text-align: center;}
.about-swiper .swiper-slide .left .item p{ position: absolute; padding: 0.167rem 0.25rem 0.133rem; background:rgba(0,0,0,.8); width: 100%; color: #fff; bottom: 0; text-align: center;}
.about-swiper .swiper-slide .right .item:nth-child(2) ~ .item{ margin-bottom: 0;}

.jszc-box{ padding: 0.667rem 0 0.833rem;}
.n-title2 .cn{ font-size: 0.883rem;color: #000000; font-weight: bold;}
.n-title2 .desc{	font-size: 0.333rem; color: #000; margin-top: 0.633rem;}
.js-lists{ margin-top: 0.75rem;}
.js-lists .item p{ margin-top: 0.15rem;font-size: 0.3rem; text-decoration: underline; text-align: center; color: #000; text-underline-offset: 0.167rem;}
.js-lists .item .desc{    font-size: 14px;
    line-height: 1.6;
    margin: 12px auto;
    max-height: 45px;}
.js-lists .item .mxw-image{border-radius: 6px;   overflow: hidden;}
.jszc-box2 .top{
    background: #f2f5f8; padding-top: 1.367rem;
}
.jszc-box2 .top .n-title2 .desc{ margin-top: 0.417rem; margin-bottom: 0.583rem}
.jszc-box2 .top  .fa-cate{ display: flex; align-items: stretch; justify-content: flex-start;}
.jszc-box2 .top  .fa-cate .item{ height: 1.033rem; width: 7.467rem; display: flex; align-items: center; justify-content: center;	font-size: 0.367rem; color: #000}
.jszc-box2 .top  .fa-cate .item.active{ background: #fff;}
.jszc-box2 .bottom{ margin-top: 1.417rem; margin-bottom: 2.083rem}
.jszc-box2 .bottom .swiper-slide .item{ text-align: center; }
.jszc-box2 .bottom .swiper-slide .item .mxw-image{border-radius: 0.1rem;}
.jszc-box2 .bottom .swiper-slide .item .st{ margin: 0.7rem auto 0.467rem; font-size: 0.433rem;color: #000 }
.jszc-box2 .bottom .swiper-slide .item .desc{ font-size: 0.3rem; color: #333; padding: 0 0.4rem; text-align: center; line-height: 1.8}
.jszc-box2 .bottom .swiper-slide .item .more{width: 3.317rem;
    height: 0.85rem;
    background-color: #0068b4; font-size: 0.267rem; color: #fff; display: flex; align-items: center; justify-content: center; margin: 0.667rem auto 0}

.wx-box{
    background: #f2f5f8;
    padding: 1.083rem 0 1.917rem;box-shadow: 0px 2px 18px 0px
rgba(0, 0, 0, 0.25);
}
.wx-list{ margin-top: 0.75rem;}
.wx-list .item{ text-align: center; background: #fff; 	border-radius: 0.25rem;}
.wx-list .st{ margin: 0.417rem auto 0.467rem; font-size: 0.433rem;color: #000 }
.wx-list .desc{ font-size: 0.3rem; color: #333; padding: 0 0.4rem; text-align: center; line-height: 1.8}
.wx-list .more{width: 3.317rem;
    height: 0.85rem;
    background-color: #0068b4; font-size: 0.267rem; color: #fff; display: flex; align-items: center; justify-content: center; margin: 0.667rem auto 0.8rem}

.news-box{ background: #f2f5f8; padding: 1rem 0 1.25rem}
.news-list .item{ padding: 0.3rem 0.25rem 0.367rem; border: 1px solid transparent; background: #fff;transition: all 0.3s;border-radius: 6px;}
.news-list .item .st{ font-size: 0.3rem; color: #333; margin: 0.467rem auto 0.267rem; text-align: center;}
.news-list .item .desc{ font-size: 0.233rem;color: #999; margin-bottom: 0.583rem;text-align: center}
.news-list .item .more{ font-size: 0.267rem; 	width: 5rem;
    height: 0.667rem;
    background-color: #f6f6f6;
    border-radius: 4px; display: flex; align-items: center; justify-content: center; margin: 0 auto; transition: all 0.3s}
.news-list .item:hover{ border: solid 1px #0068b4;}
.news-list .item:hover .more{ background-color: #0068b4; color: #fff}

.apps-box{ padding: 1.25rem 0 0;}
.apps-box .apps-top{ display: flex; align-items: flex-start; justify-content: space-between;}
.apps-box .apps-top .right{ width: 35%; flex-shrink: 0; min-width: 0; margin-left: 1.417rem}
.apps-box .apps-top .left{ flex-grow: 1; min-width: 0;}
.apps-box .apps-top .left h1{ font-size: 0.883rem; font-weight: initial}
.apps-box .apps-top .left .con{ margin: 0.633rem auto 1.083rem 0; font-size: 0.267rem; color: #000; line-height: 1.7; max-height: 7.75rem; overflow: hidden;}
.apps-box .apps-top .left .more{	width: 2.833rem;
    height: 0.833rem;
    background-color: #04669c; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.333rem; cursor: pointer}
.apps-box .apps-top .right .box1{ background: #f2f5f8; padding: 0.5rem 0.667rem;}
.apps-box .apps-top .right .box1 .video-box{ height: 240px;}
.apps-box .apps-top .right .box1 .video-box video,.apps-box .apps-top .right .box1 .video-box iframe{ width: 100%; height: 100%;}
.apps-box .apps-top .right .box1 .st{ font-size: 0.433rem; color: #000; margin: 0.333rem auto 0.25rem 0;}
.apps-box .apps-top .right .box1 .desc{ font-size: 0.3rem; color: #606060;}


.apps-box .apps-top .right .box2{ background: #f2f5f8; padding: 0.5rem 0.667rem; margin-top: 0.5rem}
.apps-box .apps-top .right .box2 .title{ font-size: 0.367rem; margin-bottom: 0.25rem}
.apps-box .apps-top .right .box2 .links_wrap a{     color: #4489ec; font-size: 0.3rem; line-height: 2;}

.apps-body{ background: #f2f5f8; padding: 1.25rem 0 1.75rem; margin-top: 1.75rem}

.apps-title{ text-align: center;}
.apps-title .cn{ font-size: 0.85rem; color: #000;}
.apps-title .desc{ font-size: 0.4rem; margin-top: 0.417rem; line-height: 1.6}
.apps-body-list{ margin-top: 0.967rem}
.apps-body-list .item .mxw-image{ 	border-radius: 6px 6px 0px 0px;}
.apps-body-list .item{ background: #fff;}
.apps-body-list .item .info{padding: 0.5rem 0.417rem 0.367rem;}
.apps-body-list .item .info .st{ font-size: 0.4rem; margin-bottom: 0.367rem}
.apps-body-list .item .info .desc{ font-size: 0.267rem; color: #555; height: 1.067rem}

.apps-bot{ background: url("../images/app-d-bg.jpg") #f2f5f8 top repeat-x; margin-top: 1.417rem; padding: 1.667rem 0 1.667rem;}
.apps-bot .title{ font-size: 0.5rem; color: #000; display: flex; align-items: flex-end; justify-content: space-between}
.apps-bot .title .more{ font-size: 0.3rem; color: #777;text-decoration: underline; text-underline-offset: 10px;}
.apps-bot .list{ margin-top: 0.8rem}

.apps-bot .list .item{ display: flex; align-items: stretch; justify-content: space-between; background: #fff;}
.apps-bot .list .item .mxw-image{ width: 50%; flex-shrink: 0; }
.apps-bot .list .item .info{ flex-grow: 1; min-width: 0; padding: 0.433rem 0.467rem; display: flex;flex-wrap: wrap; align-content: center;}
.apps-bot .list .item .info .lc{ font-size: 0.267rem; width: 100%; color: #ff0000;}
.apps-bot .list .item .info .lt{ font-size: 0.333rem; margin: 0.417rem auto;width: 100%; line-height: 1.6}
.apps-bot .list .item .info .ld{ font-size: 0.233rem;width: 100%; line-height: 1.6 }













.sub_nav {
    z-index:999;
    position:absolute;
    top:2.083rem;
    display:none;
    width:5rem;
    padding:0.5rem 0.333rem;
    text-align:left;
    background-color:#fff;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}
.sub_nav a {
    display:block;
    padding:.125rem 0;
    font-size:0.333rem;
}
.sub_nav.sub_product_nav,
.sub_nav.sub_industries_nav {
    left:0;
    width:100%;
    padding:0;
    overflow:hidden;
}
.sub_nav.sub_product_nav &gt; div,
.sub_nav.sub_industries_nav &gt;div {overflow:hidden;}
.sub_industries_nav .left_side {
    float:left;
    width:74.8%;
    padding-right:1%;
}
.sub_industries_nav .left_side {
    padding-top:5%;
    padding-bottom:3.5%;
}
.sub_industries_nav .left_side .per_ind {
    float:left;
    width:23%;
    margin-left:2%;
}
.sub_industries_nav .left_side .per_ind:nth-child(4n+1){
    margin-left:0%;
    clear:both;
}
.sub_industries_nav .right_side {
    float:left;
    width:17.2%;
    padding:5% 2.5% 3.5%;
    background-color:#f2f5f8;
}
.sub_nav .side_dt_title {
    float:left;
    width:34.2%;
    margin-bottom:-9999px;
    padding-bottom:9999px;
    padding-left:10%;
    background:#eee;
}
.sub_nav .each_dd_content {padding-left:1rem;}
.sub_nav .each_dd_content {padding-left:1rem;}
.sub_nav .each_dd_content_inside &gt; div {
    float:left;
    width:50%;
}
.sub_nav.sub_product_nav .each_dd_content_inside &gt; div.side_dd_title {width:56%;}
.sub_nav.sub_product_nav .each_dd_content_inside &gt; div.side_dd_content {width:44%; margin-top: -1rem;}
.sub_nav.sub_industries_nav .each_dd_content_inside &gt; div.side_dd_title {width:48%;}
.sub_nav.sub_industries_nav .each_dd_content_inside &gt; div.side_dd_content {width:52%;}
.sub_nav.sub_industries_nav .each_dd_content_inside .side_dd_title_inner {width:65%;}
.sub_nav .tips {
    display:block;
    color:#232323;
}
.sub_nav .side_dt_title .tips {
    padding:0.833rem 0 0.417rem;
    font-weight:bold;
}
.sub_nav.sub_industries_nav .each_dd_content_inside .side_dd_title_inner .tips {
    margin-bottom:1rem;
    font-size:1rem;
}
.sub_nav .side_dt_title .side_list,.sub_nav .side_dd_content_wrap .per_serious_title {padding-bottom:5rem;}
.sub_nav.sub_industries_nav .side_dt_title .side_list, .sub_nav .side_dd_content_wrap .per_serious_title {padding:.25rem 0 1.5rem;}
.sub_nav .side_dt_title li,
.sub_nav .side_dd_content_wrap li {display:block;margin:0;}
.sub_nav .side_dt_title li a,
.sub_nav .per_serious_title a{
    position:relative;
    height:0.833rem;
    padding:0 0.333rem;
    line-height:0.833rem;
}
.sub_nav.sub_industries_nav .per_serious_title a {display:inline-block;height:2rem;color:#696969;line-height:2rem;}
.sub_nav .per_serious_title a {padding:0;}
.sub_nav .per_serious_title a .en {
    display:inline-block;
    width:2.333rem;
}
.sub_nav .side_dt_title li.on a {color:#fff;background:#696969;}
.sub_nav .side_dt_title li a .icon {
    position:absolute;
    right:0.333rem;
    top:0;
    display:none;
    width:0.3333rem;
    height:100%;
    background:url(../images/nav-icon1-1.png) no-repeat center center;
    background-size:0.3333rem 0.3333rem;
}
.sub_nav .side_dt_title li:hover a .icon,
.sub_nav .side_dt_title li.on a .icon{display:block;}
.sub_nav .per_serious_title li.on a,.sub_nav .per_serious_title li:hover a {
    color:#3f74bf;
}
.sub_nav .side_dd_content_wrap {
    float:left;
    width:55.8%;
    margin-bottom:-9999px;

    padding-bottom:9999px;
}
.sub_nav .each_dd_content,.sub_nav .side_dd_content_each {display:none;}
.sub_nav .side_dd_content_wrap .title {
    padding:0.8333rem 0 0.4166rem;
    font-weight:bold;
    font-size:0.46666rem;
    color:#232323;
}
.sub_nav .side_dd_content_wrap .small {font-size:.3rem;color:#696969;}

.sub_nav .side_dd_content_wrap .small-title {margin-bottom:0.167rem;font-weight:bold;font-size:0.3666rem;color:#232323;}
.sub_nav .side_dd_content_wrap .side_dd_image {padding:0.5rem 0 0.167rem;}
.sub_nav.sub_industries_nav .side_dd_content_wrap .side_dd_image {padding:2.5rem 0 5rem;}
.sub_nav .side_dd_title .more {
    display:block;
    font-size:1.1rem;
    color:#232323;
}
.sub_nav .side_dd_title .more .icon,
.index_other .each_item .dd_content .more .icon{
    display:inline-block;
    width:1.65rem;
    height:1.65rem;
    margin-left:.5rem;
    background:#696969 url(../images/nav-icon1-1.png) no-repeat center center;
    background-size:1rem 1rem;
    border-radius:100%;
    vertical-align:-.35rem;
}
.sub_nav .sub_bottom_kind {padding:2.1rem 0;box-shadow:0 5px 10px rgba(0,0,0,.1) inset;}
.sub_nav .sub_bottom_kind li {margin:0 2.5rem 0 0;}
.sub_nav .sub_bottom_kind li a {
    height:2.9rem;
    padding:0 1.5rem;
    font-size:.9rem;
    color:#232323;
    line-height:2.9rem;
    text-align:center;
    background:#dbdbdb;
    border-radius:.25rem;
}
.sub_nav .sub_bottom_kind li a .icon {
    display:inline-block;
    width:2.25rem;
    height:2.25rem;
    margin-right:.5rem;
    vertical-align:-.85rem;
}


.x-menu &gt; li:hover .sub_nav{ display: block}


.banner-ctrl{  background: #f6f6f6;}
.banner-ctrl .mxw-box{ display: flex; align-items: stretch; justify-content: center;}
.banner-ctrl .mxw-box .item{     padding: 0.333rem 0.3rem;
    text-align: center;
    position: relative;
    width: calc(100%/10);    display: flex;
    flex-direction: column;
    z-index: 99;}
.banner-ctrl .mxw-box .item .img{   
    min-width: 0;}

.banner-ctrl .mxw-box .item p{	color: #222222; font-size: 0.3rem;  margin-top: 0.167rem;    flex-shrink: 0;}
.banner-ctrl .mxw-box .item::before{  width: 100%; height: 11px; background: url("../images/pann-ico.png") top center no-repeat; content: ""; position: absolute; z-index: 100; left: 0; right: 0; top:-9px; display: none; z-index:99}
.banner-ctrl .mxw-box .item.active::before{ display: block}

.mxw-title{ text-align: center; }
.mxw-title .cn{ font-size: 0.8rem; color: #000;font-weight: bold;}
.mxw-title .en{font-size: 0.3rem; color: #999;text-transform: uppercase}

.mxw-pro{ padding: 1.25rem 0; }
.mxw-pro .list{ padding: 0 0.5rem; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; margin-top: 0.167rem}
.mxw-pro .list .item{ background: url("../images/inpro-bg.jpg") left no-repeat; background-size:cover; width: 49%; margin-top: 0.8rem; display: flex; align-items: stretch; justify-content: flex-start; padding: 1rem 0 0.6rem 0; border-radius: 0.1rem;}
.mxw-pro .list .item .left{ width: 60%; flex-shrink: 0;  padding-right: 6%; padding-left: 1rem}
.mxw-pro .list .item .st{font-size: 0.667rem; font-weight:bold; color: #222; }
.mxw-pro .list .item .desc{ color: #999999; font-size: 0.333rem; margin-top: 0.233rem; line-height: 1.7}
.mxw-pro .list .item .more{ color: #999; margin-top: 0.5rem;}
.mxw-pro .list .item .more img{ margin-left: 0.25rem;}
.mxw-pro .list .item:hover .st,.mxw-pro .list .item:hover .desc{ color: #0068b4;}
.mxw-pro .list .item .right{ flex-grow: 1; min-width: 0; padding-right: 6%;}
.mxw-pro .list .item .right img{ max-height: 6.433rem}

.mxw-news{background: url("../images/news-bg.jpg") no-repeat; background-size: cover; padding: 1.1rem 0; margin-top:0.75rem}
.mxw-news .mxw-box{ color: #fff; display: flex; align-items: center; justify-content: space-between;}
.mxw-news .mxw-box .left{ width: 4.5rem;}
.mxw-news .mxw-box .left .st{ font-size: 1rem; color: #fff; 	letter-spacing: 6px;}

.mxw-news .mxw-box .left .desc{ margin-top: 0.6rem; font-size: 0.333rem;}
.mxw-news .mxw-box .left .more{  width: 3rem; height: 1rem; border-top: 2px solid #fff; border-bottom: 2px solid #fff; display: flex;
align-items: center; justify-content: center; font-size: 0.333rem; margin-top: 1.75rem;}
.mxw-news .mxw-box .right{ width: 50%;}
.mxw-news .mxw-box .right .item{ display: flex; align-items: stretch; justify-content: space-between; margin-bottom: 0.75rem;}
.mxw-news .mxw-box .right .item .date{ width: max-content; flex-shrink: 0; font-size: 0.533rem; font-weight: bold; font-family: Arial,sans-serif;}
.mxw-news .mxw-box .right .item .date p{ font-size: 0.3rem;  margin-top: 0.15rem; font-weight: initial;}
.mxw-news .mxw-box .right .item .con{ flex-grow: 1; min-width: 0; margin-left: 0.833rem;}
.mxw-news .mxw-box .right .item .con .st{ font-size: 0.333rem;width: 100%;}
.mxw-news .mxw-box .right .item .con .desc{ font-size: 0.267rem; opacity: 0.7; line-height: 1.8; margin: 0.25rem auto 0.333rem; width: 100%;}
.mxw-news .mxw-box .right .item .con .more{ font-size: 0.233rem;}
.mxw-news .mxw-box .right .item:last-child{ margin-bottom:0}

.mxw-app{ padding: 1.25rem 0 1.2rem;}
.mxw-app .desc{ font-size: 0.367rem; line-height: 1.7; margin-top: 0.8rem; text-align: center}

.mxw-app .app-body{ display: flex; margin-top: 0.917rem; align-items: stretch; justify-content: space-between;}
.mxw-app .app-body .left{ width: 24.5%; flex-shrink: 0; margin-right: 0.8%;}
.mxw-app .app-body .item{ position: relative;}
.mxw-app .app-body .item p{ position: absolute; padding: 0.167rem 0.25rem 0.133rem; background:rgba(0,0,0,.8); width: 100%; color: #fff; bottom: 0; text-align: center;}
.mxw-app .app-body .right{ flex-grow: 1; min-width: 0; display: flex; flex-wrap: wrap; align-content: space-between; justify-content: space-between}
.mxw-app .app-body .left .item{ display: block; height: 100%;border-radius: 6px;overflow: hidden;}
.mxw-app .app-body .right .item{ width: 32.6%;    border-radius: 6px;
    overflow: hidden;}

.mxw-cu{}
.mxw-cu .itembox1{ display: flex; align-items: stretch; justify-content: space-between;}
.mxw-cu .item1{ width: 25.5%; margin-right: 0.8%; overflow: hidden; transition: all 0.3s; position: relative;    border-radius: 6px;
    overflow: hidden; }
.mxw-cu .item1:last-child{ margin-right: 0;}
.mxw-cu .item1.active{ flex-grow: 1; min-width: 0;}
.mxw-cu .item1 .image{ display: flex; align-items: center; justify-content: center;}
.mxw-cu .item1 .image img{ max-width: initial; height: 11.833rem;}
.mxw-cu .item1 .text{ position: absolute; width: 100%; height: 100%;  top: 0; right: 0; background: rgba(0,0,0,.6); display: flex; align-content: center; flex-wrap: wrap; justify-content: center; color: #fff; padding: 0 0.767rem;}
.mxw-cu .item1 .text&gt;div{ width: 100%; text-align: center;}
.mxw-cu .item1 .text .st{ font-size: 0.433rem; margin: 0.467rem auto 0.567rem; }
.mxw-cu .item1 .text .desc{ font-size: 0.367rem; line-height: 1.8}
.mxw-cu .item1 .text .more{ font-size: 0.3rem; padding-top: 0.75rem; margin-top: 0.3rem; border-top: 0.017rem solid #fff;}

.mxw-cu .item1.active .text{ width: 8.533rem;
    height: 8.25rem;    left: 0; top:50%;    border-radius: 5px;
    margin: 0 auto 0; transform: translateY(-50%);
}

.mxw-about{ padding-top: 1.5rem;}
.mxw-about&gt;.mxw-box{ display: flex; align-items: stretch; justify-content: space-between; }
.mxw-about&gt;.mxw-box .left{ width: 50.8%; flex-shrink: 0; display: flex; align-items: stretch; flex-wrap: wrap; justify-content: space-between; margin-right: 0.7rem;}
.mxw-about&gt;.mxw-box .left .item{ width: 50%; height: 50%; display: flex; align-content: center; justify-content: center; flex-wrap: wrap; border: 1px solid #e5e5e5; border-radius: 6px; }
.mxw-about&gt;.mxw-box .left .item&gt;div{ width: 100%; text-align: center; }
.mxw-about&gt;.mxw-box .left .item .cn{ font-size: 0.5rem; margin-top: 0.333rem;}
.mxw-about&gt;.mxw-box .left .item .en{ font-size: 0.333rem; margin-top: 0.167rem;}
.mxw-about&gt;.mxw-box .left .item:hover{	box-shadow: 0px 2px 8px 2px
rgba(102, 102, 102, 0.07);}

.mxw-about&gt;.mxw-box .right .st{ font-size: 0.833rem; margin-bottom: 0.667rem;}
.mxw-about&gt;.mxw-box .right .desc{ font-size: 0.4rem; line-height: 1.8  }
.mxw-about&gt;.mxw-box .right .more{	width: 2.133rem;
    height: 0.8rem;
    background-color: #0068b4;
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.333rem; color: #fff;
    margin-top: 0.667rem;
}
.mxw-about .zs-box{ margin: 0.917rem auto 0; width: 88%; max-width: 1650px; position: relative ; }
.zs-swiper{ overflow: hidden; width: 93%; margin: 0 auto;}

.mxw-about .zs-box .swiper-button-next,.mxw-about .zs-box .swiper-button-prev{
    width: 0.417rem;
    height: 0.9rem;
    background-color: #888888;
}
.mxw-about .zs-box .swiper-button-next::after,.mxw-about .zs-box .swiper-button-prev::after{
     color: #fff;
    font-size: 0.333rem;
}

.mxw-about .zs-box .swiper-button-next:hover,.mxw-about .zs-box .swiper-button-prev:hover{	background-color: #008947;}

.mxw-case{ padding: 1.5rem 0 1.25rem;}
.mxw-case .desc{ font-size: 0.367rem; line-height: 1.7; margin-top: 0.75rem; text-align: center; }


.mxw-case .case-body{ display: flex; margin-top: 0.917rem; align-items: stretch; justify-content: space-between;}
.mxw-case .case-body .left{ width: 49.95%; flex-shrink: 0; margin-right: 0.8%;}
.mxw-case .case-body .item{ position: relative;    border-radius: 6px;
    overflow: hidden;}
.mxw-case .case-body .item p{ position: absolute; padding: 0.167rem 0.25rem 0.133rem; background:rgba(0,0,0,.8); width: 100%; color: #fff; bottom: 0; text-align: center;}
.mxw-case .case-body .right{ flex-grow: 1; min-width: 0; display: flex; flex-wrap: wrap; align-content: space-between; justify-content: space-between;
}
.mxw-case .case-body .left .item{ display: block; height: 100%; position: relative;}
.mxw-case .case-body .right .item{ width: 49.5%; position: relative;}
.mxw-case .item .flx{ background: rgba(0,147,221,.3); position: absolute; width: 100%; height: 100%; top:0; left: 0; display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; opacity: 0;}
.mxw-case .item .flx&gt;div{ width: 100%;}
.mxw-case .item .flx .st{ font-size: 0.333rem; text-align: center; width: 60%; border-bottom: 1px solid #fff; padding-bottom: 5px; margin: 0 auto 8px;}
.mxw-case .item .flx .more{	width: 2.033rem;
    height: 0.617rem;
    border-radius: 2px;
    border: solid 1px #ffffff;
    font-size: 0.3rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
}
.mxw-case .item:hover .flx{ opacity: 1}
.mxw-pa{ margin-bottom: 1.333rem;}
.pa-swiper{ margin-top:0.45rem}
.pa-swiper{ overflow: hidden; padding:  5px}
.pa-swiper .swiper-slide{ border: solid 1px #e7e7e7;transition: all 0.3s ;    border-radius: 6px;text-align: center;
    overflow: hidden;}
.pa-swiper .swiper-slide:hover{	box-shadow: 0px 1px 6px 0px
rgba(0, 0, 0, 0.14);}






#map{ height: 450px; margin-top: 1rem; margin-bottom: 1.5rem}



footer{	border-top: solid 0.05rem #008947; padding-top: 1.333rem; background: #081226;}
footer .mxw-box{ color: #fff;}
footer .ftp{ display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 0.25rem}
footer .ftp .fd-title{ font-size: 0.467rem; color: #fff; margin-bottom: 0.583rem;}
footer .ftp .fd-title::after{
    width: 0.35rem;
    border-top: solid 3px #008947;
    margin: 0.1rem auto 0 0;
    content: '';
    display: block;
}

footer .box1{ width: 19.5%; margin-right: 4%; flex-shrink: 0}
footer .box1 .desc{ font-size: 14px; line-height: 1.9; opacity: 0.7;}
footer .box1 .dd-tel{ margin-top: 0.5rem; }
footer .box1 .dd-tel{ font-size: 0.5rem;  font-family: Impact,sans-serif;}
footer .box1 .dd-tel .t{ font-size: 0.267rem; font-weight: bold; color: #008947; margin-bottom: 0.167rem}

footer .box2{ width: 13.5%; margin-right: 4%;flex-shrink: 0}
footer .box2 .list{ font-size: 0.3rem; line-height: 1.8; opacity: 0.5}

footer .box3{ width: 25.8%;margin-right: 4%;flex-shrink: 0}
footer .box3 .con{ font-size: 0.3rem; line-height: 1.8;}
footer .box3 .con .sc{ color: #848993;}


footer .box4{ flex-grow: 1; min-width: 0; display: flex; align-items: center; justify-content:space-between;}
footer .box4 .item{ width: 32%; text-align: center; font-size: 0.233rem; margin-top: 1rem}
footer .box4 .item p{ margin-top: 10px;}


footer .copy{ border-top: solid 3px #283144;}
footer .copy .mxw-box{ padding: 0.3rem 0 0.367rem; text-align: center; font-size: 0.233rem; color: rgba(255,255,255,.5); }
footer .copy .mxw-box a{color: rgba(255,255,255,.5);}

.xf-msg{ position: fixed; left: 0; bottom: 0;width: 239px;
    height: auto; transition: all 0.3s;
    box-shadow: 0px 3px 7px 0px
    rgba(0, 0, 0, 0.35); background: #fff; border-radius: 10px; z-index: 99}
.xf-msg .tit{ background: #6696ff; border-radius: 10px 10px 0 0; display: flex; color: #fff; align-items: center; justify-content: space-between; padding:10px 12px; font-size: 14px}
.xf-msg .tid{ padding:12px; font-size: 14px}
.xf-msg .tid .tx1{ font-size: 14px;color: #1f1f1f; line-height: 2;}
.xf-msg .tid .tx2 {font-size: 14px;color: #1f1f1f; line-height: 2;}
.xf-msg .tid .tx2 img{ vertical-align:text-top;}
.xf-msg .msg1{ resize: none; width: 100%; height: 70px; padding: 5px; border: 1px solid #dcdfe6; border-radius: 5px; margin-top: 12px}
.xf-msg .msg2{  padding: 5px; border: 1px solid #dcdfe6; border-radius: 5px; margin-top: 12px}
.xf-msg .tid .tj{background: #6696ff; font-size: 14px; color: #fff;  border-radius: 5px; padding: 8px 25px; margin: 12px 0 0 auto; display: block; cursor:pointer}
.xf-msg .close{ font-weight: bold; font-size: 20px; line-height: 1; cursor: pointer; height: 100%; width: 20px; text-align: center;}

.top-other{ display: flex; align-items: center; justify-content: space-between;}
.top-other .item{ margin: 0 0.2rem;}
.top-other .lang{ display: flex; align-items: center; font-size: 0.267rem;}
.top-other .lang&gt;img{ margin: 0 3px; }








    /* ==================== 页面具体样式 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;border-radius:6px;
}
.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 .detail&gt;p{max-width: 100%;}
.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: 12rem;
    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 #000;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #000;
}
.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 ==================== */

.fa-swiper{    overflow: hidden;}


.fix_white_wrap.active,.pro_menu.active {
    z-index:10;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background-color:#fff;
    box-shadow:0 0 .5rem rgba(0,0,0,.3);
}
 .page_menu {
    box-shadow:0 0 15px rgba(0,0,0,.2);    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;margin-top: 1.1rem;
}
.ny-product-desc{    position: relative;    overflow: initial;}
.page_menu ul{display: flex;
      }

.page_menu li {
    float:left;
}
.page_menu li a {
    display:block;
    height:1.4rem;
    margin-right:0.6rem;
    
    font-size:0.333rem;
    line-height:1.5rem;
    border-bottom:.1rem solid transparent;
    transition:all .6s;
    -moz-transition:all .6s;
    -webkit-transition:all .6s;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
     font-weight:bold;
}
.page_menu li.on a,.page_menu li:hover a {
    font-family:'微软雅黑';
    border-bottom-color:#4489ec;
   
}

.js-lists.pro .item .mxw-image{
    border: 1px solid #ccc;
    position: relative;
}
.js-lists.pro .item .mxw-image span{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 8px 15px;
    font-size: 14px;
    background: #ccc;
	border-radius: 3px;  

}
.my-sub-cate{display:flex;flex-wrap:wrap;padding-top:0.5rem;    padding-bottom: 0;}
.my-sub-cate .my-cate-item{font-size:0.3rem;border:1px solid transparent;padding:5px 20px;color:#333;display:block;margin-right:5px;}
.my-sub-cate .my-cate-item:last-child{margin-right:0;}
.my-sub-cate .my-cate-item:hover,
.my-sub-cate .my-cate-item.active{border-color:#0a328d;}


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

    .mxw-box{ padding: 0; margin: 0 auto; width: 95%;}
    .banner-ctrl .mxw-box .item{ padding: 15px 0;width:  20%}
    .banner-ctrl .mxw-box .item p{ font-size: 12px;    zoom: 0.9; margin: 5px auto 0}
    .banner-ctrl .mxw-box .item .img img{ height: 40px}
    .banner-ctrl .mxw-box .item::before{zoom: 0.8}
    .mxw-pro{ padding: 45px 0;}
    .mxw-title .cn{ font-size: 24px}
    .mxw-title .ico{ font-size: 0; margin: 5px auto;}
    .mxw-title .en{ font-size: 14px}
    .mxw-pro .list .item{ width: 100%; padding: 20px 0 15px; margin-top: 20px}
    .mxw-pro .list{ width: 95%; padding: 0; margin: 0 auto;}
    .mxw-pro .list .item .left{ padding: 10px 0 0 15px;}
    .mxw-pro .list .item .st{ font-size: 18px}
    .mxw-pro .list .item .desc{ font-size: 16px; margin-top: 15px}
    .mxw-pro .list .item .right{ padding-right: 15px; padding-left: 15px}
    .mxw-pro .list .item .more{ font-size: 14px; margin-top: 20px}
    .mxw-news{ padding: 40px 0 30px; margin-top:0}
    .mxw-title.ne{display:none}
    .mxw-news .mxw-box{ flex-wrap: wrap;}
    .mxw-news .mxw-box .left{ width: 100%; text-align: center;}
    .mxw-news .mxw-box .left .st{ font-size: 22px; letter-spacing: 0}
    .mxw-news .mxw-box .left .desc{ font-size: 14px; margin-top: 15px}
    .mxw-news .mxw-box .left .more{ margin: 20px auto 20px; zoom: 0.6}
    .mxw-news .mxw-box .right{ width: 100%; margin-top: 25px;}
    .mxw-news .mxw-box .right .item .con .st{ font-size: 16px;}
    .mxw-news .mxw-box .right .item .con .desc{ font-size: 14px; margin: 5px auto 10px 0}
    .mxw-news .mxw-box .right .item .con{ margin-left: 20px}
    .mxw-news .mxw-box .right .item .con .more{ font-size: 12px}
    .mxw-news .mxw-box .right .item{ margin-bottom: 15px}
    .mxw-app{ padding: 40px 0}
    .mxw-app .desc{ font-size: 14px; margin-top: 12px}
    .mxw-app .app-body{ margin-top: 20px; flex-wrap: wrap;}
    .mxw-app .app-body .left{ margin: 0 auto 15px; width: 100%; display: none;}
    .mxw-app .app-body .right{ width: 100%;}
    .mxw-app .app-body .right .item{ width: 49%; margin-bottom: 15px}
    .mxw-app .app-body .right .item p{ font-size: 14px;}
    .mxw-cu .itembox1{ flex-wrap: wrap;}
    .mxw-cu .item1{ width: 100%;}
    .mxw-cu .item1 .image img{ width: 100%; height: auto;}
    .mxw-cu .item1.active .text, .mxw-cu .item1 .text{ width: 85%; height: 80%;top: 50%;    transform: translateY(-50%); margin: 0 auto; left: 0; right: 0}
    .mxw-cu .item1 .text .icon img{ height: 35px}
    .mxw-cu .item1 .text .st{ font-size: 16px; margin: 10px auto 15px}
    .mxw-cu .item1 .text .desc{ font-size: 14px; line-height: 1.8}
    .mxw-cu .item1 .text .more{ font-size: 14px; padding-top: 20px; margin-top: 10px;}
    .mxw-about{ padding-top: 40px}
    .mxw-about&gt;.mxw-box{ flex-wrap: wrap;}
    .mxw-about&gt;.mxw-box .left{ width: 100%;}
    .mxw-about&gt;.mxw-box .left .item{ padding: 20px 10px;}
    .mxw-about&gt;.mxw-box .left .item .icon&gt;img{ height: 35px;}
    .mxw-about&gt;.mxw-box .left .item .cn{ font-size: 18px; margin-top: 15px;}
    .mxw-about&gt;.mxw-box .left .item .en{ font-size: 14px; margin-top: 10px;}
    .mxw-about&gt;.mxw-box .right{ width: 100%; margin-top: 15px;}
    .mxw-about&gt;.mxw-box .right .st{ font-size: 22px; margin-bottom: 15px;}
    .mxw-about&gt;.mxw-box .right .desc{ font-size: 14px;}
    .mxw-about&gt;.mxw-box .right .more{ zoom: 0.8; margin-top: 15px;}
    .mxw-about .zs-box{ width: 100%; margin-top: 30px}
    .zs-swiper{ width: 80%;}
    .mxw-case{ padding: 40px 0 20px;}
    .mxw-case .desc{ font-size: 14px; margin-top: 20px;}
    .mxw-case .case-body{ margin-top: 20px; flex-wrap: wrap;}
    .mxw-case .case-body .left{ width: 100%; margin-bottom: 10px;}
    .mxw-case .case-body .right .item{ width: 49%; margin-bottom: 10px}
    .mxw-pa{ margin-bottom: 45px;}

    footer{ padding-top: 40px;}
    footer .ftp{ flex-wrap: wrap;}
    footer .box1{ width: 100%;}
    footer .box2{ display: none}
    footer .ftp .fd-title{ font-size: 20px; margin-bottom: 15px}
    footer .box3{ width: 100%; margin: 25px auto 0}
    footer .box4 .item{ margin: 20px auto 15px}
    footer .box3 .con{ font-size: 14px}
    footer .box1 .dd-tel{ margin-top: 15px}
    .jszc-box{ padding: 40px 0}
    .n-title2 .cn{ font-size: 22px}
    .js-lists{ margin-top: 30px}
    .js-lists .item p{ font-size: 14px}
    .ny-product-desc .mxw-box{ margin-top: 40px; margin-bottom: 40px}
    .news-box{padding: 40px 0}
    .news-list .item .more{ width: 90%; zoom: 0.9}
    .news-list .item{ width: 100%; margin: 0 auto 15px !important;}

    .apps-box{ padding: 40px 0}
    .apps-box .apps-top{ flex-wrap: wrap;}
    .apps-box .apps-top .left h1{ font-size: 20px;}
    .apps-box .apps-top .left .con{ margin: 15px auto 25px}
    .apps-box .apps-top .left .con{ height: 440px}
    .apps-box .apps-top .left .more{ zoom: 0.8}
    .apps-box .apps-top .right{ width: 100%; margin: 25px auto 0;}
    .apps-box .apps-top .right .box1{ padding: 20px 15px;}
    .apps-box .apps-top .right .box1 .st{ margin: 10px auto 15px; font-size: 16px;}
    .apps-box .apps-top .right .box1 .video-box{ height: auto; max-height: 240px;}
    .apps-box .apps-top .right .box1 .desc{ font-size: 14px}

    .apps-box .apps-top .right .box2{padding: 20px 15px;}
    .apps-box .apps-top .right .box2 .title{ font-size: 22px;}
    .apps-box .apps-top .right .box2 .links_wrap a{ font-size: 14px;}
    .apps-body{ padding: 40px 0; margin-top: 35px}
    .apps-title .cn{ font-size: 18px}
    .apps-title .desc{ font-size: 14px;}
    .apps-body-list{ margin-top: 30px;}
    .apps-body-list .item .info{ padding: 15px 10px;}
    .apps-body-list .item .info .st{ font-size: 16px; margin: 5px auto 10px;}
    .apps-body-list .item .info .desc{ height: 61px;}
    .apps-bot{ margin-top: 35px; padding: 40px 0}
    .apps-bot .title{ font-size: 20px;}
    .apps-bot .title .more{ font-size: 14px}
    .apps-bot .list{ margin-top: 20px;}
    .apps-bot .list .item{ flex-wrap: wrap;}
    .apps-bot .list .item .mxw-image{ width: 100%;}

    .n-title2 .desc{ font-size: 14px; margin-top: 15px;}
    .jszc-box2 .top{ padding-top: 40px}
    .jszc-box2 .top .fa-cate .item{ zoom: 0.8}
    .jszc-box2 .bottom{ margin: 25px auto 45px;}
    .jszc-box2 .bottom .swiper-slide .item .st{ font-size: 18px; margin: 10px auto 10px}
    .jszc-box2 .bottom .swiper-slide .item .desc{ font-size: 14px; padding: 0 10px}
    .jszc-box2 .bottom .swiper-slide .item .more{ margin-top: 15px; zoom: 0.6; font-size: 20px  }

    .wx-box{ padding-top: 40px; padding-bottom: 45px;}
    .wx-list .st{ font-size: 18px; margin: 10px auto 10px}
    .wx-list .desc{ font-size: 14px; padding: 0 10px}
    .wx-list  .more{ margin-top: 15px; zoom: 0.6; font-size: 20px; margin-bottom: 25px  }

    .cont-cate .item{ font-size: 16px; margin: 0 auto;}
    .cont-cate .item .icon img{ height: 30px}
    .about-box{ padding: 40px 0;}
    .about-box .about-top{ margin-top: 20px; flex-wrap: wrap}
    .about-box .about-top .item{ width: 100%;}
    .about-box .about-top .item .info{ padding: 25px 15px;}
    .about-center{ padding: 30px 0 20px;}
    .about-center .mxw-box{ flex-wrap: wrap;}
    .about-center .mxw-box .item{ width: 100%; margin-bottom: 15px;}

    .about-bottom{ padding-top: 40px;}
    .n-title{ font-size: 20px;}
    .about-bottom .desc{ font-size: 14px; padding: 0; margin: 15px auto 25px;}
    .about-swiper .swiper-slide{ flex-wrap: wrap;}
    .about-swiper .swiper-slide .left{ width: 100%;}
    .about-swiper .swiper-slide .right{ width: 100%; margin-top: 15px;}
    .about-swiper .swiper-slide .right .item{ width: 49%;}




    body{ margin-bottom: 0}

.banner-ctrl .mxw-box{    flex-wrap: wrap;}
.js-lists.pro .item .mxw-image span{    font-size: 12px;}
.js-lists .item .desc{ font-size: 12px;    max-height: 38px}
.n_banner img{ width:100%}

.my-sub-cate .my-cate-item{    width: 48.5%;}



.pa-swiper{ margin-top:20px}




}

.xf-msg{ display:none}








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