@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: 1rem;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.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: #F08741;
    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: #F08741;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #f9f9f9;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #F08741;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #F08741;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    width: 65px;
    height: 44px;
    background-color: #F08741;
    border-radius: 0px 5px 5px 0px;
     color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;

}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;
}
.mxw-banner .swiper-slide {
    overflow: hidden; text-align: center;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #fff;

    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #fff;
    outline: none;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #FFF;
    border-color: #FFF;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 1.383rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: none;
    outline: none;

}
.mxw-banner .swiper-button-next::after,
.mxw-banner .swiper-button-prev::after {
    font-size: 0.667rem;
    color: #F08741;
}
.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: 1500px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 79%;
}
.mxw-box2 {
    max-width: 1500px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    html {
        font-size: 55px !important;
    }
    .mxw-box {
        width: 84%;
        max-width: 1500px;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {

        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:#F08741;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 240%;
        width:240%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
	.footer3 ul li .iconfont{ width:initial; height:initial}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}

.top-box .logo-box{ margin: 0.3rem auto 0.2rem 0; font-size: 0;    flex-shrink: 0;}
.top-box .logo-box>img{ max-height:1.617rem;}
.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: #F08741; 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-startd;position:relative;overflow:visible;}
.mxw-link .mxw-link-list{color:#333;position:absolute;top:0;left:0;width:100%;transform:translateY(-100%);padding:10px 0;display:none; background: #fff;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:0.3rem;cursor:pointer;line-height:1.8; flex-shrink:0; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start; flex-wrap:wrap}
.mxw-link .list a{font-size:0.267rem;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{  }
header .welcome {
    background: rgba(56, 56, 56, 1);
    border-bottom: 1px solid rgba(247, 126, 45, 1);
    box-shadow: 0px 2px 4px  rgba(0, 0, 0, 0.25);
    height: 44px;
    line-height: 44px;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:#F08741;
    height: 100%;
    font-size: 0.333rem;

}
header .welcome .left {

}
header .welcome .right {

}
header .welcome .right img{ margin-right: 15px; margin-top: -5px;}
header .welcome .right >a {
    padding-left:5px;padding-right:5px;
}
header .welcome .right .title{ display: flex; align-items: center;}
header .welcome .right .title img{ margin-right: 10px; cursor: pointer;}
header .welcome .right .item{ position: relative; cursor: pointer; margin-left: 0.417rem}
header .welcome .right .item:hover .con{ display: block;}
header .welcome .right .ttel{ margin-right: 0.5rem; font-size: 14px; display: flex; align-items: center}

.top-box{ align-items: stretch; position: relative}
.top-box .right{ display: flex; flex-grow: 1; min-width: 0; justify-content: flex-end; align-items: flex-end; margin-left: 1rem }











.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: auto;
    width: 100%;
}
.x-menu > li {

    margin: 0;
    text-align: center;
    float: none;
    position: relative;

    width: 100%;
}

.x-menu > li > a {
    font-size: 0.3rem;
    color: #545454;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    padding: 0.2rem 0;
    width: 100%;
    justify-content: center;

}

.x-menu > li > a:hover {
    color: #3b3b3b;
}
.x-menu>li.active{
    background: rgba(240, 135, 65, 1);
    box-shadow: 0px 2px 4px  rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}
.x-menu > li.active > a {
    color: #fff;

}


.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 120%;
    left: -10%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;

}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#F08741;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}

.x-menu > li > a>span{ width: 100%;}

.x-menu>span{width: 2px;
    height: 0.333rem; display: block;  content: ""; background: #dddddd;
    right: 0; }
.x-menu > span:last-child{ display: none}
.x-menu > li.se{ width: max-content; padding-right: 0.8rem;}
.x-menu > li.se>a{ width: max-content }
.x-menu > li.ali{ width: max-content}
.x-menu > li.ali>a{ width: max-content }

.mxw-banner .swiper-pagination .swiper-pagination-bullet{ width: 0.967rem; height: 4px; opacity: 1; border-radius: 2px}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{ background: #F08741; border-color: #F08741 }

.poz{ padding-top: 0.667rem;}
.poz>.mxw-box{color: rgba(80, 80, 80, 1); font-size: 0.233rem; line-height: 1.5; padding-bottom: 12px; border-bottom: 1px solid #E3E7EB}
.poz>.mxw-box span{ color: #F08741}

.case-tab{ margin-top: 1.917rem;}
.case-tab>.mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.case-tab>.mxw-box .right{ flex-shrink: 0; margin-left: 1rem; width: 12.3%;}
.case-tab>.mxw-box .left{ flex-grow: 1; min-width: 0;}
.case-tab>.mxw-box .cate-item{ display: flex; align-items: flex-start; justify-content: space-between;  }
.case-tab>.mxw-box .cate-item:nth-child(1)~.cate-item{ margin-top: 0.417rem;}
.case-tab>.mxw-box .cate-item .title{ font-size: 0.5rem; color: #000; font-weight: bold; flex-shrink: 0}
.case-tab>.mxw-box .cate-item .list{ display: flex; align-items: center; justify-content: flex-start; flex-grow: 1; min-width: 0; flex-wrap: wrap; font-size: 0.4rem; line-height: 1.6; margin-top: 0.15rem;}
.case-tab>.mxw-box .cate-item .list a{ padding: 0 0.25rem; border-right: 1px solid #000 ; line-height: 1;}
.case-tab>.mxw-box .cate-item .list a::after{ width: 100%; content: ""; height: 0.017rem; background: #ffff; display: block; margin-top: 0.1rem;}
.case-tab>.mxw-box .cate-item .list a.active,.case-tab>.mxw-box .cate-item .list a:hover{ color: #F08741}
.case-tab>.mxw-box .cate-item .list a.active::after{ background: #F08741}
.case-tab>.mxw-box .cate-item .list a:last-child{ border: 0}

.case-list{ margin-top: 0.75rem;}
.case-list .item{ padding-bottom: 0.2rem; border-bottom: 1px solid #A6A6A6}
.case-list .item .title{ margin-top: 0.25rem; font-size: 0.333rem; color: #666; display: flex; align-items: center; justify-content: space-between;}
.case-list .item .title span{ flex-shrink: 0; margin-left: 0.25rem;}
.case-list .item .title p{ flex-grow: 1; min-width: 0}
.case-list .item .image{position: relative;overflow: hidden;   }
.case-list .item .image>img{width:100%; transition: all 0.3s;}
.case-list .item .flx{ background: url("../images/xt.png") rgba(0,0,0,.6) center no-repeat; position: absolute; top: 0; right: 0;left: 0; width: 100%; height: 100%; color: #F77E2D; font-size: 0.333rem; align-items: center; justify-content: center; display: none}
.case-list .item .flx img{ margin-right: 0.1rem;}
.case-list .item:hover{ border-color: #f37b1d}
.case-list .item:hover .flx{ display: flex;}
.case-list .item:nth-child(3) ~ .item{ margin-top: 1.167rem;}
.case-list .item:hover  .image>img{    transform: scale(1.1);}


.vr-list{ padding: 2rem 0; background: #F5F5F5}
.vr-title{ display: flex; align-items: flex-end; font-size: 0.3rem; color: #666}
.vr-title span{ margin-left: -1rem;}
.vr-list .list{ margin-top: 1rem;}
.vr-list .list .item:nth-child(2n){ margin-left: 1.8%}
.vr-list .list p{margin-top:0.1rem}

.cont-cate{ box-shadow: 0px 4px 21px  rgba(0, 0, 0, 0.1);}
.cont-cate .mxw-box{ display: flex; align-items: stretch; justify-content: center;}
.cont-cate .mxw-box .item{ margin-left: 1rem;  display: flex; align-items: center; justify-content: center; font-size: 0.367rem; color: #333; padding: 0.35rem 0 0.3rem; border-bottom: 3px solid transparent }
.cont-cate .mxw-box .item p{ color: #333;}
.cont-cate .mxw-box .item:hover p{ color:#F08741;  }
.cont-cate .mxw-box .item.active,.cont-cate .mxw-box .item:hover{ color: #F08741; border-bottom: 3px solid #F08741	}
.cont-cate .mxw-box .item.active p{ color: #F08741 }
.cont-cate .mxw-box .item:first-child{ margin-left: 0}

.ab-box1{ margin-top: 0.917rem; padding-top: 2rem;}
.ab-box1{ background: url("../images/4.jpg") no-repeat; background-size: cover;}
.ab-box1 .con{ background: rgba(255,255,255,.8); width:71%; padding: 1.417rem 1.417rem 1.75rem 1.083rem; }
.ab-box1 .con .title{ border-bottom: 3px solid #F77E2D}
.ab-box1 .con .st1{ font-size: 0.4rem; line-height: 1; margin-top: 0.25rem; color: rgba(102, 102, 102, 1)}
.ab-box1 .con .text{ margin-top: 0.633rem; font-size: 24px; color: rgba(102, 102, 102, 1); line-height: 1.6; text-indent: 2em; letter-spacing: 2px;}

.ab-box2{ padding: 1.833rem 0; background: url("../images/ab-box2-bg.png") no-repeat; background-size: cover; overflow: hidden;}
.ab-box2 .con1{ background: #fff; display: flex; align-items: stretch; justify-content: space-between;}
.ab-box2 .con1 .left{ width: 35.6%; flex-shrink: 0}
.ab-box2 .con1 .right{ flex-grow: 1; min-width: 0; margin-right: -3.45rem; padding-right: 3.45rem; padding-left: 1.917rem; font-size: 0.4rem; text-indent: 2em; line-height: 1.6; color: #666666; letter-spacing: 0.033rem; background: #fff; display: flex; align-content: center; flex-wrap: wrap;}
.ab-box2 .con1 .right>p{ width: 100%}
.ab-box2 .con1 .right>div{ width: 100%}
.ab-box2 .con2{ color: #fff; font-size: 0.4rem; line-height: 1.6; margin-top: 1.75rem; text-indent: 2em; letter-spacing: 0.033rem;}

.ab-box3{ padding: 2rem 0 2.5rem;}
.zs-swiper .swiper-slide{ width: 16%;}
.zs-swiper .swiper-slide p{ text-align: center; margin-top: 0.417rem;}
.zs-swiper .swiper-slide:hover p{ color: #F08741}
.zs-swiper .swiper-slide p::after{ width: 2rem;  content: ""; display: block; margin: 10px auto 0;
    height: 2px;}
.zs-swiper .swiper-slide:hover p::after{  background:#F08741; }

.ab-box4{ padding: 2rem 0 2.5rem;background: rgba(245, 245, 245, 1);}
.ab-box4>.mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.ab-box4>.mxw-box .right{ width: 35.3%; flex-shrink: 0; margin-left: 4%; }
.ab-box4>.mxw-box .left{ flex-grow: 1; min-width: 0; display: flex; align-content: space-between; flex-wrap: wrap}
.ab-box4>.mxw-box .left .title{ width: 100%; margin-bottom: 1.667rem;}
.ab-box4>.mxw-box .left .title img{ max-width: 78%}
.ab-box4>.mxw-box .left .item{ background: #fff; border: 0.017rem solid #F08741; margin-bottom: 0.967rem; padding: 0.7rem 0.767rem 0.633rem; width: 100%; }
.ab-box4>.mxw-box .left .item .st{ font-weight: bold; font-size: 0.4rem; color: #666}
.ab-box4>.mxw-box .left .item .desc{ color: #666; font-size: 0.333rem; line-height: 1.75; letter-spacing: 0.033rem; margin-top: 0.2rem}
.ab-box4>.mxw-box .left .item:last-child{ margin-bottom: 0}

.ab-box5{ padding: 2rem 0 2.5rem; background: url("../images/about-box5-bg.png") no-repeat; background-size: cover;}
.ab-box5 .item{ color: #fff;}
.ab-box5 .item .st{ font-size: 0.4rem; font-weight: bold; color: #F08741}
.ab-box5 .item .st::after{  content: ""; display: flex; height: 0.033rem; width: 50%; margin-top: 0.25rem; background: #F08741; margin-bottom: 0.583rem;}
.ab-box5 .item .desc{ font-size: 0.333rem; line-height: 2; letter-spacing: 2px;}
.ab-box5 .item:nth-child(2){ margin-top: 0.5rem;}

.pro-box1{ padding: 1.667rem 0 1.5rem;}
.pro-box1 .vr-title span{ margin-left: 0.367rem;}
.pro-box1 .con{ margin-top: 1.167rem; display: flex; align-items: center; justify-content: space-between;}
.pro-box1 .con .left{ width: 41.33%; flex-shrink: 0; margin-right: 1.583rem;}
.pro-box1 .con .right{ flex-grow: 1; min-width: 0;}
.pro-box1 .con .right .item .st{ font-size: 0.6rem; color: #333;}
.pro-box1 .con .right .item .desc{ font-size: 0.267rem; color: #333; margin-top: 0.2rem;}
.pro-box1 .con .right .item:nth-child(1)~.item{ margin-top: 0.667rem;}
.pro-box1 .con .right .more{width: 4.817rem;
    height: 1.383rem;

    border-radius: 0.4rem;
    background: rgba(240, 135, 65, 1);
    box-shadow: 0px 4px 4px  rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items:center;
     font-size: 0.4rem; color: #fff; margin-top: 0.667rem;
     }


.pro-box2{ padding: 1.833rem 0 1.583rem;    background: #F5F5F5}
.pro-box2 .vr-title span{ margin-left: -2.5rem;}
.pro-box2 .pro-con{ margin-top: 1.583rem;}
.pro-box2 .con{ display: flex; align-items: stretch; justify-content: space-between;}
.pro-box2 .con .item{ width: calc(100% / 3);}
.pro-box2 .pro-con{  position: relative;  }
.pro-box2 .pro-con .con{ position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: rgba(0,0,0,.44) }
.pro-box2 .pro-con .con .item{ padding: 0.333rem 0.417rem;}
.pro-box2 .pro-con .con .item .text{ display: flex; align-content: center; flex-wrap: wrap; text-align: center; color: #fff; height: 100%; padding: 0 0.5rem; border: 1px solid transparent;}
.pro-box2 .pro-con .con .item .text .st{ font-size: 0.8rem; width: 100%;}
.pro-box2 .pro-con .con .item .text .desc{ font-size: 0.267rem; margin-top: 0.8rem; line-height: 1.5; width: 100%; min-height: 1.2rem;}
.pro-box2 .pro-con .con .item:hover { background: rgba(240,135,65,.9);}
.pro-box2 .pro-con .con .item:hover .text{ border: 1px solid #fff}

.pro-box3{ padding: 0.917rem 0 1.667rem;}
.pro-box3 .vr-title span{ margin-left: 0;}
.pro-box3 .con{ margin-top: 1.167rem;}
.pro-box3 .con .item p{ text-align: center; font-size: 0.4rem;  color: #000; margin-top: 0.333rem; }

.pro-box4{ padding: 0 0 2rem;}
.pro-box4 .con{ margin-top: 1.75rem; display: flex; align-items: stretch;}
.pro-box4 .con .left{ width: 24.5%; flex-shrink: 0; padding-right: 2rem;}
.pro-box4 .con .right{ flex-grow: 1; min-width: 0;box-shadow: 0px 7px 12px  rgba(0, 0, 0, 0.15);
    padding: 1.25rem 2.083rem ;}
.pro-box4 .con .left .item{ display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.pro-box4 .con .left .item .cn{ font-size: 0.5rem; text-align: right;}
.pro-box4 .con .left .item .en{ font-size: 0.267rem; text-align: right; color: #737373}
.pro-box4 .con .left .item .c2{ flex-shrink: 0; margin-left: 0.2rem;}
.pro-box4 .con .left .item .c1{ flex-grow: 1; min-width: 0;}
.pro-box4 .con .left .item.active{ color: #F08741}
.pro-box4 .con .left .item.active .en{color: #F08741}
.pro-box4 .con .left .item:nth-child(1)~.item{ margin-top: 1rem;}
.pro-box4 .con .left .item .c1::after{ width: 0.833rem; height: 0.017rem; background: #fff; content: ""; display: block; margin-right: 0; margin-left: auto; margin-top: 0.1rem;}
.pro-box4 .con .left .item.active .c1::after{ background: #F08741}
.pro-box4 .con .right .st1{ font-size: 0.4rem; text-align: center;}
.pro-box4 .con .right .st1::after{ width: 1.667rem; height: 0.083rem; background: #F08741; display: block; margin: 0.3rem auto 0; content: "";}
.pro-box4 .con .right .text{ font-size: 0.333rem; color: #777; margin-top: 0.833rem; line-height: 1.5; text-align: center; text-align: center;}
.pro-box4 .con .right .desc img{ max-width: 100%; height: auto !important;}

.team-page{ background: #F8F8F8}
.team-box1{ padding-top: 1.583rem;}
.team-title{ text-align: center; }
.team-box1 .con{ background: #fff; margin-top: 0.533rem; padding-top: 1.583rem; padding-bottom: 0.5rem; box-shadow: 5px 5px 6px  rgba(0, 0, 0, 0.1);}
.team-box1 .con .list{ display: flex; align-items: stretch; justify-content:flex-start; flex-wrap: wrap;}
.team-box1 .con .list .item { width: 25%;  display: flex; flex-direction: column; }
.team-box1 .con .list .item .info{ padding: 0.417rem 0.5rem;color: #fff; flex-grow: 1;  }
.team-box1 .con .list .item:hover .info{ background: rgba(240, 135, 65, 1)}
.team-box1 .con .list .item .st1{ display: flex; align-items: center; justify-content: space-between;  font-size: 0.3rem;}
.team-box1 .con .list .item .desc{ font-size: 0.267rem;line-height: 1.6; margin-top: 0.25rem;}


.team-box2{ padding: 2rem 0 1.333rem;}
.team-box2 .vr-title{ text-align: center;}
.team-box2 .con{ margin-top: 0.833rem;}
.team-box2 .sg-cate{ display: flex; align-items: center; justify-content: center;}
.team-box2 .sg-cate .item{ padding: 0.167rem 0.783rem; font-size: 0.4rem; line-height: 1; color: #545454; border: 1px solid #545454; position: relative;}
.team-box2 .sg-cate .item:nth-child(1)~.item{ margin-left: 0.25rem;}
.team-box2 .sg-cate .item.active{ background: #F08741;  color: #fff; border: 1px solid #fff;}
.sg-swiper{ overflow: hidden; margin-top: 0.9rem; box-shadow: 0px 3px 2px  rgba(0, 0, 0, 0.25);}
.sg-swiper .swiper-slide{ display: flex; align-items: stretch; }
.sg-swiper .swiper-slide .mxw-image{ width: 50%; }
.sg-swiper .swiper-slide .right{  width: 50%; padding: 0 1.333rem 0 1.167rem; background: url("../images/sg-rbg.png") #fff no-repeat; background-size: cover; display: flex; align-content: center; flex-wrap: wrap;}
.team-box2 .sg-cate .item::after{  background: url("../images/sanjiao2.png") no-repeat; width: 0.55rem; height: 0.35rem; background-size: 100% auto; content: ""; position: absolute; top: 100%; margin: 0 auto; left: 0;right: 0; display: none;}
.team-box2 .sg-cate .item.active::after{ display: block;}
.sg-swiper .swiper-slide .right .st{ font-size: 0.6rem; text-align: center;}
.sg-swiper .swiper-slide .right .desc{ font-size: 0.3rem; color: #545454; line-height: 1.5; margin-top: 1.583rem;}

.team-box3{ padding: 1.5rem 0;}
.team-box3 .team-title p{color: rgba(115, 115, 115, 1); font-size: 0.3rem; margin-top: 0.3rem;}
.team-box3 .team3-swiper{ margin-top: 1rem; overflow: hidden;}
.team-box3 .team3-swiper .swiper-slide{ background: #fff;}
.team-box3 .team3-swiper .swiper-slide .info{ padding: 0.2rem; text-align: center; font-size: 0.3rem;box-shadow: 0px 2px 4px  rgba(0, 0, 0, 0.25);}
.team-box3 .team3-swiper .swiper-pagination{ position: initial; margin-top: 0.917rem;}
.team-box3 .team3-swiper .swiper-pagination .swiper-pagination-bullet{ width: 0.4rem; height: 0.4rem; border-radius:50%; border: 1px solid #F08741; background: #fff; opacity: 1;}
.team-box3 .team3-swiper .swiper-pagination .swiper-pagination-bullet-active{ background: #F08741}

.xc-box1{ padding: 1.583rem 0 0;}
.xc-box1 .vr-title span{ margin-left: -3rem}
.xc-box1 .con{ margin-top: 1.25rem;}

.xc-box2{ padding: 2rem 0 1.5rem;}
.xc-box2 .con{ margin-top: 1.25rem;}

.news-box{ padding: 1.083rem 0  1.333rem;}
.news-box .con{ display: flex; justify-content: space-between; align-items: flex-start;}
.news-box .con .right{ width: 24%; flex-shrink: 0; margin-left: 1.167rem;}
.news-box .con .left{ flex-grow: 1}

.news-box .con .right .news-tel{ padding: 0.7rem  0.6rem 0.833rem; background: rgba(0,0,0,.24); border-radius: 8px; border: 1px solid rgba(0,0,0,.8); text-align: center; }
.news-box .con .right .news-tel .icon{ width: 0.8rem;}
.news-box .con .right .news-tel .st1{ margin-top: 0.3rem; text-align: center; font-size: 0.4rem; color: #fff;}
.news-box .con .right .news-tel .st2{ font-size: 0.667rem; margin-top: 10px; color: #fff;}
.news-box .con .right .news-tel .tel-zc{width: 3.117rem;
    height: 0.75rem; border-radius: 0.383rem; background: #fff; color: #000;display: flex; align-items: center; justify-content: center; margin: 0.583rem auto 0;}


.news-box .con .right .news-msg{background: rgba(0,0,0,.24); border-radius: 0.133rem; border: 0.017rem solid rgba(0,0,0,.8); padding: 0.583rem 0.3rem 0.417rem; margin-top: 0.5rem; }
.news-box .con .right .news-msg .cn{ text-align: center; font-size: 0.6rem; color: #fff;}
.news-box .con .right .news-msg .en{ color: #fff; text-transform: uppercase; text-align: center; margin-bottom: 0.6rem;}
.news-box .con .right .news-msg .text{ margin-bottom: 0.5rem;background: rgba(255, 255, 255, 0.3);
height: 0.75rem; border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 1); }
.news-box .con .right .news-msg .text input{ color: #fff; font-size: 0.333rem; height: 100%; width: 100%; padding: 0 10px;}
.news-box .con .right .news-msg .text input::placeholder{ color: #fff;}
.news-box .con .right .news-msg .news-tj{width: 3.117rem;
    height: 0.75rem; border-radius: 0.383rem; background: #fff; color: #000;display: flex; align-items: center; justify-content: center; margin: 0.583rem auto 0;  font-size: 0.267rem; cursor: pointer}

.news-box .con .left .news-item{ display: flex; width: 100%; align-items: center; justify-content: space-between;}
.news-box .con .left .news-item .mxw-image{ width: 27.6%; flex-shrink: 0; margin-right: 0.667rem;}
.news-box .con .left .news-item .text{ flex-grow: 1; min-width: 0}

.news-box .con .left .news-item .text .title{ font-size: 0.4rem; color: #000; display: flex; align-items: flex-end; justify-content: flex-start}
.news-box .con .left .news-item .text .title span{ font-size: 0.267rem;color: #555; flex-shrink: 0; margin-left: 0.2rem;}
.news-box .con .left .news-item .text .desc{ font-size: 0.267rem; line-height: 1.6; margin-top: 0.2rem;}
.news-box .con .left .news-item .more{width: 2.55rem;
    height: 0.667rem;
    border-radius: 4px;
    background: rgba(215, 215, 215, 1);
    box-shadow: 0.017rem 0.067rem 0.2rem  rgba(0, 0, 0, 0.1); display: flex; align-items: center; justify-content: center; color: rgba(51, 51, 51, 1); margin-top: 0.267rem;}
.news-box .con .left .news-item:hover .more{ background: rgba(240, 135, 65, 1); color: #fff;}
.news-box .con .left .news-item:nth-child(1)~.news-item{ margin-top:0.5rem}
.cont-box1{ padding-top: 1.583rem;}
.cont-box2 .con{ display: flex; align-items: stretch; justify-content: space-between;}


.cont-box3{ margin-top: 2rem; margin-bottom: 2rem;}
.cont-box3 .mxw-box{ display: flex; align-items: flex-start; justify-content: center;}
.cont-box3 .mxw-box .item{ max-width: 3.333rem; text-align: center; margin: 0 0.583rem;}
.cont-box3 .mxw-box .item p{ margin-top: 0.25rem;}

.cont-box2{ padding-top: 1.75rem;}
.cont-box2 .con .right{ width: 50%;}
.cont-box2 .con .left{ width: 50%; color: #666666; font-size: 0.4rem;line-height: 2;}
.cont-box2 .con .left>p:nth-child(1)~p{ margin-top: 0.3rem;}
.cont-box2 .con .left>p{ display: flex; align-items: center; justify-content: flex-start;}
.cont-box2 .con .left>p img{ ;}
.cont-box2 .con .left>p span{ flex-shrink: 0; width: 0.55rem;margin-right: 0.167rem}

.cont-box4{ padding: 0.833rem 0; background: url("../images/msg-bg.png") no-repeat; background-size: cover;}
.cont-box4>.mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.cont-box4 .right{ width: 26.4%;}
.cont-box4 .right .news-tel{ padding: 0.7rem  0.6rem 0.833rem; background: rgba(255,255,255,.3); border-radius: 8px; border: 1px solid rgba(255,255,255,.8); text-align: center; }
.cont-box4 .right .news-tel .icon{ width: 0.8rem;}
.cont-box4 .right .news-tel .st1{ margin-top: 0.3rem; text-align: center; font-size: 0.4rem; color: #fff;}
.cont-box4 .right .news-tel .st2{ font-size: 0.667rem; margin-top: 10px; color: #fff;}
.cont-box4 .right .news-tel .tel-zc{width: 3.117rem;
    height: 0.75rem; border-radius: 0.383rem; background: #fff; color: #000;display: flex; align-items: center; justify-content: center; margin: 0.583rem auto 0;}

.cont-box4 .left{ flex-grow: 1; min-width: 0; margin-right: 4.667rem;}
.cont-box4 .left .cn{ font-size: 0.6rem; color: #fff;}
.cont-box4 .left .en{ font-size: 0.4rem; color: #fff; text-transform: uppercase;}
.cont-box4 .left .inp input{background: rgba(255, 255, 255, 0.3);
    height: 0.75rem; border-radius: 8px; width: 48%;
    border: 1px solid rgba(255, 255, 255, 1);color: #fff; font-size: 0.333rem;  padding: 0 10px; }
.cont-box4 .left .inp{ margin-top: 0.583rem; display: flex; justify-content: space-between;}
.cont-box4 .left .inp input::placeholder{ color: #fff;}
.cont-box4 .left .news-tj{width: 3.5rem;
    height: 0.745rem;
    opacity: 1;
    border-radius: 8px;
    background: rgba(240, 135, 65, 1); display: flex; align-items: center; justify-content: center; margin-left: auto; color: #fff; font-size: 0.267rem; margin-top: 0.583rem; cursor: pointer}

.mxw-msg{ background: #454545; padding: 0.333rem 0;}
.mxw-msg form{ display: flex; align-items: stretch; justify-content: space-between;}
.mxw-msg form .left{ display: flex; align-items: stretch; justify-content: space-between; margin-right:1rem; flex-grow: 1; min-width:0 ;}
.mxw-msg form .cz{ flex-shrink: 0; background: #F08741; border-radius: 0.167rem; display: flex; align-items: center; justify-content: center; padding: 0 0.417rem;}
.mxw-msg form .cz img{ margin-left: 0.25rem;}
.mxw-msg form .cz input{color: #fff; font-size: 0.467rem;cursor: pointer; line-height: 1; letter-spacing: 0.033rem;}
.mxw-msg form .left .inp{ width: 32%; display: flex; align-items: center; justify-content: flex-start; background: rgba(255,255,255,.5); padding: 0.3rem 0.25rem;}
.mxw-msg form .left .inp .icon{ width: 0.533rem;  flex-shrink: 0;}
.mxw-msg form .left .inp input{ flex-grow: 1; min-width: 0; margin-left: 0.167rem; height: 100%; color: #fff; font-size: 0.4rem;}
.mxw-msg form .left .inp input::placeholder{ color: #fff;}

.mxw-ys1{ padding: 1.25rem 0 1.667rem;}
.mxw-ys1>.mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.mxw-ys1>.mxw-box .item{ width: 16%;box-shadow: 0rem 0.117rem 0.2rem  rgba(0, 0, 0, 0.15); padding: 0.533rem 0.267rem 0.333rem; text-align: center;}
.mxw-ys1>.mxw-box .item .icon{ height:1rem}
.mxw-ys1>.mxw-box .item .icon img{ height:100%}
.mxw-ys1>.mxw-box .item .st{ font-size: 0.5rem; line-height: 1.2; margin: 6px auto 10px}
.mxw-ys1>.mxw-box .item .desc{ font-size: 0.3rem; line-height: 1.4; color: #777;}
.mxw-ys1>.mxw-box .item:hover{background: rgba(240, 135, 65, 1);}
.mxw-ys1>.mxw-box .item:hover .st{ color:#fff;}
.mxw-ys1>.mxw-box .item:hover .desc{ color:rgba(204, 204, 204, 1);}
.mxw-ys1>.mxw-box .item:hover .icon img{filter: grayscale(100%) brightness(800%)}


.mxw-case .case-tt{ display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.25rem;}
.mxw-case .vr-title span{ margin-left: -0.2rem}
.mxw-case .case-cate{ display: flex; align-items: center; justify-content: flex-end; }
.mxw-case .case-cate .item{ font-size: 0.333rem; color: #000; }
.mxw-case .case-cate .item::after{ width: 100%; height: 0.083rem; display: block; margin-top: 0.2rem; content: "";}
.mxw-case .case-cate .item:nth-child(1)~.item{ margin-left: 0.5rem;}
.mxw-case .case-cate .item.active{color: rgba(240, 135, 65, 0.84);}
.mxw-case .case-cate .item.active::after{background: rgba(240, 135, 65, 1);}


.case-swiper{ overflow: hidden;}
.case-swiper .swiper-slide .item{ padding-bottom: 0.2rem; border-bottom: 1px solid #A6A6A6}
.case-swiper .swiper-slide  .item .title{ margin-top: 0.25rem; font-size: 0.333rem; color: #666; display: flex; align-items: center; justify-content: space-between;}
.case-swiper .swiper-slide  .item .title span{ flex-shrink: 0; margin-left: 0.25rem;}
.case-swiper .swiper-slide  .item .title p{ flex-grow: 1; min-width: 0}
.case-swiper .swiper-slide  .item .image{position: relative;    overflow: hidden;}
.case-swiper .swiper-slide  .item .flx{ background: url("../images/xt.png") rgba(0,0,0,.6) center no-repeat; position: absolute; top: 0; right: 0;left: 0; width: 100%; height: 100%; color: #F77E2D; font-size: 0.333rem; align-items: center; justify-content: center; display: none}
.case-swiper .swiper-slide  .item .flx img{ margin-right: 0.1rem;}
.case-swiper .swiper-slide  .item:hover{ border-color: #f37b1d}
.case-swiper .swiper-slide  .item:hover .flx{ display: flex;}
.case-swiper .swiper-slide list .item:nth-child(3) ~ .item{ margin-top: 1.167rem;}
.case-swiper .swiper-slide .item .image>img{ width: 100%;    transition: all 0.4s;}
.mxw-case .c-more{ background: #F08741;width: 3.133rem;
    height: 0.767rem;
    border-radius: 0.133rem; font-size: 0.333rem; color: #fff; display: flex; align-items: center; justify-content: center; margin-left: auto; margin-top: 0.633rem;}
.case-swiper .swiper-slide .item:hover .image>img{    transform: scale(1.1);}


.mxw-xs{ margin-top: 1.917rem; padding: 1.917rem 0; background: #F5F5F5}
.mxw-xs .vr-title span{ margin-left: 0}
.mxw-xs .xs-swiper{ margin-top: 1rem; overflow: hidden; position: relative;}
.mxw-xs .xs-swiper .swiper-slide .con{ display: flex; align-items: flex-end; justify-content: space-between;}
.mxw-xs .xs-swiper .swiper-slide .title { display: flex; align-items: center; justify-content: space-between; font-size: 0.467rem; color: #000; margin-top: 0.4rem;}
.mxw-xs .xs-swiper .swiper-pagination{  text-align: right; right: 0; bottom: 0.25rem;}
.mxw-xs .xs-swiper .swiper-pagination .swiper-pagination-bullet{ width: 0.4rem; height: 0.4rem; border: 1px solid rgba(240, 135, 65, 1); background: #F5F5F5;opacity: 1;}
.mxw-xs .xs-swiper .swiper-pagination .swiper-pagination-bullet-active{ background: rgba(240, 135, 65, 1);}
.mxw-xs .xs-swiper .swiper-slide .con .left{     width: 45.9333%;    overflow: hidden;
    flex-shrink: 0;
    position: relative;}
.mxw-xs .xs-swiper .swiper-slide .con  .xt{background: rgba(240, 135, 65, 1);
    position: absolute;
    color: #fff;
    font-size: 0.4rem;
    display: block;
    z-index: 1;
    padding: 0.16rem 0.4rem 0.18rem;}
.mxw-xs .xs-swiper .swiper-slide .con .left .xt{    top: 0.4rem;
    right: 0.3rem}
.mxw-xs .xs-swiper .swiper-slide .con .right {   position: relative;    flex-grow: 1;    overflow: hidden;
    min-width: 0;}
.mxw-xs .xs-swiper .swiper-slide .con .right .xt{ top: 0.68rem;
    left: 0.55rem;}

.mxw-xs .xs-swiper .swiper-slide .con .right {box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25); margin-left:5px;}
.mxw-xs .xs-swiper .swiper-slide .con .left {margin-right:5px;box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25)}


.mxw-hz{ padding: 1.5rem 0;}
.mxw-hz .vr-title span{ margin-left: -2rem}
.mxw-hz .hz-body{ display: flex; align-items: center; justify-content: space-between; margin-top: 1rem;}
.mxw-hz .hz-body .right{ width: 59%; flex-shrink: 0; margin-left: 1rem;}
.mxw-hz .hz-body .left{ flex-grow: 1; min-width: 0; padding-left: 0.75rem; padding-right: 0.75rem;}
.mxw-hz .hz-body .right .hz-swiper .swiper-slide{box-shadow: 0px 2px 4px  rgba(0, 0, 0, 0.25);}
.mxw-hz .hz-body .left .item{ font-size: 0; line-height: 1;}
.mxw-hz .hz-body .left .item .scrolling-numbers{ color: #F08741; font-size: 1rem; font-weight: bold;}
.mxw-hz .hz-body .left .item sup{ font-size: 0.333rem;color: #F08741;     vertical-align: top;}
.mxw-hz .hz-body .left .item sub{ font-size: 0.333rem;color: #F08741;     }
.mxw-hz .hz-body .left .item p{color: #4B4B4B; font-size: 0.267rem; margin-top: 0.2rem;}
.mxw-hz .hz-body .left .item:nth-child(2n)~.item{ margin-top: 1rem;}
.mxw-about.ab-box1{ margin-top: 0; padding-top: 5.917rem; background: url("../images/4.jpg") no-repeat; background-size: cover;}
.mxw-about.ab-box1 .con{ padding-bottom: 0.917rem;}
.mxw-about .a-more{width: 2.9rem;
    height: 0.717rem;
    opacity: 1;
    border-radius: 0.133rem;
    background: rgba(240, 135, 65, 1); font-size: 0.333rem; color: #fff; display: flex; align-items: center; justify-content: center; margin-left: auto; margin-top: 0.2rem;}

.mxw-team{ padding: 2.5rem 0 3.25rem; background: url("../images/team-bg2.png") no-repeat; background-size: cover; }
.mxw-team .vr-title span{ margin-left: -1.75rem}

.team-swiper{ overflow: hidden; margin-top: -0.417rem;}
.team-swiper .swiper-slide{ display: flex; align-items: center; justify-content: space-between; color: #fff;}
.team-swiper .swiper-slide .right{ width: 39%; margin-left: 3rem; flex-shrink: 0;}
.team-swiper .swiper-slide .left{ flex-grow: 1; min-width: 0; padding-left: 1.833rem;}
.team-swiper .swiper-slide .left .name{ font-size: 0.8rem; color: rgba(240, 135, 65, 1)}
.team-swiper .swiper-slide .left .info{ background: rgba(204, 204, 204, .2); border-left: 0.083rem solid rgba(240, 135, 65, 1); padding: 0.2rem 0.333rem 0.2rem 0.367rem; margin: 0.533rem auto 0.5rem;font-size: 0.333rem; line-height: 1.6}
.team-swiper .swiper-slide .left .desc{ font-size: 0.267rem; margin-bottom: 0.25rem; line-height: 1.9;}

.team-cate{ padding: 0.833rem 1rem; background: #F5F5F5; margin-top: -3.25rem;}

.team-cate-swiper{ overflow: hidden}
.team-cate-swiper .swiper-slide{ width: 20%}
.team-cate .swiper-pagination{ position: initial; margin-top: 0.667rem;}
.team-cate .swiper-pagination .swiper-pagination-bullet{ width: 0.4rem; height: 0.4rem; border: 0.017rem solid rgba(240, 135, 65, 1); background:#F5F5F5; opacity: 1;}
.team-cate .swiper-pagination .swiper-pagination-bullet-active{ background: rgba(240, 135, 65, 1);}

.mxw-zx{ padding: 1.5rem 0 2rem;}
.mxw-zx .list{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 1.333rem;}
.mxw-zx .list .item{ text-align: center; width: 22%; }
.mxw-zx .list .item .st{ font-size: 0.4rem; margin-top: 0.25rem;}
.mxw-zx .list .item .desc{ font-size: 0.333rem; color: #808080; margin-top: 0.1rem;}
.mxw-zx .list .item:hover .st{color: #F08741}
.mxw-zx .list .item:hover .desc{color: #F08741}

.mxw-sev{ padding: 1.417rem 0 1rem; background: url("../images/sev-bg.png") no-repeat; background-size: cover;}
.mxw-sev .vr-title span{ color: #fff; margin-left: -1.5rem}
.mxw-sev .sev-body{ margin-top: 1rem; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.mxw-sev .sev-body .item{ width: 20%; text-align: center; padding: 0.417rem 0; border-right: 1px solid #fff; }
.mxw-sev .sev-body .item p{ margin-top: 0.4rem; font-size: 0.333rem; text-align: center; color: #fff;}
.mxw-sev .sev-body .item:nth-child(5n){ border-right: 0}
.mxw-sev .sev-body .item:nth-child(5n)~.item{ border-top: 1px solid #fff;}
.mxw-sev .sev-body .item .icon{ width: 1.75rem; transition: all 0.3s; margin: 0 auto;}
.mxw-sev .sev-body .item:hover .icon{ transform: rotate3d(0,1,0,180deg)}

.mxw-news{ background: #F5F5F5; padding: 1.5rem 0 2rem;}
.mxw-news .vr-title span{ margin-left: 0}
.news-swiper{overflow: hidden;}
.mxw-news .news-swiper{ margin-top: 1rem;}


.mxw-news .case-tt{ display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.25rem;}
.mxw-news .news-cate{ display: flex; align-items: center; justify-content: flex-end; }
.mxw-news .news-cate .item{ font-size: 0.333rem; color: #000; }
.mxw-news .news-cate .item::after{ width: 100%; height: 0.083rem; display: block; margin-top: 0.2rem; content: "";}
.mxw-news .news-cate .item:nth-child(1)~.item{ margin-left: 0.5rem;}
.mxw-news .news-cate .item.active{color: rgba(240, 135, 65, 0.84);}
.mxw-news .news-cate .item.active::after{background: rgba(240, 135, 65, 1);}
.mxw-news .news-swiper .swiper-slide{ display: flex; align-items: stretch; justify-content: space-between;}
.mxw-news .news-swiper .swiper-slide .left{ width: 49.4%; flex-shrink: 0; position: relative;}
.mxw-news .news-swiper .swiper-slide .right{ flex-grow: 1; min-width: 0; margin-left: 0.833rem;}
.mxw-news .news-swiper .swiper-slide .left .flx{ position: absolute; bottom: 0; width: 100%; background: rgba(0,0,0,.5); padding: 0.333rem 0.6rem; font-size: 0.333rem; color: #fff; display: flex; justify-content: space-between;}
.mxw-news .news-swiper .swiper-slide .left .flx span{ border: 0.017rem solid #fff; flex-shrink: 0; margin-left: 0.25rem; font-size: 0.233rem; padding: 0.1rem 0.433rem;}
.mxw-news .news-swiper .swiper-slide .right .item{ display: flex; align-items: flex-start; justify-content: space-between;position: relative;  border-bottom: 2px solid #D6D6D6; padding-bottom: 0.433rem}
.mxw-news .news-swiper .swiper-slide .right .item .date{ color: #555 ; font-size: 0.233rem; line-height: 1.5; margin-right: 0.333rem;}
.mxw-news .news-swiper .swiper-slide .right .item .date p{ font-size: 0.4rem;}
.mxw-news .news-swiper .swiper-slide .right .item .text{ flex-grow: 1; min-width: 0;}
.mxw-news .news-swiper .swiper-slide .right .item .text .title{ font-size: 0.333rem; color: #333;}
.mxw-news .news-swiper .swiper-slide .right .item .text .desc{ font-size: 0.2333rem; color: #999; line-height: 1.5; margin-top: 0.25rem; height: 1rem;}
.mxw-news .news-swiper .swiper-slide .right .item:nth-child(1)~.item{padding-top:0.433rem;}
.mxw-news .news-swiper .swiper-slide .right .item:hover .title{ color: #F08741}
.mxw-news .news-swiper .swiper-slide .right .item::after{ position: absolute; left: 0; bottom: -1px; content: ""; display: block; width: 0.8rem; height: 2px; transition: all 0.3s; background: #F08741}
.mxw-news .news-swiper .swiper-slide .right .item:hover::after{ width: 100%}

.mxw-lc{ padding: 1.583rem 0 1.25rem; background: url("../images/lc-bg.png") center no-repeat; background-size: cover}
.mxw-lc>.mxw-box{ display: flex; align-items: center; justify-content: space-between; text-align: center;}
.mxw-lc>.mxw-box p{ font-size: 0.333rem; color: #fff; margin-top: 12px;}
.mxw-lc>.mxw-box .icon{ max-width: 1.417rem; margin: 0 auto;}


footer{ background: rgba(56, 56, 56, 1)}
footer .mxw-copy{ padding: 0.5rem 0 0.417rem;}
footer .mxw-copy .mxw-box{ font-size: 12px; color: #F3F3F3; text-align: center; line-height: 1.6}
footer .mxw-copy a{ font-size: 12px; color: #F3F3F3; text-align: center;}
footer{ padding-top: 1.5rem;}
footer .fot-tp{ padding-bottom: 1rem;}
footer .fot-tp .mxw-box{ display: flex; align-items: center; justify-content: space-between;}
footer .fot-tp .mxw-box .right{ flex-shrink: 0;}
footer .fot-tp .mxw-box .left{ flex-grow: 1; min-width: 0; padding-right: 1.583rem; display: flex; align-items: flex-start;}
footer .fot-tp .mxw-box .title{ font-size: 0.4rem; line-height: 2.4; color: #F08741; padding-bottom: 0.1rem; border-bottom: 1px solid #F08741;padding-right: 0.917rem;}
footer .fot-tp .mxw-box .d-item{ width: 20%; flex-shrink: 0; }
footer .fot-tp .mxw-box .d-item .list{ display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-top: 0.2rem; margin-right: 0.833rem;}
footer .fot-tp .mxw-box .d-item .list .d-link{ width: 50%; text-align: left; font-size: 0.267rem;color: #BABABA; line-height: 2}
footer .fot-tp .mxw-box .d-item2{ flex-grow: 1}
footer .fot-tp .mxw-box .d-item2 .list{margin-top: 0.2rem; }
footer .fot-tp .mxw-box .d-item2 .list .d-link{ width: 100%; display: block; text-align: left; font-size: 0.267rem;color: #BABABA; line-height: 2}
footer .fot-tp .mxw-box .d-item3 .list{text-align: left; font-size: 0.267rem;color: #BABABA; line-height: 2;margin-top: 0.2rem;}
.fw-swiper{ overflow: hidden;}
.zs-swiper{ overflow: hidden}


.s-more{width: 3.667rem;
    height: 1.183rem;
    opacity: 1;
    background: rgba(240, 135, 65, 1);
    box-shadow: 0px 4px 4px  rgba(0, 0, 0, 0.05);    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.4rem;
    margin: 0.5rem 0 0 auto;}


.pro_b {margin-top: 0.75rem;}
.pro_b ul{    justify-content: flex-start;display: flex;  padding: 15px;
    border: 1px solid #ccc;}
.pro_b ul li {width: 16%; margin-right:calc(4%/5);}
.pro_b ul li .image{   
    display: flex;
    align-items: center;
    justify-content: center;    overflow: hidden;}
.pro_b ul li:last-child{margin-right:0}
.pro_b ul li p{ margin-top:5px;     text-align: center;    font-size: 14px;}
.lg_x_t {
    background: #eb6100;
    color: #fff;
    text-indent: 1em;
    font-size: 18px;
    padding: 15px 0;
}


.mxw-msg form .cz input, .c-more,.mxw-about .a-more,.mxw-news .news-swiper .swiper-slide .left .flx span,.pro-box1 .con .right .more,.s-more,.news-box .con .left .news-item .more,.cont-box4 .left .news-tj,.cont-box4 .right .news-tel .tel-zc,.news-box .con .right .news-msg .news-tj,.news-box .con .right .news-tel .tel-zc{    transition: all 0.3s;}
.mxw-msg form .cz input:hover,.mxw-about .a-more:hover,.mxw-news .news-swiper .swiper-slide .left .flx span:hover,.cont-box4 .right .news-tel .tel-zc:hover,.news-box .con .right .news-tel .tel-zc:hover{    transform: scale(1.1);}
.mxw-case .c-more:hover,.pro-box1 .con .right .more:hover,.s-more:hover,.news-box .con .left .news-item .more:hover,.cont-box4 .left .news-tj:hover,.news-box .con .right .news-msg .news-tj:hover{  transform: scale(1.1); }








.xc-box1 .con{ display: flex; justify-content: flex-start; flex-wrap: wrap;}
        .xc-box1 .con .item{ width: 24.4%; margin-right: 0.8%;  position: relative; margin-bottom: 0.2rem; overflow: hidden;}
        .xc-box1 .con .item:nth-child(4){margin-right: 0; }
        .xc-box1 .con .item:nth-child(6){ width: 49.6%}
        .xc-box1 .con .item:nth-child(7){margin-right: 0;}
        .xc-box1 .con .item:nth-child(11){margin-right: 0;}
        .xc-box1 .con .item p{ position: absolute; z-index: 1; left: -100%; height: 100%; word-break: break-all; background: rgba(0,0,0,.4); color: #fff; font-size: 0.267rem; padding: 0.5rem 0.333rem; width: 1rem; transition: all 0.3s;}
        .xc-box1 .con .item p span{    transform: rotate3d(0, 0, 1, 90deg);
            display: block;
            width: max-content;

            margin-bottom: 10px;}
        .xc-box1 .con .item:nth-child(11) p span{ margin-left: -5px;}
        .xc-box1 .con .item p i::before{ display: block; background: #fff; content: ""; width: 0.017rem; height: 0.333rem; margin: 0.083rem 0.2rem 0.167rem auto;}
        .xc-box1 .con .item:hover p{ left: 0}



.pg{margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-between;}

.news_b{    margin-top: 0.75rem;}
.news_b ul{
    padding: 15px;
    border: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;    justify-content: space-between;
}
.news_b ul li {
    width: calc(49% - 30px);
    line-height: 1.75;
    list-style-type: disc;
    margin-left: 30px;
}


.n-banner{text-align:center;}
.n_banner{ text-align:center;
}
.news-box .con .ny-news-desc{ flex-flow:1; min-width:0}



 /* ==================== 页面具体样式 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: #f37b1d;
}
.ny-product-desc .small-image .swiper-button-disabled {
    opacity: 1;
}
.ny-product-desc .small-image .swiper-button-next:after,
.ny-product-desc .small-image .swiper-button-prev:after {
    font-size: 0.4667rem;
    color: #ccc;
}
.ny-product-desc .small-image .swiper-button-next {
    right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
    left: 0rem;
}
.ny-product-desc .bottom {
    margin-top: 0.8333rem;
}
.ny-product-desc .bottom .head {
    width: 100%;
    border-bottom: 0.0167rem solid #d9d9d9;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
    padding: 0 0.3333rem;
    border-bottom: 0.0833rem solid #c10d1a;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #c10d1a;
}
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 1400px;
    }
    .ny-product-desc .top {
        align-items: stretch;
    }
}
@media screen and (max-width: 1480px) {
    .ny-product-desc .mxw-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 100%;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {
        margin-bottom: 10px;
    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 16px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }
}
/* ==================== 内页 - 产品详情 end ==================== */


/* ==================== 新闻详情 start ==================== */

.ny-news-desc > .mxw-box {
    padding-top: 60px;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 2;
    text-align: justify;
    font-size: 0.3rem;
}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {
        font-size: 16px;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */

/* ==================== 通用工具栏 start ==================== */
.mxw-tool {
  position: fixed;
  z-index: 99;
}
.mxw-tool .icon {
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .mxw-tool {
right:0;
    top: 60%;
    transform: translateY(-50%);
  }
  .mxw-tool .tool-item {
    margin-bottom: 5px;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-color: #eb6100;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 12px;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.4s;
  }
  .mxw-tool .tool-item:hover {
    box-shadow: 0 0 10px -8px #eb6100;
  }
  .mxw-tool .tool-item:hover .tool-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 9;
  }
  .mxw-tool .tool-item:hover .tool-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 9;
  }
  .mxw-tool .tool-item .icon {
    width: 0.5rem;
    height: 0.5rem;
    margin-bottom: 5px;
  }
  .mxw-tool .tool-item .text {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
  }
  .mxw-tool .tool-content {
    position: absolute;
    top: 0;
    height: 100%;
    background: #fff;
    width: 3.3333rem;
    right: 1.4333rem;
    color: #333;
    font-size: 0.2333rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0.3333rem;
    font-size: 0.2667rem;
    line-height: 1.6;
    border: 0.0167rem solid #ddd;
    border-radius: 0.0833rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 751px) {
  .mxw-tool {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    font-size: 14px;
  }
  .mxw-tool .icon {
    text-align: center;
  }
  .mxw-tool .tool-item {
    width: 18%;
    height: 50px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .mxw-tool .tool-item:nth-child(5) ~ .tool-item {
    display: none;
  }
  .mxw-tool .tool-item .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-bottom: 5px;
  }
  .mxw-tool .tool-item .text {
    font-size: 13px;
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
    text-indent: 1px;
  }
}
/* ==================== 通用工具栏 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 ==================== */

@media screen and (max-width: 1440px) {

footer .fot-tp .mxw-box .title{ padding-right:0.5rem; font-size:0.367rem}

}

@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}

    .mxw-msg{ padding: 20px 0;}
    .mxw-msg form{ flex-wrap: wrap;}
    .mxw-msg form .left{ width: 100%; margin-right: 0; flex-wrap: wrap;}
    .mxw-msg form .left .inp{ width: 100%; padding: 8px 10px; margin-bottom: 10px;}
    .mxw-msg form .left .inp input{ font-size: 14px;}
    .mxw-msg form .left .inp .icon{ width: 20px;}
    .mxw-msg form .cz{ width: 100%; padding: 0 ;}
    .mxw-msg form .cz input{ font-size: 16px; margin: 10px auto;}
    .mxw-msg form .cz img{ display: none;}
    .mxw-ys1{ padding: 45px 0;}
    .mxw-ys1>.mxw-box{ flex-wrap: wrap;}
    .mxw-ys1>.mxw-box .item{ width: 48.5%;}
    .mxw-ys1>.mxw-box .item .icon img{ height: 35px;}
    .mxw-ys1>.mxw-box .item .st{ font-size: 16px;}
    .mxw-ys1>.mxw-box .item .desc{ font-size: 14px;}
    .mxw-case .case-tt{ flex-wrap: wrap;margin-bottom: 0}
    .vr-title{ flex-wrap: wrap;}
    .vr-title>img{ zoom: 0.6}
    .vr-title span{ display: block; margin-top: 10px; margin-left: 0 !important; font-size: 14px}
    .mxw-case .vr-title span{ margin-left: 0;}
    .mxw-case .case-cate{ flex-wrap: wrap; margin: 25px auto; justify-content: flex-start}
    .mxw-case .case-cate .item{ font-size: 16px; width: 25%; margin-left: 0; text-align: center;}
    .mxw-case .case-cate .item:nth-child(1)~.item{ margin-left: 0;}
    .mxw-case .case-cate .item:nth-child(4n)~.item{margin-top: 10px;}
    .mxw-case .case-cate .item::after{ margin-top: 5px;}
    .case-swiper .swiper-slide .item .title p{ font-size: 14px; width: 100%}
    .case-swiper .swiper-slide .item .title{ font-size: 14px; margin-top: 5px; flex-wrap: wrap;}
    .case-swiper .swiper-slide .item .title span{ display: block; width: 100%;text-align: left; font-size: 14px; margin-left: 0}
    .mxw-case .c-more{ margin: 25px auto 0; zoom: 0.8; font-size: 16px;}
    .mxw-xs{ margin-top: 45px; padding: 45px 0;}
    .mxw-xs .xs-swiper{ margin-top: 25px;}
    .mxw-xs .xs-swiper .swiper-slide .title{ margin-top: 10px; font-size: 16px;}
    .mxw-xs .xs-swiper .swiper-pagination{ position: initial;}
    .mxw-xs .xs-swiper .swiper-pagination .swiper-pagination-bullet{ width: 15px; height: 15px;}

    .mxw-hz{ padding: 45px 0;}
    .mxw-hz .hz-body{ margin-top: 25px; flex-wrap: wrap;}
    .mxw-hz .hz-body .left{ width: 100%;padding: 0}
    .mxw-hz .hz-body .left .item{ width: 50%; text-align: center;}
    .mxw-hz .hz-body .left .item .scrolling-numbers{ font-size: 24px;}
    .mxw-hz .hz-body .left .item p{ font-size: 14px;}
    .mxw-hz .hz-body .left .item:nth-child(1)~.item{ margin-top: 0;}
    .mxw-hz .hz-body .left .item:nth-child(2n)~.item{ margin-top: 15px;}
    .mxw-hz .hz-body .right{ margin-left: 0; margin-top: 20px; width: 100%;}
    .mxw-about.ab-box1{ padding-top: 40px;}
    .mxw-about.ab-box1 .con{ width: 100%; padding: 25px 25px 45px;}
    .ab-box1 .con .st1{ font-size: 16px;}
    .ab-box1 .con .title img{ height: 25px;}
    .ab-box1 .con .text{ font-size: 14px; letter-spacing: 0;}
    .mxw-about .a-more{ zoom: 0.8}
    .ab-box3{ padding: 45px 0;}
    .mxw-team{ padding: 45px 0;}
    .team-swiper .swiper-slide{ flex-wrap: wrap;}
    .team-swiper{ margin-top: 25px;}
    .team-swiper .swiper-slide .left{ width: 100%; padding-left: 0}
    .team-swiper .swiper-slide .left .name{ font-size: 24px;}
    .team-swiper .swiper-slide .left .info{ margin: 25px auto; font-size: 16px;}
    .team-swiper .swiper-slide .left .desc{ font-size: 14px;}
    .team-swiper .swiper-slide .right{ width: 100%; margin: 0 auto; text-align: center;}
    .team-cate{ margin-top: -45px;}
    .team-cate .swiper-pagination{ margin: 10px auto 25px;}
    .team-cate .swiper-pagination .swiper-pagination-bullet{ width: 15px; height: 15px;}
    .mxw-zx{ padding: 45px 0;}
    .mxw-zx .list{ flex-wrap: wrap; margin-top: 25px;}
    .mxw-zx .list .item{ width: 48.5%;}
    .mxw-zx .list .item .st{ font-size: 16px; margin-top: 5px;}
    .mxw-zx .list .item .desc{ font-size: 14px;}
    .mxw-zx .list .item:nth-child(2n)~.item{ margin-top: 20px;}
    .mxw-sev{ padding: 40px 0;}
    .mxw-sev .sev-body .item .icon { width: 100%; }
    .mxw-sev .sev-body .item .icon img{ height: 35px;}
    .mxw-sev .sev-body .item p{ font-size: 14px; margin-top: 10px;}
    .mxw-sev .sev-body .item{ padding: 10px 0}
    .mxw-sev .sev-body{ margin-top: 20px;}
    .mxw-news{ padding: 45px 0;}
    .mxw-news .case-tt{ flex-wrap: wrap; margin-bottom: 0}
    .mxw-news .news-cate{ flex-wrap: wrap; margin: 25px auto; justify-content: flex-start; width: 100%}
    .mxw-news .news-cate .item{ font-size: 16px; width: 25%; margin-left: 0; text-align: center;}
    .mxw-news .news-cate .item:nth-child(1)~.item{ margin-left: 0;}
    .mxw-news .news-cate .item:nth-child(4n)~.item{margin-top: 10px;}
    .mxw-news .news-cate .item::after{ margin-top: 5px;}
    .mxw-news .news-swiper{ margin-top: 0}
    .mxw-news .news-swiper .swiper-slide{ flex-wrap: wrap;}
    .mxw-news .news-swiper .swiper-slide .left{ width: 100%;}
    .mxw-news .news-swiper .swiper-slide .left .flx{ padding: 10px; align-items: center;}
    .mxw-news .news-swiper .swiper-slide .left .flx p{ font-size: 14px;}
    .mxw-news .news-swiper .swiper-slide .right{ margin-left: 0; margin-top: 15px; width: 100%;}
    .mxw-news .news-swiper .swiper-slide .right .item .text .title{ font-size: 16px;}
    .mxw-news .news-swiper .swiper-slide .right .item .text .desc{ font-size: 14px; margin-top: 5px; height: 65px;}
    .mxw-news .news-swiper .swiper-slide .right .item{ padding-bottom: 10px;}
    .mxw-news .news-swiper .swiper-slide .right .item:nth-child(1)~.item{ padding-top: 10px;}
    .mxw-lc{ padding: 45px 0;}
    .mxw-lc>.mxw-box{ flex-wrap: wrap; justify-content: flex-start;}
    .mxw-lc>.mxw-box .item{ width: 25%; text-align: center;}
    .mxw-lc>.mxw-box>.ico{ display: none}
    .mxw-lc>.mxw-box .icon img{ height: 35px;}
    .mxw-lc>.mxw-box p{ font-size: 14px;}
    .mxw-lc>.mxw-box .item:nth-child(7n)~.item{ margin-top: 15px;}
    footer{ padding-top: 45px;}
    footer .fot-tp .mxw-box{ flex-wrap: wrap;}
    footer .fot-tp .mxw-box .left{ padding-right: 0; width: 100%;}
    footer .fot-tp .mxw-box .left .d-item3{ width: 100%}
    footer .fot-tp{ padding-bottom: 0;}
    footer .fot-tp .mxw-box .right{width: 100%; padding-top: 25px;}

 
    .poz{ font-size: 14px; padding: 10px 0;}
    .case-tab{ margin-top: 45px;}
    .case-tab>.mxw-box .cate-item{ flex-wrap: wrap;}
    .case-tab>.mxw-box .right{ display: none;}
    .case-tab>.mxw-box .cate-item .title{ font-size: 16px;}
    .case-tab>.mxw-box .cate-item .list{ margin-top: 5px; font-size: 16px;}
    .case-tab>.mxw-box .cate-item .list a{ border: 0; padding: 0; margin-right: 15px; margin-top: 10px;}
    .case-tab>.mxw-box .cate-item:nth-child(1)~.cate-item{ margin-top: 20px;}
    .case-list .item{ padding-bottom: 5px}
    .case-list .item .flx{ display: none !important;}
    .case-list .item .title{ margin-top: 10px; flex-wrap: wrap;}
    .case-list .item .title p{ width: 100%; font-size: 14px;}
    .case-list .item .title span{ margin-left: 0}
    .case-list .item:nth-child(3) ~ .item{ margin-top:0 }
    .case-list .item:nth-child(2n) ~ .item{ margin-top: 25px;}
    .mxw-pagination{ margin-bottom: 45px; margin-top: 25px;}
    .vr-list{ padding: 45px 0;}
    .vr-list .list{ margin-top: 25px;}
    .vr-list .list .item:nth-child(2n){ margin-left: 0}
    .cont-cate .mxw-box{ flex-wrap: wrap;}
    .cont-cate .mxw-box .item p{ font-size: 16px;}
    .cont-cate .mxw-box .item{ width: 25%;padding: 8px 10px; margin: 0}
    .ab-box1 .con{ padding: 25px 25px 45px; width: 100%;}
    .ab-box2{ padding: 45px 0;}
    .ab-box2 .con1 .right{ margin: 0; padding: 25px; font-size: 14px; letter-spacing: 0;}
    .ab-box2 .con1 .left{ display: none}
    .ab-box2 .con2{ font-size: 14px; margin-top: 25px;letter-spacing: 0}
    .zs-swiper .swiper-slide p{ font-size: 14px; margin-top: 5px;}
    .ab-box4{ padding: 45px 0;}
    .ab-box4>.mxw-box .left .title img{ max-width: 100%; height: auto;}
    .ab-box4>.mxw-box .right{ display: none;}
    .ab-box4>.mxw-box .left .title{ margin-bottom: 25px;}
    .ab-box4>.mxw-box .left .item{ padding: 15px; margin-bottom: 20px;}
    .ab-box4>.mxw-box .left .item .st{ font-size: 16px;}
    .ab-box4>.mxw-box .left .item .desc{ font-size: 14px; line-height: 1.6; letter-spacing: 0}
    .ab-box5{ padding: 45px 0;}
    .ab-box5 .item .st{ font-size: 16px;}
    .ab-box5 .item .st::after{ margin: 5px auto 15px 0; width: 75%;}
    .ab-box5 .item .desc{ font-size: 14px; line-height: 1.75; letter-spacing: 0;}

    .pro-box1{ padding: 45px 0;}
    .pro-box1 .con{ margin-top: 25px; flex-wrap: wrap;}
    .pro-box1 .con .left{ width: 100%; margin-right: 0}
    .pro-box1 .con .right{ width: 100%;padding-top: 20px;}
    .pro-box1 .con .right .item .st{ font-size: 18px;}
    .pro-box1 .con .right .item .desc{ font-size: 14px; margin-top: 5px;}
    .pro-box1 .con .right .item:nth-child(1)~.item{ margin-top: 15px;}
    .pro-box1 .con .right .more{ font-size: 16px; padding: 10px 25px; width: initial; height: initial; margin: 20px auto 0;}
    .pro-box2{ padding: 45px 0;}
    .pro-box2 .pro-con{ margin-top: 20px; overflow: hidden}
    .pro-box2 .pro-con .con .item{ width: 100%; padding: 10px;}
    .pro-box2 .pro-con .con{ flex-wrap: wrap; position: initial}
    .pro-box2 .pro-con>img{ }
    .pro-box2 .pro-con .con .item .text .st{ font-size: 18px;}
    .pro-box2 .pro-con .con .item .text .desc{ font-size: 14px; margin-top: 10px}
    .pro-box2 .pro-con .con .item .text{ padding: 25px;}
    .pro-box2 .pro-con .con .item .text .desc{ height: auto; min-height: initial}
    .pro-box2 .pro-con .con{}
    .pro-box3{ padding: 45px 0;}
    .pro-box3 .con{ margin-top: 25px;}
    .pro-box3 .con .item p{ font-size: 14px; margin-top: 5px;}
    .pro-box4 .con{ margin-top: 25px; flex-wrap: wrap;}
    .pro-box4 .con .left{ padding: 0; width: 100%;  display: flex; align-items: stretch;justify-content: flex-start;flex-wrap: wrap;}
    .pro-box4 .con .left .item{ width: 50%; text-align: center;}
    .pro-box4 .con .left .item .c2{ display: none;}
    .pro-box4 .con .left .item .cn{ font-size: 18px; text-align: center}
    .pro-box4 .con .left .item .en{ font-size: 14px; text-align: center}
    .pro-box4 .con .left .item:nth-child(1)~.item{ margin-top: 0}
    .pro-box4 .con .left .item .c1{ text-align: center;}
    .pro-box4 .con .left .item .c1::after{ margin: 5px auto 0;}
    .pro-box4 .con .left .item:nth-child(2n)~.item{ margin-top: 20px;}
    .pro-box4 .con .right{ padding: 20px; margin-top: 25px;}
    .pro-box4 .con .right .st1{ font-size: 18px;}
    .pro-box4 .con .right .st1::after{ margin-top: 5px;}
    .pro-box4 .con .right .text{ font-size: 14px; margin-top: 20px;}
    .pro-box4{ padding-bottom: 45px;}

    .team-box1{ padding-top: 45px;}
    .team-title>img{zoom: 0.75}
    .team-box1 .con{ margin-top: 15px; padding: 25px 0;}
    .team-box1 .con .list .item{ width: 50%;}
    .team-box1 .con .list .item .info{ padding: 10px;}
    .team-box1 .con .list .item .st1{ font-size: 16px;}
    .team-box1 .con .list .item .desc{ font-size: 14px; margin-top: 5px;}
    .team-box1 .con .list .item .st1{ flex-wrap: wrap;}
    .team-box1 .con .list .item .st1 span{width: 100%;}
    .team-box2{ padding: 45px 0;}
    .team-box2 .con{ margin-top: 25px;}
    .team-box2 .sg-cate{ flex-wrap: wrap; justify-content: space-between;}
    .team-box2 .sg-cate .item{ width: 48.5%; font-size: 16px; padding: 8px 10px; text-align: center;}
    .team-box2 .sg-cate .item:nth-child(1)~.item{ margin-left: 0}
    .team-box2 .sg-cate .item:nth-child(2n){ margin-left: auto;}
    .team-box2 .sg-cate .item:nth-child(2n)~.item{margin-top: 12px;}
    .team-box2 .sg-cate .item::after{ width: 15px; height: 9px;}
    .sg-swiper{ margin-top: 25px;}
    .sg-swiper .swiper-slide{ align-items: flex-start; flex-wrap: wrap;}
    .sg-swiper .swiper-slide .mxw-image{ width: 100%;}
    .sg-swiper .swiper-slide .right{ width: 100%; padding: 20px;}
    .sg-swiper .swiper-slide .right .st{ font-size: 18px;}
    .sg-swiper .swiper-slide .right .desc{ margin-top: 15px; font-size: 14px;}
    .team-box3{ padding: 0 0 45px;}
    .team-box3 .team-title p{ font-size: 14px; width: 95%; margin: 10px auto 0;}
    .team-box3 .team3-swiper{ margin-top: 25px;}
    .team-box3 .team3-swiper .swiper-slide .info{ padding: 10px 10px; font-size: 14px;}
    .team-box3 .team3-swiper .swiper-pagination{ margin-top: 12px;}
    .team-box3 .team3-swiper .swiper-pagination .swiper-pagination-bullet{ width: 15px; height: 15px;}
    .xc-box1{ padding: 45px 0;}
    .xc-box1 .con{ margin-top: 25px;}
    .xc-box2{ padding: 0 0 45px;}
    .xc-box2 .con{ margin-top: 25px;}
    .news-box{ padding: 25px 0 45px;}
    .news-box .con{ flex-wrap: wrap;}
    .news-box .con .left .news-item .text .title{ font-size: 16px;}
    .news-box .con .left .news-item .text .desc{ font-size: 14px;}
    .news-box .con .left .news-item{ flex-wrap: wrap;}
    .news-box .con .left .news-item .mxw-image{ width: 100%; margin: 0}
    .news-box .con .left .news-item .text{ margin-top: 10px;}
    .news-box .con .left .news-item .text .desc{ height: 67px;}
    .news-box .con .left .news-item .more{zoom: 0.75}
    .news-box .con .left .news-item:nth-child(1)~.news-item{ margin-top: 30px;}
    .news-box .con .right{ margin-left: 0; width: 100%;}
    .news-box .con .right .news-tel{ padding: 20px;}
    .news-box .con .right .news-tel .st1{ font-size: 18px;}
    .news-box .con .right .news-tel .st2{ font-size: 24px;}
    .news-box .con .right .news-tel .tel-zc{ zoom: 0.8; margin: 12px auto 0}
    .news-box .con .right .news-msg .cn{ font-size: 18px;}
    .news-box .con .right .news-msg .en{ font-size: 14px;}
    .news-box .con .right .news-msg .text input{ font-size: 14px;}
    .news-box .con .right .news-msg .text{ margin-bottom: 15px;}
    .news-box .con .right .news-msg .news-tj{ zoom: 0.8; margin-top: 15px;}



    footer .fot-tp .mxw-box .d-item2,footer .fot-tp .mxw-box .d-item{ display:none}

    .cont-box1{ padding-top: 0}
    .cont-box2{ padding-top: 45px;}
    .cont-box2 .con{ flex-wrap: wrap;}
    .cont-box2 .con .left{ width: 100%;}
    .cont-box2 .con .left{ font-size: 14px;}
    .cont-box2 .con .left>p>span>img{ zoom: 0.75}
    .cont-box3{ margin: 45px 0;}
    .cont-box3 .mxw-box{ flex-wrap: wrap; justify-content: space-between;}
    .cont-box3 .mxw-box .item{ width: 48.5%; margin: 0; max-width: 100%}
    .cont-box3 .mxw-box .item p{ font-size: 14px; margin-top: 0}
    .cont-box3 .mxw-box .item:nth-child(2n)~.item{ margin-top: 25px;}
    .cont-box4{ padding: 45px 0;}
    .cont-box4>.mxw-box{ flex-wrap: wrap;}
    .cont-box4 .left{ width: 100%; margin: 0;}
    .cont-box4 .left .cn{ font-size: 18px;}
    .cont-box4 .left .en{ font-size: 14px;}
    .cont-box4 .left .inp input{ width: 100%; font-size: 14px;}
    .cont-box4 .left .inp{ margin-top: 15px; flex-wrap: wrap;}
    .cont-box4 .left .inp input:last-child{ margin-top: 15px;}
    .cont-box4 .left .news-tj{ margin: 15px auto 25px; zoom: 0.8}
    .cont-box4 .right{ width: 100%}
    .cont-box4 .right .news-tel{ width: 100%; margin-top: 20px;}

    .cont-box4 .right .news-tel .st1{ font-size: 18px;}
    .cont-box4 .right .news-tel .st2{ font-size: 24px;}
    .cont-box4 .right .news-tel .tel-zc{ margin: 15px auto 0; zoom: 0.8}

.xc-box1 .con .item{ width:100%;    margin-right: 0 !important;}
.xc-box1 .con .item p{    left: 0;}
.xc-box1 .con .item:nth-child(6){width:100%;      order: -1;}

.s-more{    zoom: 0.65;}
.lg_x_t{    font-size: 16px;
    padding: 10px 0;}
.pro_b ul li{    width: 48.5%;
    margin-right: 3%;}
.pro_b ul{flex-wrap: wrap;}
.pro_b ul li:nth-child(2n){ margin-right:0}
.pro_b ul li:nth-child(2n)~li{margin-top: 20px;}

.pg{flex-wrap: wrap;}
.pg>div{    font-size: 14px;}
.ny-news-desc{padding: 45px 0;}
.ny-news-desc .title{    font-size: 20px;}
.ny-news-desc .article{font-size: 14px;}
.news_b {
    margin-top: 25px;
}
.news_b ul li{font-size: 14px;width: 100%;}
.mxw-ny-box{    padding: 0;}
.ny-news-desc{    padding-top: 15px;}
.vr-list .list p{ font-size:14px; margin-top:3px}
}












