@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-crisp-edges; /* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
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: 0.3rem;
    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;    -webkit-line-clamp: 1;
}
.u-line-2 {

    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;

}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination > a,.mxw-pagination > span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: block;
    margin: 4px;
}
.mxw-pagination > a.active,
.mxw-pagination > a:hover {
    background-color: #0748b2;
    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: 18px;
    white-space: nowrap;
    background: #eaeaea;
    color: #333;
    padding: 0 30px;
    margin-right: 54px;
    line-height: 40px;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #0748b2;
    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%;
    font-size: 0;
    border-bottom: 1px solid #e5e5e5;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: stretch;
    font-size: 0;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    padding-left: 20px;
    display: flex; align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}
.mxw-keywords .left strong {
    vertical-align: inherit; color: #444444;
}
.mxw-keywords .left span {
    color: #000;
    vertical-align: middle;
    /*font-weight: bold;*/
    display: flex; align-items: center;
}
.mxw-keywords .left span img{ margin-right: 10px;}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #0748b2;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right{
    display: flex;
    align-items: center;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    /* content: "";
     display: block;
     width: 2px;
     height: 16px;
     background-color: #d9d9d9;
     position: absolute;
     left: 10px;
     top: 50%;
     transform: translateY(-50%);*/
}
.mxw-keywords .right input {
    width: 394px;
    border-radius: 24px;
    height: 48px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::-moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    height: 48px;
    margin-left: -18px;
    border-radius: 24px;
    cursor: pointer;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;
    background-size: cover;
}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 750px) {
    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: 0 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: 16px;
        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;z-index: 0;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
    height: 100%; text-align: center;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 65px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 41px;
    height: 4px;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    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: #ff4800;
    border-color: #ff4800;
    opacity: 1;
}
.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: #fff;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 84%;
}
.mxw-box2 {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}





/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    html {

    }
    .mxw-box {
        max-width: 89%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 0px;
    }
}
@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:#0748b2;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{
    border:1px solid #eaeaea;
    padding: 10px 10px 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:0;}
    .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;
    margin: 0.333rem auto 0.333rem 0;
}
.top-box .right{ flex-grow: 1; min-width: 0; padding-left: 2rem;}
.top-box .logo-box .t-logo>img{ max-height:0.867rem;}

.mxw-keywords .left .zx{ display: inline-block; font-size: 0.35rem; margin-right: 0.833rem; vertical-align: middle}
.mxw-keywords .left .zx>img{ margin-right: 5px}
.mxw-keywords .left .zx b{ color: #0748b2; 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:10px 0;display:none; background: #fff;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:0.3rem;cursor:pointer;line-height:1.8; }
.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{
   width: 100%; 	background-color: rgba(255, 255, 255, 1); z-index: 10;
}
header .welcome {
    line-height: 34px;
    border-bottom: 1px solid #e5e5e5; display: none;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}


.top-box{ align-items: stretch; justify-content: space-between;}





.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;

}
.x-menu > li {
    margin: 0 0.25rem;
    text-align: center;
    float: none;
    position: relative;
    flex-grow: 1;
    min-width: 0;
    z-index: 1;
}

.x-menu > li > a {
    font-size: 0.333rem;
    color: #333;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding:0;
    line-height: 1.2;
    width: 100%;
    position: relative;z-index: 2;
}
.x-menu > li:last-child>a{ background: none; padding-right: 0}
.x-menu > li > a:hover {
    color: #003f8e;
}
.x-menu>li.active{ 	 	}
.x-menu > li.active > a {
    color: #003f8e; background: none; 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: 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:#3553e9;
}

.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.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: 0 0.15rem 0.15rem 0;}
.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.tel-box{margin-left: 1rem; margin-right: 0; flex-grow: initial}
.x-menu > li.tel-box>a{ font-weight: bold; }
.x-menu > li.tel-box>a>img{ width: 0.333rem; margin-right: 0.2rem;}
.x-menu > li.se-box>a>img{ width: 0.4rem;}
.x-menu > li.lang>a>img{ width: 0.317rem; margin-right: 0.133rem;}
.x-menu > li.lang{ margin-right: 0; margin-left: 0.467rem; flex-grow: initial}
.x-menu > li.se-box{ margin-right: 0; margin-left: 0.5rem; flex-grow: initial}

.x-menu > li:nth-child(2)>a::after{ width: 0.283rem; height: 0.45rem; background: url("../images/sanjiao1.png") center no-repeat; display: inline-block; content: ""; margin-left: 0.3rem;}
.x-menu > li:nth-child(2).active>a::after{background: url("../images/sanjiao2.png") center no-repeat;}









.tc-title{ text-align: center;}
.tc-title .en{ font-size: 0; text-align: center;}
.tc-title .en img{ height: 0.633rem;}
.tc-title .cn{	font-size: 0.667rem; font-weight: bold; line-height: 1;	color: #000000; margin-top: -0.1rem;}
.tc-title .cn::after{	width: 0.717rem;
    height: 0.067rem; display: block; margin: 0.333rem auto 0.3rem;
    background-color: #ff7034; content: "";}
.tc-title .desc{ font-size: 0.333rem; line-height: 1;}
.tc-pro{ padding: 1.2rem 0 1.25rem;}
.tc-pro .body{ margin-top: 0.917rem;}
.tc-pro .body .item{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between;}
.tc-pro .body .item:first-child .tc-left{ border-radius: 14px 0 0 0;}
.tc-pro .body .item:first-child .tc-right{  border-radius: 0 14px 0 0;}
.tc-pro .body .item .tc-left{ width: 50%;	background-color: #00408f; overflow: hidden;
   }
.tc-pro .body .item .tc-right{ width: 50%;	background-color: #f7fbff;
    box-shadow: 0 0 7px 0
    rgba(0, 0, 0, 0.1);
    border: solid 1px rgba(0, 64, 143, 0.1);}
.tc-pro .body .item .tc-right{ padding: 0.95rem 2.083rem 0.833rem;}
.tc-pro .body .item .tc-right .icon{ width: 0.667rem;}
.tc-pro .body .item .tc-right .title{	font-size: 0.5rem;line-height: 1;color: #00408f; margin: 0.6rem auto 0.333rem 0; font-weight: bold;}
.tc-pro .body .item .tc-right .desc{	font-size: 0.333rem; font-weight: bold;	color: #00408f;}
.tc-pro .body .item .tc-right .c-more{ display: inline-block;	font-size: 0.267rem; line-height: 1;	color: #00408f; margin-top: 0.917rem;}
.tc-pro .body .item .tc-right .c-more img{ margin-left: 0.267rem; height: 0.7rem;}
.tc-pro .body .item.end2 .tc-left{ border-radius: 0 0 14px 0;	}
.tc-pro .body .item.end2 .tc-right{ border-radius: 0 0 0 14px;	}

.tc-pro .body .item.end1 .tc-left{ border-radius: 0 0 0 14px; }
.tc-pro .body .item.end1 .tc-right{border-radius: 0 0 14px 0;	}

.tc-pro .body .item:nth-child(2n) .tc-left{ order: 1; }


.tc-prj{ padding: 1.333rem 0 1.033rem;	background-color: #f5f9fe;}
.prj-cate{ margin: 0.967rem auto 1.5rem;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: center;}
.prj-cate .item{	font-size: 0.267rem; color: #333; padding: 0.25rem; line-height: 1;	border-radius: 0.417rem; background: #fff; width: 2.667rem; text-align: center; margin: 0 0.3rem;}
.prj-cate .item.active{	background-color: #00408f; color: #fff;}
.prj-swiper{overflow: hidden}
.prj-swiper .swiper-slide{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;}
.prj-swiper .swiper-slide .tc-left{ width: 44.15%; flex-shrink: 0;}
.prj-swiper .swiper-slide .tc-right{ flex-grow: 1; min-width: 0; padding-left: 1.333rem;}
.prj-swiper .swiper-slide .tc-right .icon{ width: 1.383rem;}
.prj-swiper .swiper-slide .tc-right .title{	font-size: 0.6rem;	color: #010101; margin: 0 auto 0.7rem; font-weight: bold;}
.prj-swiper .swiper-slide .tc-right .desc{	font-size: 0.3rem;	color: #595757; line-height: 2; }
.more-c{ padding: 0.267rem 0.417rem;	background-color: #00408f; color: #fff;
    border-radius: 0.417rem; line-height: 1; display: inline-block; margin-top: 1.333rem;	 border: 1px solid transparent}
.more-c img{ margin-left: 0.1rem; height: 0.233rem;}
.more-c:hover{ background: none; background: rgb(2, 74, 162)}

.tc-gn{ padding: 1.333rem 0 1.25rem;}
.gn-cate-bg{ position: relative; margin-top: 0.933rem; padding: 0 0.717rem; }
.gn-cate-swiper{border-bottom: 1px solid #d6d6d6; overflow: hidden}
.gn-cate .swiper-slide{ cursor: pointer; text-align: center; border-bottom: 3px solid transparent;
    padding-bottom: 0.433rem;}
.gn-cate .swiper-slide p{	font-size: 0.3rem; color: #333; margin-top: 0.2rem; line-height: 1;}
.gn-cate .swiper-slide .icon{ width: 1.383rem; margin: 0 auto; max-width: 100%;}
.gn-cate .swiper-slide.active{border-bottom:3px solid #00408f}
.gn-cate-bg .swiper-button-prev{ left: 0}
.gn-cate-bg .swiper-button-next{ right: 0}
.gn-cate-bg .swiper-button-next::after,.gn-cate-bg .swiper-button-prev::after{ font-size: 18px; color: #8c8c8c}
.gn-swiper{ overflow: hidden; margin-top: 0.967rem;}
.gn-swiper .swiper-slide{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;}
.gn-swiper .swiper-slide .tc-right{ width: 45.6%; flex-shrink: 0}
.gn-swiper .swiper-slide .tc-left{ flex-grow: 1; min-width: 0; font-size: 0.267rem; color: #595757; line-height: 1.6; padding-right: 1.833rem;}
.gn-swiper .swiper-slide .tc-left b{ margin-bottom: 0.45rem; display: inline-block; 	color: #000000;}

.tc-about{ padding: 1.833rem 0 1.25rem; background: url("../images/about-bg.jpg") center no-repeat; background-size: cover;}
.tc-about .tc-title{ text-align: left;}
.tc-about .tc-title .cn::after{ margin-left: 0}
.tc-about .body{ margin-top: 0.867rem;	color: #595757; padding-right: 3.233rem; line-height: 2;}
.tc-about .list{ margin-top: 1.583rem;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: flex-start;}
.tc-about .list .item{  margin-right: 0.75rem; text-align: center; max-width: 2.267rem;}
.tc-about .list .item .icon{width: 2.267rem;}
.tc-about .list .item p{	font-size: 0.25rem; color: #000; line-height: 1; margin-top: 0.2rem;}

.tc-brand{ text-align: center;}
.tc-brand .mxw-box{ padding: 1.333rem 0 1.4rem;}
.tc-brand .mxw-box .body{ margin-top: 1.1rem;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.tc-brand .mxw-box .body .item{ width: 30.3%; margin-right: 4.55%;}
.tc-brand .mxw-box .body  .item .image{ border-radius: 0.25rem 0.25rem 0 0;}
.tc-brand .mxw-box .body .item:nth-child(3n){ margin-right: 0}
.tc-brand .mxw-box .body .item p{ padding: 0.467rem 0.25rem; line-height: 1;	font-size: 0.333rem;	color: #010101; text-align: center;	box-shadow: 0rem 0.033rem 0.133rem 0.033rem
rgba(102, 102, 102, 0.2);
    border-radius: 0rem 0rem 0.25rem 0.25rem;}
.tc-brand .mxw-box .body .item:nth-child(3n)~.item{ margin-top: 0.7rem;}

.tc-news{
    background-color: #f5f9fe; padding: 1.267rem 0 1.967rem;
}
.news-cate{ margin: 0.967rem auto 1.367rem;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: center; }
.news-cate .item{	background-color: #ffffff; font-size: 0.267rem; padding: 0.267rem 0.667rem; line-height: 1;
    border-radius: 0.417rem; margin: 0 0.317rem;
    border: solid 1px #00408f;}
.news-cate .item.active{ background: #00408f; color: #fff;}
.news-swiper{ overflow: hidden}
.news-swiper .swiper-slide{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between;}
.news-swiper .swiper-slide .tc-left{ width: 30.1%; flex-shrink: 0}
.news-swiper .swiper-slide .tc-right{ flex-grow: 1; min-width: 0; padding-left: 0.55rem;}
.news-swiper .swiper-slide .tc-left .item{ display: block;}
.news-swiper .swiper-slide .tc-left .image{ border-radius: 0.2rem;}
.news-swiper .swiper-slide .tc-left .tim{	font-size: 0.267rem;	color: #6b6b6b; margin: 0.383rem auto 0.35rem}
.news-swiper .swiper-slide .tc-left .title{	font-size: 0.333rem; color: #333; font-weight: 400}
.news-swiper .swiper-slide .tc-left .desc{	font-size: 0.267rem; margin-top: 0.25rem;	color: #6b6b6b;}
.news-swiper .swiper-slide .tc-right .item{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between; padding:0.65rem 1rem 0.4rem; border-bottom: 1px solid #dfe2e6;}
.news-swiper .swiper-slide .tc-right .item .date{ flex-shrink: 0; text-align: center; padding-top: 0.44rem;}
.news-swiper .swiper-slide .tc-right .item .date .day{	font-size: 0.583rem;	color: #0d6ac9; font-weight: bold; line-height: 1;}
.news-swiper .swiper-slide .tc-right .item .date .mon{	font-size: 0.283rem; color: #6b6b6b; margin-top: 0.35rem}
.news-swiper .swiper-slide .tc-right .item .text{ margin-left: 0.7rem; flex-grow: 1; min-width: 0}
.news-swiper .swiper-slide .tc-right .item .text .t1{	font-size: 0.333rem; color: #333; font-weight: 400}
.news-swiper .swiper-slide .tc-right .item .text .t2{font-size: 0.267rem; margin-top: 0.25rem;	color: #6b6b6b;}
.news-swiper .swiper-slide .tc-right .item .text .cico{ margin-top: 0.45rem; width: 0.833rem;}
.news-swiper .swiper-slide .tc-right .item:hover{ background: #fff;}


.case-page{ padding: 0.717rem 0 1rem;}
.case-page .mxw-box .list-case{ margin-top: 1.1rem;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.case-page .mxw-box .list-case .item{ width: 30.3%; margin-right: 4.55%; 	border-radius: 0.25rem;}
.case-page .mxw-box .list-case .item .image{ border-radius: 0.25rem 0.25rem 0 0;}
.case-page .mxw-box .list-case .item:nth-child(3n){ margin-right: 0}
.case-page .mxw-box .list-case .item p{ padding: 0.467rem 0.25rem; line-height: 1;	font-size: 0.333rem;	color: #010101; text-align: center;	box-shadow: 0rem 0.033rem 0.133rem 0.033rem
rgba(102, 102, 102, 0.2);
    border-radius: 0rem 0rem 0.25rem 0.25rem;}
.case-page .mxw-box .list-case .item:nth-child(3n)~.item{ margin-top: 0.7rem;}


.news-box{padding: 0.717rem 0 1rem;}
.news-box .news-list .item{ display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: flex-start; background-color: #ffffff;
    padding: 0.367rem 0.45rem; border: solid 1px #ebebeb; transition: all 0.3s}
.news-box .news-list .item:nth-child(1)~.item{ margin-top:0.8rem}
.news-box .news-list .item .mxw-image{ margin-right: 0.5rem; flex-shrink: 0}
.news-box .news-list .item .con{ flex-grow: 1; min-width: 0; padding-right: 0.583rem;}
.news-box .news-list .item .con .st{ display: flex; justify-content: space-between; padding-bottom: 0.25rem; }
.news-box .news-list .item .con .st span{ flex-shrink: 0;font-size: 0.267rem;	color: #5d5d5d; margin-left: 0.667rem; font-weight: bolder}
.news-box .news-list .item .con .st>P{font-size: 0.333rem; 	color: #333333; flex-grow: 1;min-width: 0}
.news-box .news-list .item .con .desc{ color: #767676; font-size: 0.267rem; }
.news-box .news-list .item .con .more{background: #c4c4c4; padding: 0.1rem 0.15rem 0.1rem 0.3rem; width: max-content; color: #fff; transition: all 0.3s; margin-top: 0.333rem; font-size: 0.25rem}
.news-box .news-list .item:hover{box-shadow: 0px 3px 6px 1px
rgba(0, 0, 0, 0.13);}
.news-box .news-list .item:hover .more{background: #0d6ac9;}
.news-box .news-list .item:hover .con .st>P{ color: #0d6ac9}

.ab-top{ margin-top: -1.7rem; position: relative; z-index: 10  }
.ab-top .top{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between; background-color: #ffffff;	box-shadow: 0rem 0.033rem 0.133rem 0.033rem rgba(102, 102, 102, 0.2);
    border-radius: 0.233rem; padding: 0.483rem 1.3rem;}
.ab-top .top .item{ text-align: center; border-right: 1px solid #e5ecf4;
width: 25%;}
.ab-top .top .item:last-child{ border-right: 0;}
.ab-top .top .item .icon{ width: 1.467rem; margin: 0 auto 0.6rem;}
.ab-top .top .item p{ line-height: 1;	color: #000000; font-size: 0.333rem;}
.ab-kk{ padding-top:1.15rem;}
.tc-title2{ text-align: center;}
.tc-title2 .cn{	font-size: 0.667rem;	color: #000000; line-height: 1.4; font-weight: bold;}
.tc-title2 .en{	font-size: 0.233rem;	color: #aaaaaa; margin-top: 0.15rem; line-height: 1;}
.tc-title2 .en::after{	width: 0.717rem; display: block;
    height: 0.067rem; content: ""; margin: 0.2rem auto 0.8rem;
    background-color: #ff7034;}
.ab-kk .body{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between; }
.ab-kk .body .tc-right{ width: 64.7%; flex-shrink: 0; margin-top: -5rem; position: relative; z-index: -1}
.ab-kk .body .tc-left{	font-size: 0.333rem;	color: #595757; line-height: 2; flex-grow: 1; min-width: 0; margin-right: -0.45rem; }
.about-wh{ padding: 1.167rem 0 1.75rem;	background-color: #f5f9fe;}
.about-wh .list{ margin-top: 0.867rem; display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between; }
.about-wh .list .item{	background-color: #ffffff;    box-shadow: 0rem 0.033rem 0.133rem 0.033rem rgba(102, 102, 102, 0.2); border-bottom: 0.133rem solid #00408f; text-align: center; width: 23.72%; padding: 0.6rem 0.5rem 0.3rem;}
.about-wh .list .item .t1{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: center; margin-bottom: 0.3rem; line-height: 1;}
.about-wh .list .item .t1 .icon{ width: 0.7rem; margin-right: 0.333rem;}
.about-wh .list .item .t1 .text{ text-align: left;}
.about-wh .list .item .t1 .text .en{	font-size: 0.333rem; color: #444; text-transform: uppercase;}
.about-wh .list .item .t1 .text .cn{	font-size: 0.333rem; color: #444; font-weight: bold; margin-top: 0.15rem;}
.about-wh .list .item>p{	font-size: 0.333rem; margin-top: 0.433rem;}

.cy1{ padding: 0.667rem 0 1.433rem;}
.cy1 .body{}
.cy2{ padding: 1.133rem 0 1.583rem; 	background-color: #f5f9fe;}
.cy2 .body{ margin-top: 0.2rem;display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: flex-start;  flex-wrap: wrap; }
.cy2 .body .item{ background: #fff; width: 20%; text-align: center; border: 1px solid #e7e7e7; border-right: 0;
    padding: 0.75rem 0.25rem 0.7rem;transition: all 0.3s}
.cy2 .body .item:nth-child(5n){ border-right: 1px solid #e7e7e7;}
.cy2 .body .item:nth-child(5n)~.item{ border-top: 0}
.cy2 .body .item p{	font-size: 0.333rem; margin-top: 0.233rem; line-height: 1;	color: #333333;}
.cy2 .body .item:hover{	    box-shadow: 2px -1px 8px -4px rgba(63,63,63,0.6);transition: all 0.3s;
    position: relative;}

.cy3{ padding: 1rem 0 1.333rem;}
.cy3 .body{ margin-top: 0.2rem;display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;  }
.cy3 .body .tc-right{ padding-top: 0.3rem; width: 45.72%; flex-shrink: 0}
.cy3 .body .tc-left{ flex-grow: 1; min-width: 0; padding-right: 1.5rem;}
.cy3 .body .tc-left .st{	font-size: 0.333rem; color: #000; margin-bottom: 0.233rem;}
.cy3 .body .tc-left .st span{	font-size: 0.3rem; margin-right: 6px;	font-style: italic;	letter-spacing: 0.017rem;
    color: #00408f;}
.cy3 .body .tc-left .sd{	font-size: 0.267rem; line-height: 1.8;	color: #595757; margin-bottom: 0.3rem;}

.cy4{ padding: 1.1rem 0 1.133rem;	background-color: #f5f9fe;}
.cy4 .st{	font-size: 0.333rem; color: #000; margin-bottom: 0.233rem;}
.cy4 .st span{	font-size: 0.3rem; margin-right: 6px;	font-style: italic;	letter-spacing: 0.017rem;
    color: #00408f;}
.cy4 .sd{	font-size: 0.267rem; line-height: 1.8;	color: #595757; margin-bottom: 0.3rem;}
.cy4 .img-list{ text-align: justify;display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;}
.cy4 .img-list img:nth-child(1){ margin-right: 0.35rem }
.cy4 .img-list img{ flex-grow: 1; min-width: 0 }

.cy5{ padding: 1.417rem 0 1.083rem;}
.cy5 .st{	font-size: 0.333rem; color: #000; margin-bottom: 0.233rem;}
.cy5 .st span{	font-size: 0.3rem; margin-right: 6px;	font-style: italic;	letter-spacing: 0.017rem;
    color: #00408f;}
.cy5 .sd{	font-size: 0.267rem; line-height: 1.8;	color: #595757; margin-bottom: 0.3rem;}
.cy5 .img-list{ text-align: justify;display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: center; margin-top: 1.417rem;}
.cy5 .img-list img:nth-child(1){ margin-right: 1rem }
.cy6{ padding: 1.083rem 0 1rem;	background-color: #f5f9fe;}
.cy6 .mxw-box{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;}
.cy6 .st{	font-size: 0.333rem; color: #000; margin-bottom: 0.233rem;}
.cy6 .st span{	font-size: 0.3rem; margin-right: 6px;	font-style: italic;	letter-spacing: 0.017rem;
    color: #00408f;}
.cy6 .sd{	font-size: 0.267rem; line-height: 1.8;	color: #595757; margin-bottom: 0.3rem;}
.cy6 .img{ margin-top: 0.917rem;}
.cy6 .mxw-box .tc-right{ width: 50%;}
.cy6 .mxw-box .tc-left{ width: 50%; padding-right: 1.5rem;}

.cy7{ padding: 1.25rem 0;}
.cy7 .mxw-box{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;}
.cy7 .st{	font-size: 0.333rem; color: #000; margin-bottom: 0.233rem;}
.cy7 .st span{	font-size: 0.3rem; margin-right: 6px;	font-style: italic;	letter-spacing: 0.017rem;
    color: #00408f;}
.cy7 .sd{	font-size: 0.267rem; line-height: 1.8;	color: #595757; margin-bottom: 0.3rem;}
.cy7 .img{ margin-top: 0.917rem;}
.cy7 .tc-left{ width: 46.8%}
.cy7 .tc-right{ width: 40.1%}

.cy8{ padding: 1.083rem 0 1.333rem;background-color: #f5f9fe;}
.cy8 .mxw-box{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between;}
.cy8 .mxw-box .tc-right{ width: 48.5%;flex-shrink: 0}
.cy8 .mxw-box .tc-left{ flex-grow: 1; min-width: 0; padding-right: 2rem}
.cy8 .st{	font-size: 0.333rem; color: #000; margin-bottom: 0.233rem;}
.cy8 .st span{	font-size: 0.3rem; margin-right: 6px;	font-style: italic;	letter-spacing: 0.017rem;
    color: #00408f;}
.cy8 .sd{	font-size: 0.267rem; line-height: 1.8;	color: #595757; margin-bottom: 0.3rem;}

.ls1{  padding: 1rem 0 1.5rem;}
.ls1 .body{ padding-top: 0.833rem; border-top: 1px solid #dedddd;
    display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;
}
.ls1 .body .item{ text-align: center; width: 4.2rem;}
.ls1 .body .item img{ width: 1.383rem;}
.ls1 .body .item .st{	font-size: 0.333rem;	color: #333333; margin: 0.2rem auto 0.9rem; line-height: 1;}
.ls1 .body .item .desc{	font-size: 0.267rem;	color: #595757; line-height: 1.8}

.ls2{	background-color: #f5f9fe; padding: 1.133rem 0 0.833rem;}
.ls2-cate{ display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: center; padding-bottom: 0.3rem; border-bottom: 1px solid #d6d9dd}
.ls2-cate .item{	font-size: 0.3rem;  	letter-spacing: 1px;
    color: #000000; margin: 0 1.167rem;}
.ls2-cate .item.active{	color: #003f8e;}
.ls2-swiper{ overflow: hidden; margin-top: 0.8rem;}
.ls2-swiper .swiper-slide{ display: flex; align-items: center; justify-content: space-between;}
.ls2-swiper .swiper-slide .tc-right{ width: 48.9%; flex-shrink: 0;}
.ls2-swiper .swiper-slide .tc-left{ flex-grow: 1; min-width: 0; padding-right: 1.833rem;}
.ls2-swiper .swiper-slide .tc-left .desc{	font-size: 0.267rem; line-height: 2.2}
.ls2-swiper .swiper-slide .tc-left .desc img{ width: 0.417rem; margin-right: 0.333rem;}

.ls3{ padding: 1.75rem 0 1.25rem;}
.ls3 .tc-title2 .desc{	font-size: 0.267rem;	color: #595757; line-height: 1.8;}
.ls3-swiper{ overflow: hidden; margin: 1.033rem auto 0; max-width: 1300px; width: 90%;}
#certify  .swiper-slide {
    width: 702px;
}
#certify  .swiper-slide img{
    display:block;
}
#certify .swiper-pagination {
    position: initial; margin-top: 0.833rem;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: #003f8e;
    opacity: 0.2;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: #003f8e; opacity: 1;
}



footer{	background-image: linear-gradient(180deg,
rgba(23, 184, 231, 0.39) 0%,
rgba(17, 80, 155, 0.39) 100%),
linear-gradient(
        #04408d,
        #04408d);
    background-blend-mode: normal,
    normal; padding-top: 0.533rem;}
.tc-link{ }
.tc-link .mxw-box{ border-bottom: 1px solid #629ac2;display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;padding-bottom: 0.45rem;
    font-size: 0.233rem;	color: #fefefe;}
.tc-link .mxw-box .title{ flex-shrink: 0;}
.tc-link .mxw-box .list{ flex-grow: 1; min-width: 0}

footer .con{ padding: 0.417rem 0 0.917rem;}
footer .con .mxw-box{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between; color: #fff;}
footer .con .mxw-box .tc-left{ width: 34%; flex-shrink: 0; padding-right: 1.5rem;}
footer .con .mxw-box .tc-right{ width: 15.5%; flex-shrink: 0}
footer .con .mxw-box .center{ flex-grow: 1; min-width: 0}
footer .con .mxw-box .tc-left .title{	font-size: 0.5rem;	color: #fefefe; font-weight: bold}
footer .con .mxw-box .tc-left .title .en{	font-size: 0.367rem;	font-family: Impact,sans-serif;	color: #fefefe;
    opacity: 0.4; font-weight: normal ; margin-left: 0.2rem;}
footer .con .mxw-box .tc-left .st{	font-size: 0.233rem;	color: #fefefe; margin-top: 0.433rem;
    opacity: 0.73;}
footer .con .mxw-box .tc-left .st img{ width: 0.567rem; margin-right: 0.267rem;}
footer .con .mxw-box .tc-left .num{	letter-spacing: 1px;
    color: #fefefe;	font-size: 0.467rem; font-weight: bold; margin-top: 0.2rem;}
footer .con .mxw-box .tc-left .text{	font-size: 16px;	color: #fefefe;
    opacity: 0.7; margin-top: 0.367rem; line-height: 2;}
footer .con .mxw-box .tc-right{ text-align: center; padding-left: 1.367rem;}
footer .con .mxw-box .tc-right .ewm p{	font-size: 0.267rem;	color: #fefefe; margin-top: 0.333rem;}
footer .con .mxw-box .tc-right .list{ margin-top: 0.417rem;display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;}
footer .con .mxw-box .tc-right .list .item>img{ width: 0.5rem;}
footer .con .mxw-box .center{display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between; padding: 0 1.5rem; border-right: 1px solid #6188b5; border-left: 1px solid #6188b5}
footer .con .mxw-box .center .title{	font-size: 16px; font-weight: bold;
    margin-bottom: 0.333rem;}
footer .con .mxw-box .center p a{	font-size: 14px; color: #fff; opacity: 0.8; line-height: 2.1}





#map{ height: 445px; font-size: 14px;
    margin-top: 0.4rem;}


@media screen and (max-width: 1800px) {


}

@media screen and (max-width: 1760px) {

}

















body{ overflow-x: hidden}




.mxw-copy{ 	background-color: #003476;}
.mxw-copy .mxw-box{ padding: 10px 0; line-height: 1.6;	font-size: 14px; color: #fff;  text-align: center;  }
.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 ;}



@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 ==================== */


/* ==================== 新闻详情 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 {
font-size: 14px; line-height: 1.6;
    }
    .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: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}

    .tc-pro{ padding: 45px 0}
    .tc-title .en img{ height: 22px;}
    .tc-title .cn{ font-size: 22px;}
    .tc-title .cn::after{ height: 2px; width: 30px; margin: 8px auto 10px;}
    .tc-title .desc{ font-size: 14px;}
    .tc-pro .body{ margin-top: 25px; flex-wrap: wrap}
    .tc-pro .body .item{ flex-wrap: wrap}
    .tc-pro .body .item .tc-left{ width: 100%;}
    .tc-pro .body .item:first-child .tc-left{ border-radius: 14px 14px 0 0;}
    .tc-pro .body .item .tc-right{ width: 100%; padding: 15px 20px 30px;}
    .tc-pro .body .item:first-child .tc-right{ border-radius: 0;}
    .tc-pro .body .item:nth-child(2n) .tc-left{ order: 0}
    .tc-pro .body .item .tc-right img{ height: 22px;}
    .tc-pro .body .item .tc-right .title{ font-size: 20px; margin: 10px auto 15px;}
    .tc-pro .body .item .tc-right .desc{ font-size: 16px;}
    .tc-pro .body .item .tc-right .c-more{ font-size: 14px; margin-top: 25px; }
    .tc-pro .body .item .tc-right .c-more img{ height: 18px;}
    .tc-pro .body .item.end2 .tc-right{    border-radius: 0 0 14px 14px;}
    .tc-pro .body .item.end2 .tc-left{ border-radius: 0}
    .tc-prj{ padding: 45px 0}
    .prj-cate{ flex-wrap: wrap; margin: 25px auto 15px; justify-content: space-between}
    .prj-cate .item{ font-size: 15px; padding: 8px 15px; margin:0; width: 48.5% }
    .prj-cate .item:nth-child(2n)~.item{ margin-top: 10px;}
    .prj-swiper .swiper-slide{ flex-wrap: wrap;}
    .prj-swiper .swiper-slide .tc-left{ width: 100%;}
    .prj-swiper .swiper-slide .tc-right{ padding: 20px 0 0}
    .prj-swiper .swiper-slide .tc-right .icon{ width: 55px;}
    .prj-swiper .swiper-slide .tc-right .title{ font-size: 22px; margin: 15px auto 25px;}
    .prj-swiper .swiper-slide .tc-right .desc{ font-size: 14px;}
    .more-c{ font-size: 14px; padding: 12px 25px; margin-top: 20px; letter-spacing: 0}
    .more-c img{ height: 12px;}

    .tc-gn{ padding: 45px 0;}
    .gn-cate-bg{ margin-top: 25px;}
    .gn-cate-swiper{}
    .gn-cate{ align-items: stretch;}
    .gn-cate .swiper-slide p{ font-size: 14px; margin-top: 10px;}
    .gn-cate-bg{ padding: 0 25px;}
    .gn-cate .swiper-slide .icon{width: 30px;}
    .gn-cate .swiper-slide{padding: 0 10px 10px; height: 100%}
    .gn-swiper{ margin-top: 20px;}
    .gn-swiper .swiper-slide{ flex-wrap: wrap; }
    .gn-swiper .swiper-slide .tc-left{ width: 100%; padding: 0; font-size: 14px; line-height: 1.6; order: 1;}
    .gn-swiper .swiper-slide .tc-left b{font-size: 18px; margin-bottom: 10px;}
    .gn-swiper .swiper-slide .tc-right{ width: 100%; margin-bottom: 15px;}

    .tc-about{ padding: 45px 0 100px;

        background: url(../images/about-bg.jpg) center bottom #f5f8fd no-repeat;
         background-size: 100% auto;
    }
    .tc-about .body{ padding: 0; margin-top: 25px; font-size: 14px;}
    .tc-about .list{ margin-top: 25px; flex-wrap: wrap; justify-content: space-between}
    .tc-about .list .item{ width: 23.5%; margin-right: 0}
    .tc-about .list .item .icon{ width: 80px; max-width: 100%; margin: 0 auto}
    .tc-about .list .item p{ font-size: 14px; margin-top: 10px;}


    .tc-brand .mxw-box{ padding: 45px 0}
    .tc-brand .mxw-box .body{ margin-top: 25px; flex-wrap:wrap; justify-content: space-between}
    .tc-brand .mxw-box .body .item{ width: 48.5%; margin: 0}
    .tc-brand .mxw-box .body .item .image{ border-radius: 8px;}
    .tc-brand .mxw-box .body .item p{ padding: 15px 10px; font-size: 14px;}
    .tc-brand .mxw-box .body .item:nth-child(2n)~.item{ margin-top: 15px;}

    .tc-news{ padding: 45px 0}
    .news-cate{ margin: 25px auto 15px; justify-content: space-between}
    .news-cate .item{ font-size: 15px; padding: 8px 10px; margin: 0; width: 31.5%; text-align: center;}
    .news-swiper .swiper-slide{ flex-wrap: wrap;}
    .news-swiper .swiper-slide .tc-left{ width: 100%}
    .news-swiper .swiper-slide .tc-left .image{ border-radius: 12px;}
    .news-swiper .swiper-slide .tc-left .tim{ font-size: 12px; margin: 10px auto 15px;}
    .news-swiper .swiper-slide .tc-left .title{ font-size: 16px;}
    .news-swiper .swiper-slide .tc-left .desc{ font-size: 14px; margin-top: 10px;}
    .news-swiper .swiper-slide .tc-right{ padding: 0}
    .news-swiper .swiper-slide .tc-right .item{ margin-top: 15px; padding: 0 0 10px}
    .news-swiper .swiper-slide .tc-right .item .date .day{ font-size: 20px;}
    .news-swiper .swiper-slide .tc-right .item .date .mon{ font-size: 14px;}
    .news-swiper .swiper-slide .tc-right .item .text{ margin-left: 15px;}
    .news-swiper .swiper-slide .tc-right .item .text .t1{ font-size: 16px;}
    .news-swiper .swiper-slide .tc-right .item .text .t2{ font-size: 14px; margin-top: 10px;}
    .news-swiper .swiper-slide .tc-right .item .text .cico{ width: 25px; margin-top: 10px;}
    .news-swiper .swiper-slide .tc-right .item .date{ padding-top: 20px;}
    .news-swiper .swiper-slide .tc-right .item .date .mon{ margin-top: 10px;}

    footer{ padding-top: 45px;}
    .tc-link{ display: none}
    footer .con{ padding: 0 0 45px;}
    footer .con .mxw-box .center{ display: none}
    footer .con .mxw-box{ flex-wrap: wrap;}
    footer .con .mxw-box .tc-left{ width: 100%; padding: 0}
    footer .con .mxw-box .tc-left .title{ font-size: 18px;}
    footer .con .mxw-box .tc-left .title .en{ font-size: 14px; margin-left: 10px;}
    footer .con .mxw-box .tc-left .st{ margin-top: 15px; font-size: 14px;}
    footer .con .mxw-box .tc-left .st img{ width: 28px; margin-right: 10px;}
    footer .con .mxw-box .tc-left .num{ font-size: 22px; margin-top: 10px;}
    footer .con .mxw-box .tc-left .text{ margin-top: 15px; font-size: 14px;}

    footer .con .mxw-box .tc-right{ width: 100%; padding: 0;}
    footer .con .mxw-box .tc-right{ text-align: center; margin-top: 20px;}
    footer .con .mxw-box .tc-right .ewm{ width: 135px;}
    footer .con .mxw-box .tc-right .ewm p{ font-size: 14px; margin-top: 10px;}
    footer .con .mxw-box .tc-right .list{ width: 120px;}
    footer .con .mxw-box .tc-right .list .item>img{ width: 25px}
    body{ font-size: 14px; margin-bottom: 0}

    .cy1{ padding: 45px 0}
    .tc-title2 .cn{ font-size: 22px;}
    .tc-title2 .en{ font-size: 12px; margin-top: 10px;}
    .tc-title2 .en::after{ width: 35px; height: 2px; margin: 10px auto 15px;}
    .cy2{ padding: 45px 0}
    .cy2 .body .item p{ font-size: 14px; margin-top: 5px;}
    .cy2 .body .item{ padding: 15px 10px; }
    .cy2 .body .item img{ width: 30px;}

    .cy3{ padding: 45px 0}
    .cy3 .body{ margin-top: 25px; flex-wrap: wrap;}
    .cy3 .body .tc-left{ padding: 0; }
    .cy3 .body .tc-left .st{ font-size: 16px; margin-bottom: 8px;}
    .cy3 .body .tc-left .sd{ font-size: 14px; margin-bottom: 10px;}
    .cy3 .body .tc-right{ width: 100%}

    .cy4{ padding: 45px 0}
    .cy4 .st{ font-size: 16px; margin-bottom: 8px;}
    .cy4 .sd{ font-size: 14px; margin-bottom: 10px;}

    .cy5{ padding: 45px 0}
    .cy5 .st{ font-size: 16px; margin-bottom: 8px;}
    .cy5 .sd{ font-size: 14px; margin-bottom: 10px;}
    .cy5 .img-list{ margin-top: 20px;}
    .cy5 .img-list img{
        width: 50%;}
    .cy5 .img-list img:nth-child(1){ margin-right: 0}


    .cy6{ padding: 45px 0}
    .cy6 .st{ font-size: 16px; margin-bottom: 8px;}
    .cy6 .sd{ font-size: 14px; margin-bottom: 10px;}
    .cy6 .mxw-box{ flex-wrap: wrap;}
    .cy6 .mxw-box .tc-left{ width: 100%; padding: 0}
    .cy6 .mxw-box .tc-right{ width: 100%; padding: 0; margin-top: 25px;}
    .cy6 .img{ margin-top: 15px;}
    .cy6 .mxw-box .tc-left img{ width: 75%}


    .cy7{ padding: 45px 0}
    .cy7 .st{ font-size: 16px; margin-bottom: 8px;}
    .cy7 .sd{ font-size: 14px; margin-bottom: 10px;}
    .cy7 .mxw-box{ flex-wrap: wrap;}
    .cy7 .mxw-box .tc-left{ width: 100%; padding: 0}
    .cy7 .mxw-box .tc-right{ width: 100%; padding: 0; margin-top: 25px;}
    .cy7 .mxw-box .tc-left img{ width: 75%}
    .cy7 .mxw-box .tc-right img{ width: 75%}
    .cy7 .img{ margin-top: 15px;}

    .cy8{ padding: 45px 0}
    .cy8 .mxw-box{  flex-wrap: wrap;}
    .cy8 .mxw-box .tc-left{ padding: 0; }
    .cy8 .mxw-box .tc-left .st{ font-size: 16px; margin-bottom: 8px;}
    .cy8 .mxw-box .tc-left .sd{ font-size: 14px; margin-bottom: 10px;}
    .cy8 .mxw-box .tc-right{ width: 100%}

    .ls1{ padding: 45px 0}
    .ls1 .body{ padding-top: 25px; justify-content: space-between; flex-wrap: wrap;}
    .ls1 .body .item{ width: 48.5%;}
    .ls1 .body .item img{ width: 50px;}
    .ls1 .body .item .st{ font-size: 18px; margin: 10px auto 15px;}
    .ls1 .body .item .desc{ font-size: 14px;}
    .ls1 .body .item:nth-child(2n)~.item{ margin-top: 20px;}

    .ls2{ padding: 45px 0}
    .ls2-cate{ padding-bottom: 12px; margin-top: 25px; justify-content: space-between;  flex-wrap: wrap;}
    .ls2-cate .item{ font-size: 15px; width: 48.5%; margin: 0}
    .ls2-swiper{ margin-top: 15px;}
    .ls2-swiper .swiper-slide{ flex-wrap: wrap;}
    .ls2-swiper .swiper-slide .tc-left{ padding: 0; font-size: 14px;}
    .ls2-swiper .swiper-slide .tc-left .st{ font-size: 16px;}
    .ls2-swiper .swiper-slide .tc-left .desc{ font-size: 14px;}
    .ls2-swiper .swiper-slide .tc-left .desc img{ margin-right: 10px; width: 20px;}

    .ls2-swiper .swiper-slide .tc-right{ width: 100%; margin-top: 15px;}

    .ls3{ padding: 45px 0}
    .ls3 .tc-title2 .desc{ font-size: 14px;}
    .ls3-swiper{ margin: 25px auto 0;}
    #certify .swiper-slide{ width: 240px}
    #certify .swiper-pagination{ margin-top: 15px;}

    #certify .swiper-pagination-bullets .swiper-pagination-bullet{ width: 10px; height: 10px;}

    .case-page{ padding: 45px 0}
    .case-page .mxw-box .list-case{ margin-top: 0; flex-wrap:wrap; justify-content: space-between}
    .case-page .mxw-box .list-case .item{ width: 48.5%; margin: 0}
    .case-page .mxw-box .list-case .item .image{ border-radius: 8px;}
    .case-page .mxw-box .list-case .item p{ padding: 15px 10px; font-size: 14px;}
    .case-page .mxw-box .list-case .item:nth-child(2n)~.item{ margin-top: 15px;}
    .ab-top{margin-top: 45px;}
    .ab-top .top{ padding: 15px 25px; flex-wrap: wrap; justify-content: space-between}
    .ab-top .top .item{ padding: 0 15px; width: 50%;}
    .ab-top .top .item .icon{ width: 45px; margin-bottom: 10px;}
    .ab-top .top .item p{ font-size: 14px;}
    .ab-top .top .item:nth-child(2n)~.item{ margin-top: 15px;}
    .ab-top .top .item:nth-child(2n){ border: 0}
    .ab-kk{ margin-top: 45px;}
    .ab-kk .body{ flex-wrap: wrap;}
    .ab-kk .body .tc-left{ font-size: 14px; line-height: 1.6}
    .ab-kk .body .tc-right{
        width: 100%;
        margin: -25px 0 0; padding: 0 25px;
    }

    .about-wh{ padding: 45px 0}
    .about-wh .list{ margin-top: 25px; flex-wrap: wrap;}
    .about-wh .list .item{ width: 48.5%; padding: 15px;}
    .about-wh .list .item:nth-child(2n)~.item{ margin-top: 15px;}
    .about-wh .list .item:nth-child(2n)~.item{ margin-top: 15px;}
    .about-wh .list .item .t1 .icon{ width: 30px; flex-shrink: 0; margin-right: 10px;}
    .about-wh .list .item .t1 .text .en{ font-size: 14px;}
    .about-wh .list .item .t1 .text .cn{ font-size: 15px; margin-top: 5px;}
    .about-wh .list .item>p{ padding-top: 10px; font-size: 14px; margin-top: 0}
    .about-wh .list .item .t1{ margin-bottom: 10px;}











    .ny-news-desc .title{ font-size: 18px}
}







