@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(//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: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 0.7;
    margin-left: 9px;
    margin-right: 9px;
    border: 1px solid #fff;
    outline: none;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    border-color: #fff;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 1.383rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: none;
    outline: none;

}
.mxw-banner .swiper-button-next::after,
.mxw-banner .swiper-button-prev::after {
    font-size: 0.667rem;
    color: #fff;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}
@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
    width: 83.4%;
}
.mxw-box2{ width: 83.4%; max-width: 1400px; 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: 80%;
    }
    .mxw-box {
        max-width: 88%;
    }
}
@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.167rem;}
.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{

    width: 100%;
    position: absolute;
    top: 0;
    z-index: 99;

}
header .welcome {
    background-color: #F5F5F5;
    height: 44px;
    line-height: 44px;
}

header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9D9D9D;
}
header .welcome a:hover{ color: #9D9D9D}
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;}
.top-tel .left-box{ padding-right: 0.233rem; border-right: 0.017rem solid #cccccc; margin-right: 0.2rem}
.top-tel .right-box .con{ 	font-size: 0.467rem; color: #d01911; font-weight: bold; line-height: 1;}
.top-tel .right-box .title{ font-size: 0.3rem; color: #777; margin-bottom: 0.15rem; }



.mxw-banner .swiper-pagination .swiper-pagination-bullet{ width: 0.667rem; height: 0.067rem; background: #fff; border-radius: 0.033rem; border: 0}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{ width: 1.333rem; background: #fff; opacity: 1;}
.x-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 0 1.5rem;
    height: 100%;
}
.x-menu > li {
    width: calc(100% / 7);
    margin: 0;
    text-align: center;
    float: none;
font-size: 0;
    height: 100%;
}

.x-menu > li > a {
    font-size: 0.267rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 100%;
    margin: 0 auto;
    padding: 0 0.2rem;
    flex-wrap: wrap;
}
.x-menu > li > a>span{  display: inline-block; margin-left: 10px; width: 13px; height: 7px; background: url("../images/me-ico.png") no-repeat; }
.x-menu > li > a::after{ content: "";  }
.x-menu > li > a:hover {
    color: #ff7c2f;
}
.x-menu > li > a:hover>span{
    background: url("../images/me-ico-on.png") no-repeat;
}
.x-menu > li.active > a {
    color: #ff7c2f;
    font-weight: bold;
}
.x-menu > li.active > a>span{background: url("../images/me-ico-on.png") no-repeat;}
.x-menu > li.active > a::after{
    background: #fff;
}
.x-menu {
    width: 100%;
    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: 75px;
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
}

.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;
}

.n_banner{ position: relative;}
.n_banner img{ width: 100%;}

.page-about{ background: url("../images/tw.png") center; background-size: 100%; padding-bottom: 1rem;}

.cont-cate .mxw-box{ display: flex; align-items: stretch; justify-content: flex-start;}
.cont-cate .mxw-box .item{ padding: 0.367rem 0.55rem; font-size: 0.3rem; color: #000033;}
.cont-cate .mxw-box .item.active{background: #eb891a; color: #fff;}
.cont-cate .mxw-box .item:hover{ color: #eb891a;}
.cont-cate .mxw-box .item.active:hover{ color: #fff}

.ab-box1{ padding: 0.917rem 0 0.75rem; display: flex; align-items: stretch; justify-content: space-between;}
.ab-box1 .left{	box-shadow: 0px 0px 16px 0px
rgba(3, 0, 0, 0.28); width: 50%; flex-shrink: 0;}
.ab-box1 .right{ flex-grow: 1; min-width: 0; padding-left: 0.917rem; display: flex;flex-wrap: wrap; align-content: space-between;}
.ab-box1 .right .st{ font-size: 0.7rem;	color: #eb891a; line-height: 1; font-weight: bold; }
.ab-box1 .right .desc{ display: flex; align-items: flex-start; justify-content: space-between; margin-top: 0.917rem;}
.ab-box1 .right .desc .text{ font-size: 0.283rem; color: #333; line-height: 1.6;}
.ab-box1 .right .desc .icon{ flex-shrink: 0;margin-right: 0.75rem;}
.ab-box1 .right>div{ width: 100%; }
.ab-box1 .right .zx{	width: 2.683rem;
    height: 0.767rem;
    background-color: #eb891a;
    border-radius: 0.383rem; display: flex; align-items: center; justify-content: center;font-size: 0.233rem; color: #fff;}
.ab-box1 .right .zx .ico{ margin-left: 0.167rem;}

.about-box2{ width: 88%;  margin: 0 auto; max-width: 1540px; position: relative;}
.about-box2 .about-swiper{ overflow: hidden; width: 90%; margin: 0 auto;}
.about-box2  .swiper-button-next,.about-box2 .swiper-button-prev{ width: 0.667rem; height: 0.667rem; background: url("../images/ab-l.png") no-repeat; background-size: 100%;}
.about-box2  .swiper-button-next::after,.about-box2 .swiper-button-prev::after{ display: none}
.about-box2  .swiper-button-next{ transform: rotate(180deg)}

.pro-box{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; padding-top: 1rem; padding-bottom: 0.167rem;}
.pro-box .item{ width: 49%; position: relative; transition: all 0.3s; overflow: hidden}
.pro-box .item .title{ position: absolute; padding: 0.21rem 0.333rem;	background-color: #dfdfdf; text-align: center; font-size: 0.333rem; bottom: 0; width: 100%; transition: all 0.3s}
.pro-box .item .flx{ position: absolute; right: -100%; height: 100%; top: 0;	width: 274px; background: rgba(0,0,0,.88);
    display: flex; align-content: center; padding: 0.333rem 0.583rem; text-align: center; flex-wrap: wrap; transition: all 0.3s}
.pro-box .item .flx .st{ color: #fff; text-align: center; width: 100%; font-size: 0.333rem;}
.pro-box .item .flx .desc{ font-size: 0.267rem; 	color: #9d9d9d; width: 100%; line-height: 1.6; margin: 0.5rem auto 0.6rem}
.pro-box .item .flx .ico{text-align: center; width: 100%;}
.pro-box .item:nth-child(2n)~.item{ margin-top: 0.417rem;}
.pro-box .item:hover{box-shadow: 0px 0px 32px 0px
rgba(0, 0, 0, 0.2);}
.pro-box .item:hover .title{ bottom: -50%;}
.pro-box .item:hover .flx{ right: 0;}

.case-box{ padding: 0.917rem 0 0;}
.n-title{ text-align: center; }
.n-title .cn{ font-size: 0.567rem;   }
.n-title .en{ font-size: 0.3rem; color: #6666}
.n-title .cn::after{ display: block; content: ""; width: 2.533rem;
    height: 3px;
    background-color: #e47e29;
    border-radius: 2px;
    margin: 0.367rem auto;
}
.case-list{ margin-top: 0.867rem; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.case-list .item{ position: relative; }
.case-list .item p{ position: absolute; padding: 0.25rem 0.333rem; background: rgba(0,0,0,.6); color: #fff; bottom: 0; width: 100%; text-align: center;}

.news-box{ margin-top: 0.917rem;}
.news-list .item{ padding: 0.3rem 0.25rem 0.367rem; border: 1px solid transparent; background: #fff;transition: all 0.3s;border-radius: 6px;}
.news-list .item .st{ font-size: 0.3rem; color: #333; margin: 0.467rem auto 0.267rem; text-align: center;}
.news-list .item .desc{ font-size: 0.233rem;color: #999; margin-bottom: 0.583rem;text-align: center}
.news-list .item .more{ font-size: 0.267rem; 	width: 5rem;
    height: 0.667rem;
    background-color: #f6f6f6;
    border-radius: 4px; display: flex; align-items: center; justify-content: center; margin: 0 auto; transition: all 0.3s}
.news-list .item:hover{ border: solid 1px #eb891a;}
.news-list .item:hover .more{ background-color: #eb891a; color: #fff}

.cont1{ margin-top: 0.917rem; display: flex; align-items: stretch; justify-content: space-between;}
.cont1 .right{ width: 37.9%; flex-shrink: 0; background: #fff; padding: 1rem 1rem 1rem 0.667rem;}
.cont1 .left{ flex-grow: 1; min-width: 0;}

.cont1 .right .ewm-list{ display: flex; align-items: flex-start; justify-content: flex-start;}
.cont1 .right .st{ font-size: 0.5rem; color: #333333; font-weight: bold; margin-bottom: 0.667rem;}
.cont1 .right .desc{ font-size: 0.267rem; font-weight: bold; color: #666666; line-height: 2; padding-bottom: 0.667rem; border-bottom: 0.017rem solid #e5e5e5; margin-bottom: 0.667rem;}
.cont1 .right .ewm-list .item{ margin-right: 0.5rem; text-align: center;}
.cont1 .right .ewm-list .item img{ max-width: 2rem;}
.cont1 .right .ewm-list .item p{ font-size: 0.233rem; color: #666; margin-top: 0.2rem;}

.cont2{ padding: 1.083rem 0.4rem; background: #fff; margin-top: 0.833rem;}
.cont2-title{ font-size: 0.5rem; text-align: center; font-weight: bold;}
.cont2 .in_p1{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 0.867rem;}
.cont2 .in_p1 input{ border: 2px solid #e1e1e1;
    width: 32%; padding: 0.333rem 0.3rem; font-size: 0.267rem; color: #bababa; }
.cont2 .in_p2 textarea{padding: 0.333rem 0.3rem; font-size: 0.267rem; color: #bababa; margin-top: 0.5rem; height: 2.167rem; width: 100%; border: 2px solid #e1e1e1; resize: none }
.cont2  .sub{ width: 3.933rem; height: 1.067rem; border-radius: 0.167rem; background: #eb891a; display: block; margin: 1rem auto 0; font-size: 0.267rem; color: #fff; cursor: pointer;}
.x-sub-menu::before{ display: none}

.fa-box{ margin-top: 0.333rem;  }
.fa-item{ padding: 0.667rem 0;}
.fa-item .mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.fa-item .mxw-box .left{ width: 49.5%; flex-shrink: 0; }
.fa-item .mxw-box .right{ display: flex; align-content: space-between; flex-wrap: wrap; padding-left: 1rem; }
.fa-item .mxw-box .right>div{ width: 100%;}
.fa-item .mxw-box .right .st{ font-size: 0.533rem; color: #e47e29; font-weight: bold; margin-bottom: 0.5rem;}
.fa-item .mxw-box .right .desc{ font-size: 0.267rem; color: #444444; line-height: 2.4}
.fa-item .mxw-box .right .desc p{ display: flex; align-items: flex-start; justify-content: flex-start;}
.fa-item .mxw-box .right .desc p::before{ display: block; content: ""; width: 0.267rem; height: 0.2rem; background: url("../images/gou.png") no-repeat; background-size: 100%; margin: 0.22rem 0.1rem 0 0}
.fa-item .mxw-box .right .fa-more{ background: #e47e29; width: 3.433rem; height: 0.8rem; border-radius: 0.4rem; display: flex; align-items: center; justify-content: center; color: #fff;}
.fa-item:nth-child(2n){ background: #fff;}
.fa-item:nth-child(2n) .mxw-box .left{ order: 1;}
.fa-item:nth-child(2n) .mxw-box .right{ padding-left: 0; padding-right: 1rem;}
.fa-page{ padding-bottom: 0;}
.fa-item:last-child{ padding-bottom: 1rem;}
.bg-box{ padding: 0.583rem 0 0.917rem;}
.bg-box .n-title .desc{ color: #666;}

.tj-case{ background: #fff;}
.tj-case .n-title .desc{ color: #666; text-transform: uppercase;}

.zs-swiper{ margin-top: 0.75rem; text-align: center; overflow: hidden}
.zs-swiper .swiper-slide p{ margin-top: 0.25rem;}

.tj-case{ padding: 1rem 0 0.667rem; }
.tj-case-list{ margin-top: 0.833rem;}
.tj-case-list .item{ position: relative; }
.tj-case-list .item p{ position: absolute; padding: 0.25rem 0.333rem; background: rgba(0,0,0,.6); color: #fff; bottom: 0; width: 100%; text-align: center;}
.tj-more{	width: 3.317rem;
    height: 0.767rem;
    border-radius: 0.383rem;
    border: solid 1px #afafaf;
    font-size: 0.3rem; color: #333; margin: 0.5rem auto 0; display: flex; align-items: center; justify-content: center;}
.tj-more img{margin-left: 0.25rem;}

.gob-msg{ padding: 1rem 0 1.2rem; background: url("../images/g-msg-bg.jpg") no-repeat; background-size: cover;}
.gob-msg .n-title{ color: #fff}
.gob-msg-con{ margin-top: 0.917rem;}
.gob-msg-con .in_p1{ display: flex; align-items: stretch; justify-content: space-between}
.gob-msg-con .in_p1 input{ width: 32%;	border: solid 0.017rem rgba(255, 255, 255, 0.2); background: rgba(255,255,255,.1);	border-radius: 0.1rem; font-size: 0.267rem; color: rgba(255,255,255,.33); padding: 0.2rem 0.333rem; color: #fff; }
.gob-msg-con .in_p1 input::placeholder,.gob-msg-con .in_p2 textarea::placeholder{color: rgba(255,255,255,.33);font-size: 0.267rem; }
.gob-msg-con .in_p2{ margin-top: 0.333rem;}
.gob-msg-con .in_p2 textarea{ 	border-radius: 6px;
    border: solid 1px rgba(255, 255, 255, 0.2); padding: 0.2rem 0.333rem;
    height: 2.583rem;background: rgba(255,255,255,.1);resize: none; width: 100%; color: #fff; }

.gob-sub{
    width: 3.083rem;
    height: 0.667rem;
    background-color: #ffffff;
    border-radius: 0.333rem;
    display: flex; margin: 0.75rem auto 0;
    font-size: 0.267rem; color: #333; align-items: center; justify-content: center; cursor: pointer; font-weight: bold;
}

.mxw-pro{ padding: 1.25rem 0 0.75rem; background: url("../images/mxw-pro-bg.jpg") no-repeat; background-size: cover;}
.mxw-title{ display: flex; align-items: stretch; justify-content: space-between;}
.mxw-title .cn{ font-size: 0.667rem; color: #000; font-weight: lighter}
.mxw-title>a{ width: 2.2rem; background: url("../images/xt.png") bottom no-repeat; display: flex; align-items: center; justify-content: space-between;}
.box1{ margin-top: 1.333rem; display: flex; align-items: stretch; justify-content: space-between;}
.box1 .left{ width: 58.2%; flex-shrink: 0; position: relative;    overflow: hidden; }
.box1 .left .b1-swiper .swiper-slide{ position: relative;}
.box1 .left .b1-swiper .swiper-slide .flex{ position: absolute; width: 100%; height: 100%; bottom: 0;  flex-wrap: initial;    align-items: flex-end;}
.box1 .left .b1-swiper .swiper-slide .flex .con{flex-grow: 1; min-width: 0; color: #fff; background: rgba(0,0,0,.5); padding: 0.767rem 1.4rem 0.767rem 1rem; font-size: 0.267rem; line-height: 1.8}
.box1 .left .bg2{ width: 0.4rem;  position: absolute; right: 0; top: 0;    z-index: 99;}
.box1 .left .bg2>img{ width: 100%;}
.b2-swiper{ overflow: hidden;}
.box1 .right{ flex-grow: 1; min-width: 0; margin-left: 0.3rem; display: flex; flex-wrap: wrap; align-content: space-between;}
.box1 .right .st{ margin-top: 0.367rem; padding-top: 0.6rem; border-top: 1px dashed #dcdcdc; text-align: center; font-size: 0.4rem; color: #333;}
.box1 .right .en{ font-size: 0.267rem; color: #666; text-transform: uppercase; text-align: center; margin-top: 0.333rem;}
.box1 .right .more{width: 2.55rem;
    height: 0.567rem;
    background-color: #eb891a; display: flex; align-items: center; justify-content: center; font-size: 0.233rem; color: #fff; border-radius: 0.283rem; margin: 0.4rem auto 0;}
.box1 .right .pro-cate{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; text-align: center;}
.box1 .right .pro-cate .item,.box1 .right .pro-cate a{ background: #eeeeee; width: 24.5%; padding: 0.167rem 0.2rem; display: flex; align-items: center; justify-content: center; cursor: pointer}
.box1 .right .pro-cate .item:nth-child(4n) ~ .item{ margin-top: 0.15rem;}
.box1 .right .pro-cate .p-more{ margin-top: 0.167rem;}
.box1 .right .pro-cate .active{ background: #282828; color: #fff;}
.box1 .right .pro-cate a:hover{background: #282828; color: #fff;}

.mxw-hf{ margin-top: 1.25rem; background: url("../images/hf-bg.jpg") no-repeat; padding: 1.6rem 0 1.333rem;}
.mxw-hf .con{ width: 38%; float: right;}
.mxw-hf .con .st{ font-size: 0.6rem; color: #1a1a1a; font-weight: bold; line-height: 1.5}
.mxw-hf .con .desc{ font-size: 0.25rem; color: #666; margin-top: 0.8rem; line-height: 1.8}
.mxw-hf .con .hf-more{ margin-top: 0.917rem; display: flex; align-items: center; justify-content: center; font-size: 0.3rem; color: #fff; 	width: 3.983rem;
    height: 0.95rem;
    background-color: #eb891a;
    border-radius: 0.467rem;}

.mxw-fw{ padding: 1.367rem 0 1.267rem; background: url("../images/fw-bg.jpg") no-repeat; background-size: cover;}
.mxw-fw .mxw-box{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.mxw-fw .mxw-box .item{ padding: 0.733rem 0.533rem;width: calc(100% / 3); background: #fff;	border: solid 1px #dddddd;}
.mxw-fw .mxw-box .item:first-child{ background: url("../images/fw1-bg.jpg") no-repeat; background-size: cover; text-align: center;}
.mxw-fw .mxw-box .item:first-child p{ font-size: 0.4rem; color: #fff; margin-top: 0.433rem;}
.mxw-fw .mxw-box .item .desc{ font-size: 0.267rem; color: #666; margin-top: 0.3rem;}
.mxw-fw .mxw-box .item .num{ font-size: 0.4rem; 	color: #eb891a; font-weight: bold; margin-top: 0.333rem;}
.mxw-fw .mxw-box .item .ico img{ max-height: 1.217rem;}
.mxw-fw .mxw-box .item .icon{ height: 0.917rem; display: flex; align-items: center; justify-content: flex-start}
.mxw-fw .mxw-box .item .icon img{ max-height:0.917rem; height: auto;}

.mxw-project{ position: relative;}
.mxw-project .mxw-box{ position: absolute; margin-top: 1.2rem; left: 0; right: 0;  z-index: 1; top: 0; color: #fff; display: flex; flex-wrap: wrap; align-content: space-between;}
.mxw-project .mxw-title{ width: 100%; line-height: 1;}
.mxw-project .mxw-title .cn{ color: #fff;}
.mxw-project .mxw-title>a{ background: url("../images/xt2.png") bottom no-repeat; }
.prj-cate{ display: flex; align-items: flex-end; justify-content: space-between; margin: 0 1rem 0 0.667rem; }
.prj-cate a{ padding: 0.167rem 0.417rem;  border-radius: 0.3rem; display: flex; align-items: center; justify-content: center;}
.prj-cate a.active{ background: #eb891a;}

.prj-swiper{ overflow: hidden; position: absolute; z-index: 1; bottom: 0; margin:0 auto 1rem; left: 0; right: 0; width: 92.5%; padding: 0 4% }
.prj-swiper .swiper-slide{ display: flex; align-items: stretch;}
.prj-swiper .swiper-slide .item{ width: 25%; border-right: 1px solid #fff;
    padding: 0 1rem}

.prj-swiper .swiper-slide .item .title{ color: #fffefe; font-size: 0.333rem;display: flex; align-items: center; justify-content: space-between; margin-top: 0.3rem;}
.prj-swiper .swiper-button-prev::after,.prj-swiper .swiper-button-next::after{ display: none}
.prj-swiper .swiper-button-prev,.prj-swiper .swiper-button-next{ width: 0.867rem; height: 0.867rem;}
.prj-swiper .swiper-button-prev{ background: url("../images/larr.png") no-repeat; background-size: cover;}
.prj-swiper .swiper-button-next{ background: url("../images/larr.png") no-repeat; background-size: cover; transform: rotate(180deg)}
.prj-swiper .swiper-button-prev:hover{ background: url("../images/rarr.png") no-repeat; background-size: cover;transform: rotate(180deg)}
.prj-swiper .swiper-button-next:hover{ background: url("../images/rarr.png") no-repeat; background-size: cover;transform:none }

.mxw-vr{ padding: 1.75rem 0 1.583rem;}
.mxw-vr>img{ width: 100%;}
.mxw-vr .vr-cate{ position: relative;}
.vr-cate{ display: flex; align-items: stretch; justify-content: space-between;}
.vr-swiper{ overflow: hidden;}
.vr-swiper .swiper-slide{ position: relative;}
.vr-swiper .swiper-slide .flx{ position: absolute; left: 0;	border: solid 1px #dcdcdc; height: 100%;
    width: 5rem; background: rgba(255,255,255,.52);z-index: 1; top: 0; display: flex; align-items: center; padding: 0 1.167rem; flex-wrap: wrap; align-content: center}
.vr-swiper .swiper-slide .flx .num{ font-size: 0.567rem; padding-bottom: 0.167rem; border-bottom: 1px solid #ffba00; font-weight: bold;}
.vr-swiper .swiper-slide .flx .desc{ font-size: 0.233rem;line-height: 2; color: #000; margin: 0.583rem 0 1.667rem;}
.vr-swiper .swiper-slide .flx .vr-more{	width: 2.55rem;
    height: 0.567rem;
    background-color: #eb891a; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.233rem; border-radius: 0.383rem;}

.vr-cate{ margin-top: 0.483rem; display: flex; align-items: stretch; justify-content: center; position: relative;}
.vr-cate .item{ margin: 0 1.5rem; flex-shrink: 0; text-align: center; font-size: 0.383rem; color: #303030; cursor: pointer;}
.vr-cate .item .icon{ width: 31px; height: 31px; background: url("../images/vr-ico1.png") center no-repeat;
    background-size: cover;
    margin: 0 auto 0.267rem;
}
.vr-cate .item.active .icon{background: url("../images/vr-ico2.png") no-repeat;  background-size: cover; }
.vr-cate .item.active p{ color: #eb891a;  font-weight: bold}
.vr-cate::before{ content: ""; display: block; width: 100%; position: absolute; z-index: -1; border-bottom: 1px dashed #929091; top: 16px;}

.mxw-about{ position: relative;}
.mxw-about .up{ position: absolute; z-index: 1; left: 0; right: 0; bottom: 0;  color: #fff; display: flex; align-items:flex-end; justify-content: space-between; }
.mxw-about .up .left{ width: 50%;padding-bottom: 2.25rem; flex-shrink: 0}
.mxw-about .up .left .en{ font-size: 0.55rem; line-height: 1.4; font-weight: lighter; text-transform: uppercase}
.mxw-about .up .left .en::after{ display: block; content: ""; width: 1.233rem;
    height: 2px;
    background-color: #eb891a; margin-top: 0.633rem;}
.mxw-about .up .left .st{ font-size: 0.433rem; font-weight:bold; margin-top: 0.467rem; margin-bottom: 0.467rem;}
.mxw-about .up .left .desc{ font-size: 0.233rem; line-height: 1.7}
.mxw-about .up .left .ab-more{width: 2.55rem;
    height: 0.567rem;
    background-color: #eb891a; font-size: 0.233rem; display: flex; align-items: center; justify-content: center; margin-top: 0.833rem; border-radius: 0.3rem;}
.mxw-about .up .right{ margin-left: 1.167rem; flex-grow: 1; min-width: 0; background: #fafafa; padding: 26px 18px;}
.mxw-about .up .right{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; margin-bottom: -3.833rem;}
.mxw-about .up .right .item{ width: 32.5%;}
.mxw-about .up .right .item:nth-child(3n) ~ .item{ width: 48.5%; margin-top: 0.333rem;}
.ab-list{ margin-top: 1rem; display: flex; padding-right: 35%; justify-content: space-between}
.ab-list .item{ text-align: center; border-right: 1px dashed #dcdcdc; width: 33.3%}
.ab-list .item:last-child{ border: 0;}
.ab-list .item .icon{ height: 1.733rem; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 0.533rem}
.ab-list .item p{ font-size: 0.3rem; color: #000; margin-bottom: 0.083rem;}
.ab-list .item:hover p{ color: #eb891a}
.ab-list .item:hover .icon img{filter: invert(56%) sepia(80%) saturate(1382%) hue-rotate(353deg) brightness(98%) contrast(88%);}

.mxw-news{ margin-top: 1.833rem; padding: 1.083rem 0 1rem; background: #f9faf7;}
.mxw-news .n-title{ text-align: left;}
.mxw-news .n-title .cn::after{ display: none;}
.mxw-news .news-cate{ display: flex; justify-content: flex-end; margin-top: -0.5rem; border-bottom: 1px solid #dbdcd9;}
.mxw-news .news-cate .item{ margin-left: 1.667rem; padding-bottom: 0.767rem;margin-bottom: -1px; }
.news-list-swiper{ overflow: hidden; margin-top: 0.967rem}
.news-swiper{ overflow: hidden}

.mxw-news .news-cate a.active{ color: #eb891a; border-bottom: 2px solid #eb891a; }
.news-list-swiper .swiper-slide{ padding: 0 0.467rem; transition: all 0.3s; width: 32%}
.news-list-swiper .swiper-slide .date{ font-size: 0.75rem; color: #000; margin-bottom: 0.417rem;}
.news-list-swiper .swiper-slide .date span{ font-size: 0.267rem; color: #666666;}
.news-list-swiper .swiper-slide .title{ margin-top: 0.3rem; font-size: 0.35rem; margin-bottom: 0.417rem;}
.news-list-swiper .swiper-slide .desc{ font-size: 0.267rem; color: #555; line-height: 1.5}
.news-list-swiper .swiper-slide .n-more{ font-size: 0.233rem; color: #000; padding-bottom: 0.367rem; background: url(../images/xt.png) left bottom no-repeat; margin-top: 0.767rem; width: 2.2rem;}
.news-list-swiper .swiper-slide:hover{ background: url("../images/news-bg.jpg") no-repeat; }
.news-list-swiper .swiper-slide:hover .image{ visibility: hidden;}
.news-list-swiper .swiper-slide:hover .date{ visibility: hidden;}
.news-list-swiper .swiper-slide:hover .n-more{ visibility: hidden;}
.news-list-swiper .swiper-slide:hover .desc{ color: #fff}
.news-list-swiper .swiper-slide:hover .title{ color: #eb891a}

footer{ background: #222222;  }
footer .d-logo img{ height: 1.117rem;}
footer .up{ display: flex; align-items: stretch; justify-content: space-between;border-bottom: 2px solid #313131}
footer .up .left{  width: 70.6%; border-right: 3px solid #313131; flex-shrink: 0;     padding-top: 0.65rem;}
footer .up .right{ flex-grow: 1; min-width: 0; color: rgba(255,255,255,0.3); padding-left: 1.1rem; font-size: 0.233rem; padding-top: 0.833rem;}
.d-box1{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.667rem; border-bottom: 2px solid #313131}
.d-box1 .wx-box{ display: none;}
.d-box1 .mt{ display: flex; align-items:center; justify-content: space-between; margin-right: 0.75rem;}
.d-box1 .mt .item{ width: 0.783rem; height: 0.783rem;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 0.267rem; position: relative; cursor: pointer}

.d-box1 .mt .item:hover{ background: #eb891a; border-color: #eb891a;}
.d-box1 .mt .item:hover>img{filter: grayscale(100%) brightness(400%)}
.d-box1 .mt .wx-box{ position: absolute; bottom: 50px; width: 150px; padding: 15px; }
.d-box1 .mt .item:hover .wx-box{ display: block;}

.d-box2{ display: flex; align-items: stretch; justify-content: space-between; padding-right: 1rem; color: #fff; padding-bottom: 0.2rem}
.d-box2 .dd{ width: 25%; margin-top: 0.667rem;}
.d-box2 .dd>a{	font-size: 14px; font-weight: bold;}
.d-box2 .dd>a::after{width: 0.4rem;
    height: 2px;content: "";
    background-color: #ffffff;
    display: block; margin: 0.3rem auto 0.25rem 0;
}

.d-box2 .menu>li{ margin-bottom: 5px;}
.d-box2 .menu a{	font-size: 14px; color: rgba(255,255,255,0.3)}

footer .up .right .ewm-list{ display: flex; align-items: stretch; justify-content: flex-start; margin-top: 1.333rem;}
footer .up .right .ewm-list .item img{ width: 2rem;}
footer .up .right .ewm-list .item p{ margin-top: 0.25rem; text-align: center;}
footer .up .right .ewm-list .item:first-child{ margin-right: 0.667rem;}

.copy .mxw-box{ padding: 0.333rem 0;color: rgba(255,255,255,0.3); font-size: 14px; line-height: 1.6; text-align: center;}




#map{ height: 450px;  font-size: 14px;}










/* ==================== 页面具体样式 end ==================== */

/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll {
    overflow: hidden;
}
.mxw-scroll .scroll-wrap {
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.mxw-scroll .scroll-item {
    flex-shrink: 0;
}

@media screen and (max-width: 500px) {
    .mxw-scroll .scroll-item {
        width: 48%;
        margin-right: 4%;
        
    }

}
/* ==================== 通用 - 无缝滚动 end ==================== */




/* ==================== 产品详情页 start ==================== */
.ny-product-desc {
    overflow: hidden;
}
.ny-product-desc .product-image {
    width: 44%;
    margin-right: 3%;
    flex-shrink: 0;
    position: relative;
    z-index: 9;
}
.ny-product-desc .product-image img {
    width: 100%;
}
.ny-product-desc .product-desc {
    width: 53%;
}
.ny-product-desc .product-desc .title {
    font-size: 0.4667rem;
    padding-bottom: 0.3333rem;
    border-bottom: 0.0167rem solid #ddd;
    margin-bottom: 0.3333rem;
    font-weight: bold;
    color: #172a88;
}
.ny-product-desc .product-desc .desc {
    word-break: break-all;
    font-size: 0.3rem;
    color: #666;
    line-height: 1.8;
}
.ny-product-desc .bottom {
    margin-top: 0.6667rem;
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.easyzoom-flyout img {
    max-width: inherit!important;
    width: auto!important;
}
@media screen and (max-width: 1200px) {
    .ny-product-desc {
        padding: 0;
    }
    .ny-product-desc .product-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        pointer-events: none;
    }
    .ny-product-desc .product-desc {
        width: 100%;
    }
    .ny-product-desc .product-desc .title {
        font-size: 18px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .ny-product-desc .top {
        flex-flow: column;
    }
    .ny-product-desc .product-desc .desc {
        font-size: 14px;
    }
    .ny-product-desc .bottom {
        margin-top: 15px;
    }
}
/* ==================== 产品详情页 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ny-product-desc .big-swiper {
    border: 1px solid #ddd;
}
.ny-product-desc .ny-product-image {
    width: 38%;
    flex-shrink: 0;
    margin-right: 5%;
}



.ny-product-desc .right {
    width: 65%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;
}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 0.0167rem solid #dcdcdc;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.5667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;
    max-width: 10rem;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
    max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
    cursor: pointer;
    border: 3px solid #eee;
    border-radius: 0.0833rem;
    height:107px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #172a88;
}
.ny-product-desc .small-image .swiper-button-disabled {
    opacity: 1;
}
.ny-product-desc .small-image .swiper-button-next:after,
.ny-product-desc .small-image .swiper-button-prev:after {
    font-size: 0.4667rem;
    color: #ccc;
}
.ny-product-desc .small-image .swiper-button-next {
    right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
    left: 0rem;
}
.ny-product-desc .bottom {
    margin-top: 0.8333rem;
}
.ny-product-desc .bottom .head {
    width: 100%;
    border-bottom: 0.0167rem solid #d9d9d9;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
    padding: 0 0.3333rem;
    border-bottom: 0.0833rem solid #c10d1a;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #c10d1a;
}
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 1400px;
    }
    .ny-product-desc .top {
        align-items: stretch;
    }
}
@media screen and (max-width: 1480px) {
    .ny-product-desc .mxw-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 100%;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {
        margin-bottom: 10px;
    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 16px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }
}
/* ==================== 内页 - 产品详情 end ==================== */


/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 44px 64px;

}
.ny-news-desc > .mxw-box {
    padding-top: 60px;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 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 ==================== */
@media screen and (max-width: 1700px) {

.mxw-hf .con .st{    font-size: 0.5rem;    }
.prj-cate a,.box1 .right .pro-cate .item, .box1 .right .pro-cate a{font-size: 0.2667rem;  }
.mxw-hf{padding: 1.3rem 0 1.133rem;    background-size: cover;}







}



@media screen and (max-width: 751px) {

    .mxw-box,.mxw-box2{ padding: 0; margin: 0 auto; width: 95%;}
    body{ margin-bottom: 0}

    #map{ margin-top: 20px;}
    .mxw-pro{ padding: 40px 0;}
    .mxw-title .cn{ font-size: 22px;}
    .mxw-title>a{ font-size: 14px; padding-bottom: 5px}
    .box1{ flex-wrap: wrap; margin-top: 25px;}
    .box1 .left{ width: 100%;}
    .box1 .left .bg2{ display: none; }
    .box1 .left .b1-swiper .swiper-slide .flex .con{ font-size: 14px; padding: 15px 20px;}
    .box1 .right{ margin: 0 auto; }
    .box1 .right .st{ margin-top: 5px; padding-top: 10px; font-size: 18px;}
    .box1 .right .en{ font-size: 14px; margin-top: 5px;}
    .box1 .right .more{margin-top: 10px; zoom: 0.9}
    .box1 .right .pro-cate{ margin-top: 15px;}
    .box1 .right .pro-cate .item, .box1 .right .pro-cate a{ width: 49.5%; font-size: 15px;}
    .box1 .right .pro-cate .item:nth-child(2n) ~ .item{ margin-top: 10px;}
    .mxw-hf{ margin-top: 0; padding-top: 35px; background-position: right; padding-bottom: 40px;}
    .mxw-hf .con{ width: 100%;}
    .mxw-hf .con .st{ font-size: 20px;}
    .mxw-hf .con .desc{ margin-top: 15px;}
    .mxw-hf .con .hf-more{ margin-top: 25px;zoom: 0.6}
    .mxw-fw{ padding: 40px 0;}
    .mxw-fw .mxw-box .item{ width: 100%; padding:25px 20px}
    .mxw-fw .mxw-box .item .ico img{ max-height: 50px;}
    .mxw-fw .mxw-box .item:first-child p{ font-size: 16px; margin-top: 15px;}
    .mxw-project .mxw-box{  color: #333; position: initial;}
    .prj-cate{ flex-wrap: wrap; width: 100%; margin: 15px auto 0}
    .mxw-project .mxw-title .cn{ width: 100%; color: #333}
    .mxw-project .mxw-title{ flex-wrap: wrap;}
    .prj-swiper .swiper-slide .item{ display: none}
    .prj-cate a{ font-size: 14px; margin: 0 auto 0 0; padding: 8px 10px; width: 48%}
    .mxw-project .mxw-title>a{ margin: 15px auto 0; display: none;}
    .mxw-project{ display: flex;flex-wrap: wrap;}
    .mxw-project .pro-img-swiper,.mxw-project>img{ order: 1; margin-top: 15px;}
    .prj-cate a.active{ color: #fff}
    .prj-swiper .swiper-button-prev, .prj-swiper .swiper-button-next{ zoom: 0.65; z-index: 9}
    .prj-swiper{ height: 60px;}

    .mxw-vr{ padding: 40px 0;}
    .vr-swiper .swiper-slide .flx{ width: 100%; padding: 10px 20px;}
    .vr-swiper .swiper-slide .flx .desc{ margin: 10px auto 15px; font-size: 14px;}
    .vr-swiper .swiper-slide .flx .vr-more{ margin: 10px auto 0}
    .vr-cate{ flex-wrap: wrap; margin-top: 10px;}
    .vr-cate .item{ margin: 0; width: 20%; font-size: 14px;}
    .vr-cate .item .icon{zoom: 0.7; margin-bottom: 10px}
    .vr-cate::before{ top: 11px;}


    .mxw-about .up{ position: initial; flex-wrap: wrap;}
    .mxw-about .up .left{ width: 100%;  color: #333; padding-top: 15px; padding-bottom: 25px;}
    .mxw-about .up .left .en{ font-size: 14px;}
    .mxw-about .up .left .en::after{ margin-top: 10px;}
    .mxw-about .up .left .st{ font-size: 16px; margin: 10px auto 15px;}
    .mxw-about .up .left .ab-more{ margin-top: 15px; color: #fff;}
    .mxw-about .up .right{ width: 100%; margin: 0 auto;}
    .ab-list .item{ padding: 20px 0;}
    .ab-list .item .icon img{ height: 35px; }
    .ab-list .item .icon{ height: auto; margin-bottom: 0;}
    .ab-list .item p{ font-size: 15px; margin-top: 10px;}
    .mxw-news{ margin-top: 40px; padding: 35px 0 45px;}
    .n-title .cn{ font-size: 22px;}
    .mxw-news .news-cate .item{ padding-bottom: 15px; margin-left: 15px; font-size: 14px;}

    .news-list-swiper .swiper-slide:hover{ background: none; }
    .news-list-swiper .swiper-slide:hover .image{ visibility: visible;}
    .news-list-swiper .swiper-slide:hover .date{ visibility: visible;}
    .news-list-swiper .swiper-slide:hover .n-more{ visibility: visible;}
    .news-list-swiper .swiper-slide:hover .desc{ color: #333}
    .news-list-swiper .swiper-slide:hover .title{ color: #eb891a}
    .news-list-swiper{ margin-top: 20px;}
    .news-list-swiper .swiper-slide{ padding: 0}
    .news-list-swiper .swiper-slide .date{ margin-bottom: 5px; font-size: 16px;}
    .news-list-swiper .swiper-slide .date span{ font-size: 12px;}
    .news-list-swiper .swiper-slide .title{ font-size: 16px; margin: 5px auto 10px;}
    .news-list-swiper .swiper-slide .n-more{margin-top: 15px;}

    footer .up{ flex-wrap: wrap;}
    footer .up .left{ width: 100%; border-right: 0; padding-top: 40px;}
    .d-box1 .mt{ display: none;}
    .d-box1{ padding-bottom: 15px;}
    .d-box1 .d-logo{ margin: 0 auto;}
    .d-box2{ display: none;}
    footer .up .right{ padding: 15px 0 25px 0}
    footer .up .right .ewm-list{ margin-top: 25px;}
    .copy .mxw-box{ font-size: 14px;}


    .cont-cate .mxw-box{ padding: 10px 0; flex-wrap: wrap;}
    .cont-cate .mxw-box .item{ width: 49%; padding: 8px 15px; font-size: 16px;}
    .pro-box .item .flx{ display: none !important;}
    .pro-box .item .title{ position: initial; font-size: 14px; padding: 8px 15px;}
    .fa-box{ margin-top: 20px;}
    .fa-item{ padding: 20px 0;}
    .fa-item .mxw-box{ flex-wrap: wrap;}
    .fa-item .mxw-box .left{ width: 100%;}
    .fa-item .mxw-box .right{ padding-left: 0;}
    .fa-item .mxw-box .right .st{ font-size: 18px; margin-top: 5px; margin-bottom: 10px;}
    .fa-item .mxw-box .right .desc{ font-size: 14px;line-height: 1.6}
    .fa-item .mxw-box .right .fa-more{ zoom: 0.7; margin-top: 15px;}
    .fa-item:nth-child(2n) .mxw-box .right .fa-more{ margin-bottom: 15px;}
    .n-title .cn::after{ margin: 5px auto 10px;}
    .bg-box .n-title .desc{ font-size: 14px;}
    .zs-swiper{ margin-top: 20px;}
    .zs-swiper .swiper-slide p{ font-size: 14px;}
    .bg-box{ padding: 40px 0;}
    .tj-case{ padding: 40px 0;}
    .tj-case .n-title .desc{ font-size: 14px;}
    .tj-case-list{ margin-top: 25px;}
    .tj-case-list .item p{ font-size: 14px; position: initial; padding: 8px 15px;  }
    .tj-more{ zoom: 0.7}
    .gob-msg{ padding: 40px 0;}
    .gob-msg .n-title .desc{ font-size: 14px;}
    .gob-msg-con{ margin-top: 25px;}
    .gob-msg-con .in_p1{ flex-wrap: wrap;}
    .gob-msg-con .in_p1 input{ padding: 8px 15px; font-size: 14px; width: 100%; margin-bottom: 12px;}
    .gob-msg-con .in_p2{ margin-top: 0;}
    .gob-msg-con .in_p2 textarea{ padding: 8px 15px; font-size: 14px;}
    .gob-sub{ margin-top: 15px; zoom: 0.9}
    .case-box{ padding: 40px 0 0;}
    .n-title .en{ font-size: 14px;}
    .case-list{ margin-top: 20px;}
    .case-list .item p{ position: initial; padding: 8px 12px; font-size: 14px;}
    .page-about{ padding-bottom: 40px;}
    .news-box{ margin-top: 40px;}
    .news-list .item{ padding: 10px;}
    .news-list .item .more{ width: 100%; zoom: 0.8;}
    .news-list .item .st{ font-size: 16px; margin: 5px auto 10px;}
    .news-list .item .desc{ font-size: 14px; margin-bottom: 15px;}
    .ab-box1{ margin-top: 40px; padding: 0; flex-wrap: wrap;}
    .ab-box1 .left{ width: 100%;}
    .ab-box1 .right{ padding: 0; margin-top: 20px;}
    .ab-box1 .right .st{ font-size: 22px;}
    .ab-box1 .right .desc{  margin-top: 15px;}
    .ab-box1 .right .desc .icon{ margin-right: 15px;}
    .ab-box1 .right .desc .text{ font-size: 14px;}
    .ab-box1 .right .zx{zoom: 0.8; margin-top: 20px; margin-left: 40px;}
    .about-box2{ width: 100%; margin-top: 25px;}
    .about-box2 .swiper-button-next, .about-box2 .swiper-button-prev{ zoom: 0.8}

    .cont1{ margin-top: 40px; flex-wrap: wrap;}
    .cont1 .left{ width: 100%; height: 400px;}
    .cont1 .right{ width: 100%; padding: 15px;}
    #map{ margin-top: 0;}
    .cont1 .right .st{ font-size: 22px; margin-bottom: 15px;}
    .cont1 .right .desc{ font-size: 14px; padding-bottom: 15px; margin-bottom: 15px;}
    .cont2{ margin-top: 30px; padding: 25px 15px 25px;}
    .cont2-title{ font-size: 22px;}
    .cont2 .in_p1{ margin-top: 20px; flex-wrap: wrap;}
    .cont2 .in_p1 input{ width: 100%; padding: 8px 15px; margin-bottom: 12px;}
    .cont2 .in_p2 textarea{ padding: 8px 15px;  margin-top: 0;}
    .cont2 .sub{ margin: 15px auto 0; zoom: 0.7 ; font-size: 18px;}

















}








