@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 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination  a,.mxw-pagination  span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;

    margin: 4px;
}
.mxw-pagination  a.current,
.mxw-pagination  a:hover {
    background-color: #0aa8dd;
    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;
    max-width: 21.333rem;
}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #00a2ea;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #00a2ea;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    outline: none;
    border-width: 0;
    cursor: pointer;
    background: #00a2ea;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;

}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;
    margin-left: 12px;
}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 1px solid #eee;
        font-size: 17px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1680px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 1;
    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: #00a2ea;
    border-color: #00a2ea;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 1.383rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: none;
    outline: none;

}
.mxw-banner .swiper-button-next::after,
.mxw-banner .swiper-button-prev::after {
    font-size: 0.667rem;
    color: #00a2ea;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}
@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */

.mxw-box {

    margin: 0 auto;
    font-size: 0.267rem;
    color: #333;
    width: 73.6%;
    max-width:1400px;
    min-width: 1000px;
}

/* 容器大小 */
.mxw-box {
    font-size: 18px;
    color: #333;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-box {
        max-width: 86%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#00a2ea;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 240%;
        width:240%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 18px;}
.top-box{ width: 87.5%; min-width: 1200px; max-width: 1680px; margin: 0 auto;justify-content: space-between;  }
.top-box .logo{ display: flex; align-items: center; justify-content: flex-start;}
.top-box .logo .logo-img{ margin: 12px auto 12px 0;}
.top-box .logo .logo-img img{ max-height: 76px; padding-right: 0.3rem; border-right:1px solid #C6C6C6}
.top-box .logo .logo-text{  padding-left: 0.333rem; font-size: 0.4rem; color: #0193DE; font-weight: 400}
.top-box .logo .logo-text p{font-size: 14px; color: #777;margin-top: 0.2rem}
.top-box .logo .logo-text p::before{width: 0.133rem;height: 0.133rem; background: #0193DE; border-radius: 50%; margin-right: 0.1rem; display: inline-block; content: ""; }
.top-box .top-tel{ text-align: right; font-weight: 700; font-size: 16px; color: #777777}
.top-box .top-tel div{ font-size: 0.4rem; color: #0193DE}
.top-box .top-tel p{ display: flex; align-items: center; justify-content: flex-end; margin-bottom: 0.2rem}
.top-box .top-tel p img{ margin-left: 0.167rem;}

.pc-menu-bg{ background: #279CD8; height: 1rem}
.pc-menu{ display: flex; align-items: center}
header .pc-menu > li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    min-width: 0;
    flex-grow: 1;
    margin-right: 1rem;

}
header .pc-menu > li.sub > a {
    padding-right: 10px;
}
header .pc-menu > li.sub > a:after {
    display: block;
}

header .pc-menu > li:last-child {
    margin-right: 0;
}
header .pc-menu > li:last-child:after {
    display: none;
}
header .pc-menu > li:hover > a {
    background: rgba(255,255,255,.15);
    color: #fff !important;}
header .pc-menu > li.active > a {
    background: rgba(255,255,255,.15);
    color: #fff !important;
    font-size: 0.333rem; font-weight: bold;
}
header .pc-menu > li:hover > ul {
    visibility: visible;
    opacity: 1;
}
header .pc-menu > li ul {
    background-color: #fff;
    width: 3.3333rem;
    position: relative;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s, visibility 0s;
}
header .pc-menu > li ul:hover {
    opacity: 1;
    visibility: visible;
}
header .pc-menu > li ul li.active > ul,
header .pc-menu > li ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    z-index: 9;
}
header .pc-menu > li ul li a {
    position: relative;
}
header .pc-menu > li ul li a:after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: #eee;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
header .pc-menu > li ul a {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    font-size: 0.2333rem;
    color: #333;
    line-height: 1.2;
    padding: 0.2333rem;
}
header .pc-menu > li > a {
    text-align: center;
    font-size: 16px;
    padding: 20px 0;
    line-height: 1.2;
    color: #fff;
    z-index: 9;
    position: relative;
    width: 100%;
}
header .pc-menu > li > a:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid #fff;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}
header .pc-menu > li > ul {
    border-top: 1px solid #ddd;
    box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.14);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 99;
}
header .pc-menu > li > ul > li > a.active,
header .pc-menu > li > ul > li > a:hover {
    background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu > li > ul > li > a.active:after,
header .pc-menu > li > ul > li > a:hover:after {
    display: none;
}
header .pc-menu > li > ul > li > a:last-child:after {
    display: none;
}
header .pc-menu > li > ul > li > ul {
    position: absolute;
    left: 3.3333rem;
    top: 0;
    border-left: 1px solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
    position: absolute;
    left: 3.3333rem;
    top: 0;
    border-left: 1px solid #ddd;
}
@media screen and (max-width: 1740px) {
    header .pc-nav .mxw-box {
        max-width: 96%;
    }
}
@media screen and (max-width: 1480px) {
    header .pc-nav .nav-top .logo {
        width: 380px;
    }
    header .pc-nav .nav-top .tel {
        margin-right: 40px;
    }
    header .pc-nav .nav-top .tel img {
        width: 30px;
    }
    header .pc-nav .nav-top .tel .desc p {
        font-size: 16px;
    }
    header .pc-nav .nav-top .tel .desc strong {
        font-size: 18px;
    }
    header .pc-nav .nav-top .language ul {
        width: 39px;
    }
    header .pc-nav .nav-top .language ul > li {
        padding: 5px;
    }
    header .pc-nav .nav-top .language .head {
        width: 55px;
        height: 28px;
        padding-right: 16px;
    }
    header .pc-nav .nav-top .language .head:after {
        border-top: 6px solid #172a88;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
    }
    header .pc-menu > li > a {
        font-size: 15px;
        padding: 15px 0;
    }
}


.mxw-title{
    text-align: center;
}
.mxw-title .en{ color: #939393; font-size: 0.4rem; font-weight: bold}
.mxw-title .cn{ font-weight: bold; color: #000; font-size: 0.667rem; display: flex; align-items: center; justify-content: center; margin-top: 0.167rem}
.mxw-title .cn::after,.mxw-title .cn::before{ display: block; width: 0.95rem; height: 0.017rem; background: #777777; content: ""; margin: 0 0.467rem}

.pro-box{ padding: 1.583rem 0 1.167rem;}
.pro-item{box-shadow: 3px 5px 6px rgba(0, 0, 0, 0.05);}
.pro-body{ flex-wrap: wrap; margin-top: 0.8rem}
.pro-body .pro-item .pro-img{  position: relative; display: block }
.pro-body .pro-item .pro-img .flx{ position: absolute; width: 100%; height: 100%; color: #fff; display: flex; align-items: center; justify-content: center; z-index: 1; font-size: 0.467rem; font-weight: 700; top: 0}
.pro-body .pro-item .list{ padding: 0.1rem 0 ; font-size: 0.233rem; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap}
.pro-body .pro-item .list a{ display: block; color: #666; padding:5px 0.25rem  ; border-bottom: dashed 1px #ccc; width:50% }
.pro-body .pro-item .list a:hover{ color: #279CD8}
.pro-body .pro-item .list a:nth-child(6n) ~ a{ border-bottom: none}

.adv-body{ margin-top: 0.583rem; position: relative; padding: 0.667rem 0; background: url("../images/adv-bg.png" ) center no-repeat; background-size: cover}

.adv-body .flx{}
.adv-body .flx .h1{ color: #2C2C2C; text-align: center; font-size: 0.6rem; font-weight: bold}
.adv-body .flx .h2 { font-size: 0.533rem; color: #2C2C2C; text-align: center; margin-top: 0.633rem}
.adv-body .flx .list{ display: flex; align-items: center; justify-content: center; margin-top: 0.667rem;}
.adv-body .flx .list .adv-item{ padding: 0.483rem 0.4rem 0.5rem; background: #fff; text-align: center;border-radius: 0.267rem; margin: 0 0.25rem}
.adv-body .flx .list .adv-item>div{ display: flex; font-size: 0.333rem; color: #000; align-items: flex-end; margin-top: 0.167rem}
.adv-body .flx .list .adv-item>div>p{ color: #0193DE; font-size: 0.533rem; line-height: 1;}


.mxw-about{ padding-top: 1.667rem;}
.ab-body{ margin-top: 0.533rem; background: url("../images/ab-img.png") center no-repeat; background-size: cover; padding: 2.667rem 0}
.ab-body .flx .ab-con{ width: 46%; background: #fff; padding: 1rem}
.ab-body .flx .ab-con .desc{ font-size: 0.233rem; color: #959595; line-height: 2;  margin-top: 0.3rem}
.ab-body .flx .ab-con .st{ font-size: 0.333rem; color: #0193DE; font-weight: bold;}
.ab-body .flx .ab-con .st::after{ display: block; content: ""; width: 0.967rem; height: 0.033rem; background: #AAAAAA; margin-top: 3px;}

.mxw-video{ padding: 1.583rem 0}
.mxw-video .list{ margin-top: 0.533rem;}
.vdo-more{ width: 2.4rem; color: #fff; background:#32A7E4; font-size: 0.267rem; text-align: center; display: block; line-height: 2.2; margin: 0.467rem auto 0; border-radius: 0.3rem}
.vdo-more:hover{ color: #fff; background: #47abde}
.mxw-video .list .vdo-item p{ color: #939393; font-size: 0.4rem; font-weight: bold; margin-top: 0.167rem; text-align: center;}


.zs-body{ margin-top: 0.633rem; background: url("../images/zs-bg.png") center no-repeat; background-size: cover; padding: 0.6rem 0}
.zs-body .list{ display: flex;flex-wrap: wrap; justify-content: center;}
.zs-body .list .zs-item{ margin: 0 2% 0  0; max-width: 15%}
.zs-body .list .zs-item:nth-child(4n){ margin-right: 0}

.mxw-news{ padding: 1.583rem 0}
.news-body{ margin-top: 0.633rem; background: #F9F9F9; height: auto; overflow: hidden}
.news-body .news-cate{ display: flex; align-items: stretch; justify-content: flex-start;}
.news-body .news-cate .item{ font-size: 0.4rem; color: #818181; padding: 0.367rem 1.667rem;}
.news-body .news-cate .item.active{ background: #0193DE; color: #fff}
.news-body .news-swiper{ margin: 0.667rem; overflow: hidden; }
.news-body .news-swiper .swiper-slide{ flex-wrap: wrap;}
.news-body .news-swiper .swiper-slide .news-item{ width: 50%;  }
.news-body .news-swiper .swiper-slide .news-item:nth-child(1),.news-body .news-swiper .swiper-slide .news-item:nth-child(3){ padding-right: 0.667rem; border-right: 1px solid #ECECEC}
.news-body .news-swiper .swiper-slide .news-item:nth-child(2),.news-body .news-swiper .swiper-slide .news-item:nth-child(4){ padding-left: 0.667rem; }
.news-body .news-swiper .swiper-slide .news-item .mxw-image{ flex-shrink: 0; max-width: 3.5rem; margin-right: 0.333rem}
.news-body .news-swiper .swiper-slide .news-item .txt-con{ flex-grow: 1; min-width: 0 }
.news-body .news-swiper .swiper-slide .news-item .txt-con .st{ font-size: 0.267rem; color: #2C2C2C; font-weight: bold}
.news-body .news-swiper .swiper-slide .news-item .txt-con span{ font-size: 0.233rem; margin: 0.167rem auto 0.25rem 0; color: #777777; display: block}
.news-body .news-swiper .swiper-slide .news-item .txt-con p{ font-size: 12px; color: #777; line-height: 1.8}
.news-body .news-swiper .swiper-slide .news-item:nth-child(1)::after,.news-body .news-swiper .swiper-slide .news-item:nth-child(2)::after{
    display: block; height: 0.033rem; margin-top: 0.617rem; content: ""; width: 100%; background: #ECECEC;
}
.news-body .news-swiper .swiper-slide .news-item:nth-child(3),.news-body .news-swiper .swiper-slide .news-item:nth-child(4){padding-top: 0.617rem}
.news-body .news-swiper .swiper-slide .news-item:hover .st{ color: #0193DE}

.foot-tp-bg{ background: #1A1A1A; padding: 0.5rem 0 0.617rem;}
.foot-tp-bg .mxw-box{}
 .d-links{font-size: 0.267rem; margin-bottom:15px;}
 .d-links a{font-size: 0.267rem}

.d-menu { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0}
.d-menu a{ color: #ECECEC; font-size: 0.267rem;}


.foot-bd-bg .mxw-box { font-size: 12px; color: #606060; padding: 10px 0; text-align: center; line-height: 1.6}
.foot-bd-bg .mxw-box a{color: #606060 }
.foot-bd-bg .mxw-box a:hover{color: #606060 }

.d-lx-box{ margin-top: 20px; display: flex; align-items: center; justify-content: center; color: #C7C7C7;}

.d-lx-info{ display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; width: 9.583rem; font-size: 0.2667rem; margin: 0 2rem}
.d-lx-info .item img{ width: 0.4rem; margin-right: 0.167rem}
.d-lx-info .item{ margin: 5px 0}
.se-box{ width: 5.833rem; line-height: 0.667rem}
.se-box form{ display: flex; align-items: stretch; justify-content: center;}
.se-box button{ width: 1rem; background: #279CD8; cursor: pointer; border-radius:  0 0.333rem 0.333rem  0 ; }
.se-box form>div{ border: 0.017rem solid #ECECEC;  border-radius:  0.333rem 0 0 0.333rem; padding-left: 0.417rem; width: 100%}

.max-page-cont{ padding: 1.583rem 0; }
.max-page-cont .mxw-box .st{ color: #279CD8; font-size: 0.533rem; text-align: center; font-weight:bold; margin-bottom: 0.5rem}
.max-page-cont .mxw-box .mxw-content{ font-size: 20px; color: #000; line-height: 2;}
.max-page-cont .mxw-box .mxw-content img{ max-width: 100%; height: auto !important;}
.max-page-cont .zs-list{ display: flex; align-items: stretch; justify-content: center; margin-top: 0.55rem}
.max-page-cont .zs-list .zs-item{ max-height: 4.7rem; display: flex; align-items: center; justify-content: center; margin: 0 0.167rem;max-width: 200px;}
.max-page-cont .zs-list .zs-item img{ max-height: 100%; }


.mxw-page-video{ padding: 1.583rem 0;}
.mxw-video-box .item p{ text-align: center; font-size: 0.333rem; font-weight: bold; margin-top: 10px; color: #279CD8}
.mxw-video-box .item{ margin-bottom: 0.417rem}
.mxw-video-box .item:hover p{ color: #2C2C2C}

.mxw-page-news{ padding: 1.583rem 0;}
.mxw-page-news .news-cate{ font-size: 0.533rem; display: flex; justify-content: flex-start; font-weight: bold; align-items: center;}
.mxw-page-news .news-cate .cate-item::after{ content: "/"; line-height: 1; margin-top: -3px;}
.mxw-page-news .news-cate .cate-item:last-child::after{ display: none}
.mxw-page-news .news-cate .cate-item{ display: flex; align-items: center;}
.mxw-page-news .news-cate .cate-item a{border-bottom: 5px solid transparent}
.mxw-page-news .news-cate .cate-item.active a{ color: #279CD8; border-bottom: 5px solid #279CD8}

.mxw-page-news .news-list{ margin-bottom: 0.583rem}
.mxw-page-news .news-list .news-item{ display: flex; align-items: center; justify-content: flex-start; margin-top: 0.633rem}
.mxw-page-news .news-list .news-item .mxw-image{ flex-shrink: 0; max-width: 3.5rem; margin-right: 0.333rem}
.mxw-page-news .news-list .news-item .txt-con{ flex-grow: 1; min-width: 0 }
.mxw-page-news .news-list .news-item .txt-con .st{ font-size: 0.4rem; color: #4E4E4E; font-weight: bold}
.mxw-page-news .news-list .news-item .txt-con span{ font-size: 0.233rem; margin: 0.167rem auto 0.25rem 0; color: #777777; display: block}
.mxw-page-news .news-list .news-item .txt-con p{ font-size: 0.267rem; color: #666666; line-height: 1.8}



/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 0 0.4032rem 0.7258rem;
    margin-bottom: 0.5645rem;
}
.ny-news-desc > .mxw-box {
    padding-top: 1rem;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 0.4516rem;
    color: #333;
    padding-bottom: 0.3226rem;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 0.3226rem;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 0.3226rem;
}
.ny-news-desc .info .text {
    font-size: 0.2581rem;
    color: #999;
    display: inline-block;
    margin-right: 0.3226rem;
    border-left: 1px solid #ccc;
    padding-left: 0.3226rem;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 1.6129rem;
    padding: 0.0806rem 0.1613rem;
    line-height: 1;
    font-size: 0.2258rem;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;
    font-size: 0.2581rem;
}
.ny-news-desc .article p {
    line-height: 1.8;
}
@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 30px 20px;
    }
    .ny-news-desc .article {
        font-size: 0.28rem;
    }
    .ny-news-desc .info .text {
        margin-right: 0.1rem;
        padding-left: 0.1rem;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 0.2rem;
    }
}
/* ==================== 新闻详情 end ==================== */

.mxw-page-product{ padding: 1.583rem 0}
.mxw-page-product .po-tt{ font-size: 0.533rem; color: #279CD8; text-align: center; font-weight: bold; margin-bottom: 0.5rem}
.mxw-page-product .left-box{ border-right:solid 26px #279CD8;border-left:solid 26px #279CD8; border-top:solid 20px #279CD8;border-bottom:solid 20px #279CD8; background: #fff; width: 5.417rem;flex-shrink: 0;}
.mxw-page-product .left-box .cate-item{ display: block; width: 100%; color: #9E9E9E; font-size: 0.3rem; padding: 0.33rem 0.25rem; border-bottom: 1px solid #F5F5F5}
.mxw-page-product .left-box .cate-item:hover,.mxw-page-product .left-box .cate-item.active{ background: #93CDEB; font-size: 0.3rem; color: #fff}
.mxw-page-product .left-box .cate-item:last-child{ border-bottom: 0}

.pro-page{ display: flex; align-items:flex-start; justify-content: space-between}
.pro-page .right-box{ min-width: 0; flex-grow: 1; margin-left: 0.5rem;}
.pro-page .right-box .pro-list .item p{ line-height: 2.2; background: #666; text-align: center; font-size: 0.3rem; color: #fff;    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 10px;}
.pro-page .right-box .pro-list .item:hover p{ background:#279CD8 }
    .pro-list .tr{ display: flex; align-items: stretch; justify-content: flex-start;margin-bottom: 0.333rem;}
    .pro-list .tr .td1{ width: 18%; flex-shrink: 0;  border: 2px solid #0d9bff;  }
    .pro-list .tr .td2{ margin-left: 2%; width: 19%; }
.pro-list .tr .td1 .con{ font-size: 0.4rem; display: flex; align-items: center; justify-content: center; padding: 0.333rem; background: #47abde; color: #fff;}

@media screen and (max-width: 1000px) {
    .mxw-box{ min-width: initial; padding: 0; width: 95%}
    .pro-box{ padding: 40px 0 45px;}
    .mxw-title .en{ font-size: 18px;}
    .mxw-title .cn{ font-size: 22px}
    .mxw-title .cn::after, .mxw-title .cn::before{ margin: 0 15px}
    .pro-body{ margin-top: 5px}
    .pro-body .pro-item{ width: 100%; margin: 30px auto 0 auto !important;}
    .pro-body .pro-item .pro-img .flx{ font-size: 20px}
    .pro-body .pro-item .list a{font-size: 14px}
    .adv-body{ margin-top: 30px; padding: 35px 0}
    .adv-body .flx .h1{ font-size: 20px;}
    .adv-body .flx .h2{ font-size: 16px; margin-top: 15px}
    .adv-body .flx .list{ flex-wrap: wrap; margin-top: 25px; justify-content: flex-start}
    .adv-body .flx .list .adv-item{ width: 48.5%; margin: 0 3% 15px 0; padding: 10px 10px 20px;}
    .adv-body .flx .list .adv-item:nth-child(2n){ margin-right: 0;}
    .adv-body .flx .list .adv-item>div{ font-size: 14px; text-align: center; justify-content: center;margin-top: 0}
    .adv-body .flx .list .adv-item>div>p{font-size: 20px; }
    .adv-body .flx .list .adv-item>img{ width: 75px}
    .mxw-about{ padding-top: 40px}
    .ab-body{ padding: 0; width: 95%; margin: 30px auto 0; background: none}
    .ab-body .flx .ab-con{ width: 100%; padding: 10px 0 0 0}
    .ab-body .flx .ab-con .desc br{display: none}
    .ab-body .flx .ab-con .desc{ font-size: 14px; margin-top: 10px}
    .ab-body .flx .ab-con .st{font-size: 18px}
    .mxw-video{ padding: 40px 0 45px;}
    .mxw-video .list .vdo-item p{font-size: 16px; margin-top: 5px}
    .vdo-more{ width: 140px; height: 36px; border-radius: 18px; font-size: 16px; margin-top: 20px;}
    .zs-body{ margin-top: 25px; padding: 30px 0 10px;  }
    .zs-body .list{flex-wrap: wrap; justify-content: space-between; width: 95%; margin: 0 auto}
    .zs-body .list .zs-item{ width: 48.5%; max-width: initial; margin: 0 3% 20px 0}
    .zs-body .list .zs-item:nth-child(2n){ margin-right: 0}

    .mxw-news{ padding: 40px 0 45px;}
    .news-body{ margin-top: 30px;}
    .news-body .news-cate .item{font-size: 18px; line-height: 2.2; padding: 0 20px;}
    .news-body .news-swiper{ margin: 15px;}
    .news-body .news-swiper .swiper-slide .news-item{ width: 100%;}
    .news-body .news-swiper .swiper-slide .news-item:nth-child(1), .news-body .news-swiper .swiper-slide .news-item:nth-child(3){ padding: 0; border: 0}
    .news-body .news-swiper .swiper-slide .news-item:nth-child(2), .news-body .news-swiper .swiper-slide .news-item:nth-child(4){ padding: 0}
    .news-body .news-swiper .swiper-slide .news-item .mxw-image{ width: 2.5rem}
    .news-body .news-swiper .swiper-slide .news-item .txt-con p{     -webkit-line-clamp: 2;}
    .news-body .news-swiper .swiper-slide .news-item .txt-con .st{ font-size: 16px;}
    .news-body .news-swiper .swiper-slide .news-item .txt-con span{ font-size: 12px; margin: 3px auto 10px 0}
    .mxw-news .news-body .news-swiper .swiper-slide .news-item::after{ height: 1px;  margin: 10px auto;content: "";
        width: 100%;
        background: #ECECEC; display: block}
    .mxw-news .news-body .news-swiper .swiper-slide .news-item:last-child::after{ display: none}
    .d-menu{ display: none;}
    .foot-tp-bg .mxw-box .d-links{ font-size: 14px;}
    .foot-tp-bg .mxw-box .d-links a{ font-size: 12px;}
    .d-lx-box{ font-size: 14px; flex-wrap: wrap;}
    .d-logo{ display: none}
    .d-lx-info{ width: 100%; margin: 0 auto;}
    .d-lx-info .item{ width: 50%;}
    .d-lx-info .item:nth-child(5),.d-lx-info .item:nth-child(6){ width: 100%;}
    .d-ewm{ margin-top: 15px;}
    .mxw-tool {
        padding: 6px 10px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #333;
        color: #fff;
        font-size: 14px;
    }
    .mxw-tool .icon {
        text-align: center;
    }
    .mxw-tool .tool-item {
        width: 18%;
        height: 50px;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    .mxw-tool .tool-item:nth-child(5) ~ .tool-item {
        display: none;
    }
    .mxw-tool .tool-item .icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        margin-bottom: 5px;
    }
    .mxw-tool .tool-item .text {
        font-size: 13px;
        width: 100%;
        text-align: center;
        letter-spacing: 1px;
        text-indent: 1px;
    }
    .mxw-tool {
        position: fixed;
        z-index: 99;
    }

    .max-page-cont,.mxw-page-news,.mxw-page-video,.mxw-page-product{    padding: 40px 0 45px; }
    .max-page-cont .mxw-box .st{        font-size: 22px;    margin-bottom: 25px;}
    .mxw-page-news .news-cate{ font-size: 20px; }
.mxw-page-news .news-cate .cate-item a{     border-bottom: 2px solid transparent;}
.mxw-page-news .news-cate .cate-item.active a{border-bottom: 2px solid #279CD8;}
.mxw-page-news .news-list .news-item{ margin-top:20px;}
.mxw-page-news .news-list .news-item .mxw-image{    max-width: 2.5rem;    margin-right: 10px;}
.mxw-page-news .news-list .news-item .txt-con .st {
    font-size: 16px;}
.mxw-page-news .news-list .news-item .txt-con p{font-size: 12px;    line-height: 1.5;    -webkit-line-clamp: 2;}
.mxw-page-news .news-list .news-item .txt-con span{font-size: 12px;     margin: 5px auto 10px 0;}
.mxw-video-box .item p{font-size: 14px;      margin-top: 5px;}
.mxw-video-box .item{ margin-bottom:10px }
.mxw-page-product .po-tt{font-size: 20px;}
.pro-page{    flex-wrap: wrap;}
.mxw-page-product .left-box{ width:100%; border:none;    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;}
.mxw-page-product .left-box .cate-item{font-size: 14px;    line-height: 1.5;    padding: 10px 5px;    width: 48.5%;}
.mxw-page-product .left-box .cate-item:hover, .mxw-page-product .left-box .cate-item.active{font-size: 14px;}

.pro-page .right-box{        margin-top: 25px;
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;}
.pro-page .right-box .pro-list .item p{font-size: 14px;    line-height: 1.5; }

.max-page-cont .mxw-box .mxw-content{font-size: 16px;    line-height: 1.8; }
.max-page-cont .zs-list{    margin-top: 25px;
    flex-wrap: wrap;
    width: 100%;    justify-content: space-between;}
.max-page-cont .zs-list .zs-item{    width: 48.5%;margin: 0 auto;}

.pro-list .tr {flex-wrap: wrap;}
.pro-list .tr .td1{      font-size: 16px;
    width: 100%;
    padding: 10px;    border: 1px solid #0d9bff;}

.pro-list{ margin-top:20px;}

.pro-list .tr .td2{    width: 48.5%;    margin: 10px auto 0px;}



}










/* ==================== 页面具体样式 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 ==================== */

















