@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family:"Arial", "Microsoft YaHei", 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: 20px;
    bottom: 10%;
    width: 40px;
    height: 40px;
    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: 14px;
    height: 14px;
    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: #000;
    line-height: 1.2;
    border: 1px solid #fff;
    display: inline-block;
    margin: 4px;
}
.mxw-pagination   a.current,
.mxw-pagination   a:hover {
    background-color: #000;
    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: #0d5bc1;
    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: 0.25rem;
    padding-bottom: 0.25rem;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 0.267rem;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #0d5bc1;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 0.083rem;
    padding-right: 0.083rem;
}
.mxw-keywords .left a:hover {
    color: #0d5bc1;
}
.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: 0.033rem;
    height: 0.267rem;
    background-color: #d9d9d9;
    position: absolute;
    left: 0.167rem;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 3.833rem;
    height: 0.733rem;
    line-height: 0.733rem;
    padding: 0 0.333rem;
    font-size: 0.233rem;
    color: #333;
    border: 0.017rem solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
    margin-right: -0.333rem;
}
.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: 1.083rem;
    height: 0.733rem;
    background-color: #0d5bc1;
    border-radius: 0rem 0.083rem 0.083rem 0rem;
     color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 0.333rem;
    height: 0.333rem;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;

}
.mxw-keywords .right button .text {
    font-size: 0.233rem;
    padding-left: 0.083rem;
}
/* ==================== 关键词 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%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        background: url("../images/header-bg.jpg") center ;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 60px;
    }
    .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: 1px solid #eee;
        font-size: 17px;
        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: 26.667rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0.417rem;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 0.667rem;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 1.3rem;
    height: 0.1rem;
    background-color: #cccccc;
    margin-left: 0.083rem;
    margin-right: 0.083rem;
    border: 0.033rem solid #cccccc;
    outline: none;
    opacity: 1;
    border-radius: 0;
}
.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: #009c93;
    border-color: #009c93;

}
.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: #009c93;
}
.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: 0.4rem;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 84.1%;
}
.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: 1880px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    html {

    }
    .mxw-box {
        max-width: 89%;
    }
}
@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:36px;}
#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:#0d5bc1;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}
    .product-detail-tab .product-detail-tabcon iframe,.product-detail-tab .product-detail-tabcon video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content  iframe, .xypg-right-content  video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content img{ max-width: 100%; height: auto !important;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}
.top-box .logo-box{  font-size: 0;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start;
    padding: 0 ;
   }
.top-box .logo-box .t-logo>img{ max-height:1.667rem;}
.top-box .logo-box .logo-text{ border-left: 0.017rem solid #004586;
    margin-left: 0.333rem; padding-left: 0.333rem;}
.top-box .logo-box .logo-text .text1{ font-size: 0.467rem;color: #151515; font-weight: bold; line-height: 1;}
.top-box .logo-box .logo-text .text2{ font-size: 0.2rem; color: #838383; text-transform: uppercase; margin-top: 0.333rem; zoom: 0.8 }

.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: 0.083rem}
.mxw-keywords .left .zx b{ color: #0d5bc1; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; opacity: 0.4 }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;overflow:visible;}
.mxw-link .mxw-link-list{color:#333;position:absolute;top:0;left:0;width:100%;transform:translateY(-100%);padding:0.167rem 0;display:none; background: #fff;}
.mxw-link .mxw-link-list a{font-size:0.233rem;line-height:1.8;}
.mxw-link .title{font-size:0.3rem;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.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{
    background: url("../images/header-bg.jpg") center ;
}
header .welcome {
    background: #f8f8f8;
    line-height: 0.7rem;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:rgba(255,255,255,.6);
    height: 100%;

}
header .welcome .left {
    font-size: 0.233rem;
    line-height: 1.2;
    color: #333333;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 0.233rem;
    color:#777777;

}


.top-box{ align-items: stretch;}
.top-box .right{ padding-left: 3rem; flex-grow: 1; min-width: 0;}



.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}
.x-menu > li {
    margin: 0;
    text-align: center;
    float: none;
    position: relative;
    flex-grow: 1;
    min-width: 0;

}

.x-menu > li > a {
    font-size: 0.3rem;
    color: #000000;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    position: relative;
    line-height: 1.2;

}

.x-menu > li > a:hover {
    color: #000000;
}
.x-menu>li.active{ color: #000000; }
.x-menu > li.active > a {
    color: #000000;
}


.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 200px;
    left:50%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,20px);
    transform: translate(-50%,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:#000;
}

.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{ width: max-content; margin: 0 auto}
.x-menu > li > a::before{ position: absolute; content: "";	width: 0.167rem;height: 0.167rem;
      background-size: cover; left: -0.25rem; display: block}
.x-menu > li.active > a::before{background: url("../images/menu-ico.png") center no-repeat;}
.x-menu > li > a>img{ margin-left: 0.05rem}
.x-menu > li.lang > a>img{ margin-right: 0.083rem}
.x-menu > li.se-box{flex-shrink: 0; display: flex; align-items: center; margin-left: 0.4rem}
.x-menu > li.se-box form{ display: flex; align-items: stretch; justify-content: space-between;	width: 1.717rem;	background-color: #040000;
    border-radius: 0.033rem;	color: #fff; padding: 0.167rem; font-size: 0.233rem }
.x-menu > li.se-box form .ke{ flex-grow: 1; min-width: 0;color: #fff;}
.x-menu > li.se-box form .ke::-webkit-input-placeholder{ color:#fff }
.x-menu > li.se-box form .su{	width: 0.333rem;height: 0.267rem; background: url("../images/fdj.png") center no-repeat; background-size: cover; display: block; flex-shrink: 0; cursor: pointer; }
.x-menu > li.lang>a{ line-height: 1;}

.mxw-banner .swiper-slide{ position: relative;}
.mxw-banner .swiper-slide video{     width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;}
.mxw-banner .swiper-slide .flx{    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center; z-index: 11}

.tc-1800{width: 96%; max-width: 1840px; margin: 0 auto;}

.mxw-keywords{ border-bottom: 0.017rem solid #dddddd}


.ny-cate{ display: flex; align-items: stretch; justify-content: space-between;}
.ny-cate .tc-left{ min-width: 6.167rem; flex-shrink: 0; background: #000; color: #fff; text-align: right; text-transform: uppercase;	font-size: 0.5rem; padding: 0.367rem 0.667rem 0.367rem 0; line-height: 1;}
.ny-cate .tc-right{ flex-grow: 1; min-width: 0; padding: 0 2.5rem 0 2rem; background: #fff;  display: flex; align-items: stretch; justify-content: flex-start; }
.ny-cate .tc-right .item{ display: flex; align-items: center; border-bottom: 0.067rem solid transparent; margin:0 0.8rem;
    padding-top: 0.067rem; flex-shrink: 0}
.ny-cate .tc-right .item.active{ border-color: #000;}

.about-page{  background: url("../images/header-bg.jpg") center ; padding: 1.667rem 0;}
.about-page .about-box1{ display: flex; align-items: center; justify-content: space-between;}
.about-page .about-box1 .tc-right{ width: 45.27%;flex-shrink: 0;	border-radius: 0.167rem;
    border: solid 0.033rem #000000;}
.about-page .about-box1 .tc-right img{ width: 100%}
.about-page .about-box1 .tc-left{ flex-grow: 1; min-width: 0; padding-right: 1.5rem; }
.about-page .about-box1 .tc-left .st{	font-size: 0.833rem;	color: #000000; line-height: 1.1; font-weight: bold;}
.about-page .about-box1 .tc-left .st::after{ content: "";	width: 2.667rem;height: 0.1rem;background-color: #000000; display: block; margin-top: 0.533rem;}
.about-page .about-box1 .tc-left .desc{	font-size: 0.3rem; margin-top: 0.633rem; line-height: 1.8}
.about-page .num-box{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 1.833rem;}
.about-page .num-box .item{ width: 33%; text-align: center; padding: 0 1.4rem; display: flex; display: -webkit-flex; display: -moz-flex; flex-direction: column; justify-content: flex-start; align-items: stretch; }
.about-page .num-box .item p{	font-size: 0.333rem; color: #000; line-height: 1.4; flex-grow: 1;min-width: 0}
.about-page .num-box .item .num{ font-size: 1rem; font-weight: bold; flex-shrink: 0}

.about-page .ab-box2{ padding: 2.5rem 0 1.133rem; }
.ab-title{ text-align: center;	font-size: 0.833rem; font-weight: bold}
.ab-title::after{ display: block; content: "";	width: 2.667rem;
    height: 0.1rem;
    background-color: #000000; margin: 0.533rem auto 0;}
.about-page .ab-box2 .list{ margin: 1.25rem auto 0; display: flex; display: -webkit-flex; display: -moz-flex; align-items: stretch; justify-content: flex-start;}
.about-page .ab-box2 .list .item{ width: 23.5%; margin-right: 3%; text-align: center;	background: url("../images/ab-bg2.jpg") center; padding: 0.867rem 0.7rem 1.25rem 0.75rem;
    box-shadow: 0rem 0rem 0.1rem 0rem
    rgba(4, 0, 0, 0.4);
    border-radius: 0.5rem;}
.about-page .ab-box2 .list .item:nth-child(4n){ margin-right: 0;}
.about-page .ab-box2 .list .item .icon img{ max-height: 1.067rem;}
.about-page .ab-box2 .list .item .st{	font-size: 0.4rem; color: #fff; margin: 0.417rem auto 0.633rem;}
.about-page .ab-box2 .list .item .desc{ font-size: 0.333rem; color: #fff;}
.about-page .ab-box2 .list .item:hover{ background: #000;}

.about-page .about-box3{ border-top: 0.017rem solid #c9af70;
    padding-top: 1.583rem;}
.box3-swiper-big{ overflow: hidden; margin-top: 1.3rem;}
.box3-swiper-big>.swiper-wrapper>.swiper-slide{ display: flex; display: -moz-flex; display: -webkit-flex; align-items: stretch; justify-content: space-between;padding: 0 1.133rem;}
.box3-swiper-big>.swiper-wrapper>.swiper-slide .tc-left{ width: 43.3%; flex-shrink: 0;	border: solid 0.067rem #ffffff;}
.box3-swiper-saml{ overflow: hidden; margin-top: 0.867rem; padding-top: 0.5rem; background: url("../images/sjz.png") top repeat-x;}
.box3-swiper-big>.swiper-wrapper>.swiper-slide .tc-right{ flex-grow: 1; min-width: 0; padding: 0.917rem 0.917rem 0.917rem 1.417rem;}
.box3-swiper-big>.swiper-wrapper>.swiper-slide .tc-right .st{ font-size: 0.6rem;}
.box3-swiper-big>.swiper-wrapper>.swiper-slide .tc-right .st span{ font-size: 0.3rem; margin-left: 0.083rem}
.box3-swiper-big>.swiper-wrapper>.swiper-slide .tc-right .desc{ line-height: 1.8; font-size: 0.333rem; margin-top: 0.5rem; }

.box3-swiper-saml>.swiper-wrapper>.swiper-slide{ text-align: center; cursor: pointer;	font-size: 0.333rem; font-weight: bold;	color: #777777;}
.box3-swiper-saml>.swiper-wrapper>.swiper-slide::before{	width: 0.1rem;
    height: 0.1rem;
    background-color: #777777; content: ""; display: block; margin: 0.25rem auto 0; border-radius: 50%;}
.box3-swiper-saml>.swiper-wrapper>.swiper-slide.swiper-slide-thumb-active{ color: #000}
.box3-swiper-saml>.swiper-wrapper>.swiper-slide.swiper-slide-thumb-active::before{ background: #000}

.pro-box{  background: url("../images/header-bg.jpg") center ; padding: 1.667rem 0 1rem;}
.pro-box .pro-list{ display: flex; display: -webkit-flex; display: -moz-flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.pro-box .pro-list .item{ width: 24.033%; margin-right: 1%; overflow: hidden; 	background-color: #ffffff;	border-radius: 0.167rem;
    border: solid 0.017rem #000000;  transition: all 0.3s;}
.pro-box .pro-list .item .mxw-image{ display: block; font-size: 0}
.pro-box .pro-list .item:nth-child(4n){ margin-right: 0}
.pro-box .pro-list .item:nth-child(4n)~.item{ margin-top: 0.45rem}
.pro-box .pro-list .item:hover{ transition: all 0.3s; box-shadow: 0rem 0rem 0.1rem 0rem rgba(4, 0, 0, 0.4);}
.pro-box .pro-list .item .st{	font-size: 0.317rem; color: #333; margin: 0.35rem 0.4rem 0.1rem; text-align: center}
.pro-box .pro-list .item .desc{	font-size: 0.267rem;color: #b8b8b8; text-align: center; margin: 0 0.633rem 0.467rem;}
.pro-box .pro-list .item .cz{ padding: 0 0.8rem; display: flex; display: -webkit-flex; display: -moz-flex; align-items: center; justify-content: space-between; margin: 0 auto 0.45rem;}
.pro-box .pro-list .item .cz .cz1{	border-radius: 0.33rem; padding: 0.135rem 0.233rem;	color: #333333; font-size: 0.25rem;
    border: solid 0.017rem #c7c7c7; width: 48%; text-align: center;}
.pro-box .pro-list .item .cz .cz1 img,.pro-box .pro-list .item .cz .cz2 img{	height: 0.283rem;}
.pro-box .pro-list .item .cz .cz2{border-radius: 0.33rem; padding: 0.135rem 0.2rem; text-align: center;	color: #fff; font-size: 0.25rem;
    border: solid 0.017rem #000; background: #000; width: 48%}

.comm-app{ margin-top: 1rem; padding-top: 1.333rem;}
.list-comm-app{ margin-top: 1.133rem; overflow: hidden;}
.list-comm-app>.swiper-wrapper>.swiper-slide{ width: 30%;}
.list-comm-app>.swiper-wrapper>.swiper-slide .mxw-image{border-radius: 0.167rem;
    border: solid 0.017rem #000000;}
.list-comm-app>.swiper-wrapper>.swiper-slide .st{	font-size: 0.333rem; margin-top: 0.4rem; 	color: #000000;}
.list-comm-app>.swiper-wrapper>.swiper-slide .desc{	font-size: 0.267rem;	color: #000000; margin: 0.433rem auto 0.85rem; line-height: 1.8 }
.list-comm-app>.swiper-wrapper>.swiper-slide .a-more{	font-size: 0.267rem; text-transform: uppercase;}

.case-box{ background: url("../images/header-bg.jpg") center ; padding: 1.667rem 0 1rem;}
.case-box .case-list .item .mxw-image{border-radius: 0.167rem;
    border: solid 0.017rem #000000;}
.case-box .case-list .item .st{	font-size: 0.333rem; margin-top: 0.2rem; 	color: #000000;}
.case-box .case-list .item  .desc{	font-size: 0.267rem;	color: #000000; margin: 0.333rem auto 0.6rem; line-height: 1.8 }
.case-box .case-list .item  .a-more{	font-size: 0.267rem; text-transform: uppercase;}
.case-box .case-list .item:nth-child(3n)~.item{ margin-top: 1rem;}

.news-box{ background: url("../images/header-bg.jpg") center ; padding: 1.2rem 0 1rem;}
.news-box .news-list .item .mxw-image{	border-radius: 0.167rem;
    border: solid 0.017rem #000000;}
.news-box .news-list .item .title{	font-size: 0.3rem; margin-top: 0.4rem; margin-bottom: 0.5rem;}
.news-box .news-list .item .date{	font-size: 0.233rem; padding-bottom: 0.267rem; display: flex; align-items: center; display: -webkit-flex; display: -moz-flex; border-bottom: 0.017rem solid #000000;}
.news-box .news-list .item .date img{ margin-right: 0.1rem; height: 0.3rem; }
.news-box .news-list .item .desc{ font-size: 0.25rem; color: #000; margin-top: 0.433rem;}
.news-box .news-list .item .m-mo{ margin-top: 0.7rem; 	opacity: 0.5;}
.news-box .news-list .item .m-mo img{	height: 0.833rem;}
.news-box .news-list .item:nth-child(3n)~.item{ margin-top: 1.5rem;}
.news-box .news-list .item:hover .m-mo{ opacity: 1;}

.cont-box{background: url("../images/header-bg.jpg") center ; padding: 1.2rem 0 1.5rem;}
.ab-desc{ text-align: center;	font-size: 0.3rem; color: #333; margin-top: 0.467rem;}
.cont-box1 .list{ justify-content: space-between; margin-top: 1.25rem; display: flex; display: -webkit-flex; display: -moz-flex;}
.cont-box1 .list .item{ width: 22.5%; background: #fff; border: 0.017rem solid transparent;
 text-align: center; padding: 0.833rem 0.5rem 0.333rem; border-radius: 10px; position: relative;}
.cont-box1 .list .item .ico img{ height: 0.867rem;}
.cont-box1 .list .item .t1{	font-size: 0.4rem;	color: #101010; margin: 0.25rem auto 0.333rem;}
.cont-box1 .list .item .t2{	font-size: 0.267rem; font-weight: bold; color: #101010;}
.cont-box1 .list .item .t3{	font-size: 0.267rem;	color: #666666; margin-top: 0.2rem;}
.cont-box1 .list .item:hover{	border: solid 0.017rem #000000; }
.cont-box1 .list .item .ewm{ display: none;    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.4rem;
    width: 2.5rem;
    max-width: 100%;
    margin: 0 auto;}
.cont-box1 .list .item:last-child:hover .ewm{ display: block}


.map{ margin-top: 1.033rem; height: 450px; font-size: 14px}
.cont-box3{ margin-top: 3rem;}
.cont-box3 .ab-title{ margin-bottom: 1.5rem;}
.cont-box3 .ab-title::after{ display: none;}
.cont-box3 form{ display: block;}
.cont-box3 form .b1 label{ display: block;	font-size: 0.3rem;text-transform: uppercase; font-weight: bold;}
.cont-box3 form .b1 span{ color: #c20000; margin-right: 0.1rem;}
.cont-box3 form .b1 input{	 width: 100%; margin-top: 0.333rem;	font-size: 0.267rem; 	color: #a8a8a8; padding: 0.3rem 0.333rem; background: #fff;
    border: solid 0.017rem #eaeaea;}
.cont-box3 form .b2{ margin-top: 0.5rem; display: flex; align-items: center; justify-content: space-between; display: -moz-flex; display: -webkit-flex;}
.cont-box3 form .b2 label{display: block;	font-size: 0.3rem;text-transform: uppercase; font-weight: bold;}
.cont-box3 form .b2 span{ color: #c20000; margin-right: 0.1rem;}
.cont-box3 form .b2 .c1{ width: 66%; margin-right: 2%; }
.cont-box3 form .b2 .c1 textarea{ width: 100%; resize: none; background: #fff; border: none; margin-top: 0.3rem; padding: 0.333rem; height: 1.767rem;	font-size: 0.267rem;}
.cont-box3 form .b2 .c2{ padding-top: 0.45rem; width: 32%;}
.cont-box3 form .b2 .c2 input{ background: url("../images/msg-bg.png") center no-repeat; 	font-size: 0.4rem; padding: 0.333rem 0.917rem; line-height: 1; color: #fff; width: 100%; background-size: 100% auto; cursor: pointer}

footer{background: url("../images/header-bg.jpg") center ; padding-top: 1.267rem; border-top: 0.017rem solid #000000; }
footer .up{ display: flex; display: -webkit-flex; display: -moz-flex; align-items: flex-start;justify-content: space-between; padding-bottom: 1.583rem;}
footer .up .title{	font-size: 0.367rem; font-weight: bold; margin-bottom: 0.633rem;}

footer .up .d-menu{ width: 18%; }
footer .up .d-menu .desc { 	font-size: 0.3rem;	color: #010101;}
footer .up .d-menu .desc p{line-height: 2;}
footer .up .d-contact{ width: 30%;font-size: 0.3rem;	color: #010101;  line-height: 1.9; }
footer .up .d-contact p{}
footer .up .d-msg{ width: 35%;}
footer .up .d-msg .d1 input{ line-height: 1;	background-color: #4d4d4d; width: 100%;	font-size: 0.233rem;	color: #fffefe; padding: 0.233rem 0.25rem;}
footer .up .d-msg .d1{ margin-top: 0.2rem;}
footer .up .d-msg .d1 input::placeholder{color: #fff;}
footer .up .d-msg .d2 input{	background-color: #000000;	color: #ffffff; padding: 0.25rem; line-height: 1; text-transform: uppercase; width: 100%; margin-top: 0.2rem; cursor: pointer; font-size: 0.3rem;}

.sm-list{ display: flex; display: -webkit-flex; display: -moz-flex; justify-content: flex-start; margin-top: 1rem;}
.sm-list .item{ margin-right: 0.5rem;}



.tc-about{background: url("../images/header-bg.jpg") center ;  padding: 1.333rem 0 1.667rem;}
.tc-about .num-box{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 1.3rem;}
.tc-about .num-box .item{ width: 33%; text-align: center; padding: 0 1.4rem; display: flex; display: -webkit-flex; display: -moz-flex; flex-direction: column; justify-content: flex-start; align-items: stretch; }
.tc-about .num-box .item p{	font-size: 0.333rem; color: #000; line-height: 1.4; flex-grow: 1;min-width: 0}
.tc-about .num-box .item .num{ font-size: 1rem; font-weight: bold; flex-shrink: 0}
.tc-about .about-con{ margin-top: 1.167rem; display: flex; align-items: stretch; justify-content: stretch; display: -webkit-flex; display: -moz-flex;}
.tc-about .about-con .left-box{ width: 46.915%; flex-shrink: 0;	border-radius: 0.167rem 0rem 0rem 0.167rem; border: 0.017rem solid #000; border-right: 0; overflow: hidden;}
.tc-about .about-con .right-box{	border-radius: 0rem 0.167rem 0.167rem 0rem; background: url("../images/about-bg2.png") center right #fff no-repeat; background-size: auto 100%; border: 0.017rem solid #000; border-left: 0;
display: -webkit-flex; display: -moz-flex; display: flex; align-items: center; justify-content: flex-start; flex-grow: 1; min-width: 0; padding-right: 3rem;}
.tc-about .about-con .right-box .list{ margin-left: 0.583rem; margin-right: 1.85rem; padding: 0.467rem 0; height: 100%; display: flex; justify-content: space-between; flex-wrap: wrap;}
.tc-about .about-con .right-box .list .item{ text-align: center; width: 1.667rem;}
.tc-about .about-con .right-box .list .item p{	font-size: 0.333rem; font-weight: bold; margin-top: 0.25rem;}
.tc-about .about-con .right-box .list .item img{ height: 1.083rem;margin: 0 auto; transition: all 0.3s}
.tc-about .about-con .right-box .list .item .ico{ text-align: center;}
.tc-about .about-con .right-box .con .tt{	font-size: 0.767rem; font-weight: bold; line-height: 1.1}
.tc-about .about-con .right-box .con .desc{ margin: 0.75rem auto 0.833rem;	font-size: 0.333rem; line-height: 1.4;font-family: Arial,sans-serif;}
.tc-about .about-con .right-box .con>a{ font-size: 0.4rem; text-transform: uppercase;	color: #101212;}
.tc-about .about-con .right-box .list .item:hover img{ transition: all 0.3s; transform: rotate3d(0,1,0,180deg)}


.mxw-title{ text-align: center;}
.mxw-title .cn{	font-size: 0.833rem;font-weight: bold; line-height: 1;}

.tc-gc{background: url("../images/header-bg.jpg") center ; padding: 1rem 0 0.867rem; }
.gc-cate{ margin: 0.833rem auto 1.167rem; display: flex; display: -webkit-flex; display: -moz-flex; align-items: center; justify-content: center;}
.gc-cate  .item{	background-color: rgba(34, 34, 34, 0.5); line-height: 1; margin: 0 0.267rem;
        border-radius: 0.367rem;	font-size: 0.367rem; color: #fff; padding: 0.184rem 0.5rem; text-transform: uppercase; }
.gc-swiper{ overflow: hidden; 	border-radius: 0.167rem;
    border: solid 0.033rem #0a0b0d;}
.gc-cate  .item.active{ background: #222}


.tc-pro{background: url("../images/header-bg.jpg") center ; padding: 0.867rem 0 0.867rem; }
.pro-cate{ margin: 0.833rem auto 1.167rem; display: flex; display: -webkit-flex; display: -moz-flex; align-items: center; justify-content: center;}
.pro-cate  .item{	background-color: rgba(34, 34, 34, 0.5); line-height: 1; margin: 0 0.267rem;
    border-radius: 0.367rem; width: 4.2rem; text-align: center;	font-size: 0.367rem; color: #fff; padding: 0.184rem 0.2rem; text-transform: uppercase; }
.pro-cate  .item.active{ background: #222}

.pro-swiper{ overflow: hidden;}
.pro2-swiper{ overflow: hidden; padding-bottom: 0.083rem}
.pro2-swiper .swiper-slide{ width: 24%;}

.pro2-swiper .swiper-slide{  overflow: hidden; 	background-color: #ffffff;	border-radius: 0.167rem;
    border: solid 0.017rem #000000;  transition: all 0.3s;}
.pro2-swiper .swiper-slide .mxw-image{ display: block; font-size: 0}
.pro2-swiper .swiper-slide:hover{ transition: all 0.3s; box-shadow: 0rem 0rem 0.1rem 0rem rgba(4, 0, 0, 0.4);}
.pro2-swiper .swiper-slide .st{	font-size: 0.317rem; color: #333; margin: 0.35rem 0.4rem 0.1rem; text-align: center}
.pro2-swiper .swiper-slide .desc{	font-size: 0.267rem;color: #b8b8b8; text-align: center; margin: 0 0.633rem 0.467rem;}
.pro2-swiper .swiper-slide .cz{ padding: 0 0.8rem; display: flex; display: -webkit-flex; display: -moz-flex; align-items: center; justify-content: space-between; margin: 0 auto 0.45rem;}
.pro2-swiper .swiper-slide .cz .cz1{	border-radius: 0.33rem; padding: 0.135rem 0.233rem;	color: #333333; font-size: 0.25rem;
    border: solid 0.017rem #c7c7c7; width: 48%; text-align: center;}
.pro2-swiper .swiper-slide .cz .cz1 img,.pro-box .pro-list .item .cz .cz2 img{	height: 0.283rem;}
.pro2-swiper .swiper-slide .cz .cz2{border-radius: 0.33rem; padding: 0.135rem 0.2rem; text-align: center;	color: #fff; font-size: 0.25rem;
    border: solid 0.017rem #000; background: #000; width: 48%}

.tc-pro{ text-align: center;}
.tc-pro .pro-more{ margin-top: 0.583rem; display: inline-block;}
.pro-more{	background-color: #000000; line-height: 1; padding: 0.185rem 0.767rem; color: #fff;	font-size: 0.367rem;
    border-radius: 0.367rem;}


.tc-app{background: url("../images/header-bg.jpg") center ; padding: 1.5rem 0 1.5rem; }
.mxw-title .desc{	font-size: 0.367rem; margin-top: 0.5rem;}
.app-body{ margin-top: 0.833rem;  display: -webkit-flex; display: -moz-flex; display: flex; justify-content: space-between}
.app-body .app-item{ width: 15%; margin-right: 1.1%; height: 9.9rem; position: relative; transition: all 0.3s; overflow: hidden;	border-radius: 0.167rem;
    border: solid 0.017rem #000000; }
.app-body .app-item img{ max-width: initial; height: 100%; width: initial }
.app-body .app-item:last-child{ margin-right: 0;}
.app-body .app-item.active{ width: 35.6%; }
.app-body .app-item .st{ display: none; position: absolute;	font-size: 0.467rem; color: #fff; left: 0.8rem; bottom: 0.583rem;}
.app-body .app-item.active .st{ display: block;}
.app-body .app-item:nth-child(6){ display: none;}

.tc-news{background: url("../images/header-bg.jpg") center ; padding: 1.083rem 0 1.5rem; }
.news-cate{ margin: 0.833rem auto 1.167rem; display: flex; display: -webkit-flex; display: -moz-flex; align-items: center; justify-content: center;}
.news-cate  .item{	background-color: rgba(34, 34, 34, 0.5); line-height: 1; margin: 0 0.267rem;
    border-radius: 0.367rem; min-width: 3.333rem; text-align: center;	font-size: 0.367rem; color: #fff; padding: 0.184rem 0.5rem; text-transform: uppercase; }
.news-cate  .item.active{ background: #222}
.news-swiper{ overflow: hidden;}
.news-swiper .swiper-slide .item .mxw-image{	border-radius: 0.167rem;
    border: solid 0.017rem #000000;}
.news-swiper .swiper-slide .item .title{	font-size: 0.3rem; margin-top: 0.4rem; margin-bottom: 0.5rem;}
.news-swiper .swiper-slide .item .date{	font-size: 0.233rem; padding-bottom: 0.267rem; display: flex; align-items: center; display: -webkit-flex; display: -moz-flex; border-bottom: 0.017rem solid #000000;}
.news-swiper .swiper-slide .item .date img{ margin-right: 0.1rem; height: 0.3rem; }
.news-swiper .swiper-slide .item .desc{ font-size: 0.25rem; color: #000; margin-top: 0.433rem;}
.news-swiper .swiper-slide .item .m-mo{ margin-top: 0.7rem; 	opacity: 0.5;}
.news-swiper .swiper-slide .item .m-mo img{	height: 0.833rem;}

.news-swiper .swiper-slide .item:hover .m-mo{ opacity: 1;}




.tc-link{  display: flex; align-items: flex-start; justify-content: space-between; display: -webkit-flex; flex-grow: 1; min-width: 0}
.tc-link>.mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.tc-link .title{ flex-shrink: 0;font-size: 0.267rem; color: rgba(255,255,255,.3); }
.tc-link .title p{color: #0059c5;font-size: 0.433rem; font-weight: bold; text-transform: uppercase }
.tc-link .list{ flex-grow: 1; min-width: 0;}
.tc-link .list a{ font-size: 0.267rem; color: rgba(255,255,255,.3);  margin-right: 0.5rem;}
.tc-link .list a:hover{ color: rgba(255,255,255,.3); }






.mxw-copy{background: #000000}
.mxw-copy .mxw-box{ display: flex; align-items: center; justify-content: space-between; padding: 20px 0; 	font-size: 14px; color: #fff;  text-align: center; opacity: 0.6}
.mxw-copy .mxw-box a{font-size: 14px; color: #fff; }
.mxw-copy .mxw-box a:hover{font-size: 14px; color: #fff;}


.product-detail-tabcon table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.product-detail-tabcon table th,
.product-detail-tabcon table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.product-detail-tabcon table td p{line-height:1.8!important;}
.product-detail-tabcon table tr:hover{background-color:#f2f2f2!important;}
.product-detail-tabcon table tr:nth-child(2n-1){background-color:#fff ;}
.product-detail-tabcon table tr:nth-child(2n){background-color:#fdfdfd ;}

.xypg-detail-con table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.xypg-detail-con table th,
.xypg-detail-con table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.xypg-detail-con table td p{line-height:1.8!important;}
.xypg-detail-con table tr:hover{background-color:#f2f2f2!important;}
.xypg-detail-con table tr:nth-child(2n-1){background-color:#fff ;}
.xypg-detail-con table tr:nth-child(2n){background-color:#fdfdfd ;}

/* ==================== 新闻详情 start ==================== */
.ny-news-desc {


}
.ny-news-desc > .mxw-box {

}
.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 #333;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #333;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #333;
    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;

}
.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 {

    }
    .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 ==================== */
.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: #1b3899;
}
.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 #333; border-radius: 15px;
}
.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: 1px solid #333;
    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; min-height: 5rem;
}
.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: 1px solid #eee; background: #fff;
    border-radius: 0.0833rem;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #000;
}
.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: #fff;
}
.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: 1px solid #333;
    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;
    cursor: pointer;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #fff;
}
.ny-product-desc .bottom .head .text1.active{ background: #000; color: #fff; }
.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;
    background: #fff;

}


@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 ==================== */



@media screen and (max-width: 1440px) {
    .top-box{ width: 95%; max-width: 95%;}






}

/* ==================== 页面具体样式 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 ==================== */
.news-swiper .swiper-slide .item:nth-child(4){ display: none}
.news-swiper .swiper-slide .item{ display: block;}
@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    .tc-about{ padding: 45px 0;}
    .mxw-title .cn{ font-size: 22px; }
    .tc-about .num-box{ margin: 25px auto 0; flex-wrap: wrap;}
    .tc-about .num-box .item{ width: 100%; padding: 0;}
    .tc-about .num-box .item p{ font-size: 14px;}
    .tc-about .num-box .item .num{ font-size: 30px;}
    .tc-about .num-box .item:nth-child(1)~.item{ margin-top: 20px;}
    .tc-about .about-con{ margin: 25px auto 0; flex-wrap: wrap;}
    .tc-about .about-con .left-box{ width: 100%;     border-radius: 10px 10px 0px 0px;    border: 1px solid #000;}
    .tc-about .about-con .right-box{ background: #fff; flex-wrap: wrap; padding: 20px;  border-radius: 0px 0px 10px 10px;}
    .tc-about .about-con .right-box .list{ width: 100%; height: auto;
        flex-direction: row; padding: 0;
        margin: 0 auto 15px;
    }
    .tc-about .about-con .right-box .list .item img{ height: 45px;}
    .tc-about .about-con .right-box .list .item p{ font-size: 16px;}
    .tc-about .about-con .right-box .con .tt{  margin-top: 15px; font-size: 22px;}
    .tc-about .about-con .right-box .con .desc{ font-size: 14px; margin: 15px auto; line-height: 1.6}
    .tc-about .about-con .right-box .con>a{ font-size: 16px}
    .tc-gc{ padding: 0px 0 45px}
    .gc-cate{ margin: 20px auto 25px;}
    .gc-cate .item{ font-size: 15px; padding: 9px 15px;}

    .tc-pro{ padding: 0 0 45px;}
    .pro-cate{ margin: 20px auto 25px; width: max-content; overflow: hidden; justify-content: flex-start}
    .pro-cate .item{ font-size: 15px; padding: 9px 10px; margin: 0}
    .pro-cate .item{ margin: 0 auto; width: 48.5%}

    .pro2-swiper .swiper-slide{ width: 49%;}
    .pro2-swiper .swiper-slide .st{ font-size: 16px; margin: 10px 10px;}
    .pro2-swiper .swiper-slide .desc{ font-size: 14px; margin: 8px 10px;}
    .pro2-swiper .swiper-slide .cz{ padding: 0 10px; margin-top: 10px; flex-wrap: wrap}
    .pro2-swiper .swiper-slide .cz .cz1{ width: 100%;padding: 6px 10px; font-size: 14px;}
    .pro2-swiper .swiper-slide .cz .cz2{ width: 100%;padding: 6px 10px; font-size: 14px; margin-top: 10px}
    .pro2-swiper .swiper-slide .cz .cz1 img, .pro-box .pro-list .item .cz .cz2 img{ height: 14px;}
    .tc-pro .pro-more{ font-size: 14px; padding: 8px 15px; margin-top: 25px}
    .tc-app{ padding: 0 0 45px;}
    .mxw-title .desc{ font-size: 14px; margin-top: 10px}
    .app-body{ margin-top: 25px; flex-wrap: wrap; justify-content: space-between;}
    .app-body .app-item{ width: 48.5%; margin: 0 0; height: auto}
    .app-body .app-item.active{ width: 48.5%; margin: 0 0; height: auto}
    .app-body .app-item img{ width: 100%; height: auto; max-width: 100%;}
    .app-body .app-item:nth-child(6){ display: block;}
    .app-body .app-item:nth-child(2n)~.app-item{ margin-top: 15px;}
    .app-body .app-item .st{ font-size: 14px; display: block; left: 15px; bottom: 15px;}
    .tc-news{ padding: 0 0 45px}

    .news-swiper .swiper-slide .item:nth-child(4){ display: block}

    .news-cate{ margin: 20px auto 25px; flex-wrap: wrap; justify-content: space-between;}
    .news-cate .item{ font-size: 15px; padding: 9px 15px;}
    .news-cate .item{ margin: 0 ; width: 48.5%}
    .news-cate .item:nth-child(2n)~.item{ margin-top: 12px}

    .news-swiper .swiper-slide .item .title{ font-size: 15px; margin: 5px auto;}
    .news-swiper .swiper-slide .item .date img{ height: 14px; margin-right: 5px;}
    .news-swiper .swiper-slide .item .date{ font-size: 12px; margin-top: 10px; padding-bottom: 5px}
    .news-swiper .swiper-slide .item .desc{ font-size: 12px; margin-top: 10px}
    .news-swiper .swiper-slide .item .m-mo{ margin-top: 10px; }
    .news-swiper .swiper-slide .item .m-mo img{
        height: 25px;}

    footer{ padding-top: 45px;}
    footer .up{ flex-wrap: wrap;}
    footer .up .d-menu{ display: none}
    footer .up .d-contact{ width: 100%; margin-bottom: 25px}
    footer .up .title{ font-size: 20px; margin-bottom: 15px}
    footer .up .d-contact .desc{ font-size: 14px; line-height: 1.6}
    footer .up .d-msg{ width: 100%;}
    .sm-list{ margin-top: 20px;}
    footer .up{ padding-bottom: 40px}
    footer .up .d-msg .d1 input{ font-size: 14px;}
    footer .up .d-msg .d1 input{ padding: 12px  15px;}
    footer .up .d-msg .d2 input{font-size: 14px;padding: 12px  15px;}
    .mxw-copy .mxw-box{ flex-wrap: wrap;}
    .mxw-copy .mxw-box>div{ width: 100%;}
    .ny-cate .tc-left{ display: none;}
    .ny-cate .tc-right{ padding: 0; justify-content: space-between; flex-wrap: wrap;}
    .ny-cate .tc-right .item{ padding: 10px; width: 48.5%; margin: 0; font-size: 16px;}

    .about-page{ padding: 45px 0;}
    .about-page .about-box1{ flex-wrap: wrap;}
    .about-page .about-box1 .tc-left{ padding: 0;}
    .about-page .about-box1 .tc-left .st{ font-size: 24px;}
    .about-page .about-box1 .tc-left .st::after{ width: 200px; height: 4px; margin-top: 10px}
    .about-page .about-box1 .tc-left .desc{ font-size: 16px; line-height: 1.6; margin: 20px auto;}
    .about-page .about-box1 .tc-right{ overflow: hidden; width: 100%;}


    .about-page .num-box{ margin: 25px auto 0; flex-wrap: wrap;}
    .about-page .num-box .item{ width: 100%; padding: 0;}
    .about-page .num-box .item p{ font-size: 18px; line-height: 1.2 }
    .about-page .num-box .item .num{ font-size: 32px; margin-top: 10px}
    .about-page .num-box .item:nth-child(1)~.item{ margin-top: 20px;}

    .about-page .ab-box2{ padding: 45px 0}
    .ab-title{ font-size: 22px;}
    .ab-title::after{ width: 100px; height: 4px; margin-top: 10px}

    .about-page .ab-box2 .list{ margin: 25px auto 0; justify-content: space-between; flex-wrap: wrap;}
    .about-page .ab-box2 .list .item{ width: 48.5%; margin: 0; padding: 20px 15px;  border-radius: 15px}
    .about-page .ab-box2 .list .item img{
        height: 35px;}
    .about-page .ab-box2 .list .item .st{ font-size: 16px; margin: 8px auto 10px;}
    .about-page .ab-box2 .list .item .desc{ font-size: 14px;}
    .about-page .ab-box2 .list .item:nth-child(2n)~.item{ margin-top: 15px}
    .about-page .about-box3{ margin: 0 auto; padding: 0;}
    .box3-swiper-big{ margin-top: 25px;}
    .box3-swiper-big>.swiper-wrapper>.swiper-slide{ padding: 0; flex-wrap: wrap;}
    .box3-swiper-big>.swiper-wrapper>.swiper-slide .tc-left{ width: 100%;}
    .box3-swiper-big>.swiper-wrapper>.swiper-slide .tc-right{ width: 100%; padding: 10px 0}
    .box3-swiper-big>.swiper-wrapper>.swiper-slide .tc-right .st{ font-size: 20px;}
    .box3-swiper-big>.swiper-wrapper>.swiper-slide .tc-right .st span{ font-size: 12px}
    .box3-swiper-big>.swiper-wrapper>.swiper-slide .tc-right .desc{ margin-top: 10px; font-size: 14px;}
    .box3-swiper-saml{ margin-top: 25px; padding-top: 10px}
    .box3-swiper-saml>.swiper-wrapper>.swiper-slide{ font-size: 16px;}

    .pro-box{ padding: 45px 0}
    .pro-box .pro-list{ flex-wrap: wrap; justify-content: space-between; width: 100%}
    .pro-box .pro-list .item{ width: 48.5%; margin: 0;}
    .pro-box .pro-list .item .st{ font-size: 16px; margin: 10px 10px;}
    .pro-box .pro-list .item .desc{ font-size: 14px; margin: 8px 10px;}
    .pro-box .pro-list .item .cz{ padding: 0 10px; margin-top: 10px; flex-wrap: wrap}
    .pro-box .pro-list .item .cz .cz1{ width: 100%;padding: 6px 10px; font-size: 14px;}
    .pro-box .pro-list .item .cz .cz2{ width: 100%;padding: 6px 10px; font-size: 14px; margin-top: 10px}
    .pro-box .pro-list .item .cz .cz1 img, .pro-box .pro-list .item .cz .cz2 img{ height: 14px;}
    .pro-box .pro-list .item:nth-child(2n)~.item{ margin-top: 20px}

    .comm-app{ margin-top: 0; padding-top: 45px}
    .list-comm-app{ margin-top: 25px;}
    .list-comm-app>.swiper-wrapper>.swiper-slide .st{ font-size: 16px; margin-top: 5px;}
    .list-comm-app>.swiper-wrapper>.swiper-slide .desc{ font-size: 14px; margin: 10px auto 15px; height: 40px; line-height: 1.5; overflow: hidden;}
    .list-comm-app>.swiper-wrapper>.swiper-slide .a-more{ font-size: 14px;}

    .case-box{ padding: 45px 0}
    .case-box .case-list .item .st{ font-size: 16px; margin-top: 5px;}
    .case-box .case-list .item .desc{ font-size: 14px; margin: 10px auto 15px; height: 40px; line-height: 1.5; overflow: hidden;}
    .case-box .case-list .item .a-more{ font-size: 14px;}
    .case-box .case-list .item:nth-child(3n)~.item{ margin-top: 4%}
    .news-box{ padding: 45px 0}
    .mxw-ny-box{ padding: 0}
    .ny-news-desc .title{ font-size: 18px}
    .mxw-box2{ width: 95%}


    .news-box .news-list .item .title{ font-size: 15px; margin: 5px auto;}
    .news-box .news-list .item .date img{ height: 14px; margin-right: 5px;}
    .news-box .news-list .item .date{ font-size: 12px; margin-top: 10px; padding-bottom: 5px}
    .news-box .news-list .item .desc{ font-size: 12px; margin-top: 10px}
    .news-box .news-list .item .m-mo{ margin-top: 10px; }
    .news-box .news-list .item .m-mo img{
        height: 25px;}
    .news-box .news-list .item:nth-child(3n)~.item{ margin-top: 4%}

    .cont-box{ padding: 45px 0 }
    .ab-desc{ font-size: 14px; margin-top: 15px}
    .cont-box1 .list{ margin: 25px auto 0; justify-content: space-between; flex-wrap: wrap;}
    .cont-box1 .list .item{ width: 48.5%; padding: 20px 10px;}
    .cont-box1 .list .item .ico img{ height: 30px}
    .cont-box1 .list .item:nth-child(2n)~.item{ margin-top: 20px}
    .cont-box1 .list .item .t1{ font-size: 16px; margin: 6px auto 10px;}
    .cont-box1 .list .item .t3{ font-size: 14px; margin-top: 10px}
    .cont-box1 .list .item .t2{ font-size: 14px;}
    .map{ margin-top: 25px;}
    .cont-box3{ margin-top: 45px;}
    .cont-box3 .ab-title{ font-size: 18px; margin-bottom: 25px}
    .cont-box3 form .b1 label,.cont-box3 form .b2 label{ font-size: 14px; margin-bottom: 6px;}
    .cont-box3 form .b1 input{ margin-top: 0; margin-bottom: 20px; font-size: 14px; padding: 10px 10px;}
    .cont-box3 form .b1{ flex-wrap: wrap;}
    .cont-box3 form .b1 .item{ margin: 0 auto !important; width: 100%}
    .cont-box3 form .b2{ margin-top: 0; flex-wrap: wrap;}
    .cont-box3 form .b2 .c1 textarea{ margin-top: 0; width: 100%;font-size: 14px; padding: 10px 10px;}
    .cont-box3 form .b2 .c1{ width: 100%}
    .cont-box3 form .b2 .c2{ width: 65%;
        padding-top: 0; font-size: 14px;
        margin: 20px auto 0;
    }
    .cont-box3 form .b2 .c2 input{ font-size: 14px; padding: 10px 20px}

    .pro-cate{justify-content:space-between;flex-wrap: wrap;width: 100%;}
    .pro-cate .item{ margin: 0 0 10px !important; width: 48% !important;}




    body{ margin-bottom: 0}
}












