@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;
    display: block;
    margin: 4px;
}
.mxw-pagination > a.active,
.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;
    max-width: 21.333rem;
}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #005bac;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #005bac;
}
.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: #005bac;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
}
.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;filter: brightness(0) grayscale(100%) opacity(0.8);
    }
    .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: 85%;
        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: 1680px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 1;
    margin-left: 9px;
    margin-right: 9px;
    border: 1px solid #fff;
    outline: none;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #005bac;
    border-color: #005bac;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 1.383rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #005bac;
    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 {
       width: 20px;
    }
.mxw-banner .swiper-button-next::after, .mxw-banner .swiper-button-prev::after{    font-size: 18px;}
}
/* ==================== 轮播图 end ==================== */

.mxw-box {

    margin: 0 auto;
    font-size: 0.267rem;
    color: #333;
    width: 86%;
    max-width:1600px;
}

/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-box {
        max-width: 86%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#047ceb;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{
        
    }
    .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.417rem auto 0.417rem 0;}
.top-box .logo-box>img{ max-height: 0.933rem;}
.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: #005bac; font-size: 0.35rem}

header .top-box .right-box{ flex-grow: 1; min-width: 0;}
header .top-box .right-box .x-menu{ display: flex;margin-left: 3rem; height: 100%}
header .top-box .right-box .x-menu li{ background: none; height: 100%;}

.mxw-link .mxw-box{background:#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{ position: sticky;  top: 0; width: 100%; height: auto; background: rgba(0,0,0,1); z-index: 999 }
header .top-box{ align-items: stretch;}

.mxw-title .cn{ font-size: 0.667rem; color: #333; line-height: 1; text-align: center; font-weight: bold;}
.mxw-title .desc{ margin-top: 0.233rem; text-align: center; font-size: 18px; color: #777}
.mxw-title .desc span{ margin: 0 0.2rem}
.mxw-about{ padding: 1rem 0 1.333rem; background: url("//cdn.myxypt.com/f00ba70e/23/03/8ccccfb8d5c08defe5a8ae63c4f5dadca91c5f8d.jpg") center no-repeat; background-size: cover;}

.gd-num{  max-width: 21.333rem; margin: 1.25rem auto 1rem; padding: 0 1.583rem}
.gd-num .item .num p{ font-size: 1.333rem; color: #333; font-weight: bold; line-height: 1;}
.gd-num .item .num span{font-size: 0.3rem; }
.gd-num .item .num{ align-items: flex-end;}
.gd-num .item>p{	font-size: 0.4rem; color: #333; margin-top: 0.5rem; text-align: center;}

.mxw-about .con{ max-width: 21.333rem; color: #555; font-size: 0.267rem;}
.mxw-about .con p{color: #555; font-size: 0.267rem; line-height: 2.2}

.mxw-about .mxw-more{	width: 1.867rem;
    height: 0.617rem;
    background-color: #005bac; display: flex; align-items: center; justify-content: center; color: #fff;	font-size: 0.233rem; margin-top: 0.833rem; border: 1px solid transparent; transition: all 0.3s;}
.mxw-about .mxw-more:hover{ color: #005bac; background: none; border: 1px solid #005bac; }

.mxw-pro{ padding: 0.917rem 0 1.333rem; background: #f6f6f6}
.pro-cate{ display: flex; justify-content: center; margin: 0.75rem auto;}
.pro-cate a{ padding: 0.233rem 0.2rem;	font-size: 0.267rem; min-width: 2.5rem;
    background-color: #eeeeee;
    border: solid 1px #e4e4e4; display: flex; align-items: center; justify-content: center; margin: 0 8px}
.pro-cate a.active{background-color: #666666;
    border: solid 1px #005bac;	color: #ffffff;}

.pro-swiper .swiper-slide .item{ background: #fff; transition: all 0.3s;    width: 19.5%;}
.pro-swiper .swiper-slide .item .xt p{ font-size: 0.3rem;color: #333333; transition: all 0.3s }
.pro-swiper .swiper-slide .item .xt i{ font-size: 0.333rem;color: #333333; transition: all 0.3s ;color: black;    
    padding-right: 5px;}
.pro-swiper .swiper-slide .item .xt span{ width: 0.5rem;
    height: 0.5rem; flex-shrink: 0;
    background-color: #005bac; display: flex; align-items: center; justify-content: center; border-radius: 50%;	font-size: 18px; font-weight: bold; color: #fff; }
.pro-swiper .swiper-slide .item .xt{ justify-content: space-between; margin: 0 0.55rem 0.583rem; padding-top: 0.533rem; border-top: 1px solid #eeeeee; transition: all 0.3s;font-weight: bold;}
.pro-swiper .swiper-slide .item:hover .xt{ border-color: #005bac; }
.pro-swiper .swiper-slide .item:hover .xt p{color: #005bac }
.pro-swiper .swiper-slide .item:hover{     box-shadow: 0 0 10px 4px #ccc;}
.pro-swiper .swiper-slide .item:hover .xt i{  }

.mxw-proj{ padding: 1rem 0 0.6rem; background: url("//cdn.myxypt.com/f00ba70e/23/03/b27134c351a8b456e509b47bf8e586fea9cf19ad.jpg") no-repeat; background-size: cover;}
.mxw-proj .mxw-title .cn{ color: #fff;}
.mxw-proj .mxw-title .desc{ color: #fff;}

.proj-con{ width: 97%; margin: 0 auto; overflow: hidden; position: relative;}
.proj-con .swiper-slide{ position: relative;}
.proj-con .swiper-slide .flx{ position: absolute; width: 100%; bottom: 0;left: 0; right: 0; padding: 0 0.583rem 0.733rem 0.5rem; transition: all 0.3s }
.proj-con .swiper-slide .flx .tt{ font-size: 0.367rem; color: #fff;line-height: 1; margin: 0.25rem auto 0.333rem 0}
.proj-con .swiper-slide .flx .desc{ font-size: 0.233rem; line-height: 1.7; color: #fff;height: 0; transition: all 0.3s; overflow: hidden}
.proj-con .swiper-button-next:after,.proj-con .swiper-button-prev:after{ color: #fff;}

.proj-con .swiper-slide .pj-more{
    width: 1.133rem;
    height: 0.533rem;
    color: #ffffff;
    border: solid 1px #ffffff;
    opacity: 0.5;
    font-size: 0.233rem;
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 0.583rem;
    transition: all 0.3s;
}
.proj-con .swiper-slide:hover .pj-more{ display: flex;}
.proj-con .swiper-slide:hover .desc{ height:auto}
.proj-con .swiper-slide .pj-more:hover{ background: #fff; color: #333; opacity: 1}
.poj-cate{ display: flex; align-items: stretch; justify-content: space-between; background: #27292f; margin-top: 0.8rem;}
.poj-cate .item{ width: 50%; text-align: center;color: #a5a5a5; font-size: 0.367rem; padding: 0.4rem 0;}
.poj-cate .item p{ margin-top: 0.267rem;}
.poj-cate .item .img1{ display: none;}
.proj-swiper{ margin-top: 0.867rem;}
.poj-cate .item.active .img1{ display: block;}
.poj-cate .item.active .img2{ display: none;}
.poj-cate .item.active{ color: #fff; background: #005bac;}

.mxw-case{ padding: 1.233rem 0 0.817rem;}
.mxw-case .mxw-title .cn span{ color: #005bac}
.case-more{ margin-top: 0.283rem; display: flex; align-items: center; justify-content: space-between; text-transform: uppercase;	}
.case-more::before{ display: block; content: ""; flex-grow: 1; min-width: 0;height: 1px;
    background-color: #eeeeee;}
.case-more a{ margin-left: 0.15rem;font-size: 0.233rem; color: #999; flex-shrink: 0; }
.mxw-case .mxw-box.u-flex{ align-items: stretch; margin-top: 0.917rem}
.mxw-case .mxw-box .left-box{ width: 49.9%; margin-right: 0.95%; flex-shrink: 0; }

.mxw-case .mxw-box .left-box a{display: flex; align-items: center; justify-content: center; overflow: hidden; height: 100%}
.mxw-case .mxw-box .left-box img{ width: 100%;}

.mxw-case .mxw-box .right-box .item{ width: calc( (100% - 0.25rem) / 2);}
.mxw-case .mxw-box .right-box .item:nth-child(1),.mxw-case .mxw-box .right-box .item:nth-child(2){ margin-bottom: 0.25rem}
.mxw-case  .u-row-2 > .u-col:nth-child(2) ~ .u-col{ margin-top: 0}
.mxw-case .u-row-2 > .u-col:nth-child(2n){ margin-left: 0.25rem}


.mxw-hf{ padding: 1.567rem 0 0.85rem; background: url("//cdn.myxypt.com/f00ba70e/23/03/b1b72baff46622230333a79e3076b8badd68df4c.jpg") center no-repeat; background-size: cover; color: #fff;}
.mxw-hf h1{ font-size: 0.733rem; text-align: center;}
.mxw-hf .desc{ margin-top: 0.333rem; font-size: 0.333rem; text-align: center;}
.mxw-hf .tel{ font-size: 0.57rem; color: #0d9bff; text-align: center; background: url("//cdn.myxypt.com/f00ba70e/23/03/0b3e322adabe8acf2dda35ee63c511803f8bb195.png") center no-repeat; background-size: cover;
    width: max-content; padding: 0 0.5rem; height: 1.167rem; display: flex;align-items: center; justify-content: center;
    margin: 0.5rem auto 0;
}
.mxw-hf .tel>img{ margin-right: 0.25rem;}

.mxw-news{ padding: 0.967rem 0 1.583rem}
.mxw-news .mxw-box{ margin-top: 1rem;}
.mxw-news .mxw-box .left-box{ width: 48.8%; padding-right: 1.367rem}
.mxw-news .mxw-box .right-box{ width: 51.2%; padding-left: 1.333rem; background: url("//cdn.myxypt.com/f00ba70e/23/03/85c86122fbc4bae11fe5fc5d09f8424816559519.jpg") left repeat-y; }


.i-tt .c1t a{ font-size: 0.4rem; color: #333; font-weight: bold}
.i-tt .c1t a.active,.i-tt .c1t a:hover{ color: #005bac}
.i-tt .c2t ,.i-tt .c2t:hover{ color: #999; font-size: 0.233rem;}
.i-news{ align-items: stretch;}
.l-imgs{ margin-top: 0.583rem;}
.n-list{ margin-top: 0.333rem;}
.n-list .n-item p::before{ display: inline-block; content: ""; width: 0.2rem;
    height: 0.2rem; border-radius: 50%;
    background-color: #ffffff;
    border: solid 0.05rem #888888; vertical-align: middle; margin-right: 0.2rem; font-size: 18px; color: #555; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex-grow: 1; min-width: 0}
.n-list .n-item{ line-height: 2; justify-content: space-between; margin-top: 0.23rem}
.n-list .n-item span{ font-size: 0.267rem; color: #888888}
.n-list .n-item:hover p{ color: #005bac}
.n-list .n-item:hover span{ color: #005bac}
.n-list .n-item:hover p::before{ border-color: #005bac}
.h-list{ margin-top: 0.583rem;}
.h-list .h-item p{ font-size: 0.267rem; color: #999; margin-top: 0.167rem}
.h-list .h-item div{ 	font-size: 0.3rem; color: #555}
.h-list .h-item{ padding-bottom: 0.417rem; margin-bottom: 0.417rem; border-bottom: 0.017rem dashed #dddddd; display: block; width: 100%}
.h-list .h-item:last-child{ margin-bottom: 0.25rem}
.h-list .h-item:hover div{color: #005bac}

footer{ padding-top: 1.167rem; background: url("/skin/images/ft-bg.jpg") center no-repeat; background-size: cover;}


.d-menu{ margin-top: 0.583rem;}
.d-menu h3{font-size: 0.367rem;color: #fefefe; font-weight: normal}
.d-box{ display: flex; align-items: flex-start; justify-content: space-between;}
.d-menu .foot_nav{ display: flex; align-items: flex-start; color: #fff;font-size: 0.233rem; padding: 0;}
.d-menu .foot_nav>.fli{ margin-right: 1.333rem; margin-top: 0.25rem; line-height: 1.8}
.d-menu .foot_nav>.fli{ font-weight: bold;  font-size: 14px;}
.d-menu .foot_nav>.fli::before{ display: none;}
.d-menu .foot_nav .x-nav-menu{ margin-top: 0.167rem; font-weight: normal;color: #fefefe;}
.foot_nav .fli dd a{color: #fefefe;}

.copyright{ padding: 16px 0; border-top: 1px solid #353537; font-size: 14px; color: #fff; margin-top: 1rem;}
.copyright .mxw-box{ color: #fff; font-size: 14px; display: flex; align-items: center; justify-content: space-between;}
.copyright .mxw-box a{color: #fff; font-size: 14px;}

.d-contact h3{ font-size: 0.333rem; margin-bottom: 0.45rem;color: #fff; margin-top: 1.333rem}
.d-contact p{ font-size: 0.267rem; color: #fff; margin: 10px auto;}

.d-ewm{  padding: 12px; margin-top: 1.2rem; text-align: center;}
.d-ewm p{ font-size: 12px; color: #fff; text-align: center; margin-top: 0.25rem;}
.d-ewm .item:nth-child(1){ margin-right: 0.3rem;}
.d-ewm >img{ max-width: 100px;}

.x-menu > li > a{  font-size: 0.267rem; font-weight: normal; display: flex; align-items: center; height: 100%;}

header .top-box .right-box .x-menu li{ width: auto;}
.n-list .n-item span{ flex-shrink: 0;}
.n-list .n-item p{ white-space: nowrap;text-overflow: ellipsis; overflow: hidden;}
#mxw-video{ width: 100%; height:auto; object-fit: cover;}
.so img{max-width: 100%; cursor: pointer;}
header{height: auto;}
.d-contact{ margin-right: 0.8rem; flex-shrink: 0;}
.d-menu{    flex-grow: 1;
    min-width: 0;}
.d-ewm{ flex-shrink: 0;}
.mxw-case .mxw-box .right-box{ flex-grow: 1; min-width: 0;}
.x-sub-menu{ top: 100%;    left: 50%; width: 210px;    background: rgba(0,0,0,.6);}
.x-sub-menu > li > a{ color: #fff;}
.x-sub-menu:after{ display: none;}
.x-sub-menu > li > a:hover{ background: #005bac;}
.ss{ top: 100%;}
.pro-swiper .swiper-slide .item>.mxw-image{ margin: 0 auto; max-width: 345px;}


.pro-swiper .swiper-slide .item .xt p{ }
#toolbar .vr .icon-font:after{ background: url(//cdn.myxypt.com/f00ba70e/23/08/beccc7491fe75ce0c1b5aee6b7cd955176a9c358.png) center no-repeat;}
#toolbar .online-two .vr:hover a{ width: 57px;}



#message-form {
    font-size: 0;
}

#message-form .red-star {
    color: red;
}

#message-form label {
    font-size: 14px;
}

#message-form textarea {
    resize: none;
}

#message-form #checkcode {
    display: inline-block;
    width: 30%;
}

#message-form #checkCodeImg {
    vertical-align: top;
    margin-left: 10px;
}

#message-form #change_code {
    line-height: 34px;
    padding: 0 10px;
    color: #00a641;
    font-size: 14px;
}

#message-form .error-info {
    padding-top: 4px;
    display: inline-block;
    vertical-align: top;
    position: absolute;
}


.case-body {
    margin-top: 0.9rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.case-swiper{ overflow: hidden; /*margin-top: 0.333rem;*/}
.case-body .item{    flex-grow: 1;
    min-width: 0;
    margin-right: 0.333rem;}
.case-body .item:last-child{ margin-right: 0;}
.case-body .item.active{     width: initial;
    flex-shrink: 0;}
.case-body .item .box1{ position: relative; height: 100%;}
.case-body .item .box1 p{ position: absolute; padding: 0.167rem 0.25rem;font-size: 0.4rem; font-weight: bold;color: #fff; width: 100%; text-align: center; bottom: 0; background: rgba(0,0,0,.4)}
.case-body .item .box2{ width: 100%; display: none;}
.case-body .item .box2 .info{transition: all 0.3s; bottom: -100%;position: absolute;width: 100%; padding: 0.367rem 0.667rem; background: rgba(0,0,0,.4); color: #fff;}
.case-body .item .box1 .image{    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;}
.case-body .item .box1 .image{ max-width: initial;height: 100%;}
.case-body .item .box1 .image img{ height: 100%; max-width: initial;}
.case-body .item.active .box1{ display: none;}
.case-body .item.active .box2{ display: block; position: relative; overflow: hidden}
.case-body .item.active .box2 .image{background-color: #e6e6e6;  }
.case-body .item.active .box2 .info{  bottom: 0;  }
.case-body .item.active .box2 .info .st{font-size: 0.4rem; margin-bottom: 0.25rem; font-weight: bold;}
.case-body .item.active .box2 .info .desc{	font-size: 0.3rem; line-height: 1.8}


.case-cate{ display: flex; align-items: center; justify-content: center; padding-bottom: 0.167rem; border-bottom: 0.017rem solid #eeeeee; margin-top: 0.5rem;    position: relative;    flex-wrap: wrap;}
.case-cate .item{ font-size: 0.3rem; color: #777777; margin: 0 0.5rem;  }
.case-cate .item.active{ color: #005bac; font-weight: bold;}


.c-more{
    position: absolute;
    right: 0;
    bottom: -10px;
    background: #fff;
    color: #999;
    font-size: 14px;}

@media screen and (max-width: 1800px) {
.d-menu .foot_nav>.fli{ margin-right: 1rem;}
.pro-cate a{    padding: 0.333rem 0.2rem;}

}


@media screen and (max-width: 1680px) {
.d-menu .foot_nav>.fli{ margin-right: 0.85rem;}


}



@media screen and (max-width: 1580px) {
.d-menu .foot_nav>.fli{ margin-right: 0.55rem;}


}

@media screen and (max-width: 1400px) {
  .foot_nav .fli dd{ max-width: 120px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}


}


/* 各分部联系方式 begin */

.box_lxfs1 .m-tab1 {margin: 4px 0;}
.box_lxfs2 ul{margin: 0 -10px; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.box_lxfs2 ul li{width: 48%;}
.box_lxfs2 .con{
    height: auto;
    margin: 20px 10px 0;
    padding: 0 12px 30px 0;
   
    background-size: cover;
    cursor: pointer
}
.box_lxfs2 .con .tit{font-size: 20px;margin-bottom: 22px;font-weight: bold;}
.box_lxfs2 .con .txt{font-size: 18px;color: #666;margin-top: 12px; width: 100%; height: auto; overflow: hidden; }
.box_lxfs2 .con .txt span:nth-child(1){display: block;float:left;margin-right: 25px;}
.box_lxfs2 .con .txt span:nth-child(2){display: block;overflow: hidden}
/*
.box_lxfs2 .con:hover{background-size: cover;}
.box_lxfs2 .con:hover .tit{color: #fff;}
.box_lxfs2 .con:hover .txt{color: #fff;}*/
.box_lxfs3{display: none}
.box_lxfs3 .m-tab1 {margin: 60px 0 0;}
.box_lxfs3 .m-tab1 li a {width: 165px;}
.g-t1 {
    font-size: 36px;
    color: #222;

    padding-bottom: 12px;
  
}

.global_pd {
    padding: 80px 0; height: auto; overflow: hidden;
}

@media screen and (max-width:1199px){
    .box_lxfs2 ul li {width: 100%;float: none;
    }
}
@media screen and (max-width:768px){
    .row_lxfs1 .m-list4 .txt {height: auto;}

    .box_lxfs2 .con {padding: 0 0 20px;height: auto;}
    .box_lxfs2 .con .tit {font-size: 16px;margin-bottom: 16px;}
    .box_lxfs2 .con .txt {font-size: 14px;margin-top: 8px;}
    .box_lxfs2 .con .txt span:nth-child(1) {margin-right: 16px;}
    .box_lxfs3 .m-tab1 {margin: 10px 0 0;}
    .g-t1{ font-size: 22px;}
    .global_pd{ padding: 40px 0;}
}
/* 各分部联系方式 end */



@media screen and (max-width: 751px) {


header { position: initial; background: none; height:auto;}
.mxw-about{ padding: 40px 0 45px; }
.mxw-title .cn{ font-size: 22px;}
.mxw-title .desc span{ font-size: 14px;}
.mxw-title .desc{ margin: 5px auto 0;font-size: 0; width: 95%;}
.mxw-box{ width: 95%; min-width:initial; padding: 0;}
.gd-num{ padding: 20px 2.5%; margin: 0 auto;}
.gd-num .item { width: 33.333%;}
.gd-num .item .num{    justify-content: center;}
.gd-num .item .num p{ font-size: 45px;}
.gd-num .item .num span{ font-size: 16px;}
.gd-num .item>p{ font-size: 18px; margin-top: 10px;}
.mxw-about .con{ padding: 0; font-size: 14px;line-height: 1.6;}
.mxw-about .mxw-more{ margin-top: 20px;}
.mxw-about .con p{font-size: 14px;line-height: 1.6;}
.pro-cate{ margin: 20px auto 10px; flex-wrap: wrap; justify-content: space-between;}
.pro-cate a{ padding: 8px 10px; width: 48.5%; margin: 0 auto 10px 0;}
.pro-swiper .swiper-slide .item{ padding-top: 15px; width: 48.5%; margin-bottom: 15px;}
.pro-swiper .swiper-slide{ flex-wrap: wrap; justify-content: space-between;}
.mxw-pro{ padding: 40px 0 35px;}
.pro-swiper .swiper-slide .item:nth-child(5){ display: none;}
.pro-swiper .swiper-slide .item .xt{ padding: 5px 10px; margin: 0 auto;}
.pro-swiper .swiper-slide .item .xt p{ font-size: 14px;}
.pro-swiper .swiper-slide .item .xt span{ width: 16px; height: 16px; font-size: 12px; line-height: 14px;}
.proj-con .swiper-button-next:after, .proj-con .swiper-button-prev:after{ font-size: 30px;}
.proj-con .swiper-slide .flx .tt{ font-size: 16px;}
.proj-con .swiper-slide .flx img{ width: 20px;}
.proj-con .swiper-slide .flx .desc{ display: none !important;}
.poj-cate .item{ padding: 10px 20px;}
.poj-cate .item img{ width: 30px;}
.poj-cate .item p{ font-size: 16px; margin-top: 10px;}
.proj-swiper,.poj-cate{ margin-top: 20px;}
.mxw-case{ padding: 40px 0 45px;}
.case-more{ margin-top: 5px;}
.mxw-case .mxw-box.u-flex{ margin-top: 15px; flex-wrap: wrap;}
.mxw-case .mxw-box .left-box{ width: 100%;}
.mxw-case .mxw-box .left-box a img{ width: 100%;}
.mxw-case .mxw-box .right-box{ margin-top: 10px;}
.mxw-case .mxw-box .right-box .item:nth-child(1), .mxw-case .mxw-box .right-box .item:nth-child(2){ margin-bottom: 10px;}
.mxw-case .u-row-2 > .u-col:nth-child(2n){ margin-left: 10px;}
.mxw-case .mxw-box .right-box .item{ width: calc( (100% - 10px) / 2);}
.mxw-case .u-row-2 .u-col:nth-child(1) ~ .u-col{ margin-top: 0;}
.mxw-hf{ padding: 30px 0 25px;}
.mxw-hf h1{ font-size: 18px;}
.mxw-hf .desc{ font-size: 14px; margin: 12px auto 10px; width: 95%;}
.mxw-hf .tel{ font-size: 16px;    height: 30px;    margin-top: 10px;}
.mxw-hf .tel>img{ width: 20px; margin-right: 10px;}

.mxw-news{ padding: 40px 0 45px;}
.mxw-news .i-news{ flex-wrap: wrap; margin-top: 25px;}
.mxw-title .desc img{ display: none;}
.mxw-news .mxw-box .left-box{ width: 100%; padding-right: 0;}
.i-tt .c1t a{ font-size: 18px;}
.i-tt .c2t, .i-tt .c2t:hover{ font-size: 14px;}

.l-imgs{ margin-top: 10px;}
.n-list .n-item span{ font-size: 12px;}
.n-list .n-item p{ font-size: 14px;}
.n-list .n-item { margin-top: 0;}
.n-list{ margin-top: 5px;}
.mxw-news .mxw-box .right-box{ width: 100%; background: none; margin-top: 25px; padding-left: 0;}

.h-list{ margin-top: 15px;}
.h-list .h-item div{ font-size: 14px;}
.h-list .h-item p{ font-size: 12px; margin-top: 5px;}
.h-list .h-item{ margin-bottom: 15px; padding-bottom: 12px;}
footer{ padding-top: 40px;}
.d-box{ flex-wrap: wrap;}

.copyright{ display: block; margin-top: 30px; font-size: 12px;}
.d-contact h3{ margin-top: 25px; margin-bottom: 10px; font-size: 18px;}
.d-contact p{ font-size: 14px;}
.d-ewm{ margin-top: 25px; width: 100%;}
.d-ewm .item:nth-child(1){ margin-right: 3%;} 
.d-ewm .item{ width: 48.5%; text-align: center;} 
.d-ewm .item img{max-width: 100%;}
.copyright a,.copyright .mxw-box,.copyright .mxw-box a{font-size: 12px; line-height: 1.5;}





    .lv3{ padding: 10px 0;    font-size: 14px;
        color: #888;}
    .lv3>li{ padding: 5px 0;text-indent: 2em}
    .lv3 a{font-size: 14px;
        color: #999;}



    .lv4{ padding: 5px 15px 0;    font-size: 14px;
        color: #888;}
    .lv4>li{ padding: 5px 0 0; text-indent: 2em}
    .lv4 a{ text-indent: 1em}

    .case-body{ margin-top: 25px; flex-wrap: wrap;}
    .case-body .item{ width: 48.5%; margin-right: initial;flex-grow: 0;}
   .case-body .item.active{width: 48.5%; }
    .case-body .item:nth-child(1)~.item{ margin-top: 0;}
    .case-body .item:nth-child(2)~.item{ margin-top: 15px;}.

    .case-cate{ padding-bottom: 10px; margin-top: 25px}
    .case-cate .item{ font-size: 16px;}
.case-body .item .box1 .image img{    max-width: 100%;}
.case-cate .c-more{font-size: 12px;    bottom: -8px;}
.case-cate{ padding-right: 35px;       justify-content: space-between;}
.case-cate .item{        margin: 0;
    width: 48%;font-size: 14px;}
.case-body .item:nth-child(7){ display:none}
body{    margin-bottom: 0;}
.copyright .mxw-box{flex-wrap: wrap;
    justify-content: center;}

}

















/* ==================== 页面具体样式 end ==================== */





















