  @charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Source Han Sans", "Noto Sans SC", "Helvetica Neue", Helvetica, Arial, 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,.content{
    font-size: 0.3rem;
    line-height: 1.6;
    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: 0.833rem;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination  a,.mxw-pagination  span {
    padding: 0.1rem 0.2rem;
    font-size: 0.233rem;
    color: #666;
    line-height: 1.2;
    border: 0.017rem solid #ccc;
    display: inline-block;
    margin: 0.067rem;
}
.mxw-pagination   a.active,
.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.667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #2660a3;
    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: #2660a3;
    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: #2660a3;
}
.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: #2660a3;
    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(http://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-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: 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: 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: 15px;
    height: 15px;
    background-color: #cccccc;
    margin-left: 5px;
    margin-right: 5px;
    border: 2px solid #cccccc;
    outline: none;
    opacity: 1;
    border-radius: 50%;
}
.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: #1064a2;
    border-color: #1064a2;

}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 83px;
    height: 60px;
    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: 40px;
    color: #2660a3;
}
.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: 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,.content{
        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:#2660a3;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:0.767rem;}
.top-box .logo-box .t-logo{ margin: 7px auto 7px 0; }


.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: #2660a3; 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{

}
header .welcome {
    background: #f8f8f8;
    line-height: 42px;
}
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: 14px;
    line-height: 1.2;
    color: #333333;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    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: #2660a3; font-weight: bold;
}


.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: 3.333rem;
    left:50%;
    top: calc(100% + 0.167rem);
    background: #fff;
    border-radius: 0.083rem;
    padding: 0.167rem 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,0.333rem);
    transform: translate(-50%,0.333rem);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 0.233rem;
    color: #333;
    line-height: 1.5;
    padding: 0.083rem 0.167rem;
    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: 0.167rem;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -0.167rem;
    left: 50%;
    margin-left: -0.167rem;
    z-index: 99;
}
.x-menu > li.se-box{ position: relative;}
.x-menu > li.se-box .box{ position: absolute; right: -0.8rem;     top: calc(100% + 0.167rem);    opacity: 0;
    visibility: hidden; z-index: 99;
    -webkit-transform: translate(0, 0.333rem);
    transform: translate(0, 0.333rem);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;}
.x-menu > li.se-box .box form{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between; }
.x-menu > li.se-box .box form .su{	width: 1.083rem;
    height: 0.667rem; color: #fff; cursor: pointer; font-size: 0.233rem;
    background-color: #2660a3;
    border-radius: 0rem 0.15rem 0.15rem 0rem;}
.x-menu > li.se-box .box form .ke{ font-size: 0.233rem; color: #333; background: #fff; padding: 0.167rem; border-radius:  0.15rem 0 0 0.15rem;}
.x-menu > li.se-box .box:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 0.167rem;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -0.167rem;
    right: 1.1rem;
    margin-left: -0.167rem;
    z-index: 99;
}
.x-menu > li.se-box:hover .box{   opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);  }

.x-menu > li.lang{ width: max-content;width: -moz-max-content; flex-grow: initial; margin-left: 0.3rem;}
.x-menu > li.lang>a{	font-size: 0.3rem;}
.x-menu > li.lang>a img{ margin-right: 0.133rem;}

.x-menu > li.tel-box{width: max-content;width: -moz-max-content;  flex-grow: initial; padding: 0 0.3rem}
.x-menu > li.se-box{width: max-content;width: -moz-max-content; flex-grow: initial; padding: 0 0.3rem }








.about-box1{ padding-top: 2.333rem; padding-bottom: 8.533rem; background: url("/skin/images/about1-bg.jpg") center no-repeat; background-size: cover; }
.about-box1 .mxw-box{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;}
.about-box1 .mxw-box .tc-left .name{	font-size: 0.667rem; font-weight: bold;	color: #2660a3; line-height: 1;}
.about-box1 .mxw-box .tc-left{ flex-grow: 1; min-width: 0; padding-right: 2rem;}
.about-box1 .mxw-box .tc-right{ width: 28%; flex-shrink: 0;  padding-top: 1.867rem;}
.about-box1 .mxw-box .tc-left .desc{ line-height: 2.5;	font-size: 0.3rem;	color: #333333; margin-top: 2rem;}
.about-box1 .mxw-box .tc-right .item{ width: 100%; text-align: left;}
.about-box1 .mxw-box .tc-right .item .num{ line-height: 1; font-size: 0}
.about-box1 .mxw-box .tc-right .item .num .scrolling-numbers{ display: inline-block; line-height: 1;	font-size: 0.85rem; font-weight: bold;}
.about-box1 .mxw-box .tc-right .item .num sub{ font-size: 0.85rem; font-weight: bold}
.about-box1 .mxw-box .tc-right .item .desc{ margin-top: 0.433rem;	font-size: 0.3rem; font-weight: 400}
.about-box1 .mxw-box .tc-right .item .desc::after{ transition: all 0.3s; content: ""; display: block; width: 0.4rem; height: 0.033rem;
    background-color: #013b7f; margin-top: 1.033rem;}
.about-box1 .mxw-box .tc-right .item:nth-child(1)~.item{ margin-top: 1.3rem;}
.about-box1 .mxw-box .tc-right .item:hover .desc::after{ width: 95%; transition: all 0.3s}
.about-box1.page{ padding: 1.2rem 0; text-align: center; }
.about-box1.page .desc{ font-size: 0.3rem; line-height: 1.8}
.about-box1.page .desc img{ max-width: 100% !important; height: auto !important;}

.about-box2{ padding: 1.833rem 0 13.433rem; background: url("/skin/images/about2-bg.jpg") center no-repeat; background-size: cover;}
.n-tt{ text-align: center;}
.n-tt .cn{	font-size: 0.667rem; line-height: 1; font-weight: bold;}
.n-tt .en{	font-size: 0.28rem; color: #333; margin-top: 0.4rem; text-transform: uppercase}
.n-tt .n-more{ display: inline-block; margin-top: 0.467rem;	font-size: 0.267rem;	color: #333333; padding: 0.267rem 0.55rem;	border-radius: 0.417rem; line-height: 1;
    border: solid 0.017rem #0b0306;}
.n-tt .n-more:hover{ background: #333; color: #fff}
.about-box3{ padding: 1.6rem 0 3.7rem; background: url("/skin/images/about3-bg.jpg") center no-repeat; background-size: cover;}
.about-box3 .list{  margin-top: 3.367rem; width: 68.5625%; margin-left: auto; margin-right: 0;}
.about-box3 .list .item{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  align-items: center; justify-content: space-between;	font-size: 0.3rem; line-height: 1;	color: #888888; border-top: 0.017rem solid #e2ebf6;
    padding: 0.367rem 0 0.367rem 0.75rem;
}
.about-box3 .list .item:last-child{ border-bottom: 0.017rem solid #e2ebf6}
.about-box3 .list .item:hover{	color: #2660a3;}
.about-box3 .list .item:hover span{ font-weight: 600}

.n-cat{ margin-top: 0.717rem;}
.n-cat .mxw-box{ display: flex; align-items: flex-start; justify-content: space-between; display: -webkit-flex; display: -ms-flex; display: -moz-flex;	background:url("/skin/images/nat2bg.png") top center no-repeat; background-size: 100% 1.45rem; padding: 0 0.533rem;}
.n-cat .mxw-box .tc-left{ padding-right: 0.417rem; border-right: 0.033rem solid #2660a3;	font-size: 0.333rem; flex-shrink: 0; line-height: 1; margin: 0.55rem auto 0.5rem 0; font-weight: bold;color: #2660a3;}
.n-cat .mxw-box .tc-right{ margin-left: 1rem;	 }
.n-cat .mxw-box .tc-right .item a{color: #a0a0a0;	font-size: 0.3rem;}
.n-cat .mxw-box .tc-right .item{ display: inline-block; margin-left: 1.333rem; position: relative; height: 100%; padding: 0.54rem 0 0.5rem;	}
.n-cat .mxw-box .tc-right .item.active a{	color: #2660a3;}
.n-cat .mxw-box .tc-right .item:hover a{ color: #2660a3;}
.n-cat .mxw-box .tc-right .item.active::after{ display: block; width: 100%; content: ""; position: absolute; bottom: 0;
    height: 0.033rem;
    background-color: #2660a3;}
.n-cat .mxw-box .tc-right .n-list{ width: 100%; text-align: right; }
.n-cat .mxw-box .tc-right .n-list2{ background: #fff;padding: 0.7rem 0 0.583rem 0.75rem;}
.n-cat .mxw-box .tc-right .n-list2 a{	font-size: 0.3rem;	color: #333333; margin-left: 0.7rem;}
.n-cat .mxw-box .tc-right .n-list2 a.active{	color: #2660a3;}
.pro-list{ padding-bottom: 1rem}
.pro-list .list{  }
.pro-list .list .item{ width: 23.75%; margin-right: 1.25%; display: inline-block; text-align: center; }
.pro-list .list .item:nth-child(4n){ margin-right: 0;}
.pro-list .list .item:nth-child(4n)~.item{ margin-top: 0.333rem;}
.pro-list .list .item .image{ background: url("/skin/images/nat2bg.png") center no-repeat; background-size: cover; position: relative;}
.pro-list .list .item .title{	background-color: #f3f8ff;	color: #a0a0a0; line-height: 1; padding: 0.267rem;}
.pro-list .list .item:hover .title{	background-color: #2660a3;	color: #ffffff;}
.pro-list .list .item:hover .image::before{ position: absolute;	width: 0.65rem; background: url("/skin/images/p-ico.png") center no-repeat; background-size: cover; display: block; z-index: 1; content: "";
    height: 0.65rem;}

.pro-de{ padding: 0.25rem 0 1rem;}
.pro-de .mxw-box{ display: flex; align-items: flex-start; justify-content: space-between; display: -webkit-flex; display: -ms-flex; display: -moz-flex;	 }
.pro-de .mxw-box .tc-right{ width: 31.125%; flex-shrink: 0; margin-left: 1.083rem;}
.pro-de .mxw-box .tc-left{ flex-grow: 1; min-width: 0;}
.pro-de .mxw-box .tc-right .title{	font-size: 0.4rem; font-weight: bold;}
.pro-de .mxw-box .tc-right .list{ width: 100%; }
.pro-de .mxw-box .tc-right .list .item{ display: flex; align-items: center; justify-content: space-between; display: -webkit-flex; display: -ms-flex; display: -moz-flex;margin-top: 0.5rem;	border-bottom: dashed 1px #d8d8d8;}
.pro-de .mxw-box .tc-right .list .item .mxw-image{ width: 2.583rem; flex-shrink: 0; padding: 15px}
.pro-de .mxw-box .tc-right .list .item .text{ font-size: 0.333rem; font-weight: bold; text-align: left; flex-grow: 1; min-width: 0}
.pro-de .mxw-box .tc-right .tj-cp:nth-child(2){ margin-top: 1.167rem;}
.pro-de .mxw-box .tc-right .tj-cp:nth-child(2) .item{	background-color: #f3f8ff; border-bottom: 0}

.pro-de .mxw-box .tc-left .pro-top{ display: flex; align-items: stretch; justify-content: space-between; display: -webkit-flex; display: -ms-flex; display: -moz-flex; }
.pro-de .mxw-box .tc-left .pro-top .big-img{background-color: #f3f8ff; width: 49.38%; flex-shrink: 0; text-align: center;display: flex; align-items: center; justify-content: center; display: -webkit-flex; display: -ms-flex; display: -moz-flex; height: 8.333rem;}
.pro-de .mxw-box .tc-left .pro-top .info{ flex-grow: 1; min-width: 0; padding-left: 0.833rem;}
.pro-de .mxw-box .tc-left .pro-top .info .title{	font-size: 0.4rem; font-weight: bold; padding: 0.25rem 0 0.367rem; border-bottom: 1px solid #dfdfdf;}
.pro-de .mxw-box .tc-left .pro-top .info .desc{	font-size: 0.233rem;	color: #666666; margin: 0.4rem auto 0.733rem; line-height: 2.2}
.pro-de .mxw-box .tc-left .pro-top .info .s-tel{ padding: 0.367rem 0; border-top: 0.017rem dashed #d8d8d8; border-bottom: 0.017rem dashed #d8d8d8;	font-size: 0.267rem; color: #666}
.pro-de .mxw-box .tc-left .pro-top .info .s-tel img{ height: 0.367rem; margin-right: 0.33rem;}
.pro-de .mxw-box .tc-left .pro-top .info .cd{ margin-top: 0.6rem;}
.pro-de .mxw-box .tc-left .pro-top .info .cd a{ display: inline-block;	border-radius: 3px;
    font-size: 0.233rem; text-align: center;padding: 0.3rem 0.683rem; line-height: 1}
.pro-de .mxw-box .tc-left .pro-top .info .cd a.cd1{	background-color: #dcdcdc;	color: #acacac;}
.pro-de .mxw-box .tc-left .pro-top .info .cd a.cd2{	background-color: #2660a3;	color: #fff; margin-left: 0.467rem;}
.pro-bot{ margin-top: 0.833rem;}
.pro-bot .head{	background-color: #f3f8ff;
    border-radius: 3px 0px 0px 3px;}
.pro-bot .head .text1{	font-size: 0.267rem; padding: 0.333rem 0.833rem;	background-color: #2660a3; display: inline-block; color: #fff;}
.pro-bot .bottom{ font-size: 0.267rem; line-height: 2; padding-top: 0.5rem;	color: #444444;}
.pro-bot .bottom.content img{max-width: 100%; height: auto !important;}

.case-box{padding: 0.7rem 0 1rem;}
.case-box .list{display: flex; align-items: stretch; justify-content: flex-start; display: -webkit-flex; display: -ms-flex; display: -moz-flex; flex-wrap: wrap }
.case-box .list .item{ width: 32.25%; margin-right:1.5%; }
.case-box .list .item:nth-child(3n){ margin-right: 0}
.case-box .list .item:nth-child(3n)~.item{ margin-top: 0.417rem;}
.case-box .list .item p{ text-align: center; padding: 0.26rem 0.167rem 0.275rem;line-height: 1;	color: #a0a0a0;}
.case-box .list .item:hover p{	background-color: #2660a3; color: #fff;}
.case-box .list.zs .item{ width: 23.5%; margin-right: 2%}
.case-box .list.zs .item:nth-child(4n){  margin-right: 0}
.case-box .list.zs .item:nth-child(3n)~.item{ margin-top: 0}
.case-box .list.zs .item:nth-child(4n)~.item{ margin-top: 2%}
.case-box .list.zs .image{ border: 1px solid #eee}


.news-page{ padding: 0.75rem 0 1rem;}
.jo1{ padding: 1.583rem 0;}
.jo1 .list{ margin-top: 1.583rem;display: flex; align-items: flex-start; justify-content: space-between; display: -webkit-flex; display: -ms-flex; display: -moz-flex; }
.jo1 .list .item{ text-align: center; width: 16%; }
.jo1 .list .item .st{font-size: 0.4rem; margin: 0.433rem auto 0.367rem;}
.jo1 .list .item .desc{	font-size: 0.3rem;color: #565656; line-height: 1.6}
.jo1 .list .item .icon{ border-radius: 50%; width: 1.517rem; height: 1.517rem; margin: 0 auto; border: 1px solid #2660a3;}
.jo1 .list .item:hover .icon{background-color: #2660a3; overflow: hidden; border-color: #fff}
.jo1 .list .item:hover .icon img{filter:brightness(100);}

.jo2{ background: url("/skin/images/jo2.png") center no-repeat; background-size: cover; }
.jo2 .mxw-box{ display: flex;  justify-content: space-between;align-items: center;  display: -webkit-flex; display: -ms-flex; display: -moz-flex; padding: 0.767rem 0 0.217rem; }
.jo2 .mxw-box .tc-right{ text-align: center;width: 57.06%; flex-shrink: 0}
.jo2 .mxw-box .tc-right .t1{	font-size: 0.333rem; color: #000; margin-bottom: 0.4rem; font-weight: bold;}
.jo2 .mxw-box .tc-left{ flex-grow: 1; min-width: 0;display: flex;  justify-content: space-between;align-items: center;  display: -webkit-flex; display: -ms-flex; display: -moz-flex; text-align: left;}
.jo2 .mxw-box .tc-left img{ height: 1.55rem;}
.jo2 .mxw-box .tc-left .image{ flex-shrink: 0}
.jo2 .mxw-box .tc-left .text{ flex-grow: 1; min-width: 0; margin-left: 0.5rem;}
.jo2 .mxw-box .tc-left .text .t1{	font-size: 0.833rem;color: #007628;}
.jo2 .mxw-box .tc-left .text .t2{	font-size: 0.5rem;}
.jo3{ padding: 1.667rem 0 1.667rem;}
.jo3 .list{ margin-top: 0.933rem;}
.jo3 .list .item{display: flex;  justify-content: space-between;align-items: stretch;  display: -webkit-flex; display: -ms-flex; display: -moz-flex;}
.jo3 .list .item .image{ width: 45.25%; flex-shrink: 0;}
.jo3 .list .item .text{ flex-grow: 1; min-width: 0;background-color: #f3f8ff; padding: 0.8rem 2rem;}
.jo3 .list .item .text .st{	font-size: 0.5rem;	color: #2660a3; font-weight: bold;}
.jo3 .list .item .text .con{	font-size: 0.3rem; color: #333; line-height: 2; margin-top: 0.533rem;}
.jo3 .list .item:nth-child(1)~.item{ margin-top: 0.3rem;}
.jo3 .list .item:nth-child(2n) .image{ order: 2}

.jo4{ padding: 1.167rem 0 1.083rem; margin-bottom: 1.167rem;	background-color: #eef5ff;}
.jo4 .n-tt .desc{ margin-top: 0.7rem;}
.jo4 .msg{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  width: 100%; margin-top: 1.75rem; justify-content: space-between; flex-wrap: wrap}
.jo4 .msg .item{ width: 48.125%; margin-bottom: 0.333rem;}
.jo4 .msg label span{ display: block;	color: #333; font-weight: bold;}
.jo4 .msg label span i{ color: #c20000;margin-right: 10px;}
.jo4 .msg input{	background-color: #ffffff;	color: #a8a8a8;	font-size: 0.267rem; padding: 0.333rem 0.333rem 0.367rem;line-height: 1; width: 100%;
    border: solid 1px #eaeaea;
    margin-top: 0.3rem;}
.jo4 .msg .item.item1{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between;}
.jo4 .msg .item.item1 .c1{ width: 48.125%;  }
.jo4 .hx{ margin-top: 0.4rem; text-align: center}
.jo4 .hx button{	width: 3.367rem;
    padding: 0.267rem; line-height: 1; color: #fff; cursor: pointer;
    background-color: #b8001a;	font-size: 0.433rem;}
.jo4 .hx button.res{background-color: #2660a3; margin-left: 0.8rem;}

.news-page{ padding: 0.8rem 0 1rem;}
.news-page .list{  }
.news-page .list .item{display: flex;	background-color: #f3f8ff; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between; align-items: flex-start;transition: all 0.3s}
.news-page .list .item:nth-child(1)~.item{ margin-top: 0.55rem;}
.news-page .list .item .image{ width: 25%; flex-shrink: 0;}
.news-page .list .item .date{ flex-shrink: 0; text-align: center; padding: 0.767rem 0.6rem 0.6rem 1.25rem;}
.news-page .list .item .date .day{	font-size: 0.767rem;color: #2660a3; line-height: 1; }
.news-page .list .item .date p{ font-size: 0.367rem;color: #2660a3; margin-top: 0.3rem;}
.news-page .list .item .text{ padding: 0.6rem 3.25rem 0.633rem 0}
.news-page .list .item .text .st{	font-size: 0.333rem; font-weight: bold;color: #2660a3;}
.news-page .list .item .text .info{font-size: 0.267rem;color: #2660a3; margin: 0.4rem auto 0.467rem; line-height: 1.8}
.news-page .list .item .text .more{	font-size: 0.233rem;	color: #2660a3;}
.news-page .list .item:hover{background-color: #2660a3; transition: all 0.3s}
.news-page .list .item:hover .date .day{ color: #fff}
.news-page .list .item:hover .date p{ color: #fff}
.news-page .list .item:hover .text .st{ color: #fff}
.news-page .list .item:hover .text .info{ color: #fff}
.news-page .list .item:hover .text .more{ color: #fff}

footer{ padding-top: 0.767rem;	background-color: #303030;}
footer .top{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between; align-items: flex-start; padding-bottom: 0.5rem;}
footer .top .dco1{ width: 36%; flex-shrink: 0;}
footer .top .dco1 .d-logo img{ height: 1.167rem;}
footer .top .dco1 .list{ margin-top: 0.667rem;	font-size: 0.3rem;	color: #fefefe;}
footer .top .dco1 .list img{ width: 0.567rem; height: 0.567rem; margin-right: 0.367rem;}
footer .top .dco1 .list p{ margin-bottom: 0.3rem;}
footer .top .dco2{ width: 3rem; text-align: center;}
footer .top .dco2 .ewm-box{ width: 2.833rem;}
footer .top .dco2 .ewm-box p{	font-size: 0.267rem;	color: #c0c0c0; margin-top: 0.3rem; line-height: 1.6}
footer .top .d-menu{ flex-grow: 1; min-width: 0; color: #fff;display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between; align-items: flex-start; }
footer .top .d-menu{ padding: 0 3rem 0 1.583rem;}
footer .top .d-menu .title{	font-size: 0.333rem; font-weight: bold; margin-bottom: 0.533rem;}
footer .top .d-menu  p{	color: #c0c0c0; margin-bottom: 0.2rem;}
footer .top .d-menu  p a{	font-size: 0.233rem;	color: #c0c0c0;}
footer .top .dco2 .list{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: center; margin-top: 0.6rem;}
footer .top .dco2 .list a:nth-child(1)~a{ margin-left: 15px }
footer .top .dco2 .list a>img{ width: 26px}
footer .top .dco2 .list a{ position: relative;}
footer .top .dco2 .list a .flx{ position: absolute; bottom: 30px; left: -80px; width: 160px; height: 160px; display: none}
footer .top .dco2 .list a:hover .flx{ display: block}

.mxw-title{ text-align: center;}
.mxw-title .cn{	font-size: 0.767rem; font-weight: bold; color: #221613; line-height: 1;}
.mxw-title .desc{	font-size: 0.3rem; color: #221613; margin-top: 0.467rem;}
.mxw-title .ico{ margin-top: 0.433rem}
.mxw-title .ico img{ height: 0.283rem;}
.tc-pro{ padding: 1.417rem 0 1rem; background: url("/skin/images/pro-bg.png") center bottom no-repeat; background-size: 100% auto;}
.pro-cat{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: center; align-items: stretch; margin-top: 0.833rem;}
.pro-cat .item{	font-size: 0.3rem;color: #2660a3; line-height: 1; padding: 0.233rem 0.433rem;	background-color: #d4dfed; border-radius: 0.4rem; margin: 0 0.283rem;}
.pro-cat .item.active{	background-color: #2660a3; color: #fff;}
.pro-swiper{ overflow: hidden; margin-top: 0.867rem;}
.pro2-swiper{ overflow: hidden}
.pro2-swiper .swiper-slide{ width: 24%;}
.pro2-swiper .swiper-slide .title {background-color: #2660a3;	color:#fff; line-height: 1; padding: 0.267rem; text-align: center}
.pro2-swiper .swiper-slide .image{ background: url("/skin/images/ipbg.png") center no-repeat; background-size: cover}
.pro-swiper .swiper-pagination{ position: initial; margin-top: 0.917rem;}
.pro-swiper .swiper-pagination .swiper-pagination-bullet{ width: 0.3rem; height: 0.3rem; background: #fff; border-radius: 0; opacity: 0.5}
.pro-swiper .swiper-pagination .swiper-pagination-bullet-active{  opacity: 1}

.tc-prj{ padding: 1.417rem 0 2.083rem; background: url("/skin/images/prj0bg.jpg") center no-repeat; background-size: cover;}
.tc-prj .body{ margin-top: 2.917rem;display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between; align-items: stretch; }
.tc-prj .body .tc-left{ text-align: center; width: 50.5%; position: relative; z-index: 1; flex-shrink: 0;}
.tc-prj .body .tc-left .st1{	font-size: 0.6rem; line-height: 1; font-weight: bold;color: #333333;}
.tc-prj .body .tc-left .st2{	font-size: 0.3rem; margin: 0.25rem auto 0.833rem;}
.tc-prj .body .tc-right{ width: 60.25%; flex-shrink: 0; margin-left: -2.15rem;display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between;}
.tc-prj .body .tc-right .image{ width: 78.4%; flex-shrink: 0}
.tc-prj .body .tc-right  .text{ flex-grow: 1; min-width: 0; padding-left: 0.15rem}
.tc-prj .body .tc-right  .text p{	font-size: 0.233rem;	color: #333333; margin-bottom: 0.51rem;}


.tc-case{ padding: 2.75rem 0 1.333rem;}
.tc-case .mxw-box{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between;}
.tc-case .mxw-box .mxw-title{ text-align: left}
.tc-case .mxw-box .tc-left{ flex-grow: 1; min-width: 0; padding-right: 0.25rem;}
.tc-case .mxw-box .tc-right{ width: 44%; flex-shrink: 0}
.tc-case .mxw-box .tc-left .con{ display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; flex-wrap: wrap; justify-content: space-between; margin-top: 1.833rem;}
.tc-case .mxw-box .tc-left .con .item:nth-child(1),.tc-case .mxw-box .tc-left .con .item:nth-child(3){ width: 43% }
.tc-case .mxw-box .tc-left .con .item:nth-child(2),.tc-case .mxw-box .tc-left .con .item:nth-child(4){ width: 53% }
.tc-case .mxw-box .tc-left .con .item:nth-child(2n)~.item{ margin-top: 2rem;}
.tc-case .mxw-box .tc-left .con .item .num{ font-size: 0; line-height: 1}
.tc-case .mxw-box .tc-left .con .item .num .scrolling-numbers{ font-size: 0.833rem; font-weight: bold; line-height: 1;}
.tc-case .mxw-box .tc-left .con .item .num sub{ font-size: 0.667rem; font-weight: bold}
.tc-case .mxw-box .tc-left .con .item .st{ margin-top: 0.367rem;	font-size: 0.3rem;}
.tc-case .mxw-box .tc-left .con .item::after{ content: ""; display: block;	width: 24px;
    height: 2px;
    background-color: #013b7f; margin-top: 0.767rem; transition: all 0.3s;}
.tc-case .mxw-box .tc-left .con .item:hover::after{ width: 100%; transition: all 0.3s}
.tc-case .mxw-box .tc-right .item{position: relative; display: block;}
.tc-case .mxw-box .tc-right .item:nth-child(2){ margin-top: 0.667rem;}
.tc-case .mxw-box .tc-right .item .st{ position: absolute; left: 0; bottom: 0; padding: 0.333rem 0.5rem; line-height: 1; color: #fff;	background-color: rgba(224, 134, 34, 0.8); font-weight: bold}

.tc-about{ padding: 2rem 0 2.417rem; background: url("/skin/images/about-bg.jpg") center bottom no-repeat; background-size: cover}
.tc-about .mxw-box{ display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: space-between;}
.tc-about .mxw-box .tc-right{ width: 60%; margin-right: -2.5rem; flex-shrink: 0;}
.tc-about .mxw-box .tc-left{ flex-grow: 1; min-width: 0; padding-right: 0.967rem;}
.tc-about .mxw-box .tc-left .st{	font-size: 0.667rem;	color: #221613; font-weight: bold; line-height: 1;}
.tc-about .mxw-box .tc-left .desc{ margin-top: 1.033rem; line-height: 2.5; text-indent: 2em}

.tc-news{ background: url("/skin/images/news-bg.jpg") center no-repeat; background-size: cover; padding: 1.333rem 0 0.917rem;}
.news-top{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: space-between; margin-top: 0.767rem; align-items: center;}
.news-top .tc-left{ width: 48.9375%; flex-shrink: 0;}
.news-top .tc-right{ flex-grow: 1; min-width: 0; padding-left: 1.367rem;}
.news-top .tc-right .dat{	font-size: 0.317rem;color: #333333;}
.news-top .tc-right .dat span{ margin-left: 0.25rem;	color: #2660a3;	font-size: 0.4rem;}
.news-top .tc-right .dat span i{font-size: 0.567rem;}
.news-top .tc-right .title{ line-height: 1; margin-top: 0.3rem;	font-size: 0.5rem;}
.news-top .tc-right .desc{	font-size: 0.267rem;	color: #a5a5a5; line-height: 2; margin-top: 1.333rem}
.news-top .tc-right .mo{	font-size: 0.267rem;color: #000000; margin-top: 1.467rem;}
.tc-news .mxw-box .list{ margin-top: 1.033rem; display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: space-between; }
.tc-news .mxw-box .list .item{ width: 31.5%; margin-right: 2.75%; padding-top: 0.583rem; border-top: 1px solid #666666;}
.tc-news .mxw-box .list .item:nth-child(3n){ margin-right: 0}
.tc-news .mxw-box .list .item .dat{ font-size: 0.233rem;	color: #444444;}
.tc-news .mxw-box .list .item .cob{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: space-between;  margin-top: 0.3rem; }
.tc-news .mxw-box .list .item .cob .mo{	font-size: 0.267rem; flex-shrink: 0; margin-left: 1rem;}
.tc-news .mxw-box .list .item .cob .st{	font-size: 0.3rem; color: #444}

.news-page .list.se  .item .text{     padding: 0.6rem 0.6rem 0.633rem 0.6rem; }



.mxw-copy{	line-height: 1.8; }
.mxw-copy .mxw-box{  padding: 0.333rem 0; 	font-size: 0.233rem; color: #6b6b6b;  text-align: center; border-top: 0.017rem solid rgba(208, 208, 208, 0.3);}
.mxw-copy .mxw-box a{font-size: 0.233rem; color: #6b6b6b; }
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; color: #6b6b6b;}






.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: 0.45rem;
    color: #333;
    padding-bottom: 0.317rem;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 0.317rem;
    border-bottom: 0.017rem solid #333;
    margin-bottom: 0.317rem;
}
.ny-news-desc .info .text {
    font-size: 0.25rem;
    color: #333;
    display: inline-block;
    margin-right: 0.317rem;
    border-left: 0.017rem solid #333;
    padding-left: 0.317rem;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 0.017rem solid #999;
    border-radius: 1.617rem;
    padding: 0.083rem 0.167rem;
    line-height: 1;
    font-size: 0.233rem;
    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 ==================== */





@media screen and (max-width: 1440px) {
    .top-box{ width: 95%; max-width: 95%;}






}

/* ==================== 页面具体样式 end ==================== */

/* ==================== 内页 - 联系我们 start ==================== */
.ny-contact {

    background-size: cover;
}
.ny-contact .body {
    background: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0rem 0.1167rem 0.5333rem 0rem rgba(3, 0, 0, 0.11);
}
.ny-contact .image {
    width: 50%;
    flex-shrink: 0;
}
.ny-contact .info {
    min-width: 0;
    flex-grow: 1;
    padding: 0.9167rem;
}
.ny-contact .info .text1 {
    font-size: 0.5833rem;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 0.4333rem;
}
.ny-contact .info .desc {
    font-size: 0.2833rem;
    color: #333;
    line-height: 2.6;
    text-align: justify;
}
@media screen and (min-width: 751px) {
    .ny-contact .mxw-box {
        padding-top: 140px;
        padding-bottom: 140px;
    }
}
@media screen and (max-width: 751px) {
    .ny-contact .body {
        flex-wrap: wrap;
    }
    .ny-contact .image {
        width: 100%;
    }
    .ny-contact .info {
        padding: 20px 15px;
        background: none;
    }
    .ny-contact .info .text1 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
    }
    .ny-contact .info .desc {
        font-size: 14px;
        line-height: 2;
    }
}
/* ==================== 内页 - 联系我们 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: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    footer .top{ flex-wrap: wrap;}
    .tc-pro{ padding: 45px 0 60px;}
    .mxw-title .cn{ font-size: 24px;}
    .mxw-title .desc{ font-size: 14px; margin-top: 10px}
    .mxw-title .ico{ margin-top: 10px;}
    .mxw-title .ico img{ height: 14px;}
    .pro-cat{ margin-top: 25px; flex-wrap: wrap;}
    .pro-cat .item{ font-size: 14px; padding: 9px 10px; width: 32%; margin:0 2% 10px 0; text-align: center}
    .pro-cat .item:nth-child(3n){ margin-right: 0}
    .pro-swiper{ margin-top: 10px;}
    .pro2-swiper .swiper-slide .title{ font-size: 14px; padding: 9px 10px;}
    .pro-swiper .swiper-pagination{ margin-top: 15px;}
    .pro-swiper .swiper-pagination .swiper-pagination-bullet{ width: 10px; height: 10px; background: #000}
    .tc-prj{ padding: 45px 0}
    .tc-prj .body{ margin-top: 25px; flex-wrap: wrap;}
    .tc-prj .body .tc-left{ width: 100%;}
    .tc-prj .body .tc-left .st1{ font-size: 18px;}
    .tc-prj .body .tc-left .st2{ font-size: 14px; margin: 5px auto 15px;}
    .tc-prj .body .tc-right{ width: 100%; margin: 15px auto 0}
    .tc-case{ padding: 45px 0}
    .tc-case .mxw-box{ flex-wrap: wrap;}
    .tc-case .mxw-box .tc-left .con{ margin-top: 25px;}
    .tc-case .mxw-box .tc-left .con .item .num .scrolling-numbers{ font-size: 22px;}
    .tc-case .mxw-box .tc-left .con .item .num sub{ font-size: 14px}
    .tc-case .mxw-box .tc-left .con .item .st{ margin-top: 10px; font-size: 14px}
    .tc-case .mxw-box .tc-left .con .item::after{ margin-top: 10px}
    .tc-case .mxw-box .tc-left .con .item:nth-child(2n)~.item{ margin-top: 20px}
    .tc-case .mxw-box .tc-right{ width: 100%; margin-top: 20px;}
    .tc-case .mxw-box .tc-right .item .st{ font-size: 16px; padding: 10px 12px;}
    .tc-case .mxw-box .tc-right .item:nth-child(2){ margin-top: 15px;}
    .tc-about{ padding: 45px 0;}
    .tc-about .mxw-box{ flex-wrap: wrap;}
    .tc-about .mxw-box .tc-left{ padding-right: 0}
    .tc-about .mxw-box .tc-left .st{ font-size: 22px;}
    .tc-about .mxw-box .tc-left .desc{ margin-top: 15px; line-height: 1.6; font-size: 14px;}
    .tc-about .mxw-box .tc-right{ margin: 10px auto 0; width: 100% }
    .tc-news{ padding: 45px 0}
    .news-top{ margin-top: 25px; flex-wrap: wrap;}
    .news-top .tc-right .dat{ font-size: 14px;}
    .news-top .tc-right .dat span i{ font-size: 16px;}
    .news-top .tc-right .dat span{ font-size: 16px;}
    .news-top .tc-right .title{ font-size: 16px; margin-top: 10px;}
    .news-top .tc-right .desc{ font-size: 12px; margin-top: 10px;}
    .news-top .tc-right .mo{ font-size: 12px; margin-top: 10px;}
    .news-top .tc-right{ padding: 0; width: 100%; margin-top: 10px;}
    .news-top .tc-left{ width: 100%;}
    .tc-news .mxw-box .list{ margin-top: 20px; flex-wrap: wrap}
    .tc-news .mxw-box .list .item{ width: 100%; margin: 0 auto 15px; padding-top: 10px;}
    .tc-news .mxw-box .list .item .cob{ margin-top: 5px; font-size: 14px;}
    .tc-news .mxw-box .list .item .cob .st{ font-size: 14px;}
    .tc-news .mxw-box .list .item .cob .mo{ font-size: 12px; margin-left: 30px;}
    footer{ padding-top: 45px;}
    footer .top .dco1{ width: 100%}
    footer .top .dco1 .d-logo img{ height: 60px;}
    footer .top .dco1 .list p{ font-size: 14px; margin-bottom: 10px; display: flex; align-items: flex-start; justify-content: flex-start;}
    footer .top .dco1 .list img{ width: 25px; height: 25px; margin-right: 10px; flex-shrink: 0; margin-top: -3px;}
    footer .top .d-menu{ display: none;}
    footer .top .dco2{ width: 100%; margin-top: 15px;}
    footer .top .dco2 .list{ justify-content: flex-start;}
    footer .top .dco2 .list a{ width: 30px; margin-right: 15px;}
    footer .top .dco2 .ewm-box p{ font-size: 12px; margin-top: 10px;}

    .pro-list .list{ width: 100%; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap}
    .pro-list .list .item{ margin: 0 auto;  width: 48.5%;}
    .n-cat .mxw-box .tc-left{ display: none}
    .n-cat .mxw-box .tc-right .n-list{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap; padding: 10px 0}
    .n-cat .mxw-box .tc-right .item{ text-align: center; }
    .n-cat .mxw-box .tc-right{ margin-left: 0;}
    .n-cat .mxw-box .tc-right .item{ padding: 5px; margin: 0 2% 0 0; width: 32%; font-size: 16px; }
    .n-cat .mxw-box .tc-right .item:nth-child(3n){ margin-right: 0}
    .n-cat .mxw-box{ padding: 0;}
    .n-cat .mxw-box .tc-right .item a{ font-size: 14px;}
    .n-cat .mxw-box .tc-right .n-list2{ padding: 15px 10px 25px;}
    .n-cat .mxw-box .tc-right .n-list2 a{ font-size: 14px; margin: 0 15px;}
    .pro-list .list .item .title{ font-size: 14px; padding: 9px 12px;}
    .pro-list .list .item:nth-child(2n)~.item{ margin-top: 15px;}
    .pro-list .list .item:hover .image::before{ width: 30px; height: 30px;}
    .pro-de{padding: 15px 0 45px;}
    .pro-de .mxw-box{ flex-wrap: wrap}
    .pro-de .mxw-box .tc-left .pro-top{ flex-wrap: wrap;}
    .pro-de .mxw-box .tc-left .pro-top .big-img{ width: 100%;}
    .pro-de .mxw-box .tc-left .pro-top .big-img{ height: auto;}
    .pro-de .mxw-box .tc-left .pro-top .info{ padding-left: 0}
    .n-cat{ margin-top: 25px;}
    .pro-de .mxw-box .tc-left .pro-top .info .title{ font-size: 18px; padding: 10px 0 10px;}
    .pro-de .mxw-box .tc-left .pro-top .info .desc{ font-size: 14px; margin: 10px auto;}
    .pro-de .mxw-box .tc-left .pro-top .info .s-tel{ padding: 10px 0; font-size: 14px;}
    .pro-de .mxw-box .tc-left .pro-top .info .s-tel img{ width: 20px; height: 20px;}
    .pro-de .mxw-box .tc-left .pro-top .info .cd{ margin-top: 20px;}
    .pro-de .mxw-box .tc-left .pro-top .info .cd a{ font-size: 14px; padding: 10px 30px;}
    .pro-bot{ margin-top: 40px;}
    .pro-bot .head .text1{ font-size: 16px; padding: 12px 25px;}
    .pro-bot .bottom{ padding-top: 15px; font-size: 14px;}
    .pro-de .mxw-box .tc-right{ margin-top: 35px; margin-left: 0; width: 100%}
    .pro-de .mxw-box .tc-right .title{ font-size: 18px;}
    .pro-de .mxw-box .tc-right .list{ margin-top: 15px; display: flex; align-items: stretch; justify-content:flex-start;}
    .pro-de .mxw-box .tc-right .list .item{ margin-top: 0; width: 32%; margin-right: 2%; flex-direction: column; justify-content: flex-start;}
    .pro-de .mxw-box .tc-right .list .item{ flex-wrap: wrap; padding-bottom: 10px;}
    .pro-de .mxw-box .tc-right .list .item:nth-child(3n){ margin-right: 0}
    .pro-de .mxw-box .tc-right .list .item .mxw-image{ width: 100%; padding: 0}
    .pro-de .mxw-box .tc-right .list .item .text{ font-size: 14px; font-weight: normal; text-align: center; padding: 0 10px;}
    .pro-de .mxw-box .tc-right .tj-cp:nth-child(2){ margin-top: 25px; }

    .case-box{ padding: 40px 0 45px;}
    .case-box .list{ flex-wrap: wrap; justify-content: space-between; width: 100%}
    .case-box .list .item{ width: 48.5%; margin: 0 ;}
    .case-box .list .item:nth-child(2n)~.item{ margin-top: 15px;}
    .case-box .list .item p{ padding: 10px; font-size: 14px;}

    .news-page{ padding: 45px 0}
    .mxw-ny-box{ padding: 0}
    .ny-news-desc .title{ font-size: 18px;}

    .jo1{ padding: 45px 0}
    .n-tt .cn{ font-size: 22px;}
    .n-tt .en{ font-size: 12px; margin-top: 10px;}
    .jo1 .list{ margin-top: 25px; flex-wrap: wrap; justify-content: center}
    .jo1 .list .item{ width: 32%; margin-right: 2%;}
    .jo1 .list .item:nth-child(3n){ margin-right: 0}

    .jo1 .list .item .icon{ width: 60px; height: 60px;}
    .jo1 .list .item .st{ font-size: 18px; margin: 12px auto 10px;}
    .jo1 .list .item .desc{ font-size: 14px;}
    .jo2 .mxw-box{ flex-wrap: wrap; padding: 45px 0}
    .jo2 .mxw-box .tc-left{ flex-direction: column;}
    .jo2 .mxw-box .tc-left img{ height: 93px;}
    .jo2 .mxw-box .tc-left .text{ margin: 10px auto; width: 100%; text-align: center;}
    .jo2 .mxw-box .tc-left .text .t1{ font-size: 24px;}
    .jo2 .mxw-box .tc-left .text .t2{ font-size: 16px; margin-top: 5px;}
    .jo2 .mxw-box .tc-right{ width: 100%;}
    .jo2 .mxw-box .tc-right .t1{ font-size: 15px; margin-bottom: 10px;}

    .jo3{ padding: 45px 0}
    .jo3 .list{ margin-top: 25px;}
    .jo3 .list .item{ flex-wrap: wrap;}
    .jo3 .list .item .image{ width: 100%;}
    .jo3 .list .item .text{ padding: 20px 30px;}
    .jo3 .list .item .text .st{ font-size: 16px;}
    .jo3 .list .item .text .con{ font-size: 14px; margin-top: 10px;}
    .jo3 .list .item:nth-child(2n) .image{ order: 0}

    .jo4{ padding: 45px 0; margin-bottom: 0}
    .jo4 .n-tt .desc{ font-size: 14px; line-height: 1.6; margin-top: 20px;}
    .jo4 .msg{ margin-top: 25px; flex-wrap: wrap;}
    .jo4 .msg .item{ width: 100%;}
    .jo4 .msg label span{ font-size: 14px;}
    .jo4 .msg input{ font-size: 14px; margin-top: 5px;padding: 10px;}
    .jo4 .hx{ margin-top: 0}
    .jo4 .hx button{ font-size: 14px; padding: 10px 20px; width: initial;}
    .n-cat .mxw-box .tc-right{ width: 100%}
    .news-page{ padding: 45px 0;}
    .news-page .list .item{ flex-wrap: wrap; flex-direction: column;}
    .news-page .list .item .image{ width: 100%}
    .news-page .list .item .date{ padding: 10px 20px; width: 100%; display: flex; align-items: center; justify-content: flex-start;}
    .news-page .list .item .date .day{
        font-size: 12px; order: 1; margin-left: 10px; display: none}
    .news-page .list .item .date p{ display: inline-block; font-size: 12px; margin: 0; }
    .news-page .list .item .text{ padding: 0 20px 15px;}
    .news-page .list .item .text .st{ font-size: 16px;}
    .news-page .list .item .text .info{ font-size: 14px; margin: 10px auto;}
    .news-page .list .item .text .more{ font-size: 14px;}
    .about-box1{ padding: 45px 0 150px;     background-size: 100%;
        background-position: bottom;
        background-color: #ebf6fc;}
    .about-box1 .mxw-box{ flex-wrap: wrap;}
    .about-box1 .mxw-box .tc-left{ padding: 0; width: 100%; }
    .about-box1 .mxw-box .tc-left .name{ font-size: 22px;}
    .about-box1 .mxw-box .tc-left .desc{ font-size: 14px; line-height: 1.6; margin-top: 25px;}
    .about-box1 .mxw-box .tc-right{ padding-top: 25px; width: 100%; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap}
    .about-box1 .mxw-box .tc-right .item{ width: 48.5%;}
    .about-box1 .mxw-box .tc-right .item .num .scrolling-numbers{ font-size: 30px;}
    .about-box1 .mxw-box .tc-right .item .num sub{ font-size: 20px;}
    .about-box1 .mxw-box .tc-right .item:nth-child(1)~.item{ margin-top: 0}
    .about-box1 .mxw-box .tc-right .item .desc{ margin-top: 10px; font-size: 14px;}
    .about-box1 .mxw-box .tc-right .item .desc::after{ margin-top: 10px;}
    .about-box1 .mxw-box .tc-right .item:nth-child(2n)~.item{ margin-top: 15px;}

    .about-box2{ padding: 45px 0 250px;
        background-position: bottom;   background-color: #ebf6fc;}
    .n-tt .n-more{ font-size: 14px; padding: 9px 25px; border-radius: 18px;}
    .about-box3{ padding: 45px 0;}
    .about-box3 .list{ margin-top: 25px; width: 100%}
    .about-box3 .list .item{ font-size: 14px; padding: 10px}
    .about-box3 .list .item span{ flex-shrink: 0; margin-right: 30px;}
    .about-box3 .list .item .text{ text-align: right; line-height: 1.6}


    .case-box .list.zs .item{ width: 48.5%; margin: 0}
    .case-box .list.zs .item:nth-child(2n)~.item{ margin-top: 25px}
    .about-box1.page{ padding: 45px 0; text-align: center; }
    .about-box1.page .desc{ font-size: 15px; line-height: 1.8}

    body{ margin-bottom: 0}
}












