@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%;
    -moz-crisp-edges: crisp-edges;
    -webkit-optimize-contrast: crisp-edges;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 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: 751px) {
    .mxw-pagination {
        margin-top: 30px;
    }
    .mxw-pagination   a {
        font-size: 12px;
        margin: 2px;
        padding: 8px 10px;
    }
}
/* ==================== 分页样式 end ==================== */

/* ==================== 通用标签页 start ==================== */
/* 标签页 */
.mxw-tabs {
    padding-left: 0;
    padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.mxw-tabs .mxw-tabs-wrap {
    position: relative;
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
    align-items: center;
    justify-content: flex-start;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
    display: none;
}
.mxw-tabs .mxw-tabs-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    font-size: 0.3rem;
    white-space: nowrap;
    background: #eaeaea;
    color: #333;
    padding: 0rem 0.5rem;
    margin-right: 0.9rem;
    line-height: 0.6667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #c9151e;
    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;
    border-left: 1px solid #e5e5e5;
}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    padding-left: 0.333rem;

    padding-top: 32px;
    padding-bottom: 32px;
}
.mxw-keywords .left strong {
    vertical-align: inherit; color: #032a75;
}
.mxw-keywords .left span {
    color: #000;
    vertical-align: inherit;
    font-weight: bold;
}
.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{

}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative; height: 100%;
}
.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: 100%;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    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: 100%;
    background-color: #1e469e;

    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;

}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */


/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        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: 25px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;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: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;

}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 32px;
    height: 5px;
    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: #000;
    border-color: #000;

}
.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: #ffffff;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width:84.1%;
}
.mxw-box2 {
    max-width: 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 {
        font-size: 60px;
    }
    .mxw-box {
        max-width: 89%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {

        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 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
#xy-share,.page-message-img,.cpcomment{ display: none;}
.page-product-detail-effect .big-img{ width: 100%}
.product-detail-slick a.slick-item{ height: auto;}
.xypg-product-detail{ font-size: 14px;}
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;background:#004cbf;}
.product-detail-tab .product-detail-tabli li{font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 100%;
        width:100%;
    }
    .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%;}

    .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; padding-top: 0.467rem; padding-bottom: 0.4rem; line-height: 1;    flex-shrink: 0; display: flex; align-items: flex-start; justify-content: flex-start; margin-right: 1.333rem;}
.top-box .logo-box .t-logo>img{ max-height:0.684rem;}

.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: #c9151e; font-size: 0.35rem}
.mxw-link{ padding: 0.333rem 0 0.3rem;}
.mxw-link .mxw-box{color:#fff; }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-start;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.233rem;cursor:pointer;line-height:1.8;flex-shrink: 0;	color: rgba(255, 255, 255, 0.5); }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start; flex-grow: 1; min-width: 0; flex-wrap: wrap;}
.mxw-link .list a{font-size:0.233rem;line-height:1.8;display:block; 	color: rgba(255, 255, 255, 0.5); margin-right: 0.167rem;}






header{
   position: fixed; z-index: 999;
    top: 0; width: 100%; transition: all 0.3s; border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
header.bg{ background: rgba(0,0,0,.4);transition: all 0.3s; border-bottom: 0}
header .welcome {
    line-height: 55px;
    font-size: 16px;	color: #666; border-bottom: 1px solid #f1f1f1;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

}
header .welcome .xt{	font-size: 0.3rem;	color: #ffffff;	background-color: #004cbf; padding: 0 0.267rem; font-weight: bold; font-style: italic; margin-right: 0; margin-left: auto;}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    color: #666;
    margin-left: 0.3rem;
    font-size: 0.267rem;
}
header .welcome .right a{ margin: 0 5px;}
header .welcome .right img{width: 0.35rem; margin-right: 0.25rem;}
header .welcome .right span{	font-size: 0.367rem;	color: #004cbf;  font-weight: bold;}

.top-box{ align-items: stretch }
.top-box .right{flex-grow:1; min-width: 0;  padding-left: 1.5rem; justify-content: flex-end;   color: #333;  display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; }



.x-menu {
    display: flex;
    display: -ms-flex; display: -webkit-flex; display: -moz-flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    font-size: 0;

    flex-grow: 1; min-width: 0;
}
.x-menu > li {
    margin: 0;
    text-align: center;
    float: none;
    position: relative;
    flex-grow: 1;
    min-width: 0;
    z-index: 1;
}

.x-menu > li > a {
    font-size: 0.3rem;
    color: #fff;
    display: flex;
    height: 100%;
    align-items: center;
    align-content: center;
    justify-content: center;
    line-height: 1;
    width: max-content;
    width: -moz-max-content;
    margin: 0 auto 0;
    flex-direction: column;
    padding:0.2rem ;

}

.x-menu > li:last-child>a{

}

.x-menu > li:hover  > a{

}
.x-menu > li > a::after{

}
.x-menu>li.active{
    margin-bottom: -1px;

}
.x-menu>li.active>a::after{

}
.x-menu > li.active > a {
    border-bottom: 2px solid #c21a21;
}
.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    -webkit-transition: all .5s ease;
}
.x-menu > li:hover .x-sub-menu2 {
    opacity: 1;
    visibility: visible;

}
.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 200px;
    left:50%;
    top: calc(100% + 20px);
    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-menu2 {
    position: absolute;
    z-index: 999;
    width: 100%;
    left:0;
    top: 100%;
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;

    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:#231816;
}

.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: -9px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}

.x-sub-menu>li .x-sub-menux {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.x-sub-menu>li .x-sub-menux a {
    display: block;
    line-height: 35px;
    font-size: 14px;
    font-weight: normal;
    color: #041d38;
    /* padding: 0 2%; */
    box-sizing: content-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all ease .3s;
    padding: 0 0.7rem;

}

.x-sub-menu>li .x-sub-menux a:hover {
    background-color: #004cbf;
    color: #fff;
}

.x-sub-menu>li:hover .x-sub-menux {
    z-index: 99;
    opacity: 1;
    visibility: visible;
}

.x-sub-menux>li{ position: relative;}
.x-sub-menux>li>div {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;

}

.x-sub-menux >li:hover>div {
    z-index: 99;
    opacity: 1;
    visibility: visible;
}
.x-menu > li.top-tel{
    flex-grow: initial; display: flex; align-items: center;
    padding-bottom: 0.3rem;
    flex-shrink: 0;
    font-size: 0.367rem;
    margin: 0  0.6rem 0 0.3rem;
}
.x-menu > li.top-tel {   flex-shrink: 0; }
.x-menu > li.top-tel   img{ height: 0.35rem;margin-right: 0.15rem;}
.x-menu > li.top-tel>a{    flex-direction: row;    font-size: 0.367rem;}
.x-menu > li.top-tel>a::after{ display: none}
.x-menu > li.top-ss{ flex-grow: initial;    }
.x-menu > li.top-ss>a{  flex-direction: column; font-size: 0.233rem; padding-right: 0.533rem; padding-left: 0.5rem;}
.x-menu > li.top-ss>a::after{ display: none}
.x-menu > li.top-ss>a>img{ height: 0.3rem;}
.x-menu > li.top-lang{flex-grow: initial;}
.x-menu > li.top-lang>a{ flex-direction: row; margin-right: 0;	font-size: 0.267rem; margin-left: 0;}
.x-menu > li.top-lang>a img:nth-child(1){ margin-right: 0.15rem; width: 0.3rem;}
.x-menu > li.top-lang>a img:nth-child(2){ margin-left: 0.25rem; width: 0.2rem;}
.x-menu > li.top-lang>a::after{ display: none}

.x-menu > li.pc1,.x-menu > li.pc5{ position: initial}
.x-sub-menu2{ padding: 0.333rem 0 0.5rem;}
.x-sub-menu2 .mxw-box{ padding: 0 0.833rem;}
.x-sub-menu2 .title{ text-align:left; }
.x-sub-menu2 .list{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: center; }
.x-sub-menu2 .list .item{ width: 9.375%; margin-right: 0.567rem; text-align: center;}
.x-sub-menu2 .list .item p{	font-size: 0.267rem;	color: #666666; margin-top: 0.2rem;line-height: 1;}
.x-sub-menu2 .list .item .img {
    background-color: #ffffff;
    border-radius: 0.15rem;
    border: solid 1px #ececec
}
.x-sub-menu2 .list .item:hover p{ color: #c21a21}

.n-banner img{ width: 100%}
.n-banner{ position: relative;}

.page-position{ position: absolute; left: 0; right: 0; bottom:0; width: 100%; height: auto; margin: 0 auto; }
.page-position .mxw-box{ text-align: right; line-height: 1; padding-bottom: 0.467rem;	font-size: 0.233rem; color: #fff;}

.pro-cate{ margin: 0.783rem auto 0; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.pro-cate a{border: solid 1px #f3f3f3; margin-right: 11px; margin-bottom: 10px;
    padding: 0.25rem 0.417rem; line-height: 1;}
.pro-cate a:hover{ color: #c42221}
.pro-cate a.active{	border: solid 1px #c21a21; color: #c42221}
.pro-body>.mxw-box{ padding: 0 0.833rem;}
.pro-body .tc-title2{ margin-top: 0.89rem;}
.pro-body .Pagination{ margin-bottom: 60px;}
.tc-title2{ text-align: center;}
.tc-title2 .cn{ line-height: 1;	font-size: 0.8rem; font-weight: bold;	color: #080404;}
.tc-title2 .en{	font-size: 0.367rem;	color: #666666; line-height: 1; font-weight: lighter}
.tc-title2 .cn::after{	width: 81px;
    height: 2px;
    background-color: #c21a21; content: ""; display: block; margin: 0.367rem auto 0.267rem;}
.pro-body .top{ margin-top: 1.5rem; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;	font-size: 0.333rem;	color: #080404; justify-content: space-between; line-height: 1;}
.pro-body .top .tc-right{ border-right: 1px solid #080404;padding-right: 10px;}
.pro-body .top .tc-left{ 	font-size: 0.333rem; }
.pro-body .top .tc-left img{  margin-right: 0.233rem; vertical-align: top;  }
.pro-body .list{ margin-top: 0.7rem;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: space-between;flex-wrap: wrap; }
.pro-body .list .item{ width: 49.13%; overflow: hidden;
    border-radius: 0.167rem;
    border: solid 1px #e6e6e6; transition: all 0.3s;
    display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: space-between; align-items: center}
.pro-body .list .item .tc-left{ flex-shrink: 0; border-right: 1px solid #eeeeee;width: 45%}
.pro-body .list .item .tc-right{ flex-grow: 1; min-width: 0; padding: 0.25rem 0.533rem 0.25rem 0.433rem;}
.pro-body .list .item .tc-right .st{  	font-size: 0.4rem; color: #333;  line-height: 1;}
.pro-body .list .item .tc-right .st:after{	width: 41px;
    height: 5px; content: "";
    background-color: #c21a21; display: block; margin:0.2rem auto 0.4rem 0; }
.pro-body .list .item .tc-right .desc{	font-size: 0.3rem;	color: #333333; line-height: 1.6}
.pro-body .list .item .tc-right>span{ display: inline-block;	border-radius: 0.267rem 0.233rem 0.233rem 0.233rem;
padding: 0.14rem 0.133rem 0.13rem 0.267rem; 	background-color: #c21a21; line-height: 1; color: #fff; margin-top: 0.7rem; letter-spacing: 2px;
    font-size: 0.233rem;}
.pro-body .list .item:hover{box-shadow: 0rem 0rem 0.333rem 0rem
rgba(0, 0, 0, 0.09); transition: all 0.3s}
.pro-body .list .item:nth-child(2n)~.item{ margin-top: 0.467rem;}


.about-body{ padding: 1.1rem 0 1.583rem;}
.about-body .mxw-box{ padding: 0 0.833rem;}
.about-box1 .desc{	font-size: 0.3rem; line-height: 2; text-align: center; border-top: 1px solid #f3f3f3;
    margin-top: 0.9rem; padding-top: 0.7rem;}
.about-box1 .list{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: center; align-items: stretch;  margin: 1.433rem auto 0.8rem; }
.about-box1 .list .item{ margin-right: 2.167rem; text-align: center; color: #c21a21 }
.about-box1 .list .item:last-child{ margin-right: 0}
.about-box1 .list .item img{ height: 0.767rem;}
.about-box1 .list .item .cn{	font-size: 0.467rem; margin-top: 0.417rem; line-height: 1;}
.about-box1 .list .item .en{	font-size: 0.3rem; margin-top: 0.15rem; line-height: 1;}
.video-box{ background: url("../images/video-bg.png") center no-repeat; background-size: cover; padding-bottom: 1.25rem;}
.video-box .video{ margin: 0 auto; width:41.4%;	border-radius: 0.167rem; overflow: hidden; min-width: 700px; max-width: 793px; position: relative; }
.video-box .video::after{width: 0.967rem; content: ""; position:absolute; background: url("../images/play.png") no-repeat; background-size: cover; z-index: 1;
    height: 0.967rem; top: 46%; left: 46%; cursor: pointer}
.about-box2{ padding: 1.333rem 0;}
.about-box2 .list{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: flex-start; align-items: stretch; margin-top: 0.833rem;}
.about-box2 .list .item{ text-align: center;	border-radius: 0.167rem; overflow: hidden; width: 24.1%;
    border: solid 1px rgba(25, 17, 22, 0.2); margin-right: 1.2%;transition: all 0.3s;
    padding: 0.75rem 0.533rem 0.8rem;}
.about-box2 .list .item img{ height: 1.667rem;}
.about-box2 .list .item .cn{	font-size: 0.4rem; font-weight: bold; line-height: 1; margin-top: 0.6rem;}
.about-box2 .list .item:last-child{ margin-right: 0}
.about-box2 .list .item .en{	font-size: 0.267rem;	color: #838181; margin-top: 0.233rem; line-height: 1;}
.about-box2 .list .item .desc{	font-size: 0.267rem;color: #333333; line-height: 1.6; margin-top: 0.433rem;}
.about-box2 .list .item:hover{	box-shadow: 0rem 0rem 0.333rem 0rem
rgba(0, 0, 0, 0.1); transition: all 0.3s}

.about-box3{ padding: 1.583rem 0 3.5rem; background: url("../images/about-box3-bg.png") center bottom no-repeat; background-size: cover;}
.about-box3 .tc-title2 .cn{ color: #fff;}
.about-box3 .tc-title2 .en{ color: #fff;}
.fz-swiper{  overflow: hidden; width: 100%; margin-top: 2.083rem; position: relative;}
.fz-swiper .swiper-wrapper{     align-items: stretch;}
.fz-swiper .swiper-slide .desc{ display: none;	font-size: 0.3rem; width: 160%; line-height: 2; margin-left: -29.5%}
.fz-swiper .swiper-slide .num{ text-align: center;font-size: 32px; color: #fff;}
.fz-swiper .swiper-slide{ display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between;}
.fz-swiper .swiper-slide::after,.fz-swiper .swiper-slide::before{	height: 3px;background-color: #cccccc; content: ""; flex-grow: 1;}
.fz-swiper .swiper-slide .con{ flex-shrink: 0; margin: 0 2rem;}
.fz-swiper .swiper-slide.swiper-slide-active{ display: block; }
.fz-swiper .swiper-slide.swiper-slide-active .con{margin: 0; text-align: center;}
.fz-swiper .swiper-slide.swiper-slide-active .num{font-size: 3.333rem;	color: #fff; font-weight: bold;}
.fz-swiper .swiper-slide.swiper-slide-active .num span:nth-child(2){	color: #c21a21; line-height: 1;}
.fz-swiper .swiper-slide.swiper-slide-active .desc{ display:block; text-align: center; 	font-size: 0.333rem; color: #fff}
.fz-swiper .swiper-slide.swiper-slide-active .text2{ font-weight: bold; margin-top: 0.1rem;}
.fz-swiper .swiper-slide.swiper-slide-active::after,.fz-swiper .swiper-slide.swiper-slide-active::before{ display: none}
.fz-swiper .swiper-button-prev{ left: 20%;	width: 0.85rem;height: 0.85rem;border: solid 2px #999999; border-radius: 50%;color: #999999;}
.fz-swiper .swiper-button-next{ right: 20%;	width: 0.85rem;height: 0.85rem;border: solid 2px #999999;border-radius: 50%;color: #999999;}
.fz-swiper .swiper-button-next::after,.fz-swiper .swiper-button-prev::after{ font-size: 0.4rem; }
.fz-swiper .swiper-button-next:hover,.fz-swiper .swiper-button-prev:hover{	background-color: #c21a21; color: #fff; border-color: #c21a21}

.about-box4{ padding-top: 1.5rem;}
.about-box4 .ab4-swiper{ margin-top: 0.467rem; overflow: hidden; background: url("../images/ab4-bg.png") bottom center no-repeat; background-size: 100% auto; padding-bottom: 0.667rem;}
.ab4-swiper .swiper-wrapper{ align-items: flex-end;}
.pan{margin-bottom: 1rem;}
.pan .t1{ margin-left: auto; margin-right: 0;  width: 32%; }
.pan .t1{	font-size: 0.3rem; font-weight: bold; color: #ccc;}
.pan .t1 span{	color: #111111;	font-size: 0.5rem;}
.pan .swiper-pagination{ position: initial; height: 3px; width: 32%; margin-left: auto; margin-right: 0;
    margin-top: 0.15rem;}
.pan .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{ background: #e40012}

.ny-news .mxw-box{ padding: 0 0.833rem;}
.mxw-ny-news-desc .mxw-box{ padding: 0 0.833rem;}

.case-body .mxw-box{ padding: 0 0.833rem;}
.case-body .case-list{ margin-top: 0.833rem;}
.case-body .case-list .item{ text-align: center;}
.case-body .case-list .item p{ font-size: 0.267rem; padding: 0.2rem 0.167rem; background: #eee}
.case-body .case-list .item:hover p{ background: #e40012; color: #fff;}

.jjfa-cate{	box-shadow: 0px 0px 5px 0px
rgba(0, 0, 0, 0.16);}
.jjfa-cate .mxw-box{ padding: 0 0.833rem; display: flex;display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; }
.jjfa-cate .mxw-box .item{ width: 21.33%; padding: 0.367rem 0.167rem; line-height: 1; text-align: center;}
.jjfa-cate .mxw-box .item img{ height: 0.917rem; margin-bottom: 0.167rem;}
.jjfa-cate .mxw-box .item.active{	background-color: #c42221; color: #fff;}
.jjfa-cate .mxw-box .item.active img {
    filter: grayscale(100%) brightness(1000%);
}
.jjfa-box1{ padding: 1.167rem 0 0.5rem;}
.jjfa-box1 .mxw-box{ padding: 0.167rem 0.833rem 0.167rem; }
.jjfa-swiper{padding: 0.167rem 0.2rem 0;  margin-top: 0.633rem; overflow: hidden}
.jjfa-swiper .swiper-slide{ width: 49.13%; overflow: hidden;
    border-radius: 0.167rem;
    border: solid 1px #e6e6e6; transition: all 0.3s;
    display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: space-between; align-items: center}
.jjfa-swiper .swiper-slide .tc-left{ flex-shrink: 0; border-right: 1px solid #eeeeee; width: 45%}
.jjfa-swiper .swiper-slide .tc-right{ flex-grow: 1; min-width: 0; padding: 0.25rem 0.533rem 0.25rem 0.433rem;}
.jjfa-swiper .swiper-slide .tc-right .st{  	font-size: 0.4rem; color: #333; text-indent: -0.5em; line-height: 1;}
.jjfa-swiper .swiper-slide .tc-right .st:after{	width: 41px;
    height: 5px; content: "";
    background-color: #c21a21; display: block; margin:0.2rem auto 0.4rem 0; }
.jjfa-swiper .swiper-slide .tc-right .desc{	font-size: 0.3rem;	color: #333333; line-height: 1.6}
.jjfa-swiper .swiper-slide .tc-right>span{ display: inline-block;	border-radius: 0.267rem 0.233rem 0.233rem 0.233rem;
    padding: 0.14rem 0.133rem 0.13rem 0.267rem; 	background-color: #c21a21; line-height: 1; color: #fff; margin-top: 0.7rem; letter-spacing: 2px;
    font-size: 0.233rem;}
.jjfa-swiper .swiper-slide:hover{box-shadow: 0rem 0rem 0.333rem 0rem
rgba(0, 0, 0, 0.09); transition: all 0.3s}

.jjfa-swiper .swiper-pagination{ position: initial; text-align: center; font-size: 0; margin-top: 0.667rem;}
.jjfa-swiper .swiper-pagination .swiper-pagination-bullet{	width: 15px;
    height: 15px;
    background-color: #c21a21;
    opacity: 0.2;}
.jjfa-swiper .swiper-pagination .swiper-pagination-bullet-active{ opacity: 1}
.jjfa-box2 .mxw-box{ padding: 0 0.833rem;}
.jjfa-box2 .body{ margin-top: 0.9rem; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch;}
.jjfa-box2 .body .tc-left{ width: 46.4%; flex-shrink: 0}
.jjfa-box2 .body .tc-right{ flex-grow: 1; min-width: 0; background: url("../images/ysbg2.png") center no-repeat; background-size: cover;	color: #ffffff;
    display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.jjfa-box2 .body .tc-right .item{ width: 50%; text-align: center; padding: 0.3rem 0.5rem;  border-right: 1px solid rgba(255, 255, 255, 0.2); }
.jjfa-box2 .body .tc-right .item:nth-child(2n){ border-right: 0;}
.jjfa-box2 .body .tc-right .item:nth-child(2n)~.item{ border-top: 1px solid rgba(255, 255, 255, 0.2);}
.jjfa-box2 .body .tc-right .item .cn{	font-size: 0.4rem;}
.jjfa-box2 .body .tc-right .item .en{	font-size: 0.267rem;	color: #555555; font-weight: lighter; margin-top: 0.25rem;}
.jjfa-box2 .body .tc-right .item .en::after{	width: 51px;
    height: 0.05rem; margin: 0.25rem auto; content: ""; display: block;
    background-color: #c21a21;}
.jjfa-box2 .body .tc-right .item .desc{	font-size: 0.267rem; line-height: 1.6}
.jjfa-box2 .body .tc-right .item .y-more{	background-color: #c21a21;	font-size: 0.233rem; padding: 0.12rem 0.267rem 0.12rem; line-height: 1;margin-top: 0.433rem;
    border-radius: 0.267rem 0.233rem 0.233rem 0.233rem;
    border: solid 1px #ffffff; display: inline-block;}

.jjfa-box3{ padding: 1.583rem 0 0.833rem; }
.jjfa-box3 .mxw-box{ padding: 0 0.833rem;}
.jjfa-box3 .mxw-box .body{
    display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between;
    margin-top: 1.133rem;
}
.jjfa-box3 .mxw-box .body .tc-left{ width: 48.2%; flex-shrink: 0}
.jjfa-box3 .mxw-box .body .tc-right{ flex-grow: 1; min-width: 0; padding-left: 1.167rem; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between; }
.jjfa3-swiper{ overflow: hidden; position: relative;}
.jjfa3-swiper .swiper-pagination .swiper-pagination-bullet{	width: 0.25rem;
    height: 0.25rem;
    background-color: #ffffff;
    opacity: 0.2;}
.jjfa3-swiper .swiper-pagination .swiper-pagination-bullet-active{ opacity: 1;}

.jjfa-box3 .mxw-box .body .tc-right .tc2{ width: 2.75rem; flex-shrink: 0; padding-top: 2rem;}
.jjfa-box3 .mxw-box .body .tc-right .tc2 .m2{	font-size: 0.5rem;	color: #c21a21;}
.jjfa-box3 .mxw-box .body .tc-right .tc2 .m2:first-child{ font-weight: bold;}
.jjfa-box3 .mxw-box .body .tc-right .tc2 .m2:first-child~.m2{ margin-top: 1rem;}
.jjfa-box3 .mxw-box .body .tc-right .tc2 .m2::before{	width: 60px;
    height: 4px; content: ""; display: inline-block; margin-right: 8px;
    background-color: #e30713;}
.jjfa-box3 .mxw-box .body .tc-right .tc1{ padding-right: 1.433rem; flex-grow: 1; min-width: 0}
.jjfa-box3 .mxw-box .body .tc-right .tc1 .title{	font-size: 0.567rem; font-weight: bold;	color: #e30713;}
.jjfa-box3 .mxw-box .body .tc-right .tc1 .desc{ margin-top: 1.033rem;	font-size: 0.3rem;	color: #080404; line-height: 2;}
.jjfa-box3 .mxw-box .body .tc-right .tc1 .y-more{	font-size: 0.267rem; padding: 0.217rem 0.433rem;background-color: #c21a21;
    border-radius: 0.083rem; display: inline-block; color: #fff; margin-top: 1.833rem;margin-left: 20px;}
.jjfa-box3 .mxw-box .list{ margin-top: 0.667rem;}

.jjfa3-swiper2 .swiper-slide{ position: relative;}
.jjfa3-swiper2 .swiper-slide p{ position: absolute; bottom: 0; left: 0; width: 100%;	background-color: #c21a21; padding: 0.25rem 10px; line-height: 1; text-align: center; color: #fff;}
.jjfa-box4{ padding: 0.7rem 0 1.5rem;}
.jjfa-box4 .mxw-box{padding: 0 0.833rem;}
.jjfa-box4 .list{ margin-top: 0.75rem; text-align: center;}
.jjfa-box4 .list .item{	border-radius: 0.167rem; overflow: hidden; position: relative;transition: all 0.3s}
.jjfa-box4 .list p{  position: absolute; bottom: -100%;left: 0; width: 100%;	background-color: #c21a21;	font-size: 0.3rem; line-height: 1; padding: 0.15rem 0.2rem; color: #fff;transition: all 0.3s}
.jjfa-box4 .list .item::before{ display: block; width: 100%; height: 100%; top: 0; left: 0; content: ""; background: rgba(0,0,0,.4); position: absolute;transition: all 0.3s; opacity: 1;}
.jjfa-box4 .list .item:hover{box-shadow: 0px 0px 10px 0px
#000000;transition: all 0.3s}
.jjfa-box4 .list .item:hover::before{opacity:0;transition: all 0.3s}
.jjfa-box4 .list .item:hover p{ bottom: 0; transition: all 0.3s}


.tc-title{ text-align: center;}
.tc-title .cn{font-size: 0.767rem;  font-weight: bold; line-height: 1; text-transform: uppercase}
.tc-title .en{	font-size: 0.333rem; font-weight:lighter; line-height: 1; margin-top: 0.2rem;}
.tc-title .en::after{	width: 81px;
    height: 2px;
    background-color: #c21a21; display: block; content: ""; margin: 0.183rem auto 0}
.tc-title .desc{	font-size: 0.267rem; margin-top: 0.15rem; line-height: 1.6;	color: #666666;}

.tc-pro{ padding: 0 0 0.917rem; margin-top: 1.667rem}
.tc-pro .mxw-box{ }
.tc-pro .body{ margin-top: 0.767rem; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.tc-pro .body .item{ width: 24.0625%; margin-right: 1.25%;  position: relative;	border: solid 1px #e6e6e6;border-radius: 10px; overflow: hidden}
.tc-pro .body .item:nth-child(4n){ margin-right: 0}
.tc-pro .body .item:nth-child(4n)~.item{ margin-top: 0.367rem}
.tc-pro .body .item .st{ position: absolute; font-size: 0.3rem; padding: 0.25rem; background: rgba(0, 0, 0, 0.7); width: 100%; bottom: 0; left: 0;
    color: #fff; text-align: center;
}
.tc-pro .body .item .flx{ position: absolute; width: 100%;  height: 100%;  background: rgba(0, 0, 0, 0.7);display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center;  justify-content: center; left: 0; top: 0; flex-direction: column; color: #fff;  transition: all 0.3s;
    opacity: 0;}
.tc-pro .body .item .flx .cn{ font-size: 0.3rem; padding: 0 0.2rem;    text-align: center;}
.tc-pro .body .item .flx .en{	font-size: 0.233rem;	opacity: 0.5;}
.tc-pro .body .item .flx .cn::after{	width: 0.683rem;
    height: 0.083rem; display: block; content: ""; margin:0.217rem auto 0.167rem;
    background-color: #c21a21;}
.tc-pro .body .item .flx .p-more{ margin-top: 1rem;	background-color: #c21a21;
    border-radius: 0.083rem; color: #fff; padding: 0.2rem 0.25rem;	font-size: 0.3rem;}
.tc-pro .body .item:hover .flx{ opacity: 1;}
.tc-pro .body .item:hover .st{ display: none}

.tc-fw{ padding: 0.833rem 0 2rem; background: url("../images/fw-bg.jpg") center no-repeat; background-size: cover;}
.tc-fw .mxw-box{ padding: 0}
.tc-fw .body .tc-left{ width: 49.69%; position: relative}
.tc-fw .body .tc-left .flx{ position: absolute; margin-top: -4.8rem; left: 1.667rem;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; justify-content: flex-start; align-items: flex-end }
.flx-swiper{ overflow: hidden; width: 5.417rem;}
.flx-pa{ position: initial; padding-bottom: 0.117rem; padding-left: 0.417rem;}
.flx-pa .swiper-pagination-bullet{width: 0.25rem;
    height: 0.25rem; margin-left: 0.167rem;
    background-color: #c21a21;
    opacity: 0.2;}
.flx-pa .swiper-pagination-bullet-active{ opacity: 1}

.tc-fa{ padding-top: 1.8rem;  background: url("../images/fa-bg.jpg") center no-repeat; background-size: cover;}
.tc-fa .up{ color: #fff; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-end; justify-content: space-between;}
.tc-fa .up .tc-title{ text-align: left;}
.tc-fa .up .tc-title .en::after{ margin-left: 0}
.tc-fa .up .text{	font-size: 0.3rem; line-height: 2;}
.fa-swiper{ width: 100%; max-width: 1920px; margin: 0.467rem auto 0; position: relative;}
.fa-swiper .swiper-slide{ width: 25%; position: relative;}
.fa-swiper .swiper-slide .st{	background: rgba(0, 0, 0, 0.6);	font-size: 0.367rem; padding: 0.45rem; bottom: 0; color: #fff; text-align: center; width: 100%;position: absolute; left: 0; z-index: 3;}
.fa-swiper .swiper-slide .num{ z-index: 3 ;line-height: 1; bottom: 2.48rem;	font-size: 0.25rem; color: #fff; position: absolute; left:0; transform: rotate3d(0,0,1,270deg)}
.fa-swiper .swiper-slide .num::after{	width: 0.867rem; display: inline-block; content: ""; margin-left: 0.15rem; vertical-align: middle;
    height: 2px;
    background-color: #ffffff;}
.fa-swiper .swiper-slide:hover .num{	color: #c21a21;}
.fa-swiper .swiper-slide:hover .num::after{	background: #c21a21;}
.fa-swiper .swiper-slide:hover .st{	background-color: #c21a21;}
.fa-swiper .swiper-slide:hover::after{ position: absolute; content: ""; width: 100%; height: 100%; background:url("../images/jh.png") rgba(0,0,0,.3) center no-repeat; left: 0; top: 0 }
.fa-swiper .swiper-button-next{	width: 1.267rem;
    height: 1.367rem; color: #fff; opacity: 1;
    background-color: #333333; right: 0;
    border-radius: 0px 3px 3px 0px;}
.fa-swiper .swiper-button-prev{	width: 1.267rem;
    height: 1.367rem; color: #fff; opacity: 1;
    background-color: #333333; left: 0;
    border-radius: 0px 3px 3px 0px;}
.fa-swiper .swiper-button-next::after,.fa-swiper .swiper-button-prev::after{ opacity: 0.5; font-weight: lighter; font-size: 0.5rem;}
.fa-swiper .swiper-button-next:hover,.fa-swiper .swiper-button-prev:hover{background: #c21a21; }
.fa-swiper .swiper-button-next:hover::after,.fa-swiper .swiper-button-prev:hover::after{opacity: 1}

.tc-cp{ padding: 1.917rem 0 0.75rem; margin: 0.833rem auto; background: url("../images/cp-bg.jpg") center no-repeat; background-size: cover;}
.tc-cp .mxw-box{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;}
.tc-cp .mxw-box .tc-left{ padding-right: 2.5rem;  color: #fff; width: 28%; padding-top: 1.417rem; flex-shrink: 0}
.tc-cp .mxw-box .center{  flex-grow: 1; min-width: 0; }
.tc-cp .mxw-box .tc-right{ padding-left: 2.5rem; width: 28%;padding-top: 1.417rem; flex-shrink: 0}
.tc-cp .mxw-box .tc-left .tc-title{ text-align: left;}
.tc-cp .mxw-box .tc-left .tc-title .en::after{ margin-left: 0}
.tc-cp .mxw-box .tc-left .desc{	font-size: 0.3rem; color: #fff; line-height: 1.6; margin: 0.667rem auto 2rem 0; text-align: left }
.tc-cp .mxw-box .tc-left .cp-more{	font-size: 0.267rem;color: #9f9f9f;}
.tc-cp .mxw-box .tc-left .cp-more img{ width: 0.75rem; margin-right: 0.25rem;}
.tc-cp .mxw-box .tc-right .item{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between;	background-color: #f9fff7;	font-size: 0.367rem; padding: 0.3rem 0.267rem 0.3rem 0.367rem;}
.tc-cp .mxw-box .tc-right .item::after{background-color: #c21a21;	width: 0.55rem;height: 0.55rem; content: ""; border: 0.15rem solid #e0e5df; border-radius: 50%; flex-shrink: 0 }
.tc-cp .mxw-box .tc-right .item::before{	background-color: #ffffff;	width: 0.55rem;height: 0.55rem; content: ""; border: 0.15rem solid rgba(255, 255, 255, 0.15); border-radius: 50%; flex-shrink: 0;}
.tc-cp .mxw-box .tc-right .item:hover::after{border: 0.15rem solid #c21a21}
.tc-cp .mxw-box .tc-right .item:hover::before{ border: 0.15rem solid #cb3c42}
.tc-cp .mxw-box .tc-right .item:hover{ background: #c21a21; color: #fff;}
.tc-cp .mxw-box .tc-right .item:nth-child(1)~.item{ margin-top: 0.367rem;}
.tc-cp .mxw-box .tc-right .item p{ white-space: nowrap; text-overflow: ellipsis; overflow: hidden; flex-grow: 1; min-width: 0}

.tc-case{ background: url("../images/case-bg.jpg") center top no-repeat; padding-top: 1.75rem; padding-bottom: 1rem;background-size: 100% auto;}
.tc-case .tc-title .cn{ color: #fff; text-transform: uppercase}
.tc-case .tc-title .en{ color: #fff;}
.tc-case .tc-title .desc{ color: #fff;}
.case-cate{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: center; margin: 1.1rem auto 0.75rem; }
.case-cate .item{background-color: #e8e8e8;	color: #1b1b1b; padding: 0.233rem 0.633rem;
    border-radius: 0.083rem; margin-right: 0.4rem; border-bottom: 1px solid #e8e8e8}
.case-cate .item:last-child{ margin-right: 0}
.case-cate .item::before{ display: inline-block; content: ""; width: 0.417rem; height: 0.417rem; border-radius: 50%; 	background-color: #c21a21; border: 0.117rem solid #d2d2d2;  vertical-align: text-bottom; margin-right: 0.3rem;}
.case-cate .item.active{ border-bottom: 1px solid #fff;	background-color: #c21a21; color: #fff;}
.case-cate .item.active::before{ background: #fff; border-color: #cb3c42;}
.case-swiper{ overflow: hidden;}
.case-swiper .swiper-slide{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.case-swiper .swiper-slide .item{ width: 18.75%; position: relative; margin-right: 0.75%;	border-radius: 0.167rem; overflow: hidden;}
.case-swiper .swiper-slide .item:nth-child(5n){ margin-right: 0}
.case-swiper .swiper-slide .item:nth-child(5n)~.item{ margin-top: 0.25rem;}
.case-swiper .swiper-slide .item .title{ position: absolute; bottom: -100%; width: 100%; padding: 0.133rem 0.167rem; color: #fff; text-align: center; background: #c21a21; transition: all 0.3s; }
.case-swiper .swiper-slide .item::after{ position: absolute; width: 100%; height: 100%; content: ""; top: 0; left: 0; background: rgba(0,0,0,.5)}
.case-swiper .swiper-slide .item:hover .title{ bottom: 0; transition: all 0.3s;}
.case-swiper .swiper-slide .item:hover::after{opacity: 0;transition: all 0.3s;}

.tc-about{ padding-top: 1.75rem; background: url("../images/about-bg.jpg") top center no-repeat; background-size: 100% auto;	box-shadow: 0px 1px 46px 0px
rgba(0, 0, 0, 0.1); padding-bottom: 0.933rem;}
.tc-about .tc-title .cn{ color: #fff;}
.tc-about .tc-title .en{ color: #fff;}
.tc-about .tc-title .desc{ color: #fff;}
.tc-about .list{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  align-items: stretch; justify-content: space-around; color: #fff;margin: 1.2rem auto 2.167rem; }
.tc-about .list .item img{ height: 0.767rem;}
.tc-about .list .item .cn{	font-size: 0.467rem; margin-top: 0.417rem; line-height: 1;}
.tc-about .list .item .en{	font-size: 0.3rem; margin-top: 0.15rem; line-height: 1;}
.tc-about .body{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  align-items: center; justify-content: space-between; padding-top: 0.4rem;}
.tc-about .body .tc-right{ width: 33.6%; flex-shrink: 0;}
.tc-about .body .tc-left{ flex-grow: 1; min-width: 0; padding-right: 0.967rem;}
.tc-about .body .tc-left .text{ line-height: 1.6;	font-size: 0.3rem;	color: #333333; margin-bottom: 0.8rem;}
.a-more{	font-size: 0.267rem;	color: #c21a21;}
.a-more img{ width: 0.75rem; margin-right: 0.267rem;}

.tc-ys{ background: url("../images/ys-bg.png") right top no-repeat; background-size:4.117rem auto;}

.tc-news{ padding: 1.5rem 0;}
.tc-news .up{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-end; justify-content: space-between;}
.tc-news .up .tc-title{ text-align: left;}
.tc-news .up .tc-title .en::after{ margin-left: 0}
.tc-news .body{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between; margin-top: 1rem;}
.tc-news .body .tc-left{ width: 53.25%; flex-shrink: 0; position: relative;}
.tc-news .body .tc-right{ flex-grow: 1; min-width: 0; padding-left: 0.5rem;}
.tc-news .body .tc-left .flx{ position: absolute; bottom: 0.467rem; padding: 0 1.5rem 0 0.667rem; color: #fff;}
.tc-news .body .tc-left .flx .st{	font-size: 0.367rem; margin-bottom: 0.3rem;}
.tc-news .body .tc-left .flx .desc{	font-size: 0.267rem; line-height: 1.8;	color: #ffffff;}
.tc-news .body .tc-right .item{background-color: #ebebeb; display: block; padding: 0.6rem 0.833rem 0.6rem 0.6rem;}
.tc-news .body .tc-right .item:nth-child(1)~.item{ margin-top: 0.333rem;}
.tc-news .body .tc-right .item .st{	font-size: 0.333rem;	color: #434343;}
.tc-news .body .tc-right .item .desc{	font-size: 0.233rem;	color: #5e5e5e; line-height: 1.8; margin-top: 0.3rem;}
.tc-news .body .tc-right .item:hover{ background:#a9221c; color: #fff; }
.tc-news .body .tc-right .item:hover .desc{ color: #fff;}

footer{ padding-top: 1.5rem; background: url("../images/footer-bg.jpg") center no-repeat; background-size: cover;}
footer .up{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between; color: #fff; padding-bottom: 1.167rem;}
footer .up .tc-left{ width: 31.25%; flex-shrink: 0;}
footer .up .tc-right{ flex-grow: 1; min-width: 0; padding-left: 5rem;
    display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between;
}
footer .up .tc-left .logo img{ }
footer .up .tc-left .logo{ padding-bottom: 0.633rem;width: 5.467rem; border-bottom: 4px solid #a9221c}
footer .up .tc-left .desc{ margin-top: 0.8rem;opacity: 0.8; line-height: 1.6}
footer .up .tc-left .desc .ft{	font-size: 0.433rem;	color: #d5d3d3;}
footer .up .tc-left .desc p{	font-size: 0.3rem; margin-top: 0.15rem;}
footer .up .tc-right .item{}
footer .up .tc-right .item .st{	font-size: 0.267rem;	color: #eeeeee; margin-bottom: 0.433rem;}
footer .up .tc-right .item p{	font-size: 0.233rem;	color: #dcdbdb;
    opacity: 0.8; margin-bottom: 0.267rem;}




.contact-box1{ padding-top: 1.25rem; }
.contact-box1 .c-title{ text-align: center;}
.contact-box1 .c-title .en{font-size: 0.75rem;background-image: linear-gradient(to right, #193883, #68b92f);
    background-clip: text;
    -webkit-background-clip: text; width: max-content;
    color: transparent;  font-weight: bold; margin: 0 auto;}
.contact-box1 .c-title .cn{ font-size: 0.65rem; color: #000; margin: 0.333rem auto 0.467rem; }
.contact-box1 .c-title .desc{ font-size: 0.3rem; color: #666;}
.contact-box1 .list{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 1.167rem;}
.contact-box1 .list .item{	border: solid 1px #eeeeee; width: 24%; padding: 0.867rem 0.333rem;
    text-align: center;}
.contact-box1 .list .item .icon{ margin-bottom: 0.333rem}
.contact-box1 .list .item .st{	font-size: 0.4rem;color: #101010; margin-bottom: 0.367rem}
.contact-box1 .list .item .desc{ font-size: 0.3rem; color: #666; line-height: 1.5}
.contact-box1 .list .item .st2{ font-size: 0.3rem;	color: #101010; font-weight: bold;}
.contact-box1 .list .item .st3{ font-size: 0.3rem; color: #666; line-height: 1.5}
.contact-box1 .list .item .st4{ font-size: 0.3rem;	color: #101010; font-weight: bold; cursor: pointer;}
.contact-box1 .list .item:hover{	border-style: solid;
    border-width: 1px;
    border-color: #e40012}

.cont-map{ height: 10rem; margin: 1.067rem auto 1.583rem; font-size: 14px}

.msg-box{ margin-top: 0.833rem; margin-bottom: 1.917rem}
.msg-box .inp{ display: flex; align-items: stretch; justify-content: space-between;  margin-bottom: 0.633rem}
.msg-box .inp .item{ width: 48.125%;}
.msg-box .inp .item p{	font-size: 0.3rem; font-weight: bold; }
.msg-box .inp .item p span{color: #c20000; font-weight: inherit;}
.msg-box .inp .item input{	border: solid 1px #eaeaea;
    padding: 0.333rem;font-size: 0.267rem;	color: #a8a8a8; width: 100%; margin-top: 0.233rem;}

.msg-box .tx-box p{font-size: 0.3rem; font-weight: bold;}
.msg-box .tx-box textarea{ width: 100%;border: solid 0.017rem #eaeaea; resize: none;padding: 0.333rem;    margin-top: 0.233rem; height: 2.667rem;color: #a8a8a8; font-size: 0.267rem;}
.msg-box .tx-box textarea::placeholder{	color: #a8a8a8; font-size: 0.267rem;}
.subx{width: 3.267rem;
    height: 1.067rem;
    background-color: #e40012;
    border-radius: 0.533rem; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.367rem; margin: 0.917rem auto 0; cursor: pointer}

.contact-box1 .list .item .flx{      display: none;
    position: absolute;
    bottom: 1.4rem;
    left: 0;
    right: 0;
    width: 160px;
    max-width: 100%;
    margin: 0 auto;
}
.contact-box1 .list .item:last-child{    position: relative;}
.contact-box1 .list .item:last-child:hover .flx{ display:block;}




    /*搜索*/
.pro_serh{position: absolute;top: 100%; text-align: left; right: 0;background: white;border: 1px solid #e1e1e1;padding: 20px;z-index: 999;display: none;}
.pro_serh form{ display: flex; display: -webkit-flex;display: -moz-flex}
.pro_serh p{color: #333;font-size: 16px;float: none;top: 0;margin-bottom: 15px;}
.pro_serh input{background: #f6f6f6;height: 40px;width: 345px;padding-left: 5px;border: 1px solid #CCCCCC;border-radius: 5px 0 0 5px;float: left;}
.pro_serh button{border:none;position: relative;float: right; width: 35px; flex-shrink: 0; cursor: pointer; background: #000}
.pro_serh ul li{display: inline-block;color: #888888;margin-right: 5px;}
.pro_serh ul li a{color: #888888;}
.pro_serh button img{ width: 100%; }














/* ==================== 产品详情页 start ==================== */
.ny-product-desc {
    overflow: hidden;padding-bottom: 60px;
}
.ny-product-desc .product-image {
    width: 44%;
    margin-right: 3%;
    flex-shrink: 0;
    position: relative;
    z-index: 9;
}
.ny-product-desc .product-image img {
    width: 100%;
}
.ny-product-desc .product-desc {
    width: 53%;
}
.ny-product-desc .product-desc .title {
    font-size: 0.4667rem;
    padding-bottom: 0.3333rem;
    border-bottom: 0.0167rem solid #ddd;
    margin-bottom: 0.3333rem;
    font-weight: bold;
    color: #1b3899;
}
.ny-product-desc .product-desc .desc {
    word-break: break-all;
    font-size: 0.3rem;
    color: #666;
    line-height: 1.8;
}
.ny-product-desc .bottom {
    margin-top: 0.6667rem;
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.easyzoom-flyout img {
    max-width: inherit!important;
    width: auto!important;
}
@media screen and (max-width: 1200px) {
    .ny-product-desc {
        padding: 0;
    }
    .ny-product-desc .product-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        pointer-events: none;
    }
    .ny-product-desc .product-desc {
        width: 100%;
    }
    .ny-product-desc .product-desc .title {
        font-size: 18px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .ny-product-desc .top {
        flex-flow: column;
    }
    .ny-product-desc .product-desc .desc {
        font-size: 14px;
    }
    .ny-product-desc .bottom {
        margin-top: 15px;
    }
}
/* ==================== 产品详情页 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ny-product-desc .big-swiper {
    border: 1px solid #ddd;
}
.ny-product-desc .ny-product-image {
    width: 43%;
    flex-shrink: 0;
    margin-right: 2%;
}



.ny-product-desc .right {
    width: 65%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;
}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 0.0167rem solid #dcdcdc;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.4667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify; min-height: 5rem;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;

    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;
    border-radius: 0.0833rem;
    height:auto;
    display: flex;  background: #fff;
    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: #ccc;
}
.ny-product-desc .small-image .swiper-button-next {
    right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
    left: 0rem;
}
.ny-product-desc .bottom {
    margin-top: 0.8333rem;

}
.ny-product-desc .bottom .head {
    width: 100%;
    border-top: 0.0167rem solid #d9d9d9;
    border-bottom: 0.0167rem solid #d9d9d9;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
    padding: 0 0.3333rem;
    cursor: pointer;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #231816;
}
.ny-product-desc .bottom .head .text1.active{ background: #c21a21; color: #fff; }
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 1400px;
    }
    .ny-product-desc .top {
        align-items: stretch;
    }
}
@media screen and (max-width: 1480px) {
    .ny-product-desc .mxw-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 100%;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {
        margin-bottom: 10px;
    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 16px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }
}
/* ==================== 内页 - 产品详情 end ==================== */
.pg{ margin: 1rem auto 0; font-size: 0.267rem; line-height: 1.8}
/* ==================== 新闻详情 start ==================== */
.ny-news-desc {


}
.ny-news-desc > .mxw-box {
    padding-top: 60px; padding-bottom: 60px;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;

}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {

    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */





.tc-cp .mxw-box .tc-left .cp-more:hover{ color: #c21a21}
.jjfa-box2 .body .tc-right .item{ display: flex; display: -moz-flex; display: -webkit-flex; display: -ms-flex; flex-direction: column; justify-content: center; align-items: center; transition: all 0.3s ease;}
.jjfa-box2 .body .tc-right .item:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}



@media screen and (max-width: 1880px) {
    .tc-pro .body .item .st{ font-size: 0.3rem}
    .jjfa-box2 .body .tc-right .item .cn{ font-size: 0.467rem}
    .jjfa-box2 .body .tc-right .item{ padding: 0.5rem 0.95rem}
    .tc-cp .mxw-box .tc-right .item{ font-size: 0.33rem}
}


@media screen and (max-width: 1830px) {
    .jjfa-box2 .body .tc-right .item .en{ margin-top: 0.2rem}
    .jjfa-box2 .body .tc-right .item{ padding: 0.4rem 0.85rem}
    .jjfa-box2 .body .tc-right .item .en::after{ margin: 0.2rem auto}
    .jjfa-box2 .body .tc-right .item .cn{ font-size: 0.4rem}
}


@media screen and (max-width: 1680px) {
    html{ font-size: 60px}
    .jjfa-box2 .body .tc-right .item .y-more{ margin-top: 0.367rem}
}




















body{ overflow-x: hidden}




.mxw-copy{border-top: 1px solid rgba(255, 255, 255, 0.2);  }
.mxw-copy .mxw-box{  padding: 0.233rem 0; 	font-size: 0.233rem; color: #8a8a8a;  text-align: center;  line-height: 1.6;}
.mxw-copy .mxw-box .tc-left{ text-align: left}
.mxw-copy .mxw-box .tc-right{ text-align: right}
.mxw-copy .mxw-box a{font-size: 0.233rem; 	color: #8a8a8a; }
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; color: #8a8a8a;}


.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 ;}
.page-position,.page-mob-tool{z-index: 1;}

.ny-product-desc .bottom .desc table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.ny-product-desc .bottom .desc table th,
.ny-product-desc .bottom .desc table td{border:1px solid #ddd !important;padding: 8px !important; background: none !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{}
/* ==================== 内页 - 新闻列表2 start ==================== */
.ny-news{    margin-top: 1rem;    margin-bottom: 1rem;}
.ny-news .item {

    display: flex;
    align-items: center;
    transition: all 0.4s;
    border: 1px solid #dedede;
    box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.14);
    margin-bottom: 0.6rem;
}
.ny-news .item:hover {
    box-shadow: 0px 3px 21px 0px
    rgba(224, 224, 224, 0.5);
    border-color: transparent;
}
.ny-news .item:hover .title {
    color: #555555;
}
.ny-news .item .image {
    flex-shrink: 0;


    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.ny-news .item .image img{ height: 3.467rem; width: initial; max-width: initial;}
.ny-news .item .info {
    min-width: 0;
    flex-grow: 1;
    padding: 0.333rem 0.6rem 0.333rem ;
}
.ny-news .item .head {
    display: flex;
    align-items: center;
    color: #888;
    padding-bottom: 0.1667rem;
    border-bottom: 0.0167rem solid #888;
    margin-bottom: 0.3333rem;
}
.ny-news .item .title {
    flex-grow: 1;
    font-size: 0.3rem;
    line-height: 1.2;
}
.ny-news .item .time {
    font-size: 0.233rem;
    line-height: 1.2;
    flex-shrink: 0;
}
.ny-news .item .desc {
    font-size: 0.233rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.ny-news .item .cmore {
    width: 2.0833rem;
    height: 0.6rem;
    line-height: 0.6rem;
    background-color: #fff;
    border: solid 0.0167rem #dedede;
    display: block;
    text-align: center;
    font-size: 0.2rem;
    color: #888888;
}
.ny-news .item:hover .cmore{	background-color: #333; color: #fff; border: 1px solid #333}
@media screen and (max-width: 1200px) {
    .ny-news .item {
        padding: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .ny-news .item .image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .ny-news .item .info {
        width: 100%;
    }
    .ny-news .item .head {
        margin-bottom: 10px;
    }
    .ny-news .item .title {
        font-size: 16px;
    }
    .ny-news .item .time {
        font-size: 12px;
    }
    .ny-news .item .desc {
        font-size: 12px;
        line-height: 1.8em;
        height: 3.6em;
        margin-bottom: 10px;
        overflow: hidden;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        white-space: inherit;
    }
    .ny-news .item .cmore {
        width: 100%;
        padding: 8px 20px;
        font-size: 12px;
        height: auto;
        line-height: inherit;
    }
    .ny-news{ padding: 45px 0}
}
/* ==================== 内页 - 新闻列表2 end ==================== */


@media screen and (max-width: 1440px) {
    .top-box{ width: 95%; max-width: 95%;}






}

/* ==================== 页面具体样式 end ==================== */






/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll {
    overflow: hidden;
}
.mxw-scroll .scroll-wrap {
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.mxw-scroll .scroll-item {
    flex-shrink: 0;
}

@media screen and (max-width: 500px) {
    .mxw-scroll .scroll-item {
        width: 48%;
        margin-right: 4%;
    }

}
/* ==================== 通用 - 无缝滚动 end ==================== */





@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0 ; max-width: 95%; width: 95%;}
    .mxw-mob-nav .logo img{ height: 25px;filter:brightness(0)}
    .tc-pro{ margin-top: 45px; padding-bottom: 45px;}
    .tc-title .cn{ font-size: 22px;}
    .tc-title .en{ font-size: 16px; margin-top: 5px;}
    .tc-title .en::after{ margin-top: 5px;}
    .tc-title .desc{ font-size: 14px; line-height: 1.6}
    .tc-pro .body{ margin-top: 25px; flex-wrap: wrap; justify-content: space-between;}
    .tc-pro .body .item{ width: 48.5%; margin: 0;}
    .tc-pro .body .item{ border-radius: 5px;}
    .tc-pro .body .item .flx .p-more{}
    .tc-pro .body .item .st{ font-size: 14px; padding: 8px 10px;}
    .tc-pro .body .item:nth-child(2n)~.item{ margin-top: 15px;}
    .tc-fw{ padding: 0 0 45px;}
    .jjfa-box2 .body{ flex-wrap: wrap; margin-top: 25px;}
    .jjfa-box2 .body .tc-left{ width: 100%}
    .flx-swiper{ width: 150px; }
    .tc-fw .body .tc-left .flx{ margin-top: -130px;}
    .tc-fw .body .tc-left .flx{left: 40px;}
    .flx-pa .swiper-pagination-bullet{ width: 10px; height: 10px; margin-left: 5px;}
    .flx-pa{ padding-left: 10px; padding-bottom: 5px;}
    .tc-fw .jjfa-box2 .body .tc-right{ margin-top: 25px;}
    .jjfa-box2 .body .tc-right .item{ padding: 25px 10px;}
    .jjfa-box2 .body .tc-right .item .cn{ font-size: 18px;}
    .jjfa-box2 .body .tc-right .item .en{ font-size: 14px; margin-top: 5px;}
    .jjfa-box2 .body .tc-right .item .en::after{ margin: 10px auto;}
    .jjfa-box2 .body .tc-right .item .desc{ font-size: 12px;}
    .jjfa-box2 .body .tc-right .item .y-more{ font-size: 12px; padding: 8px 15px; margin-top: 15px;}
    .tc-fa{ padding-top: 45px;}
    .tc-fa .up{ flex-wrap: wrap;}
    .tc-fa .up .text{ font-size: 14px; line-height: 1.5; margin-top: 20px;}
    .fa-swiper .swiper-slide .st{ font-size: 14px; padding: 8px 10px;}
    .fa-swiper .swiper-button-next,.fa-swiper .swiper-button-prev{ width: 30px; height: 40px;}
    .fa-swiper .swiper-button-next::after, .fa-swiper .swiper-button-prev::after{ font-size: 14px;}
    .fa-swiper .swiper-slide .num {
        bottom: 80px;
        font-size: 12px;
        left: -18px;
    }
    .fa-swiper .swiper-slide:hover::after{ background-size: 50px;}
    .tc-cp{ padding: 40px 0; background-position: left;}
    .tc-cp .mxw-box{ flex-wrap: wrap;}
    .tc-cp .mxw-box .tc-left{ width: 100%; padding: 0;}
    .tc-cp .mxw-box .tc-left .desc{ margin: 20px auto 10px; font-size: 14px;}
    .tc-cp .mxw-box .tc-left .cp-more img{ width: 25px; margin-right: 10px;}
    .tc-cp .mxw-box .tc-left .cp-more{ font-size: 14px;}
    .tc-cp .mxw-box .center{ margin: 20px auto;}
    .tc-cp .mxw-box .tc-right{ padding: 0; width: 100%;}

    .tc-cp .mxw-box .tc-right .item{ padding: 8px 15px;}

    .tc-pro .body .item .flx .cn{ font-size: 14px;}
    .tc-pro .body .item .flx .en{ font-size: 12px;}
    .tc-pro .body .item .flx .cn::after{ height: 2px; margin: 5px auto;}
    .tc-pro .body .item .flx .p-more{ margin-top: 15px; padding: 6px 10px; font-size: 12px;}
    .tc-cp .mxw-box .tc-right .item{ font-size: 16px;}
    .tc-cp .mxw-box .tc-right .item::before,.tc-cp .mxw-box .tc-right .item::after{ width: 20px; height: 20px; border-width: 5px; }

    .tc-case{ padding: 45px 0; background-size: auto 190px; }
    .case-cate{ margin: 35px auto 10px; flex-wrap: wrap; justify-content: space-between;}
    .case-cate .item{ padding:8px 10px; margin: 0; font-size: 16px ; width: 48.5%}
    .case-cate .item::before{ width: 20px; height: 20px;border-width: 5px; margin-right: 10px; }
    .case-cate .item:nth-child(2)~.item{ margin-top: 10px;}
    .case-swiper .swiper-slide{ justify-content: space-between;}
    .case-swiper .swiper-slide .item{ width: 48.5%; margin: 0}
    .case-swiper .swiper-slide .item .title{ padding:6px 10px; font-size: 14px;}
    .case-swiper .swiper-slide .item:nth-child(2)~.item{ margin-top: 15px;}

    .tc-about{ padding-top: 45px; background-size: auto 250px; padding-bottom: 45px;}
    .tc-about .list{ margin: 25px auto 10px;}
    .tc-about .list .item img{ height: 30px;}
    .tc-about .list .item{ text-align: center; }
    .tc-about .list .item .cn{ font-size: 16px; margin-top: 10px;}
    .tc-about .list .item .en{ font-size: 14px; margin-top: 5px;}
    .tc-about .body .tc-left .text{ margin-top: 15px; font-size: 14px; line-height: 1.6; width: 100%; margin-bottom: 15px;}
    .tc-about .body{ flex-wrap: wrap; margin-top: 15px;}
    .tc-about .body .tc-left{ padding: 0 ; order: 1;}
    .tc-about .body .tc-right{ width: 100%}
    .a-more{ font-size: 14px;}
    .a-more img{ width: 30px; margin-right: 10px;}

    .about-box2{ padding: 45px 0}
    .tc-ys{ background-size: 100px auto;}
    .about-box2 .list{ margin-top: 15px; flex-wrap: wrap; justify-content: space-between}
    .about-box2 .list .item{ width: 100%; padding: 25px 10px;}
    .about-box2 .list .item img{ height: 60px;}
    .about-box2 .list .item .cn{ font-size: 16px; margin-top: 15px;}
    .about-box2 .list .item .en{ font-size: 12px; margin-top: 5px;}
    .about-box2 .list .item .desc{ font-size: 14px; line-height: 1.6}
    .about-box2 .list .item:nth-child(1)~.item{ margin-top: 15px;}
    .tc-news{ padding: 0 0 45px;}
    .tc-news .up{ flex-wrap: wrap;}
    .tc-news .up .tc-title{ width: 100%}
    .tc-news .a-more{ margin-left: auto; margin-right: 0; margin-top: 12px;}
    .tc-news .body{ margin-top: 25px; flex-wrap: wrap;}
    .tc-news .body .tc-left{ width: 100%}
    .tc-news .body .tc-left .flx .desc{ font-size: 14px;line-height: 1.5;}
    .tc-news .body .tc-left .flx{ bottom: 15px;  padding: 0 15px; width: 100%;}
    .tc-news .body .tc-left .flx .st{ font-size: 16px; margin-bottom: 5px;}
    .tc-news .body .tc-right{ padding: 0; margin-top: 20px; }
    .tc-news .body .tc-right .item{ padding: 10px;}
    .tc-news .body .tc-right .item .desc{ font-size: 14px; margin-top: 10px;}
    .tc-news .body .tc-right .title{ font-size: 16px;}
    .tc-news .body .tc-right .item:nth-child(1)~.item{ margin-top: 10px;}

    footer{ padding-top: 45px;}
    footer .up .tc-left .logo{ padding-bottom: 10px;}
    footer .up{ flex-wrap: wrap; padding-bottom: 40px;}
    footer .up .tc-left{ width: 100%}
    footer .up .tc-left .desc{ margin-top: 15px;}
    footer .up .tc-right{ display: none}
    footer .up .tc-left .desc .ft{ font-size: 16px;}
    footer .up .tc-left .desc p{ font-size: 14px; margin-top: 10px;}
    .page-position .mxw-box{ font-size: 12px; padding-bottom: 10px;}
    .jjfa-cate .mxw-box{ padding: 0; flex-wrap: wrap;}
    .jjfa-cate .mxw-box .item{ width: 25%}
    .jjfa-cate .mxw-box .item img{ height: 20px;}
    .jjfa-cate .mxw-box .item p{ font-size: 14px; }
    .jjfa-cate .mxw-box .item{ padding: 10px 5px;}

    .jjfa-box1{ padding: 45px 0}
    .tc-title2 .cn{ font-size: 22px;}
    .tc-title2 .en{ font-size: 14px;}
    .tc-title2 .cn::after{ margin: 10px auto;}
    .jjfa-swiper,.jjfa-box2 .mxw-box{ padding: 0}

    .jjfa-swiper .swiper-slide .tc-left{ width: 40%;}
    .jjfa-swiper .swiper-slide .tc-right{ padding: 10px 12px;}
    .jjfa-swiper .swiper-slide .tc-right .st{ font-size: 16px;}
    .jjfa-swiper .swiper-slide .tc-right .st:after{ height: 2px; margin: 5px auto 10px 0}
    .jjfa-swiper .swiper-slide .tc-right .desc{ font-size: 14px;}
    .jjfa-swiper .swiper-slide .tc-right>span{ font-size: 12px; padding: 6px 15px; margin-top: 10px; letter-spacing: 0;}

    .jjfa-swiper .swiper-pagination{ margin-top: 10px;}
    .jjfa-swiper .swiper-pagination .swiper-pagination-bullet{ width: 8px; height: 8px;}

    .jjfa-box2 .body .tc-right{ margin-top: 0}

    .jjfa-box3{ padding: 45px 0}
    .jjfa-box3 .mxw-box,.jjfa-box4 .mxw-box{ padding: 0}
    .jjfa-box3 .mxw-box .body{ margin-top: 25px; flex-wrap: wrap;}
    .jjfa-box3 .mxw-box .body .tc-left{ width: 100%}
    .jjfa3-swiper .swiper-pagination .swiper-pagination-bullet{ height: 8px; width: 8px;}
    .jjfa-box3 .mxw-box .body .tc-right{ padding-top: 20px; padding-left: 0}
    .jjfa-box3 .mxw-box .body .tc-right .tc1 .title{ font-size: 18px;}
    .jjfa-box3 .mxw-box .body .tc-right .tc1{ padding-right: 15px;}
    .jjfa-box3 .mxw-box .body .tc-right .tc1 .desc{ font-size: 14px; margin-top: 15px;}
    .jjfa-box3 .mxw-box .body .tc-right .tc2{ padding-top: 40px; width: initial}
    .jjfa-box3 .mxw-box .body .tc-right .tc2 .m2{ font-size: 18px;}
    .jjfa-box3 .mxw-box .body .tc-right .tc2 .m2:first-child~.m2{ margin-top: 15px;}
    .jjfa-box3 .mxw-box .body .tc-right .tc1 .y-more{ margin-top: 15px; padding: 8px 15px; font-size: 14px;}

    .jjfa-box3 .mxw-box .list{ margin-top: 25px;}
    .jjfa3-swiper2 .swiper-slide p,.jjfa-box4 .list p{ padding: 6px 10px; font-size: 14px;}
    .jjfa-box4{ padding: 45px 0; }
    .pro-body>.mxw-box{ padding: 0}
    .pro-cate{ margin-top: 15px; flex-wrap: wrap; justify-content: space-between;}
    .pro-cate .item{ font-size: 16px; padding: 8px 10px; margin: 0; width: 48.5%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden}
    .pro-cate .item:nth-child(2n)~.item{ margin-top: 10px;}
    .pro-body .tc-title2{ margin-top: 45px;}
    .pro-body .top{ margin-top: 20px;}
    .pro-body>.mxw-box>.top{ font-size: 14px; display: none}
    .pro-body .top .tc-left{ }
    .pro-body .list{ margin-top: 20px;}
    .pro-body .list .item{ width: 100%;}
    .pro-body .list .item:nth-child(1)~.item{ margin-top: 15px;}
    .pro-body .list .item .tc-left{ width: 40%;}
    .pro-body .list .item .tc-right{ padding: 10px 12px;}
    .pro-body .list .item .tc-right .st{ font-size: 16px;}
    .pro-body .list .item .tc-right .st:after{ height: 2px; margin: 5px auto 10px 0}
    .pro-body .list .item .tc-right .desc{ font-size: 14px;}
    .pro-body .list .item .tc-right>span{ font-size: 12px; padding: 6px 15px; margin-top: 10px; letter-spacing: 0;}
    .ny-product-desc{ padding-bottom: 45px;}

    .about-body{ padding: 45px 0}
    .about-body .mxw-box,.ny-news .mxw-box{ padding: 0}
    .about-box1 .desc{ margin-top: 25px; padding-top: 20px;}
    .about-box1 .desc{ font-size: 14px; line-height: 1.6}
    .about-box1 .list{ margin: 20px auto; justify-content: space-around }
    .about-box1 .list .item{ margin: 0;}
    .about-box1 .list .item img{ height: 25px;}
    .about-box1 .list .item .cn{ font-size: 16px; margin-top: 10px;}
    .about-box1 .list .item .en{ font-size: 12px; margin-top: 5px;}
    .video-box{ padding-bottom: 35px;}
    .video-box .video{ width: 90%; min-width: initial}
    .video-box .video::after{ width: 40px; height: 40px;}
    .about-box3{ padding: 45px 0}
    .fz-swiper{ margin: 30px auto; width: 95%; }
    .fz-swiper .swiper-slide{}
    .fz-swiper .swiper-slide.swiper-slide-active .text1, .fz-swiper .swiper-slide.swiper-slide-active .text2{ font-size: 14px;}
    .fz-swiper .swiper-slide.swiper-slide-active .num{ font-size: 30px;}
    .fz-swiper .swiper-button-prev{ left: 0; zoom: 0.6}
    .fz-swiper .swiper-button-next{ right: 0; zoom: 0.6}
    .fz-swiper .swiper-slide .desc{ margin: 15px auto 0; font-size: 14px;}
    .fz-swiper .swiper-slide.swiper-slide-active .desc{font-size: 14px; width: 75%; line-height: 1.6}
    .about-box4{ padding: 45px 0 0}
    .about-box4 .ab4-swiper{ margin-top: 25px;}
    .pan .t1{ font-size: 14px;}
    .pan .t1 span{ font-size: 18px;}
    .ab4-swiper{ }
    .ab4-swiper .swiper-slide{ width: 50%; display: flex;align-items: flex-end}
    .ab4-swiper .swiper-wrapper{ align-items: stretch;}
    .about-box4 .ab4-swiper{ padding-bottom: 20px; background-size: auto 40px;}
    .ny-news{ margin-top: 0; padding-top: 0; margin-bottom: 45px; padding-bottom: 15px;}
    .ny-news .pro-cate{ margin-bottom: 25px;}
    .case-body .mxw-box,.mxw-ny-news-desc .mxw-box{ padding: 0}
    .case-body .case-list{ margin-top: 25px;}
    .case-body .case-list .item p{ font-size: 14px; padding: 6px 15px;  letter-spacing: 0;}
    .ny-news-desc{ padding: 45px 0;}
    .pg{ margin: 45px auto 0; font-size: 14px; line-height: 1.85}

    .contact-box1 .c-title .en{ font-size: 18px;}
    .contact-box1 .c-title .cn{ font-size: 20px; margin-top: 3px; margin-bottom: 15px;}
    .contact-box1 .c-title .desc{ font-size: 14px;}
    .contact-box1 .list .item{ width: 100%; zoom: 0.9}
    .contact-box1 .list{ margin-top: 25px; flex-wrap: wrap;}
    .contact-box1 .list .item:nth-child(1)~.item{ margin-top: 20px}
    .contact-box1 .list .item .desc br{ display: none}
    .cont-map{ height: 400px; margin: 35px auto;}
    .msg-box .inp{ flex-wrap: wrap; margin-bottom: 15px}
    .msg-box .inp .item{ width: 100%;}
    .msg-box .inp .item:last-child{ margin-top: 15px;}
    .subx{ margin-top: 25px}
    .msg-box{ margin-top: 25px;}
    .msg-box .inp .item p,.msg-box .tx-box p{ font-size: 16px;}
    .msg-box .inp .item input,.msg-box .tx-box textarea{padding: 8px 10px; font-size: 14px; margin-top: 5px; color: #333}
    .subx{ font-size: 16px; padding: 10px 30px; width: initial; height: initial; }
    .msg-box{ margin-bottom: 45px;}
    .msg-box .tx-box textarea{ height: 100px; font-size: 14px;}
    .msg-box .tx-box textarea::placeholder{ font-size: 14px;}

    .ny-news .item .info{ padding: 10px 0}
    .ny-news .item .image{ margin-bottom: 0}
    .mxw-ny-box{padding: 45px 0;}
    body{ margin-bottom: 0}
    .ny-news-desc .title{ font-size: 18px;}
    .ny-news-desc .article{ font-size: 14px; line-height: 1.8}
    .ny-news-desc .article h2{ font-size: 16px;}
}












