@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 {

}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 20px;
    bottom: 10%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 1101px) {
    #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: 1101px) {
    .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: 1101px) {
    .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: inline-block;
    margin: 4px;
}
.mxw-pagination   a.current,
.mxw-pagination   a:hover {
    background-color: #000;
    color: #fff !important;
}
.mxw-pagination   a:first-child {
    margin-left: 0;
}
.mxw-pagination   a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 1101px) {
    .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: 60px;
}
.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: 0px 30px;
    margin-right: 54px;
    line-height: 40px;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #0d5bc1;
    color: #fff;
}
@media screen and (max-width: 1101px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #f9f9f9;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #0d5bc1;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #0d5bc1;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    width: 65px;
    height: 44px;
    background-color: #0d5bc1;
    border-radius: 0px 5px 5px 0px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;

}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 1101px) {
    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: 1100px;
        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: 1.383rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: none;
    outline: none;

}
.mxw-banner .swiper-button-next::after,
.mxw-banner .swiper-button-prev::after {
    font-size: 0.667rem;
    color: #0d5bc1;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 0.4rem;
    /* 设置按钮大小 */
}

@media screen and (max-width: 1101px) {
    .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: 18px;
    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: 1101px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {

        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {

    }
}
@media screen and (max-width: 1101px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 1101px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:36px;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#0d5bc1;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 1101px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 1101px) {
    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.967rem;}
.top-box .logo-box .t-logo{ margin: 0.117rem auto 0.117rem 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: #0d5bc1; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; opacity: 0.4 }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;overflow:visible;}
.mxw-link .mxw-link-list{color:#333;position:absolute;top:0;left:0;width:100%;transform:translateY(-100%);padding:0.167rem 0;display:none; background: #fff;}
.mxw-link .mxw-link-list a{font-size:0.233rem;line-height:1.8;}
.mxw-link .title{font-size:0.3rem;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:0.267rem;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{

}
header .welcome {
    background: #f8f8f8;
    line-height: 0.7rem;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:rgba(255,255,255,.6);
    height: 100%;

}
header .welcome .left {
    font-size: 0.233rem;
    line-height: 1.2;
    color: #333333;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 0.233rem;
    color:#777777;

}


.top-box{ align-items: stretch;}
.top-box .right{ padding-left: 3rem; flex-grow: 1; min-width: 0;}



.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}
.x-menu > li {
    margin: 0;
    text-align: center;
    float: none;
    position: relative;
    flex-grow: 1;
    min-width: 0;

}

.x-menu > li > a {
    font-size: 0.3rem;
    color: #000000;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    position: relative;
    line-height: 1.2;
}

.x-menu > li > a:hover {
    color: #000000;
}
.x-menu>li.active{ color: #000000; }
.x-menu > li.active > a {
    color: #0067AF; 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% + 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: left;
    font-size: 0.233rem;
    color: #333;
    line-height: 1.5;
    padding: 5px 10px;
    align-content: center;
}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#0067af;
}

.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>a>img{ height: 0.417rem;}
.x-menu > li.se-box .box{ position: absolute; right: -25px;     top: calc(100% + 10px);    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    -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: 65px;
    height: 40px; color: #fff; cursor: pointer; font-size: 14px;
    background-color: #0067AF;
    border-radius: 0px 9px 9px 0px;}
.x-menu > li.se-box .box form .ke{ font-size: 0.267rem; 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: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    right: 66px;
    margin-left: -10px;
    z-index: 99;
}
.x-menu > li.se-box:hover .box{    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);}

.ny-cate{ border-bottom: 1px solid #cccccc; }
.ny-cate .mxw-box{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between;}
.ny-cate .mxw-box .tc-right{ padding: 0.367rem 0; font-size: 0.267rem; color: #4f4e4e}
.ny-cate .mxw-box .tc-right img{ height: 0.25rem; margin-right: 0.2rem;}
.ny-cate .mxw-box .tc-right .hom{ color: #a9a9a9}
.ny-cate .mxw-box .tc-left{ display: flex;  display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: flex-start; }
.ny-cate .mxw-box .tc-left .item{ height: 100%;  display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex;  align-items: center;	font-size: 0.267rem; 	color: #4f4e4e; margin:0 0.267rem;border-bottom: 0.033rem solid transparent; flex-shrink: 0}
.ny-cate .mxw-box .tc-left .item:first-child{ margin-left: 0}
.ny-cate .mxw-box .tc-left .item.active{  color: #000; font-weight: bold; border-bottom: 0.033rem solid #0067AF;}
.ny-cate .mxw-box .tc-left .item span{padding: 0 0.2rem; font-size: 0.267rem; }
.ny-cate .mxw-box .tc-left>span{ color: #cccccc}
.ny-cate .mxw-box .tc-left>span:last-child{display: none }
.ny-cate .se-box form{display: flex;  display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: flex-end; margin-top: 0.267rem; height: 0.833rem;}
.ny-cate .se-box form .ke{	border: solid 0.017rem #ced4da; height: 100%;
    width: 4.267rem;	font-size: 0.233rem;	color: #6c6c6c; padding: 0.167rem;}
.ny-cate .se-box form .su{width: 1.083rem;
    height: 0.833rem; border: 0.017rem; cursor: pointer;
    background-color: #0067AF;
    border-radius: 0rem 0.15rem 0rem 0rem;}

.about-page{ padding: 1.583rem 0 2.5rem;}
.about-page>.mxw-box{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;}
.about-page>.mxw-box .tc-left{ width:35%; flex-shrink: 0; min-width: 0;}
.about-page>.mxw-box .tc-left .en{	font-size: 0.267rem;	color: #333333; text-transform: uppercase; font-weight: bold;}
.about-page>.mxw-box .tc-left .cn{	font-size: 0.467rem;	color: #333333; margin-top: 0.25rem}
.about-page>.mxw-box .tc-left .cn::after{	width: 1rem;
    height: 0.1rem;
    background-color: #0067AF; display: block; content: ""; margin-top: 0.7rem;}
.about-page>.mxw-box .tc-left .list{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between; margin-top: 1.4rem;}
.about-page>.mxw-box .tc-left .list .item{ width: 33%}
.about-page>.mxw-box .tc-left .list .ico img{ height: 1rem;}
.about-page>.mxw-box .tc-left .list .num{ display: inline-block;	font-size: 0.833rem; margin: 0.38rem auto 0.38rem 0; font-weight: bold; line-height: 1;}
.about-page>.mxw-box .tc-left .list .num sub{ position: initial; line-height: 1; display: inline-block;    vertical-align: bottom;}
.about-page>.mxw-box .tc-left .list p{ font-size: 0.233rem}

.about-page>.mxw-box .tc-right{ flex-grow: 1; min-width: 0; margin-left: 3.333rem}
.about-page>.mxw-box .tc-right .st{	font-size: 0.5rem; font-weight: bold;	color: #333333;}
.about-page>.mxw-box .tc-right .desc{	font-size: 0.3rem; 	color: #333333;  margin-top: 0.833rem; line-height: 2}


.pro-page{ padding: 1.2rem 0 1.667rem;}
.pro-page>.mxw-box{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: flex-start;}
.pro-page>.mxw-box .tc-left{ width:270px; flex-shrink: 0; margin-right: 1.167rem}
.pro-page>.mxw-box .tc-left .pro-tt{ text-align: center;	background-color: #0067AF;   padding: 0.3rem 0;
    border-radius: 0.15rem 0.15rem 0rem 0rem;	font-size: 0.367rem; color: #fff; font-weight: bold;}
.pro-page>.mxw-box .tc-right{ flex-grow: 1; min-width: 0;}
.pro-page>.mxw-box .tc-right .item .st{	background-color: #0067AF; padding: 0.2rem;	color: #ffffff; font-size: 0.283rem; text-align: center}
.pro-page>.mxw-box .tc-left .list{	background-color: #f7f7f7; padding: 0.583rem 0;border-right: 2px solid #e3e1e1;}
.pro-page>.mxw-box .tc-left .list .item{     }
.pro-page>.mxw-box .tc-left .list .item>.ca{ display: block; padding: 0.25rem 0; margin-right: -2px  }
.pro-page>.mxw-box .tc-left .list .item .xt{ display: block; height: 1px; margin: 0 0.433rem; background: #dedede; }

.pro-page>.mxw-box .tc-left .list .item>.ca p{ font-size: 0.3rem; font-weight: bold;	color: #333333; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between; margin: 0 0.433rem; }
.pro-page>.mxw-box .tc-left .list .item>.ca p::after{ width: 6px; height: 10px; background: url("../images/se-ico.png") center no-repeat; background-size: 100%; content: "";  flex-shrink: 0; cursor: pointer;
    margin-left: 0.25rem}
.pro-page>.mxw-box .tc-left .list .item>.ca>a{ flex-grow: 1; min-width: 0; color: #333}
.pro-page>.mxw-box .tc-left .list .item.active>.ca{ border-right: 2px solid #0067AF;}
.pro-page>.mxw-box .tc-left .list .item.active>.ca a{ color: #0067AF}

.pro-page>.mxw-box .tc-left .list .item>.ca:hover a{ color: #0067AF}
.pro-page>.mxw-box .tc-left .list .item.active>.ca p::after{ transform: rotate3d(0,0,1,90deg);}



.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav{ display: none; }
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li>.cac{ margin-top: -1px;     display: block;
    padding: 0.25rem 0;
    margin-right: -2px;}
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li>.cac>p{font-size: 0.267rem; 	color: #333333; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between; margin: 0 0.433rem;}
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li>.cac>p::after{width: 6px; height: 10px; background: url("../images/se-ico.png") center no-repeat; background-size: 100%; content: "";  flex-shrink: 0; cursor: pointer;
    margin-left: 0.25rem}
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li.clicked>.cac>p::after{ transform: rotate3d(0,0,1,90deg);}
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li.clicked>.cac>p{ color: #0067AF; font-weight: bold}
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li.clicked>.cac{border-right: 2px solid #0067AF;}



.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li >a{ display: flex; align-items: center; justify-content: space-between;	font-size: 0.267rem;
    color: #666;}
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li.clicked >a{color: #0067AF}
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li:hover >a{color: #0067AF}
.pro-page>.mxw-box .tc-left .pro-dd{
    background-color: #0067AF;	height: 1.067rem;
    border-radius: 0rem 0rem 0.15rem 0.15rem;}
.pro-page>.mxw-box .tc-left .list .item.active .xypg-left-subnav{ display: block}
.xypg-left-threenav{ display: none}
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li.clicked .xypg-left-threenav{ display: block}


.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li .xypg-left-threenav>li{padding: 0 0.47rem ; margin-top: -1px; color: #6c6c6c; margin-right: -2px;}
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li .xypg-left-threenav>li.clicked{ border-right: 2px solid #0067AF; }
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li .xypg-left-threenav>li>a{ font-size: 0.233rem; color: #555; display: block; padding: 0.25rem 0; border-bottom: 0.017rem solid #dedede; }
.pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li.clicked .xypg-left-threenav>li.clicked>a{ color: #0067AF; font-weight: bold}
.pro-page>.mxw-box .tc-left .list .item>.xypg-left-subnav>li>a.ca::after{ width: 6px; height: 10px; background: url("../images/se-ico.png") center no-repeat; background-size: 100%; content: "";  flex-shrink: 0; cursor: pointer; opacity: 0.5;
    margin-left: 0.25rem}

.pro-page>.mxw-box .tc-left .list .item>.xypg-left-subnav>li.clicked>a.ca::after{transform: rotate3d(0, 0, 1, 90deg);}


.bra-page{ padding: 1.2rem 0 1.667rem;}
.brand-list .item{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  align-items: stretch; justify-content: space-between;}
.brand-list .item .tc-left{ width: 41.375%; flex-shrink: 0;border-radius: 0rem 1.633rem 0rem 0rem; margin-right: 1.167rem;}
.brand-list .item .tc-right{ flex-grow: 1;min-width: 0;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; flex-direction: column;}
.brand-list .item .tc-right .st{font-size: 0.833rem; font-weight: bold;	color: #262626;}
.brand-list .item .tc-right .desc{	font-size: 0.267rem; 	color: #333333; margin-top: 0.433rem; line-height: 2; margin-bottom: 0.5rem;}
.brand-list .item .tc-right .d-box{ margin-top: 0; margin-bottom: 0; }
.brand-list .item .tc-right .list{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; margin-top: 0.583rem;}
.brand-list .item .tc-right .tit{	font-size: 0.3rem;	color: #262626; font-weight: bold;}
.brand-list .item .tc-right .list .ap{ text-align: center; margin-right: 2.5%; width: 18%; }

.brand-list .item .tc-right .list .ap:last-child{ margin-right: 0}
.brand-list .item .tc-right .list .ap .mxw-image{border-radius: 9px;
    border: solid 1px #dddddd;}
.brand-list .item .tc-right .list .ap .t1{	font-size: 0.267rem; color: #333; margin-top: 4px;line-height: 1.6}
.brand-list .item .tc-right .list .ap .t2{	font-size: 0.267rem; 	color: #999999;line-height: 1.6}
.brand-list .item:nth-child(1)~.item{ margin-top: 2rem;}
.brand-list .item:nth-child(2n) .tc-left{ order: 1; margin-right: 0;    margin-left: 1.167rem;}

.news-page{ padding: 1.2rem 0 1.667rem;}
/*.news-page .mxw-box{
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: stretch;
    justify-content: flex-start;
}*/
.news-page .news-list .item{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  align-items: stretch; justify-content: space-between;}
.news-page .news-list .item .mxw-image{ flex-shrink: 0; width: 25%;}
.news-page .news-list .item:nth-child(1)~.item{ margin-top: 0.75rem;}
.news-page .news-list .item .date{ padding:0 0.6rem 0 1.25rem ; flex-shrink: 0; text-align: center; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  flex-direction: column; justify-content: flex-start; margin-top: 0.633rem; }
.news-page .news-list .item .date p{	font-size: 0.8rem;	color: #0067AF;}
.news-page .news-list .item .date .mon{	font-size: 0.4rem; color: #0067AF}
.news-page .news-list .item .right{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  align-items: stretch;	box-shadow: 0px 0px 3px 0px
rgba(0, 0, 0, 0.13); padding-right: 1rem; transition: all 0.3s; }
.news-page .news-list .item .right .con{ padding: 0.52rem 0 0.6rem;}
.news-page .news-list .item .right .con h3{	font-size: 0.333rem;	color: #0067AF;}
.news-page .news-list .item .right .con .info{	font-size: 0.267rem;	color: #969696; margin: 0.3rem auto 0.433rem; line-height: 1.8}
.news-page .news-list .item .right .con span{	font-size: 0.233rem;color: #0067AF;}
.news-page .news-list .item:hover .right{background-color: #0067AF;}
.news-page .news-list .item:hover .right h3{ color: #fff;}
.news-page .news-list .item:hover .right .info{ color: #fff;}
.news-page .news-list .item:hover .right .mon{ color: #fff;}
.news-page .news-list .item:hover .right span{ color: #fff;}
.news-page .news-list .item:hover .right .date p{ color: #fff;}

.cont-page{ padding: 1.2rem 0 1.667rem;}
.wm23 .item{ text-align: center; width: 2.867rem;	font-size: 0.267rem;}
.wm23 .item p{ margin-top: 0.167rem;}

footer{	background-color: #eeeeee; padding-top: 1rem;}
footer .d-up{ position: relative;
    padding: 0 0 0.4rem;  align-items: center}

footer .d-up::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #5bd5ba, #5baed3);
}
footer .d-up .mxw-box{
    display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: space-between; color: #333;
}
footer .d-up .st{ font-weight: bold; flex-shrink: 0;	font-size: 0.3rem; margin-right: 2rem; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: flex-start; align-items: center; }
footer .d-up .st>img{ max-height: 0.72rem; margin-right: 0.333rem;}
footer .d-up .st .cn{ font-size: 0.3rem}
footer .d-up .st .en{ font-size: 0.2rem; font-weight: normal; margin-top: 0.05rem;}
footer .d-up .d-menu{ flex-shrink:0;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between;}
footer .d-con{ margin-top: 0.75rem;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between; padding-bottom: 0.867rem; align-items: center}
footer .d-up .d-menu a{ margin-left: 1rem}
footer .d-con .tc-left{ width: 50%}
footer .d-con .tc-left .d-tel .st{ line-height: 1;	font-size: 0.267rem; font-weight: bold;	color: #1572d9; margin-bottom: 0.4rem;}
footer .d-con .tc-left .d-tel .st img{ height: 0.283rem; margin-right: 0.167rem;}
footer .d-con .tc-left .d-tel .num{	font-size: 0.5rem; color: #333;line-height: 1;}
footer .d-con .tc-left .d-cont{	font-size: 0.3rem;	color: #333; line-height: 1.5;  font-weight: bold}
footer .d-con .tc-right .list .item{	width: 2.667rem; text-align: center;	color: #333;}
footer .d-con .tc-right .list .item p{ margin-top: 0.167rem;}

.tc-about{ text-align: center; padding: 2.733rem 0 1.75rem; background: url("../images/a1.jpg") right bottom no-repeat; background-size: cover;}
.tc-about .st{text-align: left;font-size: 0.767rem;font-weight: bold;color: #fff;line-height: 1}
.tc-about .desc{font-size: 0.333rem;margin-top: 0.333rem;color: #fff;line-height: 1;font-weight: bold;text-align: left;}
.tc-about .desc::after{
    width: 0.6rem;
    height: 0.067rem;
    display: block;
    margin: 0.433rem auto 0.5rem 0;
    background-color: #ffffff;
    content: "";
}

.tc-about .desc2{font-size: 0.267rem;line-height: 2;padding: 0;color: #fff;text-align: left;}
.tc-about .list{margin-top: 0.6rem;display: flex;display: -webkit-flex;display: -moz-flex;display: -ms-flex;align-items: stretch;justify-content: flex-start;padding: 0;}
.tc-about .list .item{text-align: center;width: 25%;margin-right: 30px;display: flex;display: -webkit-flex;display: -moz-flex;display: -ms-flex;align-items: flex-start;justify-content: flex-start;flex-direction: column;}
.tc-about .list .item .icon img{ height: 0.933rem;}
.tc-about .list .item .num{font-size: 0.633rem;font-weight: bold;color: #fff;line-height: 1;margin-top: 0.217rem;}
.tc-about .list .item .num span{ display: inline-block}
.tc-about .list .item .num sub{ position: initial; display: inline-block; line-height: 1;    vertical-align: bottom;}
.tc-about .list .item>p{font-size: 0.233rem;color: #fff;margin-top: 0.167rem;}
.tc-about .a-more{
    background-color: #ffffff;
    padding: 0.22rem 0.633rem;
    line-height: 1;
    transition: all 0.3s;
    border-radius: 0.417rem;
    margin-top: 1rem;
    display: inline-block;
}
.tc-about .a-more:hover{ color: #fff; background: #0067AF; transition: all 0.3s}

.tc-pro{ padding: 1.867rem 0 0; background: url("../images/pro-bg.jpg") bottom no-repeat; background-size: 100% auto;}
.tc-pro .up{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between; }
.tc-pro .up .cn{ font-weight: bold;	font-size: 0.71rem; line-height: 1; margin-top: 0.35rem; 	color: #333333;}
.tc-pro .up .en{ text-transform: uppercase;font-family: 宋体,sans-serif; letter-spacing: 2px;	font-size: 0.367rem; line-height: 1; 	color: #333333;}
.tc-pro .up .p-more{	border: solid 1px #dbdbdb;
    border-radius: 0.417rem;	font-size: 0.267rem; margin-top: 0.267rem;	color: #444444; padding: 0.22rem 0.6rem;transition: all 0.3s}
.tc-pro .up .p-more:hover{ color: #fff; background: #0067AF; transition: all 0.3s}
.tc-pro .body{ margin-top: 0.7rem; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between;}
.tc-pro .body .tc-left{ width: 34.1%; flex-shrink: 0;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; flex-direction: column; justify-content: space-between; }
.tc-pro .body .tc-right{ flex-grow: 1; min-width: 0; margin-left: 0.9rem; position: relative;}
.tc-pro .body .tc-right .swiper-button-next{ right: -50px;}
.tc-pro .body .tc-right .swiper-button-prev{ left: -50px;}
.tc-pro .body .tc-left .pro-cate{ margin-top: 0.8rem;}
.tc-pro .body .tc-left .pro-cate .item{ display: block;	font-size: 0.3rem; line-height: 2.4}
.pro-swiper{ overflow: hidden; position: relative;}
.pro-swiper .swiper-wrapper .item{ padding: 0.533rem 0.7rem 0.7rem 0.6rem;	background-color: #ffffff; display: block;
    box-shadow: 0px 2px 10px 0px
    rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    border: solid 1px rgba(0, 0, 0, 0.1);  margin-bottom: 1.2rem;}
.pro-swiper .swiper-wrapper .item .st{ font-weight: bold;	font-size: 0.3rem;	color: #000000;}
.pro-swiper .swiper-wrapper .item .st::after{	width: 0.533rem;
    height: 0.117rem;
    background-color: #126bc9; display: block; content: ""; margin-top: 0.25rem;}
.pro-swiper .swiper-wrapper .item .desc{ line-height: 1.8;	font-size: 0.233rem; height: 1.267rem;	 color: #969696; margin-top: 0.417rem; margin-bottom: 0.833rem;}
.pro-swiper .swiper-wrapper .item .mxw-image{	border: solid 1px #d2d2d2;}
.pro-swiper .swiper-wrapper .rpt{ background: url("../images/dy-png.png") bottom no-repeat; background-size: 100% 1.2rem ;}
.tc-pro .body .tc-left .pro-cate .item img{ visibility: hidden; margin-left: 10px; vertical-align: middle}
.tc-pro .body .tc-left .pro-cate .item.active,.tc-pro .body .tc-left .pro-cate .item:hover{	color: #126bc9;}
.tc-pro .body .tc-left .pro-cate .item.active img,.tc-pro .body .tc-left .pro-cate .item:hover img{ visibility:visible}
.tc-pro .body .tc-left .pg{ margin-bottom: 1.6rem; text-align: left; }
.tc-pro .body .tc-left .pg .swiper-button-prev,.tc-pro .body .tc-left .pg .swiper-button-next{ display: inline-block; position: initial; margin-top: 0;
    width: 0.867rem;height: 0.867rem; opacity: 1}
.tc-pro .body .tc-left .pg .swiper-button-prev::after,.tc-pro .body .tc-left .pg .swiper-button-next::after{ display: none}

.tc-app{  position: relative;}
.tc-app .mxw-box{ position: absolute; left: 0; right: 0;padding-top: 3.75rem; padding-bottom: 2.7rem; top: 0; z-index: 1;
    display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  color: #fff; align-items: flex-start}
.tc-app .mxw-box .tc-left{ width: 36.2%; flex-shrink: 0;}
.tc-app .mxw-box .tc-right{ flex-grow: 1; min-width: 0; margin-left: 1.5rem;}
.tc-app .mxw-box .tc-left .cn{ font-weight: bold;	font-size: 0.71rem; line-height: 1; margin-top: 0.35rem; 	color: #fff;}
.tc-app .mxw-box .tc-left .en{ text-transform: uppercase;font-family: 宋体,sans-serif; letter-spacing: 1px;	font-size: 0.367rem; line-height: 1; 	color: #fff;}
.tc-app .mxw-box .tc-left .desc{font-size: 0.3rem; color: #fff; line-height: 2; margin-top: 1.1rem}
.tc-app .mxw-box .tc-left .a-more{ color: #333;	background-color: #ffffff; padding: 0.267rem 0.633rem; line-height: 1.1;transition: all 0.3s;
    border-radius: 0.417rem;  margin-top: 1.467rem;	font-size: 0.267rem;
    display: inline-block;}
.tc-app .mxw-box .tc-left .a-more:hover{ color: #fff; background: #0067AF; transition: all 0.3s}
.tc-app .mxw-box .tc-right{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: space-between; flex-wrap: wrap; }
.tc-app .mxw-box .tc-right .item{width: 33%;
    height: 2.667rem; text-align: center;}
.tc-app .mxw-box .tc-right .item .con{ width: 2.667rem; margin: 0 auto;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; border-radius: 50%; transition: all 0.3s;}
.tc-app .mxw-box .tc-right .item .con img{ height: 1.167rem}
.tc-app .mxw-box .tc-right .item .con P{ margin-top: 0.25rem;}
.tc-app .mxw-box .tc-right .item:hover .con{	background-color: #0b4dbd;}

.app-cate-swiper{ width: 100%; overflow: hidden}

.tz{ text-align: center;  width: 100% }
.tz .swiper-button-prev,.tz .swiper-button-next{ display: inline-block; position: initial;
    width: 0.867rem;height: 0.867rem; opacity: 1;margin: 0.417rem 0.25rem 0;}
.tz .swiper-button-prev::after,.tz .swiper-button-next::after{ display: none}
.tz .swiper-button-prev img{ transform: rotate3d(0,1,0,180deg)}

.tc-news{ padding: 2.7rem 0 1.333rem;}
.tc-news .up{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between; }
.tc-news .up .cn{ font-weight: bold;	font-size: 0.71rem; line-height: 1; margin-top: 0.35rem; 	color: #333333;}
.tc-news .up .en{ text-transform: uppercase;font-family: 宋体,sans-serif; letter-spacing: 2px;	font-size: 0.367rem; line-height: 1; 	color: #333333;}
.tc-news .up .p-more{	border: solid 1px #dbdbdb;
    border-radius: 0.417rem;	font-size: 0.267rem; margin-top: 0.267rem;	color: #444444; padding: 0.22rem 0.6rem;}
.tc-news .up .p-more:hover{ color: #fff; background: #0067AF; transition: all 0.3s}
.tc-news .body{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: stretch; margin-top: 1rem;}
.tc-news .body .tc-left{ width: 32.3%; flex-shrink: 0;}
.tc-news .body .tc-right{ margin-left: 0.533rem; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; flex-wrap: wrap; align-items: flex-start}
.tc-news .body .tc-left .item{ padding: 1.333rem 0.917rem 2rem 0.833rem; background: url("../images/nl-bg.png") center no-repeat; background-size: cover; height: 100%}
.tc-news .body .tc-left .item .ct{background-color: #80b6e5;
    border-radius: 0.433rem;	font-size: 0.3rem;	color: #ffffff; padding: 0.2rem 0.35rem; display: inline-block;
    border: solid 2px rgba(255, 250, 233, 0.4);}
.tc-news .body .tc-left .item .tim{	font-size: 0.3rem; margin-top: 1.2rem; color: #fff;	}
.tc-news .body .tc-left .item .st{	font-size: 0.333rem; margin-top: 0.833rem; margin-bottom: 0.6rem;color: #fff;}
.tc-news .body .tc-left .item .cz{ padding-top: 0.867rem; border-top: 1px solid #49b0f1;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between;
    font-size: 0.233rem; color: #fff; }
.tc-news .body .item{	background-color: #ffffff;
    box-shadow: 0rem 0rem 0.167rem 0rem
    rgba(0, 0, 0, 0.1); display: block;
    border-radius: 0.333rem;}
.tc-news .body .item .tim{	font-size: 0.3rem;}
.tc-news .body .tc-right .item{ padding: 0.6rem 0.917rem 0.67rem 0.867rem ; width: 48.5%; margin-right: 3%; transition: all 0.3s}
.tc-news .body .tc-right .item:nth-child(2n){ margin-right: 0}
.tc-news .body .tc-right .item .st{	font-size: 0.333rem; color: #666; margin-top: 0.5rem; margin-bottom: 0.4rem;}
.tc-news .body .tc-right .item .cz{ padding-top: 0.8rem; border-top: 1px solid #e0e0e0;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between;
    font-size: 0.233rem; color: #333333; }
.tc-news .body .tc-right .item:nth-child(2n)~.item{ margin-top: 0.35rem;}
.tc-news .body .tc-right .item:hover{ background: url("../images/nr-bg.png") center no-repeat; background-size: cover;}
.tc-news .body .tc-right .item:hover .st{	color: #ffffff;}
.tc-news .body .tc-right .item:hover .cz{	color: #ffffff;}
.tc-news .body .tc-right .item:hover .tim{	color: #ffffff;}



#index-main-swiper {
    height: 100vh;
}

#index-main-swiper>.swiper-wrapper>.swiper-slide {
    height: 100vh;
}
.mxw-banner {
    font-size: 0;
    position: relative;
    height: calc(100vh - 1.167rem) !important;
    margin-top: 1.167rem;    line-height: 0;
}
.mxw-banner .banner-swiper{ height: 100%}
.tc-about{display: flex;display: -webkit-flex;display: -ms-flex;align-items: center;padding-top: 1.8rem;}
.tc-about .mxw-box{text-align:left;padding-right: 40%;}
.app-swiper{ height: 100%}
.app-swiper>.swiper-wrapper>.swiper-slide{ height: 100%}
.app-swiper>.swiper-wrapper>.swiper-slide img{ visibility: hidden;}

#foot-slide{ height: auto !important;}
.mxw-banner .swiper-slide{ height: 100%}


.brand-list.wh .item .tc-right .st{ font-size: 0.5rem}




.mxw-copy{	line-height: 1.8; background: #204e7d; }
.mxw-copy .mxw-box{  padding: 0.333rem 0; 	font-size: 0.233rem; color: #fff;  text-align: center; border-top: 1px solid rgba(208, 208, 208, 0.3);}
.mxw-copy .mxw-box a{font-size: 0.233rem; color: #fff; }
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; color: #fff;}



.xypg-left-news{ margin-top: 0.5rem;}
.xypg-left-box {
    margin-bottom: 0.5rem;
}

.xypg-left-title {
    background: #0067AF;
    padding: 0.167rem 0.333rem;
    position: relative;
}

.xypg-left-title h3 {
    font-size: 0.333rem;
    color: #ffffff;
    line-height: 30px;
    font-weight: bold;
    position: relative;
    z-index: 9;
}

.xypg-left-title i {
    position: absolute;
    left: -5px;
    top: -9px;
    font-style: normal;
    font-size: 67px;
    font-weight: bold;
    opacity: .1;
    color: #fff;
    line-height: 1;
    z-index: 1;
    text-transform: uppercase;
}

.xypg-left-title span {
    font-weight: normal;
    font-size: 0.267rem;
    color: #fff;
    opacity: .6;
    margin-left: 10px;
    text-transform: capitalize;
}

.xypg-left-title span:before {
    content: "/";
    padding-right: 5px;
}

.xypg-left-con {
    border: 1px solid #d2d2d2;
    border-top: none;
}

.latest-news {
    padding: 10px 0;
}

.latest-news li {
    padding: .5em 1em;
    font-size: 0.233rem;
}

.latest-news li a {
    display: block;
    line-height: 1.2;
    color: #5a5a5a;
}

.latest-news li a:before {
    content: '+';
    font-weight: bold;
    margin-right: 5px;
    font-size: 16px;
}

.latest-news li a:hover {
    color: #0067AF;
}

.latest-news li a:hover:before {
    color: #0067AF;
}
.page-wrap-contact {
    padding: 10px 0;
    font-size: 0.233rem;
}

.page-wrap-contact h4 {
    padding: .3em 1.4em .8em 1.4em;
    font-size: 16px; text-align: left;
    color: #000000;
}

.page-wrap-contact p {
    border-top: 1px solid #eee;
    position: relative;
    margin-bottom: 0;
    padding: .8em 1.4em;
    color: #2f2f2f;
}

.lg_x_t{

    background: #0067AF;

    color: #fff;

    text-indent: 1em;

    font-size: 0.3rem;

    padding: 0.25rem 0;
    font-weight: bold;
}
.pro_b{ margin-top: 1rem}
.pro_b ul{ display: flex; display: -webkit-flex; display: -ms-flex; display: -moz-flex; flex-wrap: wrap; justify-content: flex-start; align-items: stretch; padding-top: 0.25rem;}
.pro_b ul li{ width: 32%; margin-right: 2%}
.pro_b ul li:nth-child(3n){ margin-right: 0}
.pro_b ul li:nth-child(3n)~li{ margin-top: 0.417rem;}
.pro_b ul li p{ text-align: center; font-size: 0.267rem; margin-top: 5px;}


.ny-product-desc .bottom .desc table{width:100% !important;font-size:0.233rem;margin-top:0.083rem;margin-bottom:0.25rem;color:#505459; display: block; overflow-y: hidden;  height: auto;}
.ny-product-desc .bottom .desc table th,
.ny-product-desc .bottom .desc table td{border:1px solid #ddd !important;padding: 8px !important;}
.ny-product-desc .bottom .desc table td p{line-height:1.8!important;}
.ny-product-desc .bottom .desc table tr:hover{background-color:#f2f2f2!important;}
.ny-product-desc .bottom .desc table tr:nth-child(2n-1){background-color:#fff ;}
.ny-product-desc .bottom .desc table tr:nth-child(2n){background-color:#fdfdfd ;}
.ny-product-desc .bottom .desc table tr:first-child{background-color: #0067AF !important; color: #fff !important;}
.ny-product-desc .bottom .desc table tbody{ display: table; table-layout: fixed; min-width: 100%}

.ny-news-desc .article  table{width:100% !important;font-size:0.233rem;margin-top:0.083rem;margin-bottom:0.25rem;color:#505459; display: block; overflow-y: hidden;  height: auto;}
.ny-news-desc .article  table th,
.ny-news-desc .article  table td{border:1px solid #ddd !important;padding: 8px !important;}
.ny-news-desc .article  table td p{line-height:1.8!important;}
.ny-news-desc .article  table tr:hover{background-color:#f2f2f2!important;}
.ny-news-desc .article  table tr:nth-child(2n-1){background-color:#fff ;}
.ny-news-desc .article  table tr:nth-child(2n){background-color:#fdfdfd ;}
.ny-news-desc .article  table tr:first-child{background-color: #0067AF !important; color: #fff !important;}
.ny-news-desc .article  table tbody{ display: table; table-layout: fixed; min-width: 100%}



.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 ;}

.ny-product-desc .bottom .desc table a:hover{color: #0067AF;}

/* ==================== 新闻详情 start ==================== */
.ny-news-desc {


}
.ny-news-desc > .mxw-box {

}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 0.45rem;
    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: 1101px) {
    .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 ==================== */

/* ==================== 产品详情页 start ==================== */
.ny-product-desc {
    overflow: hidden;
}
.ny-product-desc .product-image {
    width: 44%;
    margin-right: 3%;
    flex-shrink: 0;
    position: relative;
    z-index: 9;
}
.ny-product-desc .product-image img {
    width: 100%;
}
.ny-product-desc .product-desc {
    width: 53%;
}
.ny-product-desc .product-desc .title {
    font-size: 0.4667rem;
    padding-bottom: 0.3333rem;
    border-bottom: 0.0167rem solid #ddd;
    margin-bottom: 0.3333rem;
    font-weight: bold;
    color: #49b0f1;
}
.ny-product-desc .product-desc .desc {
    word-break: break-all;
    font-size: 0.3rem;
    color: #666;
    line-height: 1.8;
}
.ny-product-desc .bottom {
    margin-top: 0.6667rem;
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.easyzoom-flyout img {
    max-width: inherit!important;
    width: auto!important;
}
@media screen and (max-width: 1200px) {
    .ny-product-desc {
        padding: 0;
    }
    .ny-product-desc .product-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        pointer-events: none;
    }
    .ny-product-desc .product-desc {
        width: 100%;
    }
    .ny-product-desc .product-desc .title {
        font-size: 18px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .ny-product-desc .top {
        flex-flow: column;
    }
    .ny-product-desc .product-desc .desc {
        font-size: 14px;
    }
    .ny-product-desc .bottom {
        margin-top: 15px;
    }
}
/* ==================== 产品详情页 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ny-product-desc .big-swiper {
    border: 1px solid #ccc; border-radius: 15px;
}
.ny-product-desc .ny-product-image {
    width: 38%;
    flex-shrink: 0;
    margin-right: 5%;
}



.ny-product-desc .right {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;
}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.5667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;
    max-width: 10rem;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
    max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
    cursor: pointer;
    border: 1px solid #eee; background: #fff;
    border-radius: 0.0833rem;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #ccc;
}
.ny-product-desc .small-image .swiper-button-disabled {
    opacity: 1;
}
.ny-product-desc .small-image .swiper-button-next:after,
.ny-product-desc .small-image .swiper-button-prev:after {
    font-size: 0.4667rem;
    color: #fff;
}
.ny-product-desc .small-image .swiper-button-next {
    right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
    left: 0rem;
}
.ny-product-desc .bottom {
    margin-top: 0.8333rem;

}
.ny-product-desc .bottom .head {
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    border-bottom: 1px solid #e2e2e2;
}
.ny-product-desc .bottom .head .text1 {
    cursor: pointer;
    font-size:0.333rem;
    color: #fff;
    background: #0067AF; padding: 3px 12px;
}
.ny-product-desc .bottom .head .text1.active{  }
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;

}





@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {

    }
    .ny-product-desc .top {
        align-items: stretch;
    }
}
@media screen and (max-width: 1480px) {
    .ny-product-desc .mxw-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 100%;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {

    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 20px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }
}
/* ==================== 内页 - 产品详情 end ==================== */



.pro-swiper>.swiper-wrapper{    flex-direction: row; align-items: stretch}
.pro-swiper .swiper-slide .rpt{ height: 100%}

.ny-product-desc .bottom .head .text2.active{ font-size: 0.3rem;}
#toolbar li.cf a{ width: 57px;}
#toolbar li.cf a .wz{ line-height: initial;width: 57px; height: 57px; padding: 10px; text-align: center;}
#toolbar li.cf:hover a{ width: 57px}


@media screen and (max-width: 1860px) {
    .news-page .news-list .item .right .con{    padding: 0.5rem 0 0.6rem;}
    .news-page .news-list .item .mxw-image{ width: 27%}
}


@media screen and (max-width: 1440px) {
    .top-box{ width: 90%; max-width: 90%;}
    footer .d-up .st{ margin-right: 1.5rem}
    .pro-page>.mxw-box .tc-left{ width: 5rem}
    .ny-product-desc .bottom .desc table th, .ny-product-desc .bottom .desc table td{ font-size: 0.267rem ;}
    .news-page .news-list .item .mxw-image{ width: 30%}
    .news-page .news-list .item .right .con{        padding: 0.4rem 0 0.5rem;}

}
@media screen and (max-width: 1366px) {
    .ny-product-desc .bottom .desc span{ font-size: 0.267rem !important;}
    .ny-product-desc .bottom .desc p strong{ font-size: 0.267rem !important;}
    html{font-size: 50px !important;}
    .ny-product-desc .bottom .desc table th, .ny-product-desc .bottom .desc table td{ font-size: 0.233rem ;}
    footer .d-up .st{ margin-right: 0.5rem}
    footer .d-up .d-menu a{ margin-left: 0.6rem}
    .news-page .news-list .item .mxw-image{ width: 30%}
    .news-page .news-list .item .date{    padding: 0 0.5rem 0 0.8rem}
}


/* ==================== 页面具体样式 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 ==================== */
.table-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 100%;
}

.table-row {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.table-th,
.table-td {
    text-align: left;
    padding: 10px 15px;
    box-sizing: border-box;
    min-height: 40px;
    white-space: pre-wrap;
}

.table-th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
}





@media screen and (max-width: 1100px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    body{ margin-top: 0; margin-bottom: 0}

    .mxw-mob-nav{position: fixed; top: 0; left: 0; right: 0; z-index: 99;     background: #fff;

    }
    .mxw-mob-nav .head{ box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1);}
    #index-main-swiper>.swiper-wrapper>.swiper-slide{ height:100vh}
    .mxw-banner{ height: 100% !important; width: 100%; margin-top: 0}
    #index-main-swiper{ height: 100vh !important;}
    .banner-swiper2{ height: 100%; overflow: hidden; background-size: cover}
    #index-main-swiper > .swiper-wrapper {
        flex-flow: column;
        height: auto;
    }
    #index-main-swiper>.swiper-wrapper>.swiper-slide {
        display: flex; align-items: center; flex-direction: column; justify-content: center;
    }
    .mxw-banner {
        font-size: 0;
        position: relative;
        margin-top: 0;
    }
    .mxw-banner .swiper-pagination{ bottom: 15%;}
    .tc-about{ padding-top: 45px}
    .app-swiper{ height: auto}
    .app-swiper>.swiper-wrapper>.swiper-slide{ height: auto}


    #foot-slide{ height: auto !important;}



    .tc-about{ padding: 100px 0 80px}
    .tc-about .st{ font-size: 22px;}
    .tc-about .desc{ font-size: 16px; margin-top: 15px}
    .tc-about .desc::after{ margin: 15px auto 25px 0;}
    .tc-about .desc2{ padding: 0; font-size: 14px; margin: 25px auto}
    .tc-about .list{ margin-top: 35px; padding: 0; margin-bottom: 15px}
    .tc-about .list .item .icon img{ height: 35px;}
    .tc-about .list .item .num{ margin-top: 10px; font-size: 30px;}
    .tc-about .list .item>p{ font-size: 14px; margin-top: 10px;}

    .tc-about .a-more{ margin-top: 30px; font-size: 14px; padding: 12px 25px;}
    .tc-pro{  padding: 100px 0 80px;}
    .tc-pro .up .en{ font-size: 16px;}
    .tc-pro .up .cn{ font-size: 22px; margin-top: 5px;}
    .tc-pro .up .p-more{ margin-top: 5px; font-size: 14px; padding: 8px 25px;}
    .tc-pro .body{ margin-top: 25px; flex-wrap: wrap}
    .tc-pro .body .tc-left{ width: 100%;}
    .tc-pro .body .tc-left .pro-cate{ margin-top: 0; flex-wrap: wrap; justify-content: space-between; display: flex;        align-items: flex-start;}
    .tc-pro .body .tc-left .pro-cate .item{ font-size: 14px; width: 48.5%; line-height: 1.4}
    .tc-pro .body .tc-left .pro-cate .item:nth-child(2)~.item{ margin-top: 15px}
    .tc-pro .body .tc-left .pro-cate .item.active img{ height: 6px;}
    .tc-pro .body .tc-left .pro-cate .item img{ display: none}
    .tc-pro .body .tc-left .pg{ display: none}
    .tc-pro .body .tc-right{ margin-left: 0; margin-top: 30px;}
    .pro-swiper .swiper-wrapper .item .desc{ height: auto;}

    .pro-swiper .rpt{ width: 100%; margin-top: 0 !important}
    .pro-swiper .swiper-slide{ justify-content: space-between;padding: 1px}
    .pro-swiper .swiper-wrapper .item{ border-radius: 10px; padding: 15px; margin-bottom: 0}
    .pro-swiper .swiper-wrapper .item .st{ font-size: 16px;}
    .pro-swiper .swiper-wrapper .item .st::after{ height: 2px; margin-top: 15px; margin-bottom: 10px}
    .pro-swiper .swiper-wrapper .item .desc{ font-size: 12px; margin: 5px auto 15px;}
    .tc-app{ display: flex; flex-direction: column; height: auto;}
    .tc-app .mxw-box{ padding-top: 100px; flex-wrap: wrap; padding-bottom: 80px; display: flex; flex-direction: column; justify-content: center; height: 100%}
    .tc-app .mxw-box .tc-left{ width: 100%; color: #333; }
    .tc-app .mxw-box .tc-left .en{ font-size: 16px;color: #fff}
    .tc-app .mxw-box .tc-left  .cn{ font-size: 22px; margin-top: 5px;color: #fff}
    .tc-app .mxw-box .tc-left .desc{ margin-top: 20px; font-size: 14px; line-height: 1.6;color: #fff}
    .tc-app .mxw-box .tc-left .a-more{ border: 1px solid #ccc; margin-top: 20px; font-size: 14px; padding: 8px 26px;}
    .tc-app .mxw-box .tc-right{ width: 100%; margin-left: 0; flex-shrink: 0; flex-grow: initial;}
    .tc-app .app-swiper{ height: 100%; width: 100%}
    .tc-app .app-swiper .swiper-slide img{  width: initial; max-width: 300%}
    .tc-app .app-swiper .swiper-slide{ display: flex; align-items: center; justify-content: center; height: 100%}
    .tc-app .mxw-box .tc-right{ margin-top: 35px;}
    .tc-app .mxw-box .tc-right .item{ height: auto;}
    .tc-app .mxw-box .tc-right .item .con{ width: 100%;}
    .tc-app .mxw-box .tc-right .item .con P{ font-size: 14px; margin-top: 10px;}
    .tc-app .mxw-box .tc-right .item .con img{ height: 40px;}
    .tc-app .mxw-box .tc-right .item:nth-child(3)~.item{ margin-top: 20px;}

    .tc-pro{    background-size: 100% 25%;}

    .tc-news{ padding: 90px 0 40px;}
    .tc-news .up .en{ font-size: 14px;}
    .tc-news .up .cn{ margin-top: 10px; font-size: 22px;}
    .tc-news .up .p-more{ font-size: 14px; padding: 8px 26px;}
    .tc-news .body{ margin-top: 25px; flex-wrap: wrap;}
    .tc-news .body .tc-left{ width: 100%;}
    .tc-news .body .tc-left .item{ padding: 15px 20px; border-radius: 15px;}
    .tc-news .body .tc-left .item .ct{ padding: 8px 26px; font-size: 14px;}
    .tc-news .body .tc-left .item .tim{ font-size: 14px; margin-top: 25px;}
    .tc-news .body .tc-left .item .st{ font-size: 16px; margin: 15px auto 20px;}

    .tc-news .body .tc-left .item .cz{ padding-top: 15px;}
    .tc-news .body .tc-right{ margin-top: 15px;margin-left: 0}
    .tc-news .body .tc-right .item{ margin-right: 0; width: 100%; padding: 15px 20px;}
    .tc-news .body .item .tim{ font-size: 14px;}
    .tc-news .body .tc-right .item .st{ font-size: 16px; margin: 10px auto 15px;}
    .tc-news .body .tc-right .item .cz{ padding-top: 15px;}
    .tc-news .body .tc-right .item:nth-child(1)~.item{ margin-top: 20px;}

    footer{ padding-top: 45px;}
    footer .d-up{ padding: 15px 0; display: none}
    footer .d-con{ margin-top: 0; flex-wrap: wrap;}
    footer .d-con .tc-left{ width: 100%;}
    footer .d-con .tc-left .d-tel .st img{ height: 16px; margin-right: 0;}
    footer .d-con .tc-left .d-tel .st{ font-size: 16px; margin-bottom: 10px;}
    footer .d-con .tc-left .d-tel .num{ font-size: 26px;}

    footer .d-con .tc-left .d-cont{ margin-top: 20px; font-size: 14px;}
    footer .d-con .tc-right{ margin-top: 20px;}
    footer .d-con .tc-right .list .item{ width: 150px;}
    footer .d-con .tc-right .list .item p{ font-size: 14px; margin-top: 5px;}
    footer .d-con{ padding-bottom: 45px;}
    footer .d-con{ font-size: 14px; padding: 10px 0; line-height: 1.6}
    .ny-cate .mxw-box .tc-right{ display: none}
    .ny-cate .mxw-box .tc-left{ width: 100%;flex-wrap: wrap;}
    .ny-cate .mxw-box .tc-left .item{ margin-right: 0; padding: 15px 5px;}

    .about-page{ padding: 45px 0;}
    .about-page>.mxw-box{ flex-wrap: wrap;}
    .about-page>.mxw-box .tc-left{ width: 100%;}
    .about-page>.mxw-box .tc-left .en{ font-size: 14px;}
    .about-page>.mxw-box .tc-left .cn{ font-size: 20px; margin-top: 5px;}
    .about-page>.mxw-box .tc-left .cn::after{ margin-top: 10px; height: 2px;}
    .about-page>.mxw-box .tc-left .list{ margin-top: 25px; width: 100%; justify-content: space-around}
    .about-page>.mxw-box .tc-left .list .item{ text-align: center;}
    .about-page>.mxw-box .tc-left .list .ico img{ height: 36px;}
    .about-page>.mxw-box .tc-left .list .num{ font-size: 25px; margin: 10px auto;}
    .about-page>.mxw-box .tc-right{ width: 100%; margin-left: 0;}
    .about-page>.mxw-box .tc-right .st{ font-size: 18px; margin-top: 25px;}
    .about-page>.mxw-box .tc-right .desc{ font-size: 14px; line-height: 1.6; margin-top: 20px;}
    .ny-cate .se-box form .ke{ border: 1px solid #ccc; padding: 8px 12px; width: 235px; font-size: 14px; }
    .pro-page{ padding: 45px 0;}

    .pro-page>.mxw-box{ flex-wrap: wrap;}
    .pro-page>.mxw-box .tc-left{ width:100%; }
    .pro-page>.mxw-box .tc-left .pro-tt{ font-size: 20px; padding: 15px 20px; }
    .pro-page>.mxw-box .tc-left .list{ padding: 20px 0}
    .pro-page>.mxw-box .tc-right .item .st{ font-size: 14px; padding: 8px 10px;}
    .pro-page>.mxw-box .tc-left .list .item.active>.ca{ padding: 10px 0}
    .pro-page>.mxw-box .tc-left .list .item>.ca p{ font-size: 16px;}
    .pro-page>.mxw-box .tc-left .list .item>.ca{padding: 10px 0}
    .pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav{ padding: 0 40px; display: none; justify-content: space-between; flex-wrap: wrap}
    .pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav li{ width: 100%;}
    .pro-page>.mxw-box .tc-left .pro-dd{ height: 20px;}
    .pro-page>.mxw-box .tc-right{ margin-top: 25px; margin-bottom: 60px; font-size: 14px;}
    .bra-page{ padding: 45px 0}
    .brand-list .item{ flex-wrap: wrap;}
    .brand-list .item .tc-left{ width: 100%; margin-right: 0;border-radius: 0rem 50px 0rem 0rem;}
    .brand-list .item .tc-right .st{ font-size: 22px; margin-top: 10px;}
    .brand-list .item .tc-right .desc{ margin: 10px auto 20px;}
    .brand-list .item .tc-right .list{ margin-top: 10px; flex-wrap: wrap;}
    .brand-list .item .tc-right .list .ap{ width: 31%; margin-right: 2%}
    .brand-list .item .tc-right .list .ap:nth-child(3n){ margin-right: 0}
    .brand-list .item .tc-right .list .ap:nth-child(3n)~.ap{ margin-top: 15px;}
    .brand-list .item .tc-right .list .ap .t1{font-size: 14px;}
    .brand-list .item .tc-right .list .ap .t2{ font-size: 12px;}
    .brand-list .item:nth-child(1)~.item{ margin-top: 30px;}
    .brand-list .item:nth-child(2n) .tc-left{ order: -1}
    .brand-list .item:nth-child(2n) .tc-left{ margin-left:0 }

    .news-page{ padding: 45px 0;}
    .news-page .item{ flex-wrap: wrap; width: 100%}
    .news-page .item .mxw-image{ width: 46%;}
    .news-page .item .right{ padding-right: 0; width: 54%; padding-left: 2%}
    .news-page .item .date{ display: none}
    .news-page .item .right .con{ width: 100%; padding: 5px 0;}
    .news-page .item .right .con h3{ font-size: 14px;}
    .news-page .item .right .con .info{ font-size: 12px; margin: 5px auto 5px; line-height: 1.6;}
    .news-page .item .right .con span{ font-size: 12px;line-height: 1;}
    .news-page .item:nth-child(1)~.item{ margin-top: 15px;}
    .h23_box1{ margin-bottom: 60px;}
    .wh1250{ width: 95% !important; padding: 0 !important; }
    .map23{ margin-top: 40px !important;}

    .pro-page>.mxw-box .tc-left .list .item .xt{ margin: 0 24px;}
    .pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav{ padding: 0 10px;}
    .pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li>.cac{ padding: 10px 0}
    .pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li>.cac>p{ font-size: 14px;}
    .pro-page>.mxw-box .tc-left .list .item .xypg-left-subnav>li .xypg-left-threenav>li>a{ font-size: 14px; padding: 10px 0}
    .ny-product-desc .bottom span{         }
    .ny-product-desc .bottom .head .text1{ font-size: 18px;}
    .ny-product-desc .bottom p{ line-height: 1.6 !important;}
    .pro-page>.mxw-box .tc-right{ margin-bottom: 0}
    .mxw-ny-box{  padding: 0}

    /*.ny-product-desc .bottom table {
        overflow-x: auto;
        font-size: 12px !important;
        display: flex;
        flex-wrap: wrap;
    }
    .ny-product-desc .bottom tbody {
        display: table;
        table-layout: fixed;
        width: 1200px;
    }*/


    body{ margin-bottom: 0}
    .ny-product-desc .bottom .desc table th, .ny-product-desc .bottom .desc table td{ font-size: 14px;padding: 4px !important;line-height: 1.5;}
    .ny-product-desc .bottom .desc span{ font-size: 14px !important; }
    .ny-product-desc .bottom .head .text2.active{ font-size: 16px; line-height: 2}
    .ny-product-desc .bottom .desc table{ font-size: 13px;}
    .n-banner{ margin-top: 60px;}
    .ny-product-desc .bottom .desc p strong,.ny-product-desc .bottom .desc span{ font-size: 16px !important;}
    .ny-product-desc .bottom .desc table th span, .ny-product-desc .bottom .desc table td span{font-size: 14px !important;      }

    .tc-news .body .tc-left .item .ct{ font-size: 12px; padding: 6px 20px;}
    .tc-news .body .tc-left .item{ padding: 15px 18px;}
    .tc-news .body .tc-left .item .tim{ margin-top: 20px; font-size: 12px;}
    .tc-news .body .tc-left .item .st{ margin: 14px auto 18px;}
    .tc-news .body .tc-right .item:nth-child(2)~.item{ display: none;}
    .tc-about .desc2 p:nth-child(1)~p{ display: none }
    .tc-about{    background: url(../images/a1.jpg) left bottom no-repeat;}
    .tc-app .mxw-box .tc-right .item .con{ width: 80px; height: 80px}
    .tc-app .mxw-box .tc-right .item .con P{ margin-top: 5px;}
    .tc-app .mxw-box{ flex-wrap: nowrap;}
    .tz{ padding-left: 0}
    .tz .swiper-button-prev, .tz .swiper-button-next{ width: 35px; height: 35px; margin: 20px 10px 0}
    .news-list{ margin-top: 25px;}
    .news-page .news-list .item{ flex-wrap: wrap}
    .news-page .news-list .item .mxw-image{ flex-shrink: 0; width: 35%;}
    .news-page .news-list .item .right{ flex-grow: 1; min-width: 0; margin-right: 0; padding-right: 0}
    .news-page .news-list .item .date{ display: none}
    .news-page .news-list .item .right .con{ padding: 6px;}
    .news-page .news-list .item .right .con h3{ font-size: 15px;}
    .news-page .news-list .item .right .con .info{ font-size: 12px;  line-height: 1.5;       margin: 3px auto 4px;}
    .news-page .news-list .item .right .con span{ font-size: 12px;}
    .news-page .news-list .item:nth-child(1)~.item{ margin-top: 15px;}
    .tc-about .mxw-box{ padding-right: 0}
}



@media screen and (max-width: 400px) {

    .tc-app .app-swiper .swiper-slide img{        max-width: 350%;}
}










