@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: #032a75;
    color: #fff !important;
}
.mxw-pagination   a:first-child {
    margin-left: 0;
}
.mxw-pagination   a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .mxw-pagination {
        margin-top: 30px;
    }
    .mxw-pagination > a {
        font-size: 12px;
        margin: 2px;
        padding: 8px 10px;
    }
}
/* ==================== 分页样式 end ==================== */

/* ==================== 通用标签页 start ==================== */
/* 标签页 */
.mxw-tabs {
    padding-left: 0;
    padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.mxw-tabs .mxw-tabs-wrap {
    position: relative;
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
    align-items: center;
    justify-content: flex-start;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
    display: none;
}
.mxw-tabs .mxw-tabs-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    font-size: 0.3rem;
    white-space: nowrap;
    background: #eaeaea;
    color: #333;
    padding: 0rem 0.5rem;
    margin-right: 0.9rem;
    line-height: 0.6667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #032a75;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 要害词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #00a2ea;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #00a2ea;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    outline: none;
    border-width: 0;
    cursor: pointer;
    background: #00a2ea;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;

}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(http://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: 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: 8%;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 0.333rem;
    height: 0.333rem;
    border-radius: 100%;
    opacity: 1;
    margin-left: 9px;
    margin-right: 9px;
    border: 3px solid #fff;
    outline: none;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    border-color: #fff;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 1.383rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: none;
    outline: none;

}
.mxw-banner .swiper-button-next::after,
.mxw-banner .swiper-button-prev::after {
    font-size: 0.667rem;
    color: #fff;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮巨细 */
}
@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器巨细 */
.mxw-box {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
     width: 85%;
}

/* 内页 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%;
    }
.mxw-adv .adv-body .right .adv-cate .item p{    font-size: 0.33rem;}
}
@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 .logo-box{ margin:0.133rem auto 0.167rem;}
.top-box .logo-box>img{ max-height:1.85rem;}
.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: #ee1d23; 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;padding-top:10px;padding-bottom:10px;overflow:visible;}
.mxw-link .mxw-link-list{color:#333;position:absolute;top:0;left:0;width:100%;transform:translateY(-100%);padding:10px 0;display:none;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:18px;cursor:pointer;line-height:1.8; font-weight: bold}
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:16px;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header .welcome {
    background-color: #fff;
    height: 44px;
    line-height: 44px;
    border-bottom: 1px dashed #e5e5e5;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
}
header .welcome .right >a {
    padding-left:10px;padding-right:10px;
}
header .welcome .right .title{ display: flex; align-items: center;}
header .welcome .right .title img{ margin-right: 10px; cursor: pointer;}
header .welcome .right .item{ position: relative; cursor: pointer; margin-left: 0.417rem}
header .welcome .right .item .con{ width: 135px; background: #fff; position: absolute; top: 43px; right: 0; left: 0; margin: 0 auto; padding: 3px;z-index: 10; display: none;}
header .welcome .right .item:hover .con{ display: block;}

.top-box{ align-items: stretch;}
.top-box .right{ display: flex; flex-grow: 1; min-width: 0; align-items: center; justify-content: flex-end;}
.top-box .right .se-box form{ display: flex; flex-shrink: 0; margin-right: 0.567rem}
.top-box .right .se-box input{	width: 4.667rem;
    height: 0.733rem; text-indent: 1em;
    border: solid 1px #dddddd;}
.top-box .right .se-box button{width: 0.833rem;
    height: 0.733rem; display: flex; align-items: center; justify-content: center;
    background-color: #d11911;}
.top-tel{ display: flex; align-items: flex-end; flex-shrink: 0; font-size: 0.333rem; font-weight: bold; color: #fff; margin-left: 0.25rem}
.top-tel img{ margin-right: 0.25rem;}




.x-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 3.333rem;
    height: 100%;
}
.x-menu > li {
    width: 14%;
    text-align: center;
    float: none;
    position: relative;
    height: 100%;
    margin: 0.25rem 0 0;
}

.x-menu > li > a {
    font-size: 0.267rem;
    color: #EEEEEE;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}

.x-menu > li > a:hover {
    color: #fff;
}

.x-menu > li.active > a {
    color: #fff;
}

.x-menu {
flex-shrink: 0;
    float: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}


.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: 150%;
    left: -25%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > 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 {
    background: #e9eaeb;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}
.x-menu > li > a::after{ content: ""; width: 0.5rem; height: 4px; border-radius: 2px; margin: 8px auto 0; }
.x-menu > li.active > a::after{
    background: #fff;
}
.x-menu > li > a>span{ width: 100%;}

.mxw-box2{ width: 87.5%; max-width: 1680px; margin: 0 auto;}

header{ position: absolute; top: 0; width: 100%; z-index: 999}
.n-banner>img{ width: 100%;}

.cont-cate{box-shadow: 0px 4px 21px 0px rgba(0, 0, 0, 0.10);
    background: #FAFAFA;    position: relative;}
.cont-cate .mxw-box2{  display: flex; align-items: stretch; justify-content: center; height: 100%;}
.cont-cate .mxw-box2 .item{ padding: 0.533rem 0 0.4rem; margin: 0 0.5rem; color: #555; font-size: 0.4rem;}
.cont-cate .mxw-box2 .item.active{ color: #000000; border-bottom: 3px solid #2A3F92; font-weight: bold;}

.about-page{ padding: 1rem 0 1.333rem; background: #FAFAFA}
.about-page .box1 .item{ display: flex; align-items: stretch; justify-content: space-between;}
.about-page .box1 .item .right{ width: 49%; flex-shrink: 0; max-width: 820px;}
.about-page .box1 .item:nth-child(1n)~.item{ margin-top: 0.667rem;}
.about-page .box1 .item .left{ margin-right: 0.333rem; text-indent: 2em; color: #454545; font-size: 0.383rem; line-height: 1.8; display: flex; align-items: center; flex-wrap: wrap;}
.about-page .box1 .item:nth-child(2n) .left{ order: 1; margin-right: 0; margin-left: 0.333rem; }
.about-page .box2{ margin-top: 1rem;}
.about-page .box2 .hp{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.about-page .box2 .hp .item{width: calc(92.8% / 7); margin-right: 1.2%; cursor: pointer;}
.about-page .box2 .hp .item:nth-child(7n){ margin-right: 0;}
.about-page .box2 .hp .item:nth-child(7n)~.item{ margin-top: 0.417rem;}
.about-page .box2 .sp{ margin-top: 0.417rem; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.about-page .box2 .sp .item{width:calc(94% / 6);cursor: pointer;margin-right: 1.2%;}
.about-page .box2 .sp .item:nth-child(6n){ margin-right: 0}
.about-page .box2 .sp .item:nth-child(6n)~.item{ margin-top: 0.417rem;}

.pro-page{ padding: 0.833rem 0 1.333rem; background: #FAFAFA; }
.pro-page .item{ background: #fff; padding: 0.5rem; display: flex; align-items: stretch; justify-content: space-between; margin-bottom: 0.667rem;}
.pro-page .item .right{ width: 48.6%; flex-shrink: 0 }
.pro-page .item .ico{ width: 0.25rem; margin-right: 1rem; flex-shrink: 0}
.pro-page .item .ico div{ width: 15px; height: 15px; background: #898989; border-radius: 50%; border: 5px solid #fff; margin-bottom: 15px}
.pro-page .item .ico div.active{ border: 2px solid #000; background: #fff}
.pro-page .item .left{ flex-grow: 1; min-width: 0; margin-right: 1rem; display: flex; flex-wrap: wrap; align-content: space-between;}
.pro-page .item:nth-child(2n) .left{ order: 1; margin-right: 0; margin-left: 1rem;}
.pro-page .item .left .cp{ width: 100%;}
.pro-page .item .left .cp a{  width: 2.467rem; height: 0.967rem; margin-right: 0.333rem; background: #2A3F92; font-size: 0.267rem; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.pro-page .item .left .title{ font-size: 0.6rem; font-weight: bold;}
.pro-page .item .left .title::before{ content:""; width: 0.867rem; height: 0.083rem; background: #2A3F92; display: block; margin-bottom: 0.25rem}
.pro-page .item .left .desc{ font-size: 0.333rem; color: #979797; margin-top: 0.2rem; line-height: 1.5}

.pro-page.pro2 .item .right{ width: 62.2%}

.case-page{padding: 0.833rem 0 1.333rem; background: #FAFAFA;}
.case-page .desc{    font-size: 0.267rem;
    line-height: 1.6;
    text-indent: 2em;}
.case-page .item{ margin-bottom: 0.667rem; display: flex; align-items: stretch; justify-content: space-between;}
.case-page .item .left{ padding: 8px; border: 1px solid #D3D3D3; width: 27.5%; flex-shrink: 0;}
.case-page .item .right{ flex-grow: 1; min-width: 0; padding-left: 1rem;}
.case-page .item .right .title{ font-size: 0.4rem; color: #000;}
.case-page .item .right .desc{ font-size: 0.233rem; color: #626262; line-height: 2; margin-top: 0.25rem; margin-bottom: 0.333rem; }
.case-page .item .right .more{ width: 2.467rem; height: 0.967rem;  background: #2A3F92; font-size: 0.267rem; color: #fff; display: inline-flex; align-items: center; justify-content: center;}


.news-page{padding: 0.833rem 0 1.333rem; background: #FAFAFA;}
.news-page .item{  padding-bottom: 0.917rem; margin-bottom: 0.917rem; border-bottom: 1px solid #DDDDDD; display: flex; align-items: center; justify-content: space-between;}
.news-page .item .date{ background: #2A3F92; padding: 0.31rem 0.45rem; color: #fff; flex-shrink: 0; font-size: 14px; font-weight: bold; text-align: center;}
.news-page .item .date p{ font-size: 0.6rem; border-bottom: 0.017rem solid #fff; text-align: center; padding-bottom: 0.1rem; width: max-content; margin: 0 auto 0.1rem;}
.news-page .item .con{ flex-grow: 1;min-width: 0; margin-left: 0.5rem;}
.news-page .item .con .title{ font-size: 0.4rem; color: #000; margin-bottom: 0.333rem;}
.news-page .item .con .desc{ font-size: 0.267rem; color: #777;}


.cont-page{padding: 0.833rem 0 1.333rem; background: #FAFAFA;}
.cont-info .right{ width: 42%; flex-shrink: 0; padding: 0.7rem 0.7rem 0.833rem; background: url("/skin/images/msg-bg.png") no-repeat; background-size: cover; color: #fff; }
.cont-info .left{ flex-grow: 1; min-width: 0;}
.cont-info{ display: flex; align-items: flex-start; justify-content: space-between;}
.cont-info .right .st1{ font-size: 0.6rem;}
.cont-info .right .st2{ font-size: 0.4rem;text-transform: uppercase}
.cont-info .right .s1 input{border: 0.017rem solid #fff; border-radius: 0.133rem; background: rgba(255,255,255,.3); width: 100%; color: #fff; padding: 0.133rem 0.267rem;font-size: 0.333rem; margin-top: 0.633rem;}
.cont-info .right .s1 input::placeholder{ color: #fff; font-size: 0.333rem}
.cont-info .right textarea{border: 0.017rem solid #fff; border-radius: 0.133rem; background: rgba(255,255,255,.3);  margin-top:0.633rem; width: 100%; resize: none; height: 3.3rem; color: #fff; font-size: 0.333rem}
.cont-info .right textarea::placeholder{ color: #fff; font-size: 0.333rem;padding: 0.133rem 0.267rem;}

.cont-info .right .sub{
    width: 3.117rem;
    height: 0.767rem; color: #000; font-weight: bold; font-size: 0.267rem; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 0.383rem; margin: 0.667rem auto 0; cursor:pointer}

.cont-info .left .st1{ font-size: 0.6rem;color: #000}
.cont-info .left .st2{ font-size: 0.6rem;color: #000; margin-top: 0.2rem; text-transform: uppercase}

.cont-info .left { font-size: 0.4rem; color: #000; padding-right: 1rem;}
.cont-info .left .tel{ display: flex; align-items: flex-start; margin-top: 0.667rem; line-height: 1.8}
.cont-info .left .add{ display: flex; align-items: flex-start; margin-top: 0.667rem;}
.cont-info .left .ewm{ display: flex; align-items: flex-start; margin-top: 0.667rem;}
.cont-info .left .add .st{ flex-shrink: 0}

.mxw-about{ padding-top: 3.5rem; background: url("/skin/images/about-bg.png") top center no-repeat; background-size: cover; margin-top:-1.48rem; position: relative; z-index: 99; padding-bottom: 2.083rem}
.mxw-about .mxw-box2{ color: #fff;}
.mxw-about .left{ width: 41.25%;}
.mxw-about .left .title{ font-size: 0.8rem; font-weight: bold;  padding-bottom: 0.333rem; background: url("/skin/images/ina-ico1.png") left bottom no-repeat; }
.mxw-about .left .desc{ margin: 0.667rem auto 0.967rem 0; font-size: 0.267rem; line-height: 200%; }
.mxw-about .left .a-more{ width: 3.583rem;height: 0.95rem; background: url("/skin/images/more-bg.png") no-repeat; background-size: cover; display: flex; align-items: center; justify-content: center; font-size: 0.267rem; }
.mxw-about .left .a-more img{ margin-left: 0.5rem;}
.ab-list{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; margin-top: 0.417rem}
.ab-list .item{ margin-top: 0.5rem; width: 50%;}
.ab-list .item .scrolling-numbers{ font-size: 0.867rem; font-weight: bold; line-height: 1;}
.ab-list .item sup{ font-size: 0.333rem;     vertical-align: top;}
.ab-list .item .c2{ font-size: 0.267rem; margin-top: 0.2rem}


.mxw-pro{ padding: 1.583rem 0; }
.mxw-title{ position: relative; line-height: 1; font-size: 0; padding-bottom: 0.3rem;}
.mxw-title .cn{ font-size: 0.8rem; color: #2A3F92; font-weight: bold; position: absolute; top: 1rem; }
.mxw-title .en{font-size: 2.133rem; font-weight: bold; color: rgba(42,63,146,.05); line-height: 1;}
.mxw-pro .mxw-title{ background: url("/skin/images/tit-bg.png") left bottom no-repeat;}
.mxw-pro .pro-body{ margin-top: 0.667rem; display: flex; align-items: stretch; justify-content: flex-start; }
.mxw-pro .pro-body .item{ width: 24.3475%; margin-right: 0.87%; color: #fff; display: flex; flex-direction: column;}
.mxw-pro .pro-body .item:last-child{ margin-right: 0;}
.mxw-pro .pro-body .item .list{ flex-grow: 1; min-width: 0; padding: 0.5rem 0.333rem 0.3rem; overflow: hidden; border-radius: 0 0 0.25rem 0.25rem;}
.mxw-pro .pro-body .item:nth-child(1) .list{ background: #005CB0;}
.mxw-pro .pro-body .item:nth-child(2) .list{ background: #189CF1; color: #fff;}
.mxw-pro .pro-body .item:nth-child(3) .list{ background: #1F5ED2; color: #fff}
.mxw-pro .pro-body .item:nth-child(4) .list{ background: #1F9CD2;}
.mxw-pro .pro-body .item .list .title{ font-size: 0.533rem; font-weight: bold; text-align: center;}
.mxw-pro .pro-body .item .list .con{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; margin-top: 0.083rem}
.mxw-pro .pro-body .item .list .con .item-c{ width: 49%; margin-top: 0.2rem; font-size: 0.267rem; color: #EAEAEA;}
.mxw-pro .pro-body .item:nth-child(3) .list .item-c{ color: #fff}
.mxw-pro .pro-body .item:nth-child(2) .list .item-c{  color: #fff;}

.mxw-adv{ padding: 0.25rem 0 1.167rem; background: url("/skin/images/adv-bg.png") no-repeat; background-size: cover;}
.mxw-adv .mxw-title .en{ color: rgba(255,255,255,.15)}
.mxw-adv .mxw-title .cn{ font-size: 0.8rem; color: #fff; top: 1.5rem;}
.mxw-adv .mxw-title{ padding-bottom: 0.8rem; background: url("/skin/images/tit-ico3.png") left bottom no-repeat;}
.mxw-adv .adv-body{ display: flex; align-items: flex-start; justify-content: space-between}
.mxw-adv .adv-body .left{ padding-top: 1.917rem; color: #fff;}
.mxw-adv .adv-body .left img{ margin-right: 0.367rem}
.mxw-adv .adv-body .right{ width: 53%; background: #fff;  border-radius: 0.533rem; box-shadow:0.45rem 0.5rem rgba(255,255,255,.4); margin-right: 0.45rem; margin-bottom: 0.6rem}
.mxw-adv .adv-body .right .adv-cate{ display: flex; align-items: stretch; justify-content: space-between; padding: 0.55rem 0.667rem 0; border-bottom: 1px solid #777;}
.mxw-adv .adv-body .right .adv-cate .item{  text-align: center;  border-bottom: 0.117rem solid transparent; margin-bottom: -0.067rem; padding:  0 0.25rem 0.333rem; cursor: pointer}
.mxw-adv .adv-body .right .adv-cate .item:last-child{ margin-right: 0 ;}
.mxw-adv .adv-body .right .adv-cate .item p{ font-size: 0.4rem; color: #959595; margin-top: 0.333rem; }
.mxw-adv .adv-body .right .adv-cate .item .icon{ filter: invert(50%) sepia(100%) saturate(4%) hue-rotate(47deg) brightness(96%) contrast(95%);}
.mxw-adv .adv-body .right .adv-cate .item.active .icon{ filter: none;}
.mxw-adv .adv-body .right .adv-cate .item.active{ border-color: #2A3F92;}
.mxw-adv .adv-body .right .adv-cate .item.active p{ color: #000;}
.adv-swiper{ overflow: hidden; margin-top: 0.633rem;}
.adv-swiper .swiper-slide .desc{ color: #444; padding: 0 0.667rem; font-size: 0.2rem; line-height: 2; margin-bottom: 0.667rem;}
.adv-swiper .swiper-slide .num{ margin-left: 0.333rem; font-size: 2.133rem; color: rgba(31,94,210,.5); font-weight: bold; line-height: 1; margin-bottom: -0.75rem;}

.mxw-team{ padding: 1.583rem 0;}
.mxw-team .mxw-title{  padding-bottom: 0;}
.mxw-team .mxw-title .cn{ top: 0.5rem;background: url("/skin/images/tit-bg.png") left bottom no-repeat;  padding-bottom: 0.6rem;}
.team-swiper{ overflow: hidden; margin-top: 0.583rem;}
.team-swiper .swiper-slide{ position: relative; cursor: pointer; width: 24.5% }
.team-swiper .swiper-slide p{ position: absolute; left: 0; bottom: 0; font-size: 0.267rem; color: #fff; background: #2A3F92; padding: 0.35rem 0.2rem; text-align: center; min-width: 2.8rem;}
.mxw-case{ padding-top: 0.25rem;}
.mxw-case .top{ position: relative;}
.mxw-case .top>img{ width: 100%;}
.mxw-case .mxw-title{ position: absolute; top: 0.5rem; left: 0; z-index: 99; }
.mxw-case .mxw-title .cn{ left: 2rem; top: 0.2rem; color: #fff;background: url("/skin/images/tit-ico3.png") left bottom no-repeat; padding-bottom: 0.8rem}
.mxw-case .mxw-title .en{ color: rgba(0,0,0,.2)}
.mxw-case .top .pt{ position: absolute; bottom: 0; z-index: 9; background: rgba(42,63,146,.8); color: #fff; width: 100%; padding: 0.833rem 2.5rem 1.667rem;}
.mxw-case .top .pt .mxw-box2{ display: flex; align-items:center; justify-content: space-between; }
.mxw-case .top .pt .left .st1{ font-size: 0.533rem; color: #ECECEC; font-weight: bold;}
.mxw-case .top .pt .left .st2{ font-size: 0.333rem; margin-top: 0.583rem; color: #CDCDCD;}

.pn{ display: flex; align-items: center; justify-content: center;}
.pn .swiper-button-prev,.pn .swiper-button-next{ position: initial; width: 0.7rem; height: 0.7rem;}
.pn .swiper-button-prev::after,.pn .swiper-button-next::after{ display: none}
.pn .swiper-button-prev{ background: url("/skin/images/previous.png") no-repeat; background-size: cover; margin: 0.5rem 4px 0; }
.pn .swiper-button-next{ background: url("/skin/images/next.png") no-repeat; background-size: cover; margin: 0.5rem 4px 0; }
.mxw-case .top .pt .right a{ display: flex; align-items: center; height: 1.333rem; padding-left: 0.5rem; border-left: 1px solid #fff;}

.case-swiper{ overflow: hidden; position: relative; margin-top: -1rem; z-index: 10}
.case-swiper .swiper-slide p{ font-size: 0.333rem; text-align: center; border: 0.017rem solid #B5B5B5; padding: 0.2rem 0.25rem; }

.mxw-hz .mxw-title{ padding-bottom: 0}
.mxw-hz .mxw-title .cn{ top: 0.5rem;background: url("/skin/images/tit-bg.png") left bottom no-repeat; padding-bottom: 0.5rem}
.mxw-hz .hz-body{ display: flex; margin-top: 0.917rem; align-items: stretch; justify-content: space-between;}
.mxw-hz .hz-body .left{ background: #2A3F92; padding: 1.167rem 1.417rem 1.167rem 2rem; color: #fff; width: 50%;}
.mxw-hz .hz-body .right{ width: 50%;}
.mxw-hz .hz-body .left .st{ font-size: 0.4rem; font-weight: bold; margin-bottom: 0.5rem; }
.mxw-hz .hz-body .left .desc{ font-size: 0.333rem; line-height: 2;}
.mxw-hz .hz-body .right{ border: 0.017rem solid #D8D8D8; padding:1.333rem 0.5rem; }
.mxw-hz .hz-body .right .item{}


.mxw-sl{margin: 1.583rem auto; background: url("/skin/images/sl-bg.png") no-repeat; background-size: cover; color: #fff;}
.mxw-sl .sl-body{ display: flex; align-items: stretch; justify-content: space-between; margin: 1rem auto 0.75rem;}
.mxw-sl .sl-body .item{  font-size: 0.4rem; font-weight: bold; line-height: 2}
.mxw-sl .mxw-title{ padding-bottom: 0;}
.mxw-sl .mxw-title .en{ color: rgba(255,255,255,.05)}
.mxw-sl .mxw-title .cn{ color: #fff;top: 0.5rem;background: url("/skin/images/tit-ico3.png") left bottom no-repeat; padding-bottom: 0.5rem}


.mxw-zs .mxw-title{ padding-bottom: 0}
.mxw-zs .mxw-title .cn{ top: 0.5rem;background: url("/skin/images/tit-bg.png") left bottom no-repeat; padding-bottom: 0.5rem}
.mxw-zs .box2{ margin-top: 1rem;}
.mxw-zs .box2 .hp{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.mxw-zs .box2 .hp .item{width: calc(92.8% / 7); margin-right: 1.2%; cursor: pointer;}
.mxw-zs .box2 .hp .item:nth-child(7n){ margin-right: 0;}
.mxw-zs .box2 .hp .item:nth-child(7n)~.item{ margin-top: 0.417rem;}
.mxw-zs .box2 .sp{ margin-top: 0.417rem; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.mxw-zs .box2 .sp .item{width:calc(94% / 6);cursor: pointer;margin-right: 1.2%;}
.mxw-zs .box2 .sp .item:nth-child(6n){ margin-right: 0}
.mxw-zs .box2 .sp .item:nth-child(6n)~.item{ margin-top: 0.417rem;}

.z-more{ width: 2.633rem; height: 0.733rem; background: #2A3F92; border-radius: 0.367rem; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.267rem; margin: 0.417rem auto 0}

.mxw-news{ margin: 1.583rem auto;}
.mxw-news .mxw-title{ padding-bottom: 0}
.mxw-news .mxw-title .cn{ top: 0.5rem;background: url("/skin/images/tit-bg.png") left bottom no-repeat; padding-bottom: 0.5rem}
.mxw-news .news-cate{ margin: 0.667rem auto 0.333rem; display: flex; align-items: center; justify-content: flex-end; color: #999;}
.mxw-news .news-cate .item{ font-size: 0.267rem;margin: 0 0.333rem;}
.mxw-news .news-swiper{
    overflow: hidden;
}
.mxw-news .news-swiper .left {
    width: 41.4%;
    position: relative;
    flex-shrink: 0;
}
.mxw-news .news-swiper .swiper-slide {
    display: flex;
    align-items: stretch;
}
.mxw-news .news-swiper .left .info {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    background: #104480;
    color: #FFFFFF;
    transition: background 0.4s;
    justify-content: space-between;
}
.mxw-news .news-swiper .left .title {
    padding: 0.316rem 0.333rem;
    flex-grow: 1;
    min-width: 0;
}
.mxw-news .news-swiper .left .news-more {
    flex-shrink: 0;
}

.mxw-news .news-swiper .itembox {
    min-width: 0;
    flex-grow: 1;
    padding: 0 0.1667rem 0 0.5rem;
    align-items: flex-start;
}

.mxw-news .news-swiper .itembox .item {
    position: relative;    width: 45%;
}
.mxw-news .news-swiper .item .top {
    display: flex;
    align-items: center;
}
.mxw-news .news-swiper .item .right .text1 {
    font-size: 0.2667rem;
    color: #555555;
    margin-bottom: 0.2rem;
    font-weight: bold;
}

.mxw-news .news-swiper .item .desc {
    font-size: 0.2rem;
    font-weight: bold;
    line-height: 2;
    color: #777;
}

.mxw-news .news-swiper .item .date {
    font-size: 0.333rem;
    font-weight: bold;
    color: #777;
    line-height: 1.8;
}

.mxw-news .news-swiper .itembox .item::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 0;
    height: 1px;
    border-bottom: 1px solid #104480;
    transition: width 0.4s;
}

.mxw-news .news-swiper .itembox .item:hover::after {
    width: 100%;
}
.mxw-news .news-swiper .itembox .item:hover .text1 {
    color: #104480;
}

footer{ background: #303030; padding: 0.5rem  0 0;}
footer .mxw-box{ max-width: 1200px;}
footer .d-menu{ display: flex; align-items: center; justify-content: space-between; font-size: 0.333rem; color: #fff; }
footer .d-box{ display: flex; align-items: center; justify-content: space-between; color: #C7C7C7; margin-top: 0.6rem;}
footer .d-box .ewm-box{ display: flex; align-items: flex-start; justify-content: space-between; flex-shrink: 0; margin-left: 0.333rem}
footer .d-box .ewm-box .item{ margin-left: 0.417rem;}
footer .d-box .ewm-box .item img{ max-width: 2rem;}
footer .d-box .ewm-box .item p{ font-size: 0.233rem; text-align: center; margin-top: 0.25rem}
footer .d-box .d-logo{ margin-right: 0.7rem; flex-shrink: 0}
footer .d-box .d-logo img{ height: 2.1rem;}
footer .d-box .contact{ flex-grow: 1; min-width: 0}
footer .d-box .contact .item{ display: flex; align-items: center; justify-content: flex-start; }
footer .d-box .contact .item:nth-child(2){ margin-top: 0.2rem}
footer .d-box .contact .item .icon{ flex-shrink: 0; margin-right: 0.2rem; }
footer .d-box .contact .item .con{ font-size: 0.2rem; line-height: 2;}
.copy .mxw-box{ color: #C5C5C5; text-align: center; font-size: 0.2rem; padding: 0.25rem 0; line-height: 1.5}









    /* ==================== 页面详细样式 end ==================== */



/* ==================== 通用 - 无缝转动 end ==================== */
.mxw-scroll {
    overflow: hidden;
}
.mxw-scroll .scroll-wrap {
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.mxw-scroll .scroll-item {
    flex-shrink: 0;
}

@media screen and (max-width: 500px) {
    .mxw-scroll .scroll-item {
        width: 48%;
        margin-right: 4%;

    }

}
/* ==================== 通用 - 无缝转动 end ==================== */


/* ==================== 新闻详情 start ==================== */
.ny-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: 1.8;
    text-align: justify;
    font-size: 15px;
}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {
        font-size: 17px;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */
/* ==================== 通用工具栏 start ==================== */
.mxw-tool {
    position: fixed;
    z-index: 99;
}
.mxw-tool .icon {
    overflow: hidden;
}
@media screen and (min-width: 751px) {
    .mxw-tool {
        right:0;
        top: 60%;
        transform: translateY(-50%);
    }
    .mxw-tool .tool-item {
        margin-bottom: 5px;
        width: 80px;
        height: 80px;
        border-radius: 8px;
        background-color: #eb6100;
        border: 1px solid rgba(255, 255, 255, 0.4);
        font-size: 12px;
        position: relative;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        transition: box-shadow 0.4s;
    }
    .mxw-tool .tool-item:hover {
        box-shadow: 0 0 10px -8px #eb6100;
    }
    .mxw-tool .tool-item:hover .tool-content {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        z-index: 9;
    }
    .mxw-tool .tool-item:hover .tool-content:hover {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        z-index: 9;
    }
    .mxw-tool .tool-item .icon {
        width: 0.5rem;
        height: 0.5rem;
        margin-bottom: 5px;
    }
    .mxw-tool .tool-item .text {
        font-size: 16px;
        color: #fff;
        line-height: 1.2;
    }
    .mxw-tool .tool-content {
        position: absolute;
        top: 0;
        height: 100%;
        background: #fff;
        width: 3.3333rem;
        right: 1.4333rem;
        color: #333;
        font-size: 0.2333rem;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 0.3333rem;
        font-size: 0.2667rem;
        line-height: 1.6;
        border: 0.0167rem solid #ddd;
        border-radius: 0.0833rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
    }
}
@media screen and (max-width: 751px) {
    .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;
    }
}


.about-page .mxw-box2 .list-box p{    font-size: 0.267rem;
    text-align: center;
    margin-top: 10px;}















/* ==================== 通用工具栏 end ==================== */
@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    .mxw-box2{padding: 0; max-width: 95%; width: 95%;}
    .mxw-about{background: url(/skin/images/about-bg.png) top left #284295 no-repeat;padding: 40px 0; margin-top: 0; }
    .mxw-about .left{ width: 100%;}
    .mxw-about .left .title{ font-size: 22px;}
    .mxw-about .left .a-more{ zoom: 0.7; font-size: 18px;}
    .mxw-about .left .desc{ margin: 10px auto 20px;}
    .ab-list{ margin-top: 0}
    .ab-list .item{ margin-top: 20px; text-align: center;}
    .ab-list .item .scrolling-numbers{ font-size: 20px;}
    .ab-list .item sup{ font-size: 12px;}
    .ab-list .item .c2{ margin-top: 0; font-size: 14px;}

    .mxw-pro{ padding: 40px 0;}
    .mxw-title .en{ font-size: 36px;}
    .mxw-title .cn{ font-size: 22px; top: 10px}
    .mxw-pro .pro-body{ margin-top: 20px; flex-wrap: wrap;}
    .mxw-pro .pro-body .item{ width: 100%; margin-bottom: 20px;}
    .mxw-pro .pro-body .item .list{ padding: 20px;}
    .mxw-pro .pro-body .item .list .title{ font-size: 18px;}
    .mxw-pro .pro-body .item .list .con .item-c{ font-size: 14px;}

    .mxw-adv .mxw-title .cn{ font-size: 22px; top: 10px;}
    .mxw-adv .mxw-title{ padding-bottom: 20px}
    .mxw-adv{ padding: 40px 0;}
    .mxw-adv .adv-body{ flex-wrap: wrap;}
    .mxw-adv .adv-body .left{ width: 100%; font-size: 16px; margin: 20px auto; padding: 0;}
    .mxw-adv .adv-body .left img{ display: none}
    .mxw-adv .adv-body .right{ width: 95%;   border-radius: 15px;   box-shadow: 25px 5% rgba(255,255,255,0.4);}
    .mxw-adv .adv-body .right .adv-cate .item{ margin: 0 auto; padding: 0 5px 15px; border-bottom-width: 3px;}
    .mxw-adv .adv-body .right .adv-cate .item p{ font-size: 16px; margin-top: 5px;}
    .mxw-adv .adv-body .right .adv-cate{ padding: 15px 15px 0;}
    .mxw-adv .adv-body .right .adv-cate .item .icon img{ width: 35px;}
    .adv-swiper{ margin-top: 20px;}
    .adv-swiper .swiper-slide .desc{ padding: 0 15px; margin-bottom: 20px;}
    .adv-swiper .swiper-slide .num{ font-size: 60px; margin-bottom: -25px;}
    .mxw-team{ padding: 40px 0;}
    .pn .swiper-button-prev, .pn .swiper-button-next{ zoom: 0.8; margin-top: 15px;    background-size: 100%;}
    .mxw-case .mxw-title{ top: auto; bottom: 15px; left: 2.5%;}
    .mxw-case .mxw-title .en{}
    .mxw-case .mxw-title .cn{ left: 2.5%; padding-bottom: 20px;}
    .mxw-case .top .pt{ padding: 0 2.5%; display: none}
    .case-swiper{ margin-top: 20px;}
    .mxw-hz .mxw-title .cn{ padding-bottom: 20px;top: 0;}
    .mxw-hz .hz-body{ margin-top: 30px; flex-wrap: wrap;}
    .mxw-hz .hz-body .left{ width: 100%; padding: 20px 30px;}
    .mxw-hz .hz-body .left .st{ font-size: 20px; margin-bottom: 10px;}
    .mxw-hz .hz-body .left .desc{ font-size: 14px; line-height: 1.7;}
    .mxw-hz .hz-body .right{ width: 100%; padding: 20px 30px;}
    .mxw-sl{ margin: 40px auto; padding: 40px 0;}
    .mxw-sl .sl-body{ flex-wrap: wrap; margin-bottom: 0}
    .mxw-sl .sl-body .item{ font-size: 16px;}
    .mxw-sl .mxw-title .cn{ top: 0;}
    .mxw-zs .mxw-title .cn{ top: 0}
    /*
    .mxw-zs .box2 .hp .item{ width: 32%; margin-right: 2%;}
    .mxw-zs .box2 .hp .item:nth-child(7n){ margin-right: 2%;}
    .mxw-zs .box2 .hp .item:nth-child(3n)~.item{ margin-top: 15px;}
    .mxw-zs .box2 .hp .item:nth-child(3n){margin-right: 0;}
    */
    .z-more{ margin-top: 20px; zoom: 0.8}
    .mxw-news{margin: 40px auto;}
    .mxw-news .mxw-title .cn{ top: 0; padding-bottom: 20px;}
    .mxw-news .news-cate{ margin: 30px 0 15px auto;}
    .mxw-news .news-swiper .swiper-slide{ flex-wrap: wrap;}
    .mxw-news .news-swiper .left{ width: 100%;}
    .mxw-news .news-swiper .left .info{  position: initial;}
    .mxw-news .news-swiper .left .title{padding: 8px 15px; font-size: 16px;}
    .mxw-news .news-swiper .left .news-more { width: 40px;}
    .mxw-news .news-swiper .itembox{ padding: 15px 0 0;}
    .mxw-news .news-swiper .itembox .item{ width: 100%;}
    .mxw-news .news-swiper .item .right .text1{ margin-bottom: 8px;}
    .mxw-news .news-swiper .item .desc{ line-height: 1.8}
    .mxw-news .news-swiper .item .date{ font-size: 16px;}
    .mxw-news .news-swiper .item:nth-child(2n) ~ .item{ margin-top: 15px;}
    footer .d-menu{ display: none;}
    footer .d-box{ flex-wrap: wrap; margin: 0 auto 20px;}
    footer .d-box .d-logo{ width: 100%; margin: 0 auto 20px; text-align: center;}
    footer .d-box .contact{ width: 100%; margin: 0 auto 20px;}
    footer .d-box .ewm-box{ width: 100%; margin: 0 auto;}

    .cont-cate .mxw-box2 .item{ font-size: 16px; padding: 10px 0 12px}
    .about-page{ padding: 45px 0 40px;}
    .about-page .box1 .item{ flex-wrap: wrap;}
    .about-page .box1 .item .left{ width: 100%; font-size: 16px; margin: 15px auto 0; order: 1; }
    .about-page .box1 .item .right{ width: 100%;}
    .about-page .box1 .item:nth-child(2n) .left{ margin-left: 0}
    .about-page .box1 .item:nth-child(1n)~.item{ margin-top: 20px;}
    .about-page .box2{ margin-top: 40px;}
    .cont-cate .mxw-box2{ flex-wrap: wrap; justify-content: flex-start; }
    .cont-cate .mxw-box2 .item{width: calc(100%/3); margin: 0; text-align: center;}
    .pro-page{padding: 45px 0 40px;}
    .pro-page .item{ padding: 20px 15px; flex-wrap: wrap; margin-bottom: 15px;}
    .pro-page .item .left{ width: 100%; order: 1;}
    .pro-page .item .ico{ display: none}
    .pro-page .item .right{ width: 100%; }
    .pro-page .item .left{ margin: 15px 0 0;}
    .pro-page .item .left .title{ font-size: 16px;}
    .pro-page .item .left .title::before{ margin-bottom: 5px;}
    .pro-page .item .left .desc{ font-size: 14px; margin-bottom: 15px;}
    .pro-page .item .left .cp a{ font-size: 18px; zoom: 0.7}
    .pro-page .item:nth-child(2n) .left{ margin-left: 0}

    .mxw-pagination{ margin-top: 10px;}
    .case-page{padding: 45px 0 40px;}
    .case-page .item{ flex-wrap: wrap;}
    .case-page .item .left{ width: 100%;}
    .case-page .item .left img{ width: 100%;}
    .case-page .item .right{ padding: 0; width: 100%; margin-top: 15px;}
    .case-page .item .right .title{ font-size: 0.267rem;}
    .case-page .item .right .desc{ font-size: 14px; line-height: 1.8; margin: 15px auto;}
    .case-page .item .right .more{ font-size: 18px;zoom: 0.8}
    .news-page{ padding: 45px 0 40px;}
    .news-page .item{ padding-bottom: 15px; margin-bottom: 15px;}
    .news-page .item .date{ padding: 8px 12px; font-size: 12px;}
    .news-page .item .date p{ font-size: 20px;}
    .news-page .item .con{ margin-left: 15px;}
    .news-page .item .con .title{ font-size: 18px; margin-bottom: 10px;}
    .news-page .item .con .desc{ font-size: 14px;}
    .ny-news-desc > .mxw-box{ padding: 40px 0;}
    .ny-news-desc .title{ font-size: 24px;}
    .ny-news-desc .article{ font-size: 14px;}
    .cont-page{ padding: 40px 0;}
    .cont-info{ flex-wrap: wrap;}
    .cont-info .left{ padding-right: 0; font-size: 20px;}
    .cont-info .left .st1{ font-size: 22px;}
    .cont-info .left .st2{ font-size: 18px; margin-top: 0;}
    .cont-info .left .tel{ margin-top: 20px; font-size: 16px;}
    .cont-info .left .add{ font-size: 16px; margin-top: 15px;}
    .cont-info .left .ewm{ margin-top: 15px;}
    .cont-info .left .ewm .con{ display: flex; align-items: flex-start; justify-content: space-between}
    .cont-info .left .ewm  .st{ display: none}
    .cont-info .left .ewm .con img{ width: 48%;}
    .cont-info .right{ width: 100%; margin-top: 30px; padding: 20px 25px;}
    .cont-info .right .st1{ font-size: 22px;}
    .cont-info .right .st2{ font-size: 18px;}
    .cont-info .right .s1 input{ margin-top: 20px; font-size: 14px; padding: 8px 12px;}
    .cont-info .right .s1 input::placeholder{ font-size: 14px;}
    .cont-info .right textarea{padding: 8px 12px;   margin-top: 20px; font-size: 14px; text-indent: 0}
    .cont-info .right textarea::placeholder{ font-size: 14px; text-indent: -1em}
    .cont-info .right .sub{ margin: 20px auto 20px; zoom: 0.8}

	.about-page .mxw-box2 .list-box p{    font-size: 14px;    margin-top: 5px;}







}












<!--耗时1753284589.4214秒-->