@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.active,
.mxw-pagination  a:hover {
    background-color: #d62722;
    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: #d62722;
    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: #f9f9f9;
}
.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: #d62722;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #d62722;
}
.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;
    margin-right: -20px;
}
.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 {
    width: 65px;
    height: 44px;
    background-color: #0081c5;
    border-radius: 0px 5px 5px 0px;
     color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.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;

}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #fff;

    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #fff;
    outline: none;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #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: #d62722;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}
.mxw-box2 {
    max-width: 1500px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    html {
        font-size: 55px !important;
    }
    .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:#d62722;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%;}
	.footer3 ul li .iconfont{ width:initial; height:initial}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}

.top-box .logo-box{ margin: 0.267rem auto 0.267rem 0; font-size: 0;   display: flex; align-items: center;}
.top-box .logo-box>.logo>img{ max-height:1.767rem;}
.top-box .logo-box .logo-text{ font-size: 0.333rem; color: #010101; /*font-weight: bold;*/ margin-left: 0.667rem;}

.mxw-keywords .left .zx{ display: inline-block; font-size: 0.35rem; margin-right: 0.833rem; vertical-align: middle}
.mxw-keywords .left .zx>img{ margin-right: 5px}
.mxw-keywords .left .zx b{ color: #d62722; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; padding: 0.5rem 0 }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;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; background: #fff;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:18px;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:16px;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{  }
header .welcome {
    background: #e4e4e4;
    height: 30px;
    line-height: 30px;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:rgba(255,255,255,.6);
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #333333;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color:#333333;
}
header .welcome .right img{ margin-right: 15px;}
header .welcome .right >a {
    padding-left:5px;padding-right:5px;
}
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:hover .con{ display: block;}
header .welcome .right .ttel{ margin-right: 0.5rem; font-size: 14px; display: flex; align-items: center}

.top-box{ align-items: stretch; position: relative}
.top-box .right{ display: flex; flex-grow: 1; min-width: 0; justify-content: flex-end; align-items: center; }


.top-box .right { display: flex; align-items: center; margin-left: 0.75rem;  font-size: 0.433rem; /*font-weight: bold;*/ color: #000; flex-shrink: 0; }
.top-box .right>img{ margin-right: 0.2rem;}


.nav-bg{ background: #0081c5; width: 100%; height: auto; overflow: hidden;    position: sticky;
    top: 0;z-index: 999;  }






.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    float: none;
}
.x-menu > li {

    margin: 0;
    text-align: center;
    float: none;
    position: relative;

    width: 100%;
}

.x-menu > li > a {
    font-size: 0.333rem;
    color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    padding: 0.3rem 0;
    width: 100%;
    justify-content: center;
    line-height: initial;
    height: 100%;
}

.x-menu > li > a:hover {
    color: #fff;
    opacity: 0.9;
}
.x-menu>li.active{ background: #fff;}
.x-menu > li.active > a {
    color: #333;
}


.x-menu > 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: 120%;
    left: -10%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;

}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#d62722;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}

.x-menu > li > a>span{ width: 100%;}

.x-menu > li.jx{ width:max-content;margin: 0 0.25rem; display: flex; align-items: center; }
.x-menu > li.jx::after{border-right: 1px dashed #fff; height: 0.35rem; font-size: 0; margin: 0 auto; content: ""; display: block;}

.mxw-banner .swiper-pagination .swiper-pagination-bullet{ width: 0.967rem; height: 4px; opacity: 1; border-radius: 2px}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{ background: #d62722; border-color: #d62722 }

.cont-cate{ background: #fefafa}
.cont-cate>.mxw-box{ display: flex; align-items: center; justify-content: center;}
.cont-cate>.mxw-box>.item{ font-size: 0.267rem; color: #333; padding: 0.333rem 0.833rem; transition: all 0.3s;}
.cont-cate>.mxw-box>.item.active{ background: #0081c5; color: #fff;}

.pro-box{ padding: 0.967rem 0;}
.n-title{ text-align: center;}
.n-title .cn{ font-size: 0.6rem; color: #333; font-weight: bold;}
.n-title .desc{ font-size: 0.3rem; color: #3f3f41; margin-top: 0.333rem;}
.pro-box .list{ margin-top: 0.9rem; display: flex; align-items: stretch; flex-wrap: wrap;}
.pro-box .list .item{ width: 23.6875%; margin-right: 1.75%; position: relative;box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.23);}
.pro-box .list .item:nth-child(4n){ margin-right: 0}
.pro-box .list .item:nth-child(4n)~.item{ margin-top: 0.5rem;}
.pro-box .list .item p{ padding: 0.233rem 0.167rem; position: absolute; bottom: 0; text-align: center; background: rgba(0,129,197,0.5); width: 100%; color: #fff;}


.comm-msg{ padding: 1.083rem 0 1.367rem; background: url("../images/comm-msg.jpg") no-repeat; background-size: cover;}
.comm-msg>.mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.comm-msg>.mxw-box .right{ width: 39.375%; flex-shrink: 0;}
.comm-msg>.mxw-box .left{ flex-grow: 1; min-width: 0; margin-right: 1rem;}
.comm-msg>.mxw-box .left .tt1{font-size: 0.9rem; font-weight: bold;}
.comm-msg>.mxw-box .left .tt2{font-size: 0.367rem;color: #333; margin-top: 0.4rem;}
.comm-msg>.mxw-box .left .tt3{ margin-top: 0.75rem;color: #0081c5;	font-size: 0.467rem; font-weight: bold;}
.comm-msg>.mxw-box .left .tt3 img{ margin-right: 0.25rem;}
.comm-msg>.mxw-box .right{}
.comm-msg>.mxw-box .right .inp{ width: 100%; display: flex;justify-content: space-between; margin-bottom: 0.167rem;}
.comm-msg>.mxw-box .right .inp input{ width: 49%; background: #fff; padding: 0.3rem 0.333rem; font-size: 0.267rem;}
.comm-msg>.mxw-box .right .inp input::placeholder{ color: #999}
.comm-msg>.mxw-box .right .inp textarea{resize: none; width: 100%; height: 1.233rem; padding: 0.333rem; background: #fff; border: 0; font-size: 0.267rem;}
.comm-msg>.mxw-box .right .inp textarea::placeholder{ color: #999}
.comm-msg>.mxw-box .right .su{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 0.333rem;}
.comm-msg>.mxw-box .right .su .code{ width: 49%; position: relative; }
.comm-msg>.mxw-box .right .su .code input{padding: 0.3rem 0.333rem;background: #fff; font-size: 0.267rem; width: 100%}
.comm-msg>.mxw-box .right .su .code input::placeholder{ color: #999}
.comm-msg>.mxw-box .right .su img{ position: absolute;    right: 0.233rem;top: 0.233rem; cursor: pointer;}
.comm-msg>.mxw-box .right .su>input{ width: 49%; cursor: pointer; color: #fff;	background-color: #e60412; font-size: 0.267rem;
    border-radius: 3px;}

.case-box{ margin: 1rem 0;}
.case-box .list{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.case-box .list .item{ width: 24.175%; margin-right: 1.1%;}
.case-box .list .item:nth-child(4n){ margin-right: 0;}
.case-box .list .item:nth-child(4n)~.item{ margin-top: 0.417rem;}
.case-box .list .item p{ font-size: 0.3rem; color: #fff; padding: 0.2rem 0.25rem; background: #4c4c4c; text-align: center;}

.news-box{ margin: 1rem 0;}
.news-box .news-item{ display: flex; align-items: flex-start;justify-content: space-between; padding-bottom: 0.4rem; border-bottom: 1px solid #dfdfdf}
.news-box .news-item:nth-child(1)~.news-item{ margin-top: 0.6rem;}
.news-box .news-item:last-child{ padding: 0; border: 0;}
.news-box .news-item .date{ font-size: 0.233rem; font-weight: bold; color: #6b6b6b; padding: 0 0.833rem; flex-shrink: 0;}
.news-box .news-item .date p{ font-size: 1rem; color: #2c2c2c; line-height: 1}
.news-box .news-item .mxw-image{ width: 17.5%; flex-shrink: 0; margin-right: 0.467rem;}
.news-box .news-item .con{ flex-grow: 1; min-width: 0; padding-top: 0.3rem;}
.news-box .news-item .con .title{ font-size: 0.4rem; color: #222222; font-weight: bold;}
.news-box .news-item .con .desc{ font-size:0.267rem; color: #666; margin-top: 0.25rem;}
.news-box .news-item:hover .title{ color: #0081c5}

.cont-box{ margin: 1rem auto;}
.cont-box>.mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.cont-box>.mxw-box .right{ width: 31.25%; flex-shrink: 0; padding: 1rem 0 0.167rem;}
.cont-box>.mxw-box .left{ margin-right: 1.583rem; flex-grow: 1; min-width: 0;}
.cont-box>.mxw-box .right .name{ font-size: 0.5rem; color: #333; font-weight: bold; }
.cont-box>.mxw-box .right .tel{ margin: 0.5rem auto 0.583rem; font-size: 0.433rem;color: #d62722; font-weight: bold;}
.cont-box>.mxw-box .right .text{ font-size: 0.3rem; color: #666; line-height: 1.8;}
.cont-box>.mxw-box .right .list{ margin-top: 0.75rem; padding-top: 0.7rem; border-top: 1px solid #e5e5e5; display: flex; align-items: flex-start; justify-content: flex-start;}
.cont-box>.mxw-box .right .list .item{ margin-right: 0.6rem;}
.cont-box>.mxw-box .right .list .item p{ font-size: 0.233rem; color: #666; margin-top: 0.25rem; text-align: center;}

.jj-box{ margin: 1rem 0;}
.jj-box .jj-title{ font-size: 0.6rem;color: #333; text-align: center;}
.jj-box .content{ font-size: 0.3rem; line-height: 2;color: #3f3f41; margin-top: 0.633rem;}
.jj-box .content img{ max-width: 100%; height: auto !important; }

.about-box1{ margin: 1rem auto 1.167rem;}
.about-box1>.mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.about-box1>.mxw-box .right{ width: 54%; flex-shrink: 0; margin-right: -2.5rem;}
.about-box1>.mxw-box .left{ flex-grow: 1; min-width: 0;}
.a-title{ font-size: 0.433rem; color: #333 }
.a-title::after{ width: 0.733rem; height: 0.083rem; background: #d62722; content: ""; display: block; margin: 0.333rem auto 0 0;}
.about-box1>.mxw-box .left .con{ background: #fcfcf9; padding: 0.533rem 0.5rem; margin-top: 0.533rem; margin-right: 0.333rem; line-height: 2; font-size: 0.267rem; color: #555; text-indent: 2em;}

.about-box2{ background: #fcfcf9; padding-top: 1.267rem; max-width: 1920px; margin: 0 auto;
display: flex; align-items: flex-start; justify-content: space-between;}
.about-box2 .left{ width: 50%; }
.about-box2 .right{ width: 50%; padding-left: 1.533rem; padding-top: 1rem;}
.lc1-swiper{ margin-top: 1rem; overflow: hidden;}
.lc1-swiper .swiper-slide{ padding-right: 2.5rem; font-size: 0.25rem; line-height: 1.8}

.lc2-swiper{ margin-top: 1rem; overflow: hidden; position: relative;}
.lc2-swiper .swiper-slide{ text-align: center; }
.lc2-swiper .swiper-slide .ico{ width: 0.3rem; height: 0.3rem; border-radius: 50%; border: 1px solid #fff; background: #d62722; margin: 0.2rem auto 0;  }
.lc2-swiper .swiper-slide p{ margin-top: 0.6rem; font-size: 0.267rem; color: #666666; font-weight: bold;}
.lc2-swiper .swiper-slide.swiper-slide-thumb-active .ico{ width: 0.667rem; height: 0.667rem;  margin-top: 0}
.lc2-swiper .swiper-slide.swiper-slide-thumb-active p{ font-size: 0.467rem; color: #d62722}
.lc2-swiper .swiper-wrapper{ align-items: stretch; height: auto !important;}
.lc2-swiper::after{ display: block; width: 100%; content: ""; position: absolute; height: 2px; background: #cccccc;
    top: 0.333rem;}

.about-box3{ margin-top: 1.833rem;}
.about-box3 .con{ margin: 1rem auto 2.667rem; display: flex; align-items: stretch; justify-content: stretch;}
.about-box3 .con .left{ width: 40.375%; flex-shrink: 0;}
.about-box3 .con .right{ flex-grow: 1; min-width: 0;  padding-left: 1.917rem;}
.about-box3 .con .right .title{ font-size: 0.3rem; color: #555;}
.about-box3 .con .right .list{ margin-top: 1rem; }
.about-box3 .con .right .list .item{ display: flex; align-items: center;justify-content: flex-start; margin-bottom: 0.533rem; font-size: 0.333rem;}
.about-box3 .con .right .list .item .ico{ margin-right: 0.5rem; width: 1rem;}
.about-box3 .con .right .dt{ font-size: 0.467rem; color: #d62722; font-weight: bold; margin-top: 1.2rem;}

.about-box4{ margin-bottom: 1.333rem; background: url("../images/zs-bg.jpg") bottom no-repeat; background-size: 100% auto;}
.about-box4 .a-title{ text-align: center;}
.about-box4 .a-title::after{ margin: 0.467rem auto 0;}
.about-box4 .desc{ text-align: center; margin-top: 0.467rem;}



#certify {
    position: relative;
    margin: 3% auto 0;
}

#certify .swiper-container {
    padding-bottom: 60px;
}

#certify  .swiper-slide {
    width: 386px;
    height: 531px;
    background: #fff;
    box-shadow: 0 8px 30px #ddd;
}
#certify  .swiper-slide img{
    display:block;
}
#certify  .swiper-slide p {
    line-height: 98px;
    padding-top: 0;
    text-align: center;
    color: #636363;
    font-size: 1.1em;
    margin: 0;
}

#certify .swiper-pagination {
    width: 100%;
    bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
    border: 3px solid #fff;
    background-color: #d5d5d5;
    width: 10px;
    height: 10px;
    opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
    border: 3px solid #00aadc;
    background-color: #fff;
}

.swipexynext{
    position: absolute;
    top:40%;
    right: 0px;
    background: url(//cdn.myxypt.com/574f880f/23/02/243dbb26468f7ac2d239b89972ef9726b9ef0471.png) no-repeat;
    width: 70px;
    height: 47px;
    background-size: 100% 100%;
    z-index: 999;
    border: none;
    outline: none;
    cursor: pointer;
}
.swipexyfrev{
    position: absolute;
    top:40%;
    left: 0px;
    background: url(//cdn.myxypt.com/574f880f/23/02/eef96a561be4611a422858f101362dc664605767.png) no-repeat;
    width: 70px;
    height: 47px;
    background-size: 100% 100%;
    z-index: 999;
    border: none;
    outline: none;
    cursor: pointer;
}

.mxw-about{padding: 1.25rem 0 1.533rem; background: url("../images/about-bgi.jpg") no-repeat; background-size: cover;}
.mxw-about>.mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.mxw-about>.mxw-box .right{ width: 43%; flex-shrink: 0;}
.mxw-about>.mxw-box .left{ flex-grow: 1; min-width: 0; padding-right: 0.917rem;}

.mxw-about>.mxw-box .left .cn{ font-size: 0.433rem; color: #e60412; font-weight: bold;}
.mxw-about>.mxw-box .left .en{ font-size: 0.233rem; color: #e60412; text-transform: uppercase; margin-top: 0.133rem; }
.mxw-about>.mxw-box .left .kh{  color: #0081c5; font-size: 0.467rem; font-weight: bold;  margin: 0.8rem auto 0.75rem;}
.mxw-about>.mxw-box .left .desc{ line-height: 2; font-size: 0.3rem;color: #666666;}

.gd-box{ margin-top: 1rem; display: flex; align-items: flex-start; justify-content: flex-start; font-size: 0 }
.gd-box .item{ width: 25%; text-align: center; font-size: 0}
.gd-box .item .num{ display: flex; align-items: flex-end; justify-content: center;}
.gd-box .item .num .scrolling-numbers{ color: #0081c5; font-size: 1rem; line-height: 1;
    font-family: Arial, "Microsoft Yahei", Sans-Serif, serif; font-weight: bold;}
.gd-box .item p{ width: 100%; text-align: center; font-size: 0.267rem; color: #232d33;}
.gd-box .item .num sub{ font-size: 1rem; font-weight: bold;color: #0081c5; line-height: 1;}
.a-more{ display: block; padding: 0.25rem 0.567rem;  border-radius: 0.167rem; background: #e60412; color: #fff; font-size: 0.3rem; line-height: 1; width: max-content; margin-top: 1.5rem;}

.mxw-title{ text-align: center;}
.mxw-title .cn { font-size: 0.6rem; color: #0081c5; font-weight: bold; position: relative;}
.mxw-title .cn::after{ content: ""; height: 2px; background: #66b3dc; width: 45.25%; display: block; margin: 0.433rem auto 0;}
.mxw-title .cn::before{ content: ""; height: 4px;
background: #0081c5; width: 1.167rem; display: block; left: 0; right: 0; margin: 0 auto; position: absolute; bottom: -1px;}
.mxw-title .desc{ font-size: 0.3rem; margin-top: 0.467rem;}

.mxw-honnor{ padding-bottom: 1rem; margin-top: 0.833rem;}
.mxw-honnor .a-more{ margin: 0 auto;}

.mxw-pro{ margin-top: 1.5rem; margin-bottom: 1.583rem;}
.mxw-pro .pro-cate-bg{ margin-top: 1.25rem; background: #f0faff; }
.mxw-pro .pro-cate-bg .pro-cate{ display: flex; align-items: center;  justify-content: space-between;}
.mxw-pro .pro-cate-bg .item{ width: 100%; text-align: center; position: relative; padding:0.367rem 0; cursor: pointer;}
.mxw-pro .pro-cate-bg .item::before{ display: block; width: 100%; content: ""; background: #fff; height: 3px; position: absolute; top: -3px;  }
.mxw-pro .pro-cate-bg .item p{ margin-top: 0.2rem;}
.mxw-pro .pro-cate-bg .item.active::before{background: #0081c5;}
.mxw-pro .pro-cate-bg .item img{ height: 1.383rem;}
.pro-swiper{ overflow: hidden;}

.pro-body{ padding: 0.4rem 0 0.6rem; background: url("../images/pro-bg.jpg") no-repeat; background-size: cover; }
.pro-swiper .swiper-slide{ display: flex; align-items: flex-start; justify-content: space-between;}
.pro-swiper .swiper-slide .left{ width: 24.1%; flex-shrink: 0;}
.pro-swiper .swiper-slide .right{ padding-left: 1.5rem; flex-grow: 1; min-width: 0;}
.pro-swiper .swiper-slide .right .cn{ color: #0081c5; font-size: 0.55rem; font-weight: bold;}
.pro-swiper .swiper-slide .right .en{ color: #dcdcdc; font-size: 0.433rem; text-transform: uppercase; margin-top: 0.1rem;}
.pro-swiper .swiper-slide .right .en::after{ content: ""; display: block; margin-top: 0.1rem; height: 2px;
    width: 3.283rem; background: #0081c5;}
.pro-swiper .swiper-slide .right .desc{ font-size: 0.367rem; color: #222; line-height: 1.8; margin-top: 1rem;}
.pro-swiper .swiper-slide .right .list{ margin-top: 1rem; display: flex; align-items: center; justify-content: flex-start;flex-wrap: wrap;}
.pro-swiper .swiper-slide .right .a-more{ margin-left: 4.083rem;}
.pro-swiper .swiper-slide .right .list .item{ text-align: center; padding: 0.2rem 0.25rem; width: 23.5%;  margin-right:2%; font-size: 0.3rem; color: #fff; background: #0081c5;    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;}

.mxw-fa{ padding: 0 0 1.583rem;}
.mxw-fa .list{ margin-top: 0.75rem; display: flex; padding: 0 0.333rem;}
.mxw-fa .list .item{ width: 100%; position: relative;}
.mxw-fa .list .item:nth-child(1)~.item{ margin-left: 0.333rem;}
.mxw-fa .list .item .flx{ position: absolute; width: 100%; height: 100%; top: 0;  display: flex; align-content: flex-end;  background: rgba(0,0,0,.5); flex-wrap: wrap; }
.mxw-fa .list .item .flx{ padding: 0 0.583rem 0.583rem 0.583rem;}
.mxw-fa .list .item .flx .icon{ width: 100%;}
.mxw-fa .list .item .flx .icon img{ height: 1rem;}
.mxw-fa .list .item .flx p{ width: 100%; font-size: 0.367rem; color: #fff; margin: 0.15rem auto 0 0;}
.mxw-fa .list .item .flx p span{ opacity: 0.5; font-size: 0.233rem; padding: 0.1rem 0.3rem; border: 1px solid #fff; display:none}
.mxw-fa .list .item:hover .flx p span{ display: block; width: max-content;}
.mxw-fa .a-more{ margin: 0.75rem auto 0;}

.mxw-case{ padding: 0.867rem 0 0.667rem; background: #f5f5f5;}
.mxw-case .list{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap; margin-top: 0.667rem;}
.mxw-case .list .item{ width: 32%; margin-right: 2%; position: relative;}
.mxw-case .list .item:nth-child(3n){ margin-right: 0;}
.mxw-case .list .item:nth-child(3n)~.item{ margin-top: 0.467rem;}
.mxw-case .list .item p{ position: absolute; width: 100%; bottom: 0; background: rgba(0,0,0,.7); font-size: 0.3rem;color: #fff; padding: 0.3rem 0.333rem; text-align: center;}
.mxw-case .a-more{ margin: 38px auto 0}


.mxw-hz{ margin: 1.667rem auto 2rem;}
.hz-body{ position: relative;}
.hz-swiper{ margin: 0.917rem auto 0; overflow: hidden; width: 88.125%;}
.hz-swiper .swiper-slide{ border: 1px solid transparent;}
.hz-swiper .swiper-slide:hover{ border: 1px solid #006cb7;}
.hz-body .swiper-button-prev,.hz-body .swiper-button-next{ width: 0.617rem; height: 0.617rem; background: #f5f5f5;color: #b2b5bc;}
.hz-body .swiper-button-prev::after,.hz-body .swiper-button-next::after{ font-size: 0.267rem; }
.hz-body .swiper-button-prev{ left: 0;}
.hz-body .swiper-button-next{ right: 0}
.hz-body .swiper-button-prev:hover,.hz-body .swiper-button-next:hover{ color: #fff; background: #0081c5; border-color: #0081c5;}

.mxw-news{ padding: 0.917rem 0 1.25rem; margin-bottom: 1.583rem; background: url("../images/news-bg.jpg") no-repeat; background-size: cover;}
.news-body{ display: flex; align-items: flex-start; justify-content: space-between; margin-top: 0.917rem;}
.news-body .right{ width: 34.375%; flex-shrink: 0; margin-left: 1.133rem; }
.news-body .left{ flex-grow: 1; min-width: 0;}
.news-body .left .top{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.3rem; border-bottom: 1px solid #dfdfdf;}
.news-body .left .top .news-cate{ display: flex; align-items: center; justify-content: flex-start;}
.news-body .left .top .news-cate .item{ margin-right: 1rem; font-size: 0.433rem; color: #666666; font-weight: bold;}
.news-body .left .top .news-cate .item.active{ color: #0081c5;}
.news-body .left  .news1{ display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; padding-bottom: 0.467rem; border-bottom: 1px dashed #e5e5e5}
.news-body .left  .news1 .mxw-image{ width: 20%; flex-shrink: 0; margin-right: 0.267rem;}
.news-body .left  .news1 .con{ flex-grow: 1; min-width: 0;	}
.news-body .left  .news1 .con .title{font-size: 0.333rem; color: #333; font-weight: bold;}
.news-body .left  .news1 .con .tm{ font-size: 0.233rem; color: #999; margin: 0.2rem auto;}
.news-body .left  .news1 .con .desc{	font-size: 0.217rem; line-height: 2.1; color: #666; max-height: 0.917rem;}
.news-body .left  .news1:hover .title{ color: #0e59ae}
.news-body .left  .list{ margin-top: 0.433rem;}
.news-body .left  .list .item{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.267rem; border-bottom: 1px dashed #e5e5e5;}
.news-body .left  .list .item span{ font-size: 0.2rem; color: #999; font-weight: bold; flex-shrink: 0;}
.news-body .left  .list .item p{ font-size: 0.217rem; flex-grow: 1; min-width: 0; margin-right: 0.2rem;}
.news-body .left .list .item::before{width: 0.167rem;
    height: 2px;
    background-color: #0e59ae; content: ""; margin-right: 0.1rem;}
.news-body .left .list .item:hover p{ color: #0e59ae}
.mxw-news .n-more{	font-size: 12px; color: #000;}

.news-body .right .top{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.3rem; border-bottom: 1px solid #dfdfdf;}
.news-body .right .top .st{ font-size: 0.433rem; color: #0081c5; font-weight: bold;}
.news-body .right .list{ margin-top: 0.5rem;padding-left: 5px;}
.news-body .right .list .item{border: solid 1px #e5e5e5; padding: 0.333rem 0.467rem; display: block;}
.news-body .right .list .item .wen{ display: flex; align-items: center; justify-content: flex-start;}
.news-body .right .list .item .wen span{ width: 21px; height: 21px; font-size: 14px; border-radius: 50%; text-align: center; line-height: 21px; color: #fff; background: #0e59ae; margin-right: 10px; flex-shrink: 0;}
.news-body .right .list .item .wen p{ flex-grow: 1; min-width: 0; font-size: 16px;}
.news-body .right .list .item .da{ display: flex; align-items: center; justify-content: flex-start; margin-top: 0.5rem}
.news-body .right .list .item .da span{ width: 21px; height: 21px; font-size: 14px; border-radius: 50%; text-align: center; line-height: 21px; color: #fff; background: #e60412; margin-right: 10px; flex-shrink: 0;}
.news-body .right .list .item .da p{ flex-grow: 1; min-width: 0; font-size: 14px; color: #666}
.news-body .right .list .item:nth-child(1)~.item{ margin-top: 0.3rem;}
.news-body .right .list .item:hover{background-color: #0081c5;
    box-shadow: 0px 2px 7px 0px
    rgba(0, 0, 0, 0.36); border-color: #0081c5}
.news-body .right .list .item:hover .wen span{background: #e60412;}
.news-body .right .list .item:hover .da span{background: #fff; color: #333}
.news-body .right .list .item:hover p{ color: #fff;}

.fot-tp{ padding-top: 0.8rem; background: url("../images/foot-bg.jpg") no-repeat; background-size: cover; }
.fot-tp>.mxw-box{ display: flex; align-items: flex-start; justify-content: space-between; }
.fot-tp .title{	font-size: 0.333rem;color: #fff;}
.fot-tp .title::after{ width: 43px; height: 2px; background: #e60412; margin-top: 10px; content: ""; display: block;}
.fot-tp .d-box1{ margin-bottom: 0.583rem; width: 26%; flex-shrink: 0;}
.fot-tp .d-box1 .info{ font-size: 0.267rem;color: #fff; opacity: 0.5; margin: 0.333rem auto 0.75rem; line-height: 1.8}
.fot-tp .d-box1 .list{ display: flex; align-items: stretch; justify-content: flex-start;}
.fot-tp .d-box1 .list .item{ width: 0.817rem; height: 0.817rem; display: flex; align-items: center; justify-content: center; background: #1e2023; margin-right: 0.417rem;}
.fot-tp .d-box1 .list .item:hover{ background: #e60412}
.fot-tp .d-box1 .list .item:hover img{filter: grayscale(100%) brightness(800%)}



.fot-tp .d-box2{ display: flex; align-items: flex-start; width: 23.2%; justify-content: space-between; margin-bottom: 0.583rem;}
.fot-tp .d-box2 .item .list{ margin-top: 0.333rem; display: flex; flex-direction: column;font-size: 0.267rem;color: #fff; opacity: 0.5;  line-height: 2.2}

.fot-tp .d-box3{ flex-shrink: 0;}
.fot-tp .d-box3 .item{ padding: 0.2rem 0.233rem; border: 0.017rem dashed #626465; display: flex; align-items: center; justify-content: flex-start; margin-top: 0.25rem;}
.fot-tp .d-box3 .item .ico{ margin-left: 0.367rem;}
.fot-tp .d-box3 .item .text{font-size: 0.233rem;color: #999999; margin-left: 0.367rem; line-height: 1.5;}
.mxw-link{ border-top: 1px solid #393e40;}
.mxw-link>.mxw-box{ padding: 0.467rem 0 0.433rem; align-items: center}
.mxw-link>.mxw-box .st>img{ margin-right: 10px;}

.fot-tp .d-box4 .item{width: 2.333rem}




.mxw-copy{  font-size: 0.233rem; color: #999999;text-align: center; background: #000000}
.mxw-copy .mxw-box{font-size: 0.233rem; color: #999999;text-align: center; line-height: 1.6; padding: 0.333rem 0;}
.mxw-copy .mxw-box a,.mxw-copy .mxw-box a:hover{color: #999999;}

.mxw-banner,.n-banner,.n_banner{    }





.pro-swiper .swiper-slide .right .list .item:nth-child(4n){margin-right:0}
.pro-swiper .swiper-slide .right .list .item:nth-child(4n)~.item{margin-top: 0.25rem;}















/* ==================== 页面具体样式 end ==================== */



/* ==================== 产品详情页 start ==================== */
.ny-product-desc {
    overflow: hidden;padding-top: 1rem;
}
.ny-product-desc .product-image {
    width: 44%;
    margin-right: 3%;
    flex-shrink: 0;
    position: relative;
    z-index: 9;
}
.ny-product-desc .product-image img {
    width: 100%;
}
.ny-product-desc .product-desc {
    width: 53%;
}
.ny-product-desc .product-desc .title {
    font-size: 0.4667rem;
    padding-bottom: 0.3333rem;
    border-bottom: 0.0167rem solid #ddd;
    margin-bottom: 0.3333rem;
    font-weight: bold;
    color: #172a88;
}
.ny-product-desc .product-desc .desc {
    word-break: break-all;
    font-size: 0.3rem;
    color: #666;
    line-height: 1.8;
}
.ny-product-desc .bottom {
    margin-top: 0.6667rem;
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.easyzoom-flyout img {
    max-width: inherit!important;
    width: auto!important;
}
@media screen and (max-width: 1200px) {
    .ny-product-desc {
        padding: 0;
    }
    .ny-product-desc .product-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        pointer-events: none;
    }
    .ny-product-desc .product-desc {
        width: 100%;
    }
    .ny-product-desc .product-desc .title {
        font-size: 18px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .ny-product-desc .top {
        flex-flow: column;
    }
    .ny-product-desc .product-desc .desc {
        font-size: 14px;
    }
    .ny-product-desc .bottom {
        margin-top: 15px;
    }
}
/* ==================== 产品详情页 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ny-product-desc .big-swiper {
    border: 1px solid #ddd;
}
.ny-product-desc .ny-product-image {
    width: 38%;
    flex-shrink: 0;
    margin-right: 5%;
}



.ny-product-desc .right {
    width: 65%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;
}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 0.0167rem solid #dcdcdc;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.5667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;
    max-width: 10rem;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
    max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
    cursor: pointer;
    border: 3px solid #eee;
    border-radius: 0.0833rem;
    height:107px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #f37b1d;
}
.ny-product-desc .small-image .swiper-button-disabled {
    opacity: 1;
}
.ny-product-desc .small-image .swiper-button-next:after,
.ny-product-desc .small-image .swiper-button-prev:after {
    font-size: 0.4667rem;
    color: #ccc;
}
.ny-product-desc .small-image .swiper-button-next {
    right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
    left: 0rem;
}
.ny-product-desc .bottom {
    margin-top: 0.8333rem;
}
.ny-product-desc .bottom .head {
    width: 100%;
    border-bottom: 0.0167rem solid #d9d9d9;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
    padding: 0 0.3333rem;
    border-bottom: 0.0833rem solid #c10d1a;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #c10d1a;
}
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 1400px;
    }
    .ny-product-desc .top {
        align-items: stretch;
    }
}
@media screen and (max-width: 1480px) {
    .ny-product-desc .mxw-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 100%;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {
        margin-bottom: 10px;
    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 16px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }
}
/* ==================== 内页 - 产品详情 end ==================== */


/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 44px 64px;

}
.ny-news-desc > .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: 2;
    text-align: justify;
    font-size: 0.3rem;
}
.ny-news-desc .article p {
    line-height: 1.8;
}
.ny-news-desc .article iframe,.ny-news-desc .article video{    max-width: 100%;}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {
        font-size: 16px;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
.ny-news-desc .article iframe,.ny-news-desc .article video{    max-width: 100%; height:220px !important;}
}
/* ==================== 新闻详情 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 ==================== */



/* ==================== 通用 - 无缝滚动 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 ==================== */
.n-banner img,.n_banner img{width:100%}

@media screen and (max-width: 1680px) {

    #certify .swiper-slide{    width: 6rem;
        height: auto;}
    .about-box1>.mxw-box .right{    margin-right: -2.1rem;}
.gd-box .item .num .scrolling-numbers,.gd-box .item .num sub{font-size: 0.85rem;}
.gd-box{
    align-items: self-end;}


}

@media screen and (max-width: 1366px) {
	.mxw-about>.mxw-box .left .kh{    font-size: 0.4rem;margin: 0.6rem auto 0.55rem;}
.gd-box .item{    width: 24%;}
.pro-swiper .swiper-slide .right .list .item{    font-size: 14px;}
.gd-box .item .num .scrolling-numbers,.gd-box .item .num sub{font-size: 0.7rem;}
.gd-box{margin-top: 0.7rem;}
.mxw-about .a-more{margin-top: 0.5rem;}
}


@media screen and (max-width: 768px) {

.mxw-banner,.n-banner,.n_banner{    margin-top: 0rem;}

    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    .mxw-about{ padding: 45px 0;}
    .mxw-about>.mxw-box{ flex-wrap: wrap;}
    .mxw-about>.mxw-box .left{ padding: 0;}
    .mxw-about>.mxw-box .left .cn{ font-size: 20px;}
    .mxw-about>.mxw-box .left .en{ font-size: 12px;}
    .mxw-about>.mxw-box .left .kh{ font-size: 16px; margin: 10px auto 15px;}
    .mxw-about>.mxw-box .left .desc{ font-size: 14px; line-height: 1.8}
    .gd-box{ margin-top: 15px;}
    .gd-box .item{ width: 33.333%;}
    .gd-box .item .num .scrolling-numbers{ font-size: 24px;}
    .gd-box .item .num sub{ font-size: 22px;}
    .a-more{ margin: 15px auto 25px; zoom: 0.8; display: none;}
    .mxw-about>.mxw-box .right{ margin-top: 25px; width: 100%;}
    .mxw-honnor{ margin-top: 45px; padding-top: 0; padding-bottom: 45px; margin-bottom: 0}
    .mxw-title .cn{ font-size: 22px;}
    .mxw-title .cn::after{ margin-top: 10px;}
    .mxw-title .desc{ font-size: 14px;}
    #certify .swiper-slide{ height: auto}
    #certify{ margin: 25px auto 0; width: 90%}
    #certify .swiper-container{ padding-bottom: 0}
    .swipexynext{ right: -40px; zoom: 0.8; display: none;}
    .swipexyfrev{ left: -40px; zoom: 0.8; display: none}
    .mxw-pro{ margin: 45px auto;}
    .mxw-pro .pro-cate-bg{ margin-top: 25px;}
    .mxw-pro .pro-cate-bg .pro-cate{ flex-wrap: wrap; justify-content: flex-start}
    .mxw-pro .pro-cate-bg .item img{ height: 30px}
    .mxw-pro .pro-cate-bg .item p{ font-size: 14px;}
    .mxw-pro .pro-cate-bg .item{ width: 33.333%; padding: 15px 0}
    .pro-swiper .swiper-slide{ flex-wrap: wrap;}
    .pro-swiper .swiper-slide .left{ width: 100%; text-align: center; order: 1;}
    .pro-swiper .swiper-slide .right{ width: 100%; padding-left: 0;}
    .pro-body{ padding: 25px 0;}
    .pro-swiper .swiper-slide .right .cn{ font-size: 18px;}
    .pro-swiper .swiper-slide .right .en{ font-size: 14px;}
    .pro-swiper .swiper-slide .right .desc{ font-size: 14px; margin-top: 15px;}
    .pro-swiper .swiper-slide .right .list{ margin-top: 15px; flex-wrap: wrap;}
    .pro-swiper .swiper-slide .right .list .item{ width: 48.5%; padding: 8px 15px; font-size: 14px; text-align: center;}
    .pro-swiper .swiper-slide .right .list .item:nth-child(2n)~.item{ margin-top: 10px;}
    .pro-swiper .swiper-slide .left{ margin-top: 20px;}
    .mxw-fa{ padding: 0 0 25px;}
    .mxw-title .desc{ margin-top: 12px;}
    .mxw-fa .list{ margin-top: 25px; flex-wrap: wrap; justify-content: space-between}
    .mxw-fa .list .item{ width:48.5% }
    .mxw-fa .list .item:nth-child(1)~.item{ margin-left: initial;}
    .mxw-fa .list .item:nth-child(2n)~.item{ margin-top: 15px;}
    .mxw-fa .list .item .flx{ padding: 12px 15px;}
    .mxw-fa .list .item .flx p{ font-size: 14px;}
    .mxw-fa .list .item .flx .icon>img{ height: 30px;}
    .mxw-case .list{ flex-wrap: wrap; margin-top: 25px; justify-content: space-between;}
    .mxw-case .list .item{ width: 48.5%;}
    .mxw-case .list .item{ margin-right: initial;}
    .mxw-case .list .item p{ font-size: 14px; position: initial; padding: 8px 15px;}
    .mxw-case .list .item:nth-child(3n)~.item{ margin-top: 0;}
    .mxw-case .list .item:nth-child(2n)~.item{ margin-top: 15px;}
    .mxw-hz{ margin: 45px auto;}
    .hz-swiper{ margin-top: 25px; width: 100%;}
    .hz-body .swiper-button-prev, .hz-body .swiper-button-next{ display: none}

    .mxw-news{ padding: 45px 0; margin-bottom: 40px;}
    .news-body{ margin-top: 25px; flex-wrap: wrap;}
    .news-body .left .top .news-cate .item{ font-size: 16px;}
    .news-body .left .top{ padding-bottom: 10px;}
    .news-body .left .news1{ margin-top: 15px; padding-bottom: 15px;}
    .news-body .left .news1 .mxw-image{ width: 36%;}
    .news-body .left .news1 .con .title{ font-size: 16px;}
    .news-body .left .news1 .con .tm{ font-size: 12px; margin: 5px auto 10px;}
    .news-body .left .news1 .con .desc{ line-height: 1.6; height: 42px;}
    .news-body .left .list .item{ width: 100%; padding-bottom: 10px;}
    .news-body .left .list .item:nth-child(2n){ margin-left: 0; margin-top: 10px;}
    .news-body .left .list .item:nth-child(2n)~.item{ margin-top: 10px;}
    .news-body .right{ margin: 25px auto 0; padding: 0; width: 100%;}
    .news-body .right .top .st{ font-size: 20px;}
    .news-body .right .list .item{ padding: 15px;}
    .news-body .right .list .item .da{ margin-top: 10px;}
    .comm-msg{ padding: 45px 0;}
    .comm-msg>.mxw-box{ flex-wrap: wrap;}
    .comm-msg>.mxw-box .left{ margin: 0; width: 100%;}
    .comm-msg>.mxw-box .left .tt1{ font-size: 22px;}
    .comm-msg>.mxw-box .left .tt2{ font-size: 16px; margin-top: 10px;}
    .comm-msg>.mxw-box .left .tt3{ margin-top: 15px; font-size: 20px;}
    .comm-msg>.mxw-box .right{ margin-top: 25px; width: 100%;}
    .comm-msg>.mxw-box .right .inp input{ width: 100%; padding: 8px 15px; font-size: 14px;}
    .comm-msg>.mxw-box .right .inp{ flex-wrap: wrap;}
    .comm-msg>.mxw-box .right .inp input:last-child{ margin-top: 10px;}
    .comm-msg>.mxw-box .right .inp textarea{ padding: 8px 15px; font-size: 14px; }
    .comm-msg>.mxw-box .right .su{ margin-top: 10px;}
    .comm-msg>.mxw-box .right .su .code input{ padding: 8px 15px;}
    .comm-msg>.mxw-box .right .su img {
        position: absolute;
        right: 3px;
        top: 3px;
        cursor: pointer;
    }
    .fot-tp .d-box2{ display: none}
    .fot-tp>.mxw-box{ flex-wrap: wrap;}
    .fot-tp .d-box1{ width: 100%; margin-bottom: 0}
    .fot-tp{ padding-top: 45px;}
    .fot-tp .title{font-size: 18px;}
    .fot-tp .d-box1 .info{ font-size: 14px;}
    .fot-tp .d-box3{ width: 100%; margin-bottom: 40px;}
    .mxw-link>.mxw-box{ display: none}

    body{ margin-bottom: 0;}
    .cont-cate>.mxw-box>.item{ padding: 8px 15px; font-size: 16px; width: 33.333%; text-align: center;}
    .about-box1{ margin: 45px auto;}
    .about-box1>.mxw-box{ flex-wrap: wrap;}
    .a-title{ font-size: 22px;}
    .a-title::after{ margin-top: 10px;}
    .about-box1>.mxw-box .left .con{ padding: 15px; margin-top: 20px; width: 100%; font-size: 14px;}
    .about-box1>.mxw-box .right{ margin: 0 auto; width: 100%;}
    .about-box2{  padding-top: 40px; flex-wrap: wrap;}
    .about-box2 .left{ width: 100%;}
    .about-box2 .right{ padding: 15px 15px 45px; width: 100%;}
    .lc1-swiper .swiper-slide{ padding: 0}
    .lc1-swiper{ margin-top: 25px;}
    .lc2-swiper{ margin-top: 20px;}
    .about-box3{ margin-top: 45px;}
    .about-box3 .con{ margin: 25px auto 45px; flex-wrap: wrap;}
    .about-box3 .con .left{ width: 100%;}
    .about-box3 .con .right{ padding: 0; width: 100%;}
    .about-box3 .con .right .title{ font-size: 16px; margin-top: 10px;}
    .about-box3 .con .right .list{ margin-top: 25px;}
    .about-box3 .con .right .list .item .ico{ width: 40px; margin-right: 15px;}
    .about-box3 .con .right .list .item{ font-size: 16px;}
    .about-box3 .con .right .dt{ margin-top: 20px; font-size: 16px;}
    .about-box4{ margin-bottom: 45px; padding-bottom: 45px;}

    .jj-box{ margin: 45px 0;}
    .jj-box .jj-title{ font-size: 20px;}
    .cont-cate>.mxw-box{ flex-wrap: wrap;}
    .pro-box{ padding: 45px 0;}
    .n-title .cn{ font-size: 20px;}
    .n-title .desc{ font-size: 14px; margin-top: 10px;}
    .pro-box .list{ margin-top: 25px; justify-content: space-between}
    .pro-box .list .item{ width: 48.5%; margin-right: initial;}
    .pro-box .list .item:nth-child(2n)~.item{ margin-top: 15px;}
    .pro-box .list .item p{ padding: 8px 15px; font-size: 14px;}
    .cont-cate>.mxw-box>.item p{ font-size: 16px;}
    .jj-box .content{ font-size: 16px; margin-top: 20px;}
    .jj-box .content>p{ text-align: left;}
    .case-box{ margin: 45px 0;}
    .case-box .list{ justify-content: space-between;}
    .case-box .list .item{ width: 48.5%; margin-right: initial;}
    .case-box .list .item:nth-child(2n)~.item{ margin-top: 15px;}
    .case-box .list .item p{ font-size: 14px; padding: 8px 15px;}
    .news-box{ margin: 45px 0;}
    .news-box .news-item{ padding-bottom: 10px; align-items: center}
    .news-box .news-item .mxw-image{ width: 35%; order: 1; flex-shrink: 0; margin-right: 15px;}
    .news-box .news-item .date{ order: 2; width: 100%; font-size: 14px; color: #6b6b6b; align-items:center; justify-content: flex-start; display: none}
    .news-box .news-item .con{ order: 3; flex-grow: 1; min-width: 0; padding-top: 0 }
    .news-box .news-item .date p{ display: inline-block; font-size: 14px; color: #6b6b6b; order: 1; line-height: 1}
    .news-box .news-item .con .title{ font-size: 16px;}
    .news-box .news-item .con .desc{ font-size: 14px; margin-top: 10px;    -webkit-line-clamp: 2; height: 38px;}

    .cont-box{ margin: 45px 0;}
    .cont-box>.mxw-box{ flex-wrap: wrap;}
    .cont-box>.mxw-box .left{ width: 100%; margin-right: 0; height: 400px; order: 1; margin-top: 25px;}
    .cont-box>.mxw-box .right{ width: 100%; padding: 0;}
    .cont-box>.mxw-box .right .name{ font-size: 22px;}
    .cont-box>.mxw-box .right .tel{ font-size: 20px; margin: 10px auto 15px;}
    .cont-box>.mxw-box .right .text{ font-size: 16px;}
    .cont-box>.mxw-box .right .list{ margin-top: 20px; padding-top: 15px;}


.fot-tp .d-box4{    justify-content: flex-start;    margin: 20px auto;    display: flex;    width: 100%;}







.pro-swiper .swiper-slide .right .list .item:nth-child(2n){margin-right:0}
.pro-swiper .swiper-slide .right .list .item:nth-child(2n)~.item{margin-top: 0.25rem;}





}












