@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
    image-rendering: -moz-crisp-edges; /* Firefox */
   image-rendering: -o-crisp-edges; /* Opera */
   image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
   -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 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: #c7000c;
    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: #c7000c;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #f9f9f9;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #c7000c;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #c7000c;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    width: 65px;
    height: 44px;
    background-color: #c7000c;
    border-radius: 0px 5px 5px 0px;
     color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;

}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 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%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 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;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: none;
    margin-left: 5px;
    margin-right: 5px;
    border: 2px solid #fff;
    outline: none;
    opacity: 1;
    border-radius: 50%;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    border-color: #fff;

}
.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: #c7000c;
}
.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 {

    }
    .mxw-box {
        max-width: 89%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1600px;
        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 ==================== */
.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;}
.product-detail-tab .product-detail-tabli li{background:#c7000c;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 240%;
        width:240%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
	.footer3 ul li .iconfont{ width:initial; height:initial}
    .product-detail-tab .product-detail-tabcon iframe,.product-detail-tab .product-detail-tabcon video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content  iframe, .xypg-right-content  video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content img{ max-width: 100%; height: auto !important;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}
.top-box .logo-box{  font-size: 0;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start;
    padding: 0.3rem 0 0.3rem   0;
   }
.top-box .logo-box .t-logo>img{ max-height:1.033rem;}

.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: #c7000c; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; opacity: 0.4 }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;overflow:visible;}
.mxw-link .mxw-link-list{color:#333;position:absolute;top:0;left:0;width:100%;transform:translateY(-100%);padding:10px 0;display:none; background: #fff;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:0.3rem;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:0.267rem;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{  position: fixed; z-index: 99; top: 0; width: 100%;  background: #c7000c;}
header .welcome {
    background: #11509b;
    line-height: 0.833rem;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #aeaeae;
}


.top-box{ align-items: stretch;}
.top-box .right{ display: flex; flex-grow:1; min-width: 0;  padding-left: 4rem; justify-content: flex-end; align-items: center;  color: #fff; }
.top-box .right .tp-lang{ flex-shrink: 0;	font-size: 0.267rem; }
.top-box .right .tp-lang img{ margin-left: 0.167rem;}




.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;

}
.x-menu > li {
    margin: 0;
    text-align: center;
    float: none;
    position: relative;

    z-index: 1;
}

.x-menu > li > a {
    font-size: 0.3rem;
    color: #fff;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding: 0.3rem 0 0.35rem;
    line-height: 1.2;
    position: relative;z-index: 2;
}

.x-menu > li > a:hover {
    color: #fff;
}

.x-menu>li.active{ color: #fff;  		}

.x-menu > li.active > a {
    color: #fff;font-weight: bold;
}

.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 200px;
    left:50%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,20px);
    transform: translate(-50%,20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;

}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#c7000c;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}

.x-menu > li.lang>a img{ margin-left: 0.367rem;}
.n-banner>img{ width: 100%;}

.ny-cate{ padding: 0.3rem 0 0.28rem; border-bottom: 1px solid #eee; }
.ny-cate .mxw-box{ display: flex; align-items: center; justify-content: center;}
.ny-cate .mxw-box .item{ padding: 0.15rem 0.233rem; color: #fff;	background-color: #9f9f9f;	border-radius: 0.3rem; margin: 0 0.3rem;line-height: 1;}
.ny-cate .mxw-box .item.active{	background-color: #d92130;}

.about-box1{ padding: 0.5rem 0 0.75rem;}
.about-box1 .top{ display: flex; align-items: center; justify-content: center;}
.about-box1 .top .tc-left{	font-size: 1.667rem;color: #d92130; font-weight: bold;	font-style: italic; line-height: 1; ; padding: 0.267rem 1.167rem 0.267rem 0; border-right: 4px solid #d92130}
.about-box1 .top .tc-left span{font-size: 0.6rem;}
.about-box1 .top .tc-right{ padding-left: 0.8rem; }
.about-box1 .top .tc-right .en{font-size: 0.433rem; font-weight: bold;}
.about-box1 .top .tc-right .cn{color: #222222; font-size: 0.333rem; margin-top: 0.167rem;}
.about-box1 .desc{	font-size: 0.3rem; line-height: 2.1;color: #666666; margin: 1.033rem ;}
.about-box1 .list{ display: flex; align-items: stretch; justify-content: space-between;}
.about-box1 .list .item{ width: 31.5%;}


.about-box2{ padding: 1rem 0 2.517rem; background: url("../images/ab2-bg.png") center no-repeat; background-size: cover;}
.ab-title{ text-align: center;	font-size: 0.5rem; color: #000;}
.ab-title::after{	width: 24px;
    height: 2px;
    background-color: #d92130; display: block; content: ""; margin: 0.367rem auto 0; }
.about-box2 .list{ display: flex; margin: 1.417rem auto 0; width: 100%; justify-content: space-around; align-items: flex-start;  }
.about-box2 .list .item{ text-align: left;}
.about-box2 .list .item img{ height: 1.267rem;}
.about-box2 .list .item .en{	font-size: 0.6rem; margin-top: 0.567rem;}
.about-box2 .list .item .cn{font-size: 0.5rem;}
.about-box2 .list .item .desc{font-size: 0.3rem;color: #666; line-height: 2; margin-top: 0.3rem;}

.about-box3{ padding: 1.333rem 0 1rem;background-color: #f5f6fa;}
.ab3-swiper{ margin: 0.633rem auto 0; overflow: hidden;}
.ab3-swiper .swiper-slide{ width: 25%}
.ab3-swiper .swiper-slide .st{	font-size: 0.267rem; margin-top: 0.233rem; text-align: center;}
.ab3-swiper .swiper-pagination{ position: initial; margin: 1rem auto 0; font-size: 0}
.ab3-swiper .swiper-pagination .swiper-pagination-bullet{	width: 15px;
    height: 15px;
    background-color: #6c6b6b;}
.ab3-swiper .swiper-pagination .swiper-pagination-bullet-active{	background-color: #c7000c;}


.about-box4{ padding: 1.3rem 0;}
.ab4-swiper{ margin: 0.633rem auto 0; overflow: hidden;}
.ab4-swiper .swiper-slide{ width: 18%; text-align: center; margin-right: 2%}
.ab4-swiper .swiper-slide .st{font-size: 0.3rem; margin: 0.25rem auto 0;}
.ab4-swiper .swiper-slide .desc{ margin: 0.1rem auto 0; line-height: 1.8;font-size: 0.267rem; text-align: left}
.ab4-swiper .swiper-pagination{ position: initial; margin: 1rem auto 0; font-size: 0}
.ab4-swiper .swiper-pagination .swiper-pagination-bullet{	width: 15px;
    height: 15px;
    background-color: #6c6b6b;}
.ab4-swiper .swiper-pagination .swiper-pagination-bullet-active{	background-color: #c7000c;}


.about-box5{ padding: 1.033rem 0 1.533rem;	background-color: #ebf0f5;}

.hs-swiper{ margin: 1.133rem auto 0; overflow: hidden}
.hs-swiper>.swiper-wrapper>.swiper-slide{  display: flex; align-items: stretch; justify-content: space-between;}
.hs-swiper>.swiper-wrapper>.swiper-slide .tc-left{ width: 44.5%; flex-shrink: 0; position: relative; z-index: 1;}
.hs-swiper>.swiper-wrapper>.swiper-slide .tc-right{ padding: 0.167rem 0.467rem 0.167rem 1.333rem; position: relative; display: flex; align-items: center; flex-grow: 1; min-width: 0; }
.hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .num{	font-size: 6rem; color: rgba(255, 255, 255, 0.4); position: absolute; z-index: 0; font-weight: bold;top: -0.6rem; line-height: 1; letter-spacing: 0; left: -1.2rem; }
.hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .con{ position: relative; z-index: 1; width: 100%;}
.hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .con .st{	font-size: 0.6rem;letter-spacing: -0.033rem;color: #c7000c;}
.hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .con .st span{font-size: 0.3rem;	color: #d92837; margin-left: 0.1rem;}
.hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .con .moon{ margin: 0.3rem auto 0.6rem;font-size: 0.333rem;	color: #afafaf;}
.hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .con .desc{	font-size: 0.3rem; line-height: 2;}
.hi-s{ width: 100%;}
.hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .con .moon span{ cursor: pointer}
.hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .con .moon span.active{ color: #d92837}

.hsd{ width: 100%; margin: 1.417rem auto 0; }
.hsd-swiper{ overflow: hidden}
.hsd-swiper>.swiper-wrapper>.swiper-slide{ text-align: center; cursor: pointer;}
.hsd-swiper>.swiper-wrapper>.swiper-slide::before{width: 6px;
    height: 6px;
    background-color: #777777; content: ""; display: block; margin: 10px auto; border-radius: 50%;}
.hsd-swiper>.swiper-wrapper>.swiper-slide.swiper-slide-thumb-active::before{	background-color: #c7000c;}
.hsd-swiper>.swiper-wrapper>.swiper-slide.swiper-slide-thumb-active{	color: #c7000c;}

.pro-main{ padding: 0.5rem 0 1rem;	}
.pro-item{ padding: 0.667rem 0; background-color: #f7f7f7; display: block;}
.pro-item>.mxw-box{ display: flex; align-items: stretch; justify-content: space-between; }
.pro-item>.mxw-box .tc-right{ width: 42%; flex-shrink: 0;}
.pro-item>.mxw-box .tc-left{ flex-grow: 1; min-width: 0; padding-right: 2.067rem;}
.pro-item>.mxw-box .tc-left .st{	font-size: 0.667rem; font-weight: bold;color: #c7000c;}
.pro-item>.mxw-box .tc-left .st2{	font-size: 0.4rem; font-weight: bold; margin: 0.367rem auto 0;}
.pro-item>.mxw-box .tc-left .st2::after{	width: 158px;
    height: 2px;
    background-color: #c7000c; content: ""; display: block; margin: 0.533rem auto 0.533rem 0;}
.pro-item>.mxw-box .tc-left .desc{font-size: 0.267rem; line-height: 2;color: #333333;}
.pro-item:nth-child(2n){ background: none;}
.pro-item:nth-child(2n) .tc-left{ order: 1; padding-right: 0; padding-left: 2rem;}
.pro-item>.mxw-box .tc-left .a-mo{	font-size: 0.267rem;color: #bc0e0b; margin-top: 0.5rem;transition: all 0.3s}
.pro-item>.mxw-box .tc-left .a-mo img{  transition: all 0.3s}
.pro-item>.mxw-box .tc-left .a-mo:hover img{ margin-left: 0.2rem; transition: all 0.3s}
.case-list .item{ display: flex; align-items: stretch; justify-content: space-between;	background-color: #f7f7f7;}
.case-list .item .tc-left{ width: 50%; flex-shrink: 0;}
.case-list .item .tc-right{ flex-grow: 1; min-width: 0; padding: 0.667rem 1.417rem 0.933rem 0.967rem;}
.case-list .item:nth-child(1)~.item{ margin-top: 0.667rem; }
.case-list .item .tc-right .st{	font-size: 0.333rem; font-weight: bold;}
.case-list .item .tc-right .desc{ margin: 0.533rem auto 0.667rem;	font-size: 0.267rem; line-height: 2;}
.case-list .item .tc-right .cl-more{	font-size: 0.233rem; color: #888;}
.case-list .item .tc-right .cl-more img{ margin-left: 0.333rem; height: 0.267rem;}
.case-list .item:hover .cl-more img{filter: invert(34%) sepia(92%) saturate(7307%) hue-rotate(343deg) brightness(72%) contrast(130%);}

.csr{ padding: 0.5rem 2.667rem 1.167rem; display: flex; align-items: center; justify-content: space-between;}
.csr .tc-left{ width: 51.18%; flex-shrink: 0;}
.csr .tc-right{ flex-grow: 1; min-width: 0; padding-left: 2.75rem;}
.csr .tc-right .st1{	font-size: 0.5rem; font-weight: bold; color: #d92130}
.csr .tc-right .st2{	font-size: 0.5rem; font-weight: bold;}
.csr .tc-right .desc{	font-size: 0.267rem; line-height: 2; margin-top: 0.75rem;}

.honor{ padding: 1rem 0 1.5rem; margin-bottom: 1.667rem; background: url("../images/honor-bg.jpg") bottom center no-repeat; background-size: 100% auto;}
.honor-swiper{ margin: 0.967rem auto 1.5rem; overflow: hidden}
.honor-swiper .swiper-slide{ width: 25%;}
.honor-swiper .swiper-slide p{	font-size: 0.3rem; text-align: center; margin-top: 0.25rem}
.honor .cat{ display: flex; align-items: center; justify-content: center;}
.honor .cat .swiper-button-prev,.honor .cat .swiper-button-next{ position: initial; margin: 0 0.3rem; width: 0.8rem; height: 0.8rem;}

.news-main{ padding: 0.5rem 0 1.333rem;}
.news-main .list{ width: 100%;}
.news-main .list .item{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.5rem; border-bottom: 1px solid #ccc;}
.news-main .list .item .mxw-image{ width: 13.8%; flex-shrink: 0; margin-right: 0.45rem;}
.news-main .list .item .info{ flex-grow: 1; min-width: 0;}
.news-main .list .item .info .title{ font-size: 0.333rem;}
.news-main .list .item .info .desc{	font-size: 0.267rem; color: #666; margin: 0.25rem auto; line-height: 1.6}
.news-main .list .item .info .time{ font-size: 0.267rem;}
.news-main .list .item:hover .title{ color: #d92130}
.news-main .list .item:nth-child(1)~.item{ margin-top: 0.55rem;}


.cont-page{ padding-top: 1rem;}
.cont-box1{ padding-bottom: 1.4rem; background-color: #f8f8f8;}
.cont-box1>.mxw-box{display: flex; align-items: stretch; justify-content: space-between;  background: #fff;}
.cont-box1 .tc-right{ width: 32%; flex-shrink: 0;}
.cont-box1 .tc-left{ flex-grow: 1; min-width: 0;
    padding: 0.833rem; display: flex; align-items: flex-start;}
.cont-box1 .tc-left .info{ flex-grow: 1; min-width: 0;}
.cont-box1 .tc-left .ewm-box{ margin-right: 1.25rem; width:  4.667rem; flex-shrink: 0; margin-left: 1rem;}
.cont-box1 .tc-left .ewm-box .title{font-size: 0.3rem;}
.cont-box1 .tc-left .ewm-box .title::after{ display: block;	width: 40px;
    height: 2px;
    background-color: #666666; margin: 0.667rem auto 0.75rem 0; content: "";}
.cont-box1 .tc-left .ewm-box .item{ display: flex; align-items: center;	font-size: 0.267rem; color: #555;}
.cont-box1 .tc-left .ewm-box .item .img{	border: solid 2px #e9e9e9;}
.cont-box1 .tc-left .ewm-box .item p{ margin-left: 0.333rem;}
.cont-box1 .tc-left .ewm-box .item:nth-child(1)~.item{ margin-top: 0.25rem;}

.cont-box1 .tc-left .cn{	font-size: 0.567rem; color: #e5222a; font-weight: bold;}
.cont-box1 .tc-left .en{	font-size: 0.3rem; color: #666;  margin-top: 0.233rem;}
.cont-box1 .tc-left .en::after{ margin-top: 0.433rem;width: 40px;
    height: 2px;
    background-color: #666666; content: ""; display: block;}
.cont-box1 .tc-left .desc{font-size: 0.3rem; line-height: 2.5; margin-top: 0.333rem;}
.cont-box1 .tc-right .map{ height: 100%;}

.cont-box2{ padding: 1rem 0 1.25rem;	}
.cont-box2>.mxw-box{ display: flex; display: -webkit-flex; justify-content: space-between; align-items: flex-start;}
.cont-box2>.mxw-box .tc-right{ width: 46.75%; flex-shrink: 0; }
.cont-box2>.mxw-box .tc-left{ flex-grow: 1; min-width: 0; padding-right: 2.917rem;}

.cont-box2>.mxw-box .tc-left .cn{ font-size: 0.567rem;  font-weight: bold;}
.cont-box2>.mxw-box .tc-left .en{	font-size: 0.3rem; color: #666; margin-top: 0.167rem;}
.cont-box2>.mxw-box .tc-left .st{font-size: 0.3rem; color: #666; margin-top: 0.833rem; padding-bottom: 0.367rem; border-bottom: 1px solid rgba(0, 0, 0, 0.2);}
.cont-box2>.mxw-box .tc-left .list{ margin-top: 0.933rem; display: flex; display: -webkit-flex; justify-content: space-between; padding-bottom: 0.333rem; border-bottom: 1px solid rgba(0, 0, 0, 0.2);}
.cont-box2>.mxw-box .tc-left .list .item{ width: 50%;}
.cont-box2>.mxw-box .tc-left .list .item .tx1{	font-size: 0.3rem; color: #666;}
.cont-box2>.mxw-box .tc-left .list .item .tx2{		font-size: 0.3rem; font-weight: bold; color: #333; margin-top: 0.167rem;}

.cont-box2>.mxw-box .tc-right .nq1{ display: flex; align-items: stretch; justify-content: space-between; display: -webkit-flex;}
.cont-box2>.mxw-box .tc-right .nq1 input{ width: 49%;  padding: 0.3rem 0.467rem; background: #f5f6f7;font-size: 0.267rem; color: #888; }
.cont-box2>.mxw-box .tc-right .nq2{ margin-top: 0.2rem;}
.cont-box2>.mxw-box .tc-right .nq2 input{ width: 100%;  padding: 0.3rem 0.467rem; background: #f5f6f7;font-size: 0.267rem; color: #888;}
.cont-box2>.mxw-box .tc-right .nq3{ margin-top: 0.35rem;}
.cont-box2>.mxw-box .tc-right .nq3 textarea{ resize: none; padding: 0.3rem 0.467rem; background: #f5f6f7;font-size: 0.267rem; color: #888; width: 100%; border: 0; height: 4rem;}
.cont-box2>.mxw-box .tc-right button{ margin-top: 0.3rem;background-color: #e60013;font-size: 0.367rem; padding: 0.25rem 0.933rem;cursor: pointer; color: #fff;}
.tc-about{ background: url("../images/about-bg.jpg") top center no-repeat; background-size:100% auto;padding: 0.867rem 0;}
.tc-about .top{ display: flex; align-items: stretch; justify-content: space-between; }
.tc-about .top .tc-right{ width: 49.25%; flex-shrink: 0;}
.tc-about .top .tc-left{ flex-grow: 1; min-width: 0; padding: 0.2rem 1.583rem 0.2rem 0;}
.tc-about .top .tc-left .en{	font-size: 0.267rem;color: #dd4454; font-weight: bold;}
.tc-about .top .tc-left .cn{	font-size: 0.667rem; font-weight: bold;}
.tc-about .top .tc-left .desc{font-size: 0.267rem; line-height: 1.8; text-indent: 2em; margin: 0.6rem auto 0.6rem;}
.tc-about .top .tc-left .a-mo{	font-size: 0.267rem;color: #bc0e0b;}
.tc-about .top .tc-left .a-mo img{ margin-left: 0.25rem;}
.tc-about .top .tc-left .en::after{	width: 3.75rem;
    height: 2px;
    background-color: #dd4454; margin: 0.333rem auto 0.267rem 0;}
.tc-about .list{ display: flex; align-items: stretch; justify-content: space-between; margin: 1rem auto 0;}
.tc-about .list .item{ width: 32%;position: relative; }
.tc-about .list .item .flx{ position: absolute; display: flex; align-items: center; justify-content: center; flex-direction: column; background: rgba(183, 30, 34, 0.7); width: 100%; height: 100%; top: 0; left: 0;
}
.tc-about .list .item .flx p{ color: #fff;  opacity: 0.7; margin-top: 0.25rem;}
.tc-about .list .item .flx .icon{ opacity: 0.7;}
.tc-about .list .item .flx .icon img{ height: 0.7rem;}
.tc-about .list .item:hover .flx .icon{ opacity: 1}
.tc-about .list .item:hover .flx p{ opacity: 1}

.tc-yw{ padding: 0.833rem 0 0;}
.yw-title{ text-align: center}
.yw-title .cn{	font-size: 0.667rem; font-weight: bold;line-height: 1;}
.yw-title .en{	font-size: 0.267rem;	color: #dd4454; margin-bottom: 0.25rem; font-weight: bold; line-height: 1;}
.yw-swiper{ overflow: hidden; width: 100%; max-width: 1920px;
    margin:0.917rem auto 0; position: relative}
.yw-swiper .swiper-slide{ position: relative;}
.yw-swiper .swiper-slide>img{ width: 100%;}
.yw-swiper .yw-cate{ position: absolute; bottom: 0; width: 100%; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap; z-index: 1; left: 0; right: 0;background-color: rgba(0, 0, 0, 0.3);}
.yw-swiper .yw-cate .item{ padding:0.383rem; 	font-size: 0.4rem; color:#fff;text-align: center; width: 33.333%; border-right: 1px solid rgba(255, 255, 255, 0.3);}
.yw-swiper .yw-cate .item:nth-child(3n){ border-right: 0}
.yw-swiper .yw-cate .item:nth-child(3n)~.item{ border-top: 1px solid rgba(255, 255, 255, 0.3);}
.yw-swiper .yw-cate .item img{ height: 1rem; margin-right: 0.8rem;}
.yw-swiper .swiper-slide .flx{ padding-bottom:3.6rem; height: 100%; bottom: 0; position: absolute; left: 0; right: 0; background: url("../images/glx-bg.png") left center no-repeat; background-size: auto 100%;	}
.yw-swiper .swiper-slide .flx .mxw-box{
    color: #fff; height: 100%;
    padding: 1rem 45% 2.083rem 0;
}
.yw-swiper .swiper-slide .flx .en{	font-size: 0.267rem; font-weight: bold;  color: #fff; text-transform: uppercase;}
.yw-swiper .swiper-slide .flx .cn{	font-size: 0.8rem; font-weight: bold; margin-bottom: 0.333rem;}
.yw-swiper .swiper-slide .flx .desc{	font-size: 0.3rem; line-height: 1.8; margin: 1rem auto;}
.yw-swiper .yw-cate .item.active{	background-image: linear-gradient(-90deg,
#bc0e0b 0%,
#f84b48 100%),
linear-gradient(
        #bc0e0b,
        #bc0e0b);
    background-blend-mode: normal,
    normal;}
.tc-news{ padding: 1.333rem 0 1rem; margin-bottom: 1.167rem;	background-color: #f7f7f7;}
.tc-news .yw-title{ text-align: left;}
.yw-title::after{	width: 50px;
    height: 5px;
    background-color: #bc0e0b; content: ""; display: block; margin: 0.25rem auto 0;}
.tc-news .yw-title::after{ margin-left: 0;}

.news-body{ margin: 1rem auto 0; display: flex; align-items: stretch; justify-content: space-between;}
.news-body .tc-left{flex-grow: 1; min-width: 0; margin-right: 0.967rem; display: flex; align-items: stretch; justify-content: space-between;}
.news-body .tc-right{ width: 35.5%; flex-shrink: 0;	background-image: linear-gradient(
        #ffffff,
        #ffffff),
linear-gradient(
        #f7f7f7,
        #f7f7f7);
    background-blend-mode: normal,
    normal;
    box-shadow: 0px 2px 13px 0px
    rgba(0, 0, 0, 0.1);padding: 0.867rem 0.633rem 0.333rem;}
.news-body .tc-left .item{ width: 47.5%;	background-image: linear-gradient(-90deg,
#bc0e0b 0%,
#f84b48 100%),
linear-gradient(
        #f7f7f7,
        #f7f7f7);
    background-blend-mode: normal,
    normal; color: #fff; }
.news-body .tc-left .item .st{	font-size: 0.367rem; color: #fff; font-weight: bold; margin: 0.5rem 0.6rem 0.5rem;}
.news-body .tc-left .item .desc{	font-size: 0.267rem; color: #fff; margin: 0 0.6rem 1rem; line-height: 2}
.news-body .tc-left .item .n-more{	font-size: 0.233rem; margin: 0 0.6rem 0.6rem;}
.news-body .tc-left .item .n-more img{ height: 0.267rem; margin-left: 0.3rem;}
.news-body .tc-right .item{ display: block; padding-bottom: 0.5rem; 	border-bottom: solid 2px rgba(142, 143, 142, 0.3);}
.news-body .tc-right .item .st{	font-size: 0.367rem; font-weight: bold; line-height: 1;}
.news-body .tc-right .item .desc{	font-size: 0.267rem; color: #555; margin:0.333rem auto 0.5rem; line-height: 2;}
.news-body .tc-right .item .n-more{	font-size: 0.267rem; color: #555;}
.news-body .tc-right .item:last-child{ border: 0; padding-bottom: 0}
.news-body .tc-right .item:nth-child(1)~.item{ margin-top: 0.767rem;}
.news-body .tc-right .item:hover .st{color: #f84b48}

.d-menu{ display: flex; align-items: stretch; justify-content: space-between; margin-bottom: 1.25rem; }
.d-menu .item{ margin-right: 1px; position: relative;overflow: hidden;}
.d-menu .item:last-child{ margin-right: 0}
.d-menu .item .flx1{ transition: all 0.3s; position: absolute; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; left: 0; top: 0; flex-direction: column;}
.d-menu .item .flx2{ width: 100%; height: 100%; display: flex; align-items: flex-start; justify-content: flex-start; left: -100%; top: 0; position: absolute; flex-direction: column;}
.d-menu .item .flx1 img{ height: 0.617rem;}
.d-menu .item .flx1 .cn{	font-size: 0.433rem; font-weight: bold; margin: 0.75rem auto 0;}
.d-menu .item .flx1 .en{	font-size: 0.233rem;	color: #555555; margin: 0.2rem auto 0; text-transform: uppercase}
.d-menu .item:hover .flx2{ left: 0; transition: all 0.3s}
.d-menu .item:hover .flx1{ left: -100%; transition: all 0.3s}
.d-menu .item .flx2{ padding: 1.333rem 0.917rem 0; background: rgba(188, 14, 11, 0.73);}
.d-menu .item .flx2 img{ height: 0.617rem; filter:grayscale(100%)brightness(800%); }
.d-menu .item .flx2 .cn{font-size: 0.433rem; margin: 0.667rem auto 0.2rem 0; text-align: left; color: #fff;}
.d-menu .item .flx2 .en{ font-size: 0.233rem; color: #fff;}
.d-menu .item .flx2 .desc{ 	font-size: 0.333rem; color: #fff; margin-top: 0.583rem;}


.ab-en{ text-align: center; text-transform: uppercase; font-size: 14px;color: #d92130; font-weight: bold;}


.pro-box{
    padding: 0.75rem 0 1rem;
}
.pro-box .item p{ background: #d92130; padding: 0.15rem 0.2rem; color: #fff; text-align: center;}





























    /* ==================== 内页 - 新闻列表2 start ==================== */
.ny-news .item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    transition: all 0.4s;
    border: 0.0167rem solid #dedede;
    box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.14);
    margin-bottom: 0.6667rem;
}
.ny-news .item:hover {
    box-shadow: 0rem 0rem 0.1667rem 0rem rgba(0, 0, 0, 0.14);
}
.ny-news .item:hover .title {
    color: #c7000c;
}
.ny-news .item .image {
    flex-shrink: 0;
    width: 4.6667rem;
    margin-right: 0.5rem;
}
.ny-news .item .info {
    min-width: 0;
    flex-grow: 1;
}
.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;
    color:#333
}
.ny-news .item .time {
    font-size: 0.233rem;
    line-height: 1.2;
    flex-shrink: 0;
    color: #666;
    margin-bottom: 0.15rem;
}
.ny-news .item .desc {
    font-size: 0.2667rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.ny-news .item .more {
    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;
}
@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 {
        margin-bottom: 20px;
        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;
        white-space: inherit;
    }
    .ny-news .item .more {
        width: 100%;
        padding: 8px 20px;
        font-size: 12px;
        height: auto;
        line-height: inherit;
    }
}
/* ==================== 内页 - 新闻列表2 end ==================== */


    /* ==================== 产品详情页 start ==================== */
.ny-product-desc {
    overflow: hidden;
}
.ny-product-desc .product-image {
    width: 44%;
    margin-right: 3%;
    flex-shrink: 0;
    position: relative;
    z-index: 9;
}
.ny-product-desc .product-image img {
    width: 100%;
}
.ny-product-desc .product-desc {
    width: 53%;
}
.ny-product-desc .product-desc .title {
    font-size: 0.4667rem;
    padding-bottom: 0.3333rem;
    border-bottom: 0.0167rem solid #ddd;
    margin-bottom: 0.3333rem;
    font-weight: bold;
    color: #c7000c;
}
.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: 38%;
    flex-shrink: 0;
    margin-right: 5%;
}



.ny-product-desc .right {
    width: 65%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;

}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 0.0167rem solid #dcdcdc;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.5667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;
    max-width: 10rem;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
    max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
    cursor: pointer;
    border: 3px solid #eee;
    border-radius: 0.0833rem;

    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #c7000c;
}
.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-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;
    border-bottom: 0.0833rem solid #c7000c;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #c7000c;
}
.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: 1600px;
    }
    .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 ==================== */

/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 44px 0;

}
.ny-news-desc > .mxw-box {
    padding-top: 0;
}
.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;

    font-size: 15px;
}
.ny-news-desc .pg{ font-size: 0.267rem; line-height: 1.8; margin-top: 1rem;}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {
        font-size: 14px;
        line-height: 1.5;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */


body{ overflow-x: hidden}



.ny-news .nw{ margin: 1rem auto 25px}






.tc-link{  padding-bottom: 1rem; padding-top: 0.867rem; display: flex; align-items: center; justify-content: space-between;	}
.tc-link>.mxw-box{ display: flex; align-items: flex-start; justify-content: space-between; padding-left: 7.7rem;}
.tc-link .title{ flex-shrink: 0;	font-size: 0.267rem; color:#333; font-weight: bold; margin-top: 3px;}
.tc-link .list{ flex-grow: 1; min-width: 0;}
.tc-link .list a{ font-size: 0.233rem; color: #333;  margin-right: 0.3rem;}
.tc-link .list a:hover{ color:#333; }
.footer{	background-color: #bc0e0b;}
.footer>.mxw-box{ display: flex; justify-content: space-between; align-items: stretch;}
.footer>.mxw-box .tc-left{ width: 7.05rem; flex-shrink: 0;	background-color: #ffffff; margin-top: -2.2rem; border-top: 3px solid #dd4454;
    padding: 1rem; text-align: center;}
.footer>.mxw-box .tc-left .st{	font-size: 0.5rem; font-weight: bold; color: #c7000c; margin-bottom: 0.75rem;}
.footer>.mxw-box .tc-left .in1{ width: 100% ; position: relative; text-align: center;}
.footer>.mxw-box .tc-left .in1 input{ width: 100%; font-size: 0.233rem; padding: 0.25rem; color: #999;	border: solid 2px #f2f5f7;
    margin-bottom: 0.15rem; text-align: center;}

.footer>.mxw-box .tc-left .in1 textarea{ resize: none; height: 3.167rem;	font-size: 0.233rem;padding: 0.25rem; color: #999;	width: 100%;border: solid 2px #f2f5f7; text-align: center}
.footer>.mxw-box .tc-left .in1.yz input{ text-align: left}
.footer>.mxw-box .tc-left .in1.yz img{ position: absolute; right: 5px; top: 10px;}
.footer>.mxw-box .tc-left button{ display: inline-block; line-height: 1; padding: 0.333rem 1.3rem;
    background-image: linear-gradient(0deg,
    #bc0e0b 0%,
    #f84b48 100%),
    linear-gradient(-75deg,
            #dd8d45 0%,
            #dd4754 100%);
    background-blend-mode: normal,
    normal;
    border-radius: 0.5rem; color: #fff; font-size: 0.367rem; margin-top: 0.6rem}


.footer>.mxw-box .tc-right{ flex-grow: 1; min-width: 0; padding-left: 0.633rem; }
.footer>.mxw-box .tc-right .top{display: flex; align-items: stretch; justify-content: space-between;}
.footer>.mxw-box .tc-right .c-box1{ width: 33.7%; flex-shrink: 0; padding-top: 0.917rem;}
.ft-menu{ display: flex; align-items: flex-start; justify-content: space-between; margin-top: 1rem; color: #fff;}
.ft-menu .st{	font-size: 0.3rem; font-weight: bold;}
.ft-menu .list a{ display: block; color: rgba(255, 255, 255, 0.59); margin-top: 0.18rem; font-size: 0.267rem}
.footer>.mxw-box .tc-right .c-box2{ margin-left: 3rem; flex-grow: 1; min-width: 0; padding-top: 1.233rem; color: #fff;}
.footer>.mxw-box .tc-right .c-box2 .item{ display: flex; align-items: flex-start; justify-content: flex-start; font-size: 0.333rem}
.footer>.mxw-box .tc-right .c-box2 .item img{ width: 0.7rem; flex-shrink: 0; margin-right: 0.25rem; margin-top: -5px;}
.footer>.mxw-box .tc-right .c-box2 .item span{ padding-bottom: 0.33rem; border-bottom: 1px solid rgba(255, 255, 255, 0.2);}
.footer>.mxw-box .tc-right .c-box2 .item:nth-child(1)~.item{ margin-top: 0.333rem;}
.footer>.mxw-box .tc-right .c-box2 .item:last-child{	font-size: 0.267rem; line-height: 2.1;}
.footer>.mxw-box .tc-right .copy{ border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 1rem; padding: 0.667rem 0 0.5rem; color: #fff; display: flex; align-items: center; justify-content: space-between;font-size: 0.267rem;}



.mxw-copy{ border-top: 1px solid rgba(250, 251, 255, 0.1)}
.mxw-copy .mxw-box{ padding: 0.333rem 0; 	font-size: 0.233rem; color: #fff;  text-align: center; opacity: 0.8; display: flex; justify-content: space-between;}
.mxw-copy .mxw-box a{font-size: 0.233rem; color: #fff; }
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; color: #fff;}


.product-detail-tabcon table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.product-detail-tabcon table th,
.product-detail-tabcon table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.product-detail-tabcon table td p{line-height:1.8!important;}
.product-detail-tabcon table tr:hover{background-color:#f2f2f2!important;}
.product-detail-tabcon table tr:nth-child(2n-1){background-color:#fff ;}
.product-detail-tabcon table tr:nth-child(2n){background-color:#fdfdfd ;}

.xypg-detail-con table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.xypg-detail-con table th,
.xypg-detail-con table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.xypg-detail-con table td p{line-height:1.8!important;}
.xypg-detail-con table tr:hover{background-color:#f2f2f2!important;}
.xypg-detail-con table tr:nth-child(2n-1){background-color:#fff ;}
.xypg-detail-con table tr:nth-child(2n){background-color:#fdfdfd ;}






@media screen and (max-width: 1680px) {
    .yw-swiper .swiper-slide .flx .cn{ font-size: 0.6rem;}
    .yw-swiper .swiper-slide .flx .desc{ margin: 0.4rem auto ; font-size: 0.267rem;}
    .yw-swiper .yw-cate .item img{  height: 0.8rem;}
    .yw-swiper .yw-cate .item{ font-size: 0.33rem}
}






@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 ==================== */

.honor .cat .swiper-button-prev::after, .honor .cat .swiper-button-next::after{ display: none}



@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    .tc-about{ padding: 45px 0;}
    .tc-about .top{ flex-wrap: wrap;}
    .tc-about .top .tc-left{ padding: 0}
    .tc-about .top .tc-left .en{ font-size: 12px;}
    .tc-about .top .tc-left .cn{ font-size: 20px;}
    .tc-about .top .tc-left .desc{ font-size: 14px; line-height: 1.6; margin: 15px auto 10px;}
    .tc-about .top .tc-right{ width: 100%; margin-top: 25px;}
    .tc-about .top .tc-left .a-mo{ font-size: 14px;}
    .tc-about .top .tc-left .a-mo img{ margin-left: 10px; height: 14px;}
    .tc-about .list{ margin: 25px auto 0; flex-wrap: wrap;}
    .tc-about .list .item{ width: 100%;}
    .tc-about .list .item:nth-child(1)~.item{ margin-top: 15px}
    .tc-about .list .item .flx .icon img{ height: 28px;}
    .tc-about .list .item .flx p{ font-size: 14px; margin-top: 10px;}
    .tc-yw{ padding: 0 0 0}
    .yw-title .en{ font-size: 12px; margin-bottom: 5px;}
    .yw-title .cn{ font-size: 20px;}
    .yw-title::after{ height: 2px; margin-top: 5px;}
    .yw-swiper{ margin: 25px auto 0;}
    .yw-swiper .swiper-slide .flx { top: 10px; background: none; padding-right: 0; position: initial; color: #333; padding-top: 15px; padding-bottom: 15px; }
    .yw-swiper .swiper-slide .flx .mxw-box{  padding: 0}
    .yw-swiper .swiper-slide .flx .en{ color: #333;}
    .yw-swiper .swiper-slide .flx .cn{ font-size: 16px; margin-bottom: 5px; color: #333}
    .yw-swiper .swiper-slide .flx .en{ font-size: 12px;}
    .yw-swiper .swiper-slide .flx .desc{font-size: 14px; margin: 10px auto 0; color: #333}
    .yw-swiper .yw-cate{ position: initial;}
    .y-mo{ color: #333; margin-top: 15px; font-size: 14px; display:flex; align-items: center;}
    .y-mo img{filter:brightness(0); height: 12px; margin-left: 10px;}
    .yw-swiper .yw-cate .item{font-size: 14px; text-align: center; padding: 12px;}
    .yw-swiper .yw-cate .item img{ height: 30px;
        display: block;
        margin: 0 auto 5px;
    }
    .tc-news{ padding: 45px 0; margin-bottom: 45px;}
    .news-body{ margin: 25px auto 0; flex-wrap: wrap;}
    .news-body .tc-left{ width: 100%; margin-right: 0; flex-wrap: wrap;}
    .news-body .tc-left .item{ width: 100%; margin-bottom: 20px; display: flex; align-items: stretch; justify-content: space-between; background: none;}
    .news-body .tc-left .item .st{ font-size: 16px; padding:10px 5px 5px; margin: 0; line-height: 1.5; white-space:nowrap; width: 100%; text-overflow: ellipsis;
      display: block;}
    .news-body .tc-left .item .desc{ font-size: 14px; padding: 0 5px 0px; margin: 0; display: block;   -webkit-line-clamp:2;}
    .news-body .tc-left .item .info{background-image: linear-gradient(-90deg,
    #bc0e0b 0%,
    #f84b48 100%),
    linear-gradient(
            #f7f7f7,
            #f7f7f7);
        background-blend-mode: normal,
        normal; flex-grow: 1; min-width: 0}
    .news-body .tc-left .item .mxw-image{ width: 40%; flex-shrink: 0}
    .news-body .tc-left .item .desc{ white-space: nowrap; text-overflow: ellipsis; width: 100%;}
    .news-body .tc-left .item .n-more{ font-size: 12px; margin: 0; padding: 5px 10px; display: flex; align-items: center;}
    .news-body .tc-left .item .n-more img{ height: 10px;}
    .news-body .tc-right{ width: 100%; padding:30px 20px;}
    .news-body .tc-right .item .st{ font-size: 16px;}
    .news-body .tc-right .item .desc{ font-size: 14px; margin: 10px auto 15px;line-height: 1.6}
    .news-body .tc-right .item .n-more{ font-size: 12px;}
    .news-body .tc-right .item{ padding-bottom: 20px;}
    .news-body .tc-right .item:nth-child(1)~.item{ margin-top: 20px;}
    .d-menu{ padding: 0 2.5%; flex-wrap: wrap; justify-content: space-between; margin-bottom: 45px;}
    .d-menu .item{ margin: 0; width: 48.5%;}
    .d-menu .item:nth-child(2n)~.item{ margin-top: 15px;}
    .d-menu .item .flx1 img{ height: 25px;}
    .d-menu .item .flx1 .cn{ font-size: 16px; margin: 15px auto 0;}
    .d-menu .item .flx1 .en{ font-size: 12px; margin: 5px auto 0}
    .d-menu .item .flx2{ padding: 20px 15px}
    .d-menu .item .flx2 img{ height: 25px;}
    .d-menu .item .flx2 .cn{ font-size: 16px; margin: 15px auto 0 0;}
    .d-menu .item .flx2 .en{ font-size: 12px; margin: 5px auto 0 0}
    .d-menu .item .flx2 .desc{ font-size: 14px; margin-top: 10px}

    .footer>.mxw-box{flex-wrap: wrap;}

    .tc-link{ display: none}
    .footer>.mxw-box .tc-left{ width: 100%; margin-top: 35px; padding: 30px 15px}
    .footer>.mxw-box .tc-left .st{ font-size: 20px; margin-bottom: 20px;}
    .footer>.mxw-box .tc-left .in1 input{ font-size: 14px; padding: 8px 10px; text-align: left}
    .footer>.mxw-box .tc-left .in1 textarea{ font-size: 14px; padding: 8px 10px; text-align: left; height: 150px;}
    .footer>.mxw-box .tc-left .in1.yz input{ font-size: 14px}
    .footer>.mxw-box .tc-left .in1.yz img{ top: 5px;}
    .footer>.mxw-box .tc-left button{ margin: 10px auto; padding: 8px 30px; font-size: 16px;}

    .footer>.mxw-box .tc-right{ padding: 0; width: 100%;}
    .footer>.mxw-box .tc-right .c-box1{ display: none;}
    .footer>.mxw-box .tc-right .c-box2{ padding-top: 35px; width: 100%;margin-left: 0}
    .footer>.mxw-box .tc-right .c-box2 .item img{ width: 25px; margin-top: 0; margin-right: 10px;}
    .footer>.mxw-box .tc-right .c-box2 .item{ font-size: 14px; }
    .footer>.mxw-box .tc-right .c-box2 .item span{ padding-bottom: 10px;}
    .footer>.mxw-box .tc-right .c-box2 .item:nth-child(1)~.item{ margin-top: 10px;}
    .footer>.mxw-box .tc-right .c-box2 .item:last-child{ font-size: 14px;}
    .footer>.mxw-box .tc-right .copy{ flex-wrap: wrap; padding: 15px 0; margin-top: 30px; font-size: 14px;}
    .footer>.mxw-box .tc-right .copy>div{ width: 100%; text-align: center;}

    .ny-cate{ padding: 15px 0; flex-wrap: wrap;}
    .ny-cate .mxw-box{ flex-wrap: wrap; justify-content: space-between}
    .ny-cate .mxw-box .item{ margin: 0; width: 48.5%; font-size: 15px; padding: 9px 10px; text-align: center;}
    .ny-cate .mxw-box .item:nth-child(2)~.item{ margin-top: 10px;}
    .about-box1{ padding: 30px 0;}
    .about-box1 .top .tc-left{ font-size: 25px; padding: 8px 15px 8px 0;}
    .about-box1 .top .tc-left span{ font-size: 12px;}
    .about-box1 .top .tc-right{ padding-left: 15px;}
    .about-box1 .top .tc-right .en{ font-size: 12px;}
    .about-box1 .top .tc-right .cn{ font-size: 15px; margin-top: 5px}
    .about-box1 .desc{ margin: 15px auto; font-size: 14px;}
    .about-box2{ padding: 30px 0 180px;}
    .ab-title{ font-size: 20px;}
    .ab-title::after{ margin-top: 5px;}
    .about-box2 .list{ margin: 25px auto 0; justify-content: space-between; flex-wrap: wrap;}
    .about-box2 .list .item{ width: 48.5%;}
    .about-box2 .list .item img{ height: 35px;}
    .about-box2 .list .item .en{ font-size: 16px; margin: 10px auto 5px;}
    .about-box2 .list .item .cn{ font-size: 18px;}
    .about-box2 .list .item .desc{ font-size: 14px; line-height: 1.6; margin-top: 5px;}
    .about-box2 .list .item:nth-child(2)~.item{ margin-top: 20px;}
    .about-box3,.about-box4{ padding: 45px 0}
    .ab3-swiper .swiper-pagination{ margin-top: 15px;}
    .ab3-swiper .swiper-pagination .swiper-pagination-bullet{ width: 8px; height: 8px;}
    .ab4-swiper .swiper-slide .st{ font-size: 16px;}
    .ab4-swiper .swiper-slide .desc{ font-size: 14px;}
    .about-box5{ padding: 45px 0}
    .hs-swiper>.swiper-wrapper>.swiper-slide{ flex-wrap: wrap;}
    .hs-swiper{ margin-top: 25px;}
    .hs-swiper>.swiper-wrapper>.swiper-slide .tc-left{ width: 100%;}
    .hs-swiper>.swiper-wrapper>.swiper-slide .tc-right{ padding: 0}
    .hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .con .st{ font-size: 20px; margin-top: 10px;}
    .hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .con .st span{font-size: 14px}
    .hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .con .moon{font-size: 16px; margin: 10px auto 15px;}
    .hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .con .desc{font-size: 14px; line-height: 1.8}
    .hsd{ margin-top: 25px;}
    .hsd-swiper>.swiper-wrapper>.swiper-slide{font-size: 14px;}

    .pro-main{ padding: 30px 0 45px; }
    .pro-item{ padding: 30px 0; }
    .pro-item>.mxw-box{flex-wrap: wrap;}
    .pro-item>.mxw-box .tc-left{ padding-right: 0; width: 100%;}
    .pro-item>.mxw-box .tc-left .st{ font-size: 20px;}
    .pro-item>.mxw-box .tc-left .st2{ margin: 10px auto 0; font-size: 16px; }
    .pro-item>.mxw-box .tc-left .st2::after{ margin: 12px auto 12px 0;}
    .pro-item>.mxw-box .tc-left .desc{ font-size: 14px; line-height: 1.8}
    .pro-item>.mxw-box .tc-right{ width: 100%; margin-top: 20px;}
    .pro-item>.mxw-box .tc-left{padding-left: 0}

    .pro-item:nth-child(2n) .tc-left{ padding-top: 15px;}
    .case-list .item{ flex-wrap: wrap;}
    .case-list .item .tc-left{ width: 100%;}
    .case-list .item .tc-right{ padding: 20px 15px;}
    .case-list .item .tc-right .st{ font-size: 16px;}
    .case-list .item .tc-right .desc{ font-size: 14px; margin: 0 auto 10px;}
    .case-list .item .tc-right .icon{ font-size: 0; margin: 10px auto 5px;}

    .case-list .item .tc-right .cl-more{ font-size: 14px; display: flex; align-items: center;}
    .case-list .item .tc-right .cl-more img{ height: 12px; margin-left: 5px;}
    .csr{ padding: 30px 0; flex-wrap: wrap;}
    .csr .tc-left{ width: 100%;}
    .csr .tc-right{ padding-left: 0; padding-top: 15px;}
    .csr .tc-right .st1{ font-size: 18px;}
    .csr .tc-right .st2{ font-size: 18px; margin-top: 5px;}
    .csr .tc-right .desc{ font-size: 14px; margin-top: 15px; line-height: 1.8}
    .honor{ padding: 20px 0 45px;}
    .honor-swiper{ margin: 25px auto 15px;}
    .honor-swiper .swiper-slide p{ font-size: 14px; margin-top: 3px;}
    .honor .cat .swiper-button-prev, .honor .cat .swiper-button-next{ width: 30px; height: 30px;}

    .news-main{ padding: 30px 0 45px;}
    .news-main .list .item{ padding-bottom: 12px;}
    .news-main .list .item .mxw-image{ width: 38%;margin-right: 10px;}
    .news-main .list .item .info .title{ font-size: 16px;}
    .news-main .list .item .info .desc{ font-size: 14px; margin: 5px auto; height: 45px;}
    .news-main .list .item .info .time{ font-size: 12px;}
    .news-main .list .item:nth-child(1)~.item{ margin-top: 12px;}
    .cont-page{ padding-top: 30px;}
    .cont-box1>.mxw-box{ flex-wrap: wrap;}
    .cont-box1 .tc-left{ flex-wrap: wrap; padding: 30px 20px;}
    .cont-box1 .tc-left .cn{ font-size: 18px;}
    .cont-box1 .tc-left .en{ font-size: 14px; margin-top: 5px;}
    .cont-box1 .tc-left .en::after{ margin-top: 10px;}
    .cont-box1 .tc-left .desc{ font-size: 14px; line-height: 1.8}
    .cont-box1 .tc-left .ewm-box{ margin: 25px auto 0; width: 100%;}
    .cont-box1 .tc-left .ewm-box .title::after{ margin: 5px auto 15px 0;}
    .ewm-list{ display: flex; align-items: stretch; justify-content: flex-start;}
    .cont-box1 .tc-left .ewm-box .item{ width: 32%; flex-wrap: wrap; margin-right: 2%;}
    .cont-box1 .tc-left .ewm-box .item:nth-child(1)~.item{ margin-top: 0}
    .cont-box1 .tc-left .ewm-box .item p{ width: 100%; font-size: 14px; margin: 5px auto; text-align: center;}
    .cont-box1 .tc-left .ewm-box .item:last-child{ margin-right: 0}
    .cont-box2{ padding: 45px 0;}
    .cont-box2>.mxw-box{ flex-wrap: wrap;}
    .cont-box2>.mxw-box .tc-left{ padding-right: 0;}
    .cont-box2>.mxw-box .tc-right{ width: 100%;}
    .cont-box2>.mxw-box .tc-left .cn{ font-size: 22px;}
    .cont-box2>.mxw-box .tc-left .en{ font-size: 14px;}
    .cont-box2>.mxw-box .tc-left .st{ font-size: 14px; margin-top: 25px; padding-bottom: 5px;}
    .cont-box1{ padding-bottom: 45px;}
    .cont-box1 .tc-right{width: 100%; height: 320px;}

    .ab4-swiper .swiper-slide{ width: 48%}
    .hs-swiper>.swiper-wrapper>.swiper-slide .tc-right .num{ font-size: 150px; left: 10px; top: 10px;}

    .tc-about .top .tc-right iframe{ height: 240px !important;}
    .ab4-swiper .swiper-pagination{ margin: 25px auto 0;transform:none !important;}
    .about-box2{ padding-bottom: 60px}
    body{ margin-bottom: 0}
    .pro-box .item p{ font-size: 14px}
}












