@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%;
    height: auto;
}

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 ==================== */

.n-banner img{
    width: 100%;
}
/* 清除浮动 */
.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: 35px;
    }

    .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: #b9b9b9;
    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: #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: #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: 85.1%;

}

.mxw-box2 {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 84.1%;
}

/* 内页 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 {

        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: #a20400;
}

.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;
    line-height: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s;
    margin: 0.35rem 3rem 0.35rem 0
}

.top-box .logo-box > img {
    max-height: 0.833rem;
    margin-left: 0.3rem;
}

.top-box .logo-box .t-logo > img {
    max-height: 0.867rem;
}

.mxw-keywords .left .zx {
    display: inline-block;
    font-size: 0.35rem;
    margin-right: 0.833rem;
    vertical-align: middle
}

.mxw-keywords .left .zx > img {
    margin-right: 5px
}

.mxw-keywords .left .zx b {
    color: #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 {
    background-color: #fff;
}


header .welcome {
    line-height: 44px;
    background-color: #ffffff;
    border-top: 3px solid #a20400;
}

header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;

}

header .welcome .tc-left {
    font-size: 14px;
    color: #161616;
    line-height: 1;
}

header .welcome .tc-right {
    font-size: 15px;
    color: #231f20;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
    justify-content: flex-end;
}

header .welcome .tc-right .wtel {
    margin-right: 24px;
}

header .welcome .tc-right .wtel img {
    margin-right: 4px;
}

header .welcome .tc-right .lang {
    background-color: #a20400;
    color: #fff;
    margin: 0.15rem 0 auto 0.15rem;
    line-height: 26px;
    padding: 0 10px;
}

header .welcome .tc-right .lang img {
    margin-right: 9px;
}


.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: auto;
    width: 100%;
    font-size: 0;

    flex-grow: 1;
    min-width: 0;
    transition: all 0.3s
}

.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: #333;
    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;
    width: 100%;
}

.x-menu > li:last-child > a {

}

.x-menu > li:hover > a {

}

.x-menu > li > a::after {

}

.x-menu > li.active {


}

.x-menu > li.active > a::after {

}

.x-menu > li.active > a {

}

.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% + 9px);
    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: #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 > a > .cn {
    font-size: 0.3rem;
    color: #1f1f1f;
}

.x-menu > li.active > a > .cn {
    font-weight: bold;
}

.x-menu > li > a > .en {
    font-size: 0.233rem;
    color: #929292;
    margin-top: 0.15rem;
    text-transform: uppercase;
}

.x-menu > li > a {
    background: url("../images/menu-bg.png") no-repeat -0.5rem;
}

.x-menu > li:first-child > a {
    background: none;
}

.top-zx {
    width: 2rem;
    flex-shrink: 0;
    margin-left: 0.9rem;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
    justify-content: space-between;
}

.top-zx > a, .top-zx > div {
    flex-grow: 1;
    min-width: 0
}

.top-zx .top-tel .con {
    width: 100%;
    cursor: pointer;
    text-align: center;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
    justify-content: center;
}

.top-zx .top-ss .con {
    width: 100%;
    text-align: right;
    cursor: pointer;
}

.top-zx .top-ss, .top-zx .top-tel {
    position: relative;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
}

.top-zx .top-tel .tel-con {
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 12px 15px 8px;
    z-index: 1;
    width: 180px;
    right: -0.833rem;
    text-align: center;
    display: none;
}

.nt-cate {
    box-shadow: 0px 1px 0px 0px rgba(79, 79, 79, 0.1);
}

.nt-cate .mxw-box {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
    justify-content: space-between;
}

.nt-cate .mxw-box .tc-right {
    margin-left: 1rem;
    flex-shrink: 0;
    font-size: 0.267rem;
    color: #231816;
    padding: 0.417rem 0;
}

.nt-cate .mxw-box .tc-left {
    font-size: 0.267rem;
    color: #231816;
}

.nt-cate .mxw-box .tc-left a {
    margin-right: 1rem;
    color: #231816;
}

.nt-cate .mxw-box .tc-left a.active::before {
    width: 0.333rem;
    height: 0.333rem;
    content: "";
    display: inline-block;
    background: url("../images/oth-ico.png") center no-repeat;
    background-size: 100%;
    margin-right: 0.333rem;
}

.tc-keyword > .mxw-box {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
    justify-content: space-between;
}

.tc-keyword > .mxw-box .tc-right {
    padding: 0.283rem 0;
}

.tc-keyword > .mxw-box .tc-right form {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.3rem;
    width: 3.333rem;
    border: solid 1px #9b9b9b;
}

.tc-keyword > .mxw-box .tc-right form input {
    flex-grow: 1;
    min-width: 0;
    font-size: 0.233rem;
    color: #cccccc;
    padding: 0.13rem 0 0.13rem 0.217rem;
    outline: none;
    line-height: 1;
}

.tc-keyword > .mxw-box .tc-right form button {
    flex-shrink: 0;
    width: 0.55rem;
    height: 0.55rem;
    text-align: center;
    background: url("../images/ss2.png") #c00000 center no-repeat;
    cursor: pointer;
    border-radius: 50%;
}

.tc-keyword > .mxw-box .tc-left {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
    font-size: 0.267rem;
    color: #8b8b8b;
}

.tc-keyword > .mxw-box .tc-left img {
    margin-right: 0.233rem;
}

.about-box1 {
    padding: 1.083rem 0;
}

.about-box1 .mxw-box {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
    justify-content: space-between;
}

.about-box1 .mxw-box .tc-right {
    width: 46.75%;
    flex-shrink: 0;
}

.about-box1 .mxw-box .tc-left {
    flex-grow: 1;
    min-width: 0;
    margin-right: 0.633rem;
}

.about-box1 .mxw-box .tc-left .en {
    font-size: 0.467rem;
    color: #070707;
    text-transform: uppercase;
    line-height: 1;
}

.about-box1 .mxw-box .tc-left .cn {
    font-size: 0.5rem;
    color: #070707;
    margin-top: 0.25rem;
    line-height: 1;
}

.about-box1 .mxw-box .tc-left .desc {
    font-size: 0.3rem;
    color: #666666;
    margin-top: 0.75rem;
    text-indent: 2em;
    line-height: 1.6
}

.num-box {
    margin: 1.033rem auto 1.083rem;
}

.num-box > .mxw-box {
    background-color: #ffffff;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 2px 4px 0px rgba(12, 22, 31, 0.04);
    padding: 0.1rem;
}

.num-box > .mxw-box .item {
    text-align: center;
    width: 20%;
    padding: 0.333rem 0.333rem 0.3rem 0.333rem;
}

.num-box > .mxw-box .item p {
    font-size: 0.267rem;
    color: #c00000;
    padding-top: 0.267rem;
    margin: 0.65rem auto 0 auto;
    width: 60%;
    border-top: 1px solid rgba(192, 0, 0, 0.9);
}

.num-box > .mxw-box .item .num {
    font-size: 0;
    margin-top: 0.5rem;
}

.num-box > .mxw-box .item .num .scrolling-numbers {
    font-size: 0.667rem;
    color: #c20000;
    font-weight: bold;
    display: inline-block;
    line-height: 1;
    margin-bottom: -3px;
}

.num-box > .mxw-box .item .num sub {
    font-size: 0.267rem;
    color: #c00000;
    margin-left: 5px;
}

.num-box > .mxw-box .item:hover {
    background-color: #c00000;
}

.num-box > .mxw-box .item:hover p {
    color: #fff;
    border-top: 1px solid #fff;
}

.num-box > .mxw-box .item:hover .scrolling-numbers {
    color: #fff;
}

.num-box > .mxw-box .item:hover sub {
    color: #fff;
}

.num-box > .mxw-box .item:hover .icon img {
    color: #fff;
    filter: brightness(100)
}

.hj-list .mxw-box {
    background-color: #ffffff;
    padding: 0.233rem 0.467rem 0.583rem;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
}

.hj-list .mxw-box .title {
    font-size: 0.3rem;
    color: #c00000;
    font-weight: bold;
}

.hj-list .mxw-box .hj-swiper {
    margin-top: 0.5rem;
    overflow: hidden;
    text-align: center;
}

.hj-list .mxw-box .hj-swiper .swiper-slide {
    width: 16%;
}

.hj-list .mxw-box .hj-swiper .swiper-button-prev, .hj-list .mxw-box .hj-swiper .swiper-button-next {
    margin-top: 0.583rem;
    width: 20px;
    height: 20px;
    background-color: #aaaaaa;
    position: initial;
    display: inline-block;
    opacity: 1;
    font-size: 0;
    padding-top: 3px;
    cursor: pointer;
}

.hj-list .mxw-box .hj-swiper .swiper-button-prev::after, .hj-list .mxw-box .hj-swiper .swiper-button-next::after {
    font-size: 14px;
    color: #fff;
    line-height: 1;
}

.hj-list .mxw-box .hj-swiper .swiper-button-prev:hover, .hj-list .mxw-box .hj-swiper .swiper-button-next:hover {
    background-color: #c00000;
}

.about-box3 {
    padding: 1.817rem 0 2.25rem;
    text-align: center;
    background-color: #fafafa;
}

.about-box3 .en {
    font-size: 0.467rem;
    line-height: 1;
}

.about-box3 .cn {
    font-size: 0.5rem;
    color: #070707;
    margin-top: 0.25rem;
}

.about-box3 .list {
    margin-top: 1.833rem;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: stretch;
    justify-content: space-between;
}

.about-box3 .list .item {
    width: 22.875%;
    border: solid 1px rgba(145, 145, 145, 0.2);
    background-color: #153768;
}

.about-box3 .list .item .image {

    padding: 0.3rem 0.417rem;
}

.about-box3 .list .item .st {
    font-size: 0.333rem;
    color: #ffffff;
    margin-top: 0.267rem;
}

.about-box3 .list .item .desc {
    color: #ffffff;
    font-size: 0.267rem;
    margin-top: 0.267rem;
    margin-bottom: 0.267rem;
}


.tc-title2 {
    text-align: center
}

.tc-title2 .en {
    font-size: 0.467rem;
    color: #070707;
    text-transform: uppercase
}

.tc-title2 .cn {
    font-size: 0.5rem;
    color: #070707;
}

.pro-page {
    padding: 1.083rem 0 1.75rem;
}

.pro-box, .pro-box > .mxw-box {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap
}

.pro-box .item {
    width: 32.25%;
    margin-right: 1.625%;
    background-color: #f9f9f9;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}

.pro-box .item:nth-child(3n) {
    margin-right: 0
}

.pro-box .item:nth-child(3n) ~ .item {
    margin-top: 0.833rem;
}

.pro-box .item.text {
    padding-right: 0.5rem;
    padding-top: 0.75rem;
    box-shadow: none;
    background: none;
}

.pro-box .item.text .title {
    font-size: 0.417rem;
    color: #333333;
    display: inline-block
}

.pro-box .item.text .title::after {
    width: 100%;
    height: 2px;
    content: "";
    display: block;
    background-color: #252525;
}

.pro-box .item.text .desc {
    font-size: 0.3rem;
    color: #666666;
    line-height: 2.2;
    margin: 0.267rem auto 0.75rem;
}

.pro-box .item .pm {
    border: solid 1px #999999;
    display: inline-block;
    padding: 0.133rem 0.5rem;
    font-size: 0.267rem;
    color: #999999;
}

.pro-box .item .pm:hover {
    color: #fff;
    background: #0d0d0d
}

.pro-box.pro-box1 {
    margin: 1.5rem auto 1.333rem;
}

.pro-box.pro-box2 {
    background-color: #fffaf3;
    padding: 1.583rem 0 1.333rem;
}

.pro-box.pro-box3 {
    padding: 1.333rem 0 1.583rem;
}

.pro-box.pro-box2 .text {
    padding-left: 1rem;
}

.pro-list p {
    text-align: center;
    margin-top: 0.167rem;
}

.pro-hz {
    padding: 1.583rem 0 0;
}

.pro-hz .list {
    margin-top: 0.467rem;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap
}

.pro-hz .list .item {
    background-color: #ffffff;
    width: 22.375%;
    margin-right: 3.5%;
    border: solid 1px rgba(0, 0, 0, 0.1);
}

.pro-hz .list .item:nth-child(4n) {
    margin-right: 0
}

.pro-hz .list .item:nth-child(4n) ~ .item {
    margin-top: 0.7rem;
}

.case-page {
    padding: 1.167rem 0;
}

.case-page .case-list .item p {
    text-align: center;
    margin-top: 0.1rem;
}

.cont-box {
    padding: 1.1rem 0 2rem;
    height: auto;
    overflow: hidden
}

.cont-box .lx-list {
    margin-top: 0.833rem;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: stretch;
    justify-content: space-between;
}

.cont-box .lx-list .item {
    border: solid 1px #949494;
    width: 32.5%;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0.667rem;
}

.cont-box .lx-list .item .icon {
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: center;
    width: 1.167rem;
    flex-shrink: 0;
    text-align: center;
    justify-content: center
}

.cont-box .lx-list .item .text {
    font-size: 18px;
    line-height: 2;
    flex-grow: 1;
    min-width: 0;
    padding-right: 1rem
}

.cnt-msg {
    padding: 1.15rem 1rem;
    margin-top: 1.5rem;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    background: #fff
}

.cnt-msg .title {
    text-align: center;
    font-size: 0.5rem;
    font-weight: bold;
}

.cnt-msg form {
    margin: 1rem auto 0;
    display: block;
    font-size: 0
}

.cnt-msg form .up {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.cnt-msg form .up .up1 {
    width: 31.5%;
    position: relative;
    border: solid 2px #e1e1e1;
    font-size: 0.267rem;
    color: #bababa;
}

.cnt-msg form .up .up1 input {
    padding: 0.3rem 0.417rem;
    font-size: 0.267rem;
    background: #ffffff;
    width: 100%;
}

.cnt-msg form textarea {
    padding: 0.3rem 0.417rem;
    border: solid 2px #e1e1e1;
    margin: 0.5rem auto 0;
    resize: none;
    height: 2.167rem;
    width: 100%;
    font-size: 0.267rem;
}

.cnt-msg button {
    width: 4.3rem;
    height: 1.067rem;
    background-color: #004da9;
    border-radius: 0.083rem;
    font-size: 0.3rem;
    color: #fff;
    margin: 0.917rem auto 0;
    display: block;
}

#map {
    height: 445px;
    font-size: 14px;
    margin-top: 0.4rem;
}

.ab-list .item {
    text-align: center;
}

.ab-list .item .st {
    font-size: 0.3rem;
    margin-top: 0.2rem;
}

footer {
    background-color: #232323;
    padding-top: 0.533rem;
}

footer .tc-link {
    color: #fff;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #393939;
}

footer .tc-link .mxw-box {
    color: #fff;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: stretch;
    justify-content: space-between;
}

footer .tc-link .mxw-box .title {
    flex-shrink: 0;
    font-size: 17px;
}

footer .tc-link .mxw-box .title img {
    margin-right: 0.233rem;
}

footer .tc-link .mxw-box .list {
    flex-grow: 1;
    min-width: 0;
    margin-left: 0.75rem;
    font-size: 0.233rem;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
}

footer .tc-link .mxw-box .list a {
    margin-right: 0.5rem;
    line-height: 1.8
}

footer .db-center {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: stretch;
    justify-content: space-between;
    color: #fff;
    padding: 0.533rem 0 0.667rem;
}

footer .db-center .db1 {
    width: 19%;
    flex-shrink: 0;
}

footer .db-center .db1 .d-tel .st {
    font-size: 0.367rem;
    font-weight: bold;
}

footer .db-center .db1 .d-tel .num {
    font-size: 0.633rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

footer .db-center .db1 .desc {
    font-size: 0.267rem;
    line-height: 2.2;
    margin-top: 0.5rem;
}

footer .db-center .db2 {
    margin: 0 2.5rem;
    flex-grow: 1;
    min-width: 0;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: stretch;
    justify-content: space-between;
}

footer .db-center .db3 {
    width: 19.75%;
    flex-shrink: 0
}

footer .db-center .db3 .ewm-list {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: stretch;
    justify-content: space-between;
}

footer .db-center .db3 .ewm-list .item {
    max-width: 2.183rem;
}

footer .db-center .db3 .ewm-list .item .st {
    font-size: 0.267rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

footer .db-center .db2 .title {
    font-size: 0.283rem;
    margin-bottom: 0.4rem;
}

footer .db-center .db2 .list {
    font-size: 0.233rem;
    opacity: 0.8;
    line-height: 2;
}

footer .db-center .db2 .list a {
    color: #fff;
}

.tc-pro {
    padding: 1rem 0 1.25rem;
}

.tc-pro .list {
    margin-top: 1.083rem;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
}



.tc-pro .list .item {
    width: 22.625%;
    margin-right: 1.833%;
    margin-bottom: 10px;
    text-align: center;
    border: solid 1px #e5e5e5;
}

.tc-pro .list .item:nth-child(4) {
    margin-right: 0
}

.tc-pro .list .item .st {
    font-size: 0.333rem;
    color: #000000;
    margin-top: 0.35rem;
}

.tc-pro .list .item .desc {
    font-size: 0.233rem;
    color: #505050;
    line-height: 2.1;
    margin: 0.267rem auto;
}

.tc-pro .list .item .mo {
    display: none;
    font-size: 0.233rem;
    color: #000000;
    padding: 0.1rem 0.55rem;
    background-color: #e5e5e5;
}

.tc-pro .list .item:hover .mo {
    display: block;
    color: #fff;
    background-color: #c00000;
}

.tc-about {
    padding: 0.933rem 0 1.8rem;
    background: url("../images/about-bg.jpg") center no-repeat;
    background-size: cover;
}

.tc-about .mxw-box {
    color: #fff;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: center;
    justify-content: space-between;
}

.tc-about .mxw-box .tc-left {
    width: 37.5%;
    flex-shrink: 0;
    padding: 0.667rem 0 0.633rem 0.8rem;
    background: url("../images/abl-bg.png") left center no-repeat;
    background-size: 85% 100%;
}

.tc-about .mxw-box .tc-right {
    flex-grow: 1;
    min-width: 0;
    padding-left: 1.667rem;
}

.tc-about .mxw-box .tc-right .en {
    font-size: 0.433rem;
    font-weight: bold;
    line-height: 1;
}

.tc-about .mxw-box .tc-right .cn {
    font-size: 0.467rem;
    color: #fff;
    margin-top: 0.2rem;
}

.tc-about .mxw-box .tc-right .desc {
    margin: 0.6rem auto 0.8rem;
    font-size: 0.3rem;
    line-height: 1.6;
    text-indent: 2em
}

.tc-about .mxw-box .tc-right .mo {
    font-size: 0.3rem;
}

.tc-hj .mxw-box {
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.1);
    margin-top: -0.883rem;
}

.tc-adv {
    background: none;
}

.tc-wh {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.tc-wh .mxw-box {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: stretch;
    justify-content: flex-start;
}

.tc-wh .mxw-box .item {
    width: 17.44%;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    text-align: center;
    flex-shrink: 0;
}

.tc-wh .mxw-box .item:first-child {
    padding-top: 20%;
    margin-left: 4.083rem;
}

.tc-wh .mxw-box .item .con {
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
    color: #fff;
    height: 100%;
    border-right: 0;
    border-bottom: 0;
    text-align: center;
    padding: 0 0.667rem;
}

.tc-wh .mxw-box .item .cn {
    font-size: 0.4rem;
}

.tc-wh .mxw-box .item .en {
    font-size: 0.267rem;
    margin-top: 0.267rem;
}

.tc-wh .mxw-box .item .cn::before {
    margin-top: 0.8rem;
    display: block;
    content: "";
    width: 100%;
    height: 0.017rem;
    background: transparent;
    margin-bottom: 1rem;
}

.tc-wh .mxw-box .item .en::after {
    margin-top: 0.833rem;
    display: block;
    content: "";
    width: 100%;
    height: 0.017rem;
    background: transparent;
}

.tc-wh .mxw-box .item:nth-child(2) {
    padding-bottom: 25%;
    margin-left: -1px;
}

.tc-wh .mxw-box .item:nth-child(2) .con {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.tc-wh .mxw-box .item:nth-child(3) {
    padding: 23% 0 8%;
    margin-left: -1px;
}

.tc-wh .mxw-box .item:nth-child(3) .con {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.667rem;
}

.tc-wh .mxw-box .item:nth-child(3) .con .cn::before {
    display: none;
}

.tc-wh .mxw-box .item:nth-child(4) {
    flex-grow: 1;
    min-width: 0;
    margin-left: -1px;
    border-right: 0;
    padding-top: 35%;
    padding-bottom: 5%;
}

.tc-wh .mxw-box .item:nth-child(4) .con {
    margin-right: -2.5rem;
    border-bottom: 0.017rem solid rgba(255, 255, 255, 0.3);
    text-align: left;
    padding-left: 1.917rem;
    padding-top: 0.9rem;
}

.tc-wh .mxw-box .item:nth-child(4) .con .cn::before {
    display: none;
}

.tc-wh .mxw-box .item:nth-child(4) .con .en::after {
    display: none;
}

.tc-wh .mxw-box .item .ico img {
    visibility: hidden;
    width: 0.917rem;
    margin-top: 1.083rem
}

.tc-wh .mxw-box .item .con:hover {
    background-color: rgba(192, 0, 0, 0.6);
}

.tc-wh .mxw-box .item .con:hover .ico img {
    visibility: visible
}

.tc-wh .mxw-box .item .con:hover .cn::before, .tc-wh .mxw-box .item .con:hover .en:after {
    background: #fff;
}

.tc-case {
    padding: 1.25rem 0 0.833rem;
    background-color: #fcfcfc;
    text-align: center
}

.case-swiper {
    overflow: hidden;
    margin-top: 0.467rem;
    text-align: right
}

.case-swiper .swiper-slide {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: center;
    justify-content: space-between;
}

.case-swiper .swiper-slide .tc-left {
    width: 42.25%;
    flex-shrink: 0;
}

.case-swiper .swiper-slide .tc-left .image:nth-child(2) {
    margin-top: 0.183rem;
}

.case-swiper .swiper-slide .tc-right {
    flex-grow: 1;
    min-width: 0;
    margin-left: 0.2rem;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.case-swiper .swiper-slide .tc-right .image:nth-child(1) ~ .image {
    width: 49.5%;
    margin-top: 0.183rem;
}

.case-swiper .swiper-button-prev, .case-swiper .swiper-button-next {
    width: 0.333rem;
    height: 0.333rem;
    text-align: center;
    margin-bottom: 0.333rem;
    background-color: #aaaaaa;
    position: initial;
    display: inline-block;
    opacity: 1;
    font-size: 0;
    padding-top: 3px;
    cursor: pointer;
}

.case-swiper .swiper-button-prev::after, .case-swiper .swiper-button-next::after {
    font-size: 14px;
    color: #fff;
    line-height: 1;
}

.case-swiper .swiper-button-prev:hover, .case-swiper .swiper-button-next:hover {
    background-color: #c00000;
}

.tc-case .mo {
    font-size: 0.3rem;
    margin-top: 0.833rem;
    color: #d0d0d0;
    display: inline-block;
    line-height: 1;
    padding: 0.15rem 0.7rem;
    border: solid 1px #dcdcdc;
}

.tc-case .mo:hover {
    background: #c00000;
    color: #fff;
    border-color: #c00000;
}

.tc-news {
    padding: 1.667rem 0 1.5rem;
    text-align: center;
}

.news-cate {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: -moz-flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1rem;
}

.news-cate .item {
    font-size: 0.333rem;
    color: #7a7a7a;
    padding: 0.2rem 0.667rem;
    line-height: 1;
    background-color: rgba(153, 153, 153, 0.1);
    border-radius: 0.383rem;
}

.news-cate .item:nth-child(1) ~ .item {
    margin-left: 0.8rem;
}

.news-cate .item.active {
    background-color: #c00000;
    color: #fff;
}

.news-swiper {
    overflow: hidden;
}

.news-swiper .swiper-slide .st {
    font-size: 0.333rem;
    color: #282828;
}

.news-swiper .swiper-slide .tim {
    font-size: 0.233rem;
    color: #282828;
    margin: 0.267rem auto 0.2rem;
    text-align: left;
}

.news-swiper .swiper-slide .desc {
    font-size: 0.233rem;
    line-height: 2;
    margin-bottom: 0.3rem;
}

.tc-news .mo {
    font-size: 0.3rem;
    margin-top: 0.833rem;
    color: #d0d0d0;
    display: inline-block;
    line-height: 1;
    padding: 0.15rem 0.7rem;
    border: solid 1px #dcdcdc;
}

.tc-news .mo:hover {
    background: #c00000;
    color: #fff;
    border-color: #c00000;
}


/*搜索*/
.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;
}

.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: 55%;
    flex-shrink: 0;
    margin-right: 2%;
}


.ny-product-desc .right {
    width: 43%;
    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: #1750a2;
    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;
        height: auto;
        min-height: initial;
    }

    .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;
}

.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 ==================== */


@media screen and (max-width: 1905px) {

}


@media screen and (max-width: 1680px) {

}


body {
    overflow-x: hidden
}


.mxw-copy {
    background-color: #000000;
}

.mxw-copy .mxw-box {
    padding: 0.233rem 0;
    font-size: 0.233rem;
    color: #fff;
    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: 14px;
    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;
}

.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) {


    .cont-box .lx-list .item .text{
        font-size: 12px;
    }


    .cont-box .lx-list {
        display: block !important;        /* 强制恢复为块级元素 */
        -webkit-display: block !important;
        display: -moz-box !important;     /* 覆盖原 moz 属性 */
        display: -ms-flexbox !important;  /* 覆盖原 ms 属性 */

        /* 去掉其他 flex 相关的属性，防止布局错乱 */
        align-items: normal !important;
        justify-content: normal !important;
        flex-wrap: wrap !important;       /* 根据需要设置 */
    }


    .cont-box .lx-list .item {
        width: 100%;
    }


    .cnt-msg form .up {
        /* 1. 强制取消 flex 布局，让它恢复默认的块级布局 */
        display: block !important;

        /* 2. 必须把 flex 相关的属性也重置掉，防止浏览器误判 */
        align-items: normal !important;
        justify-content: normal !important;

        /* 3. 如果里面是行内元素，可以考虑换行，避免挤在一起 */
        /* flex-wrap: wrap !important; */  /* 可根据需要去掉注释 */
    }


    .cnt-msg form .up .up1 {
        width: 100.5%;
        margin: 10px 0;
    }

    .mxw-box, .mxw-box2 {
        padding: 0;
        max-width: 95%;
        width: 95%;
    }

    .tc-pro {
        padding: 45px 0;
    }

    html {
        font-size: 45px;
    }

    .tc-title2 .cn {
        line-height: 1
    }

    .tc-title2 .en {
        line-height: 1
    }

    /* 横幅轮播 */
    .mxw-banner .swiper-pagination {
        display: none;
    }

    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }

    /* 搜索栏 */
    .tc-keyword > .mxw-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .tc-keyword > .mxw-box .tc-left {
        margin-bottom: 15px;
        font-size: 14px;
        display: none
    }

    .tc-keyword > .mxw-box .tc-right {
        padding: 10px 0;
        width: 100%
    }

    .tc-keyword > .mxw-box .tc-right form {
        width: 100%;
    }

    .tc-keyword > .mxw-box .tc-right form input {
        width: calc(100% - 50px);
        font-size: 14px;
    }


    /* 产品中心 */
    .tc-pro .list {
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .tc-pro .list .item {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }

    .tc-pro .list .item:nth-child(2n) {
        margin-right: 0;
    }

    .tc-pro .list .item:nth-child(n) {
        margin-top: 0;
    }

    .tc-pro .tc-title2 .en {
        font-size: 20px;
        line-height: 1;
    }

    .tc-pro .tc-title2 .cn {
        font-size: 22px;
        margin-top: 5px;
        line-height: 1;
    }

    .tc-pro .list .item .st {
        font-size: 16px;
        margin-top: 10px;
    }

    .tc-pro .list .item .desc {
        font-size: 12px;
        margin: 8px auto 15px;
        line-height: 1.6;
        padding: 0 5px;
    }

    .tc-pro .list .item .mo {
        font-size: 12px;
        padding: 6px;
    }

    /* 公司简介 */
    .tc-about {
        padding: 45px 0;
    }

    .tc-about .mxw-box {
        flex-direction: column;
    }

    .tc-about .mxw-box .tc-left {
        width: 100%;
        padding: 20px;
        background-size: contain !important;
    }

    .tc-about .mxw-box .tc-right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }

    .tc-about .mxw-box .tc-right .en {
        font-size: 20px;
    }

    .tc-about .mxw-box .tc-right .cn {
        font-size: 22px;
        margin-top: 10px;
    }

    .tc-about .mxw-box .tc-right .desc {
        font-size: 14px;
        margin: 15px auto;
    }

    .tc-about .mxw-box .tc-right .mo {
        font-size: 14px;
    }

    /* 公司环境 */
    .tc-hj {
        margin-top: 45px;
    }

    .tc-hj .mxw-box {
        margin-top: 0;
        padding: 20px;
    }

    .hj-list .mxw-box .title {
        font-size: 18px;
    }

    .hj-list .mxw-box .hj-swiper {
        margin-top: 20px;
    }

    .hj-list .mxw-box .hj-swiper .swiper-slide {
        width: 48%;
    }

    .hj-list .mxw-box .hj-swiper .swiper-button-prev, .hj-list .mxw-box .hj-swiper .swiper-button-next {
        margin-top: 15px;
    }

    /* 我们的优势 */
    .about-box3 {
        padding: 45px 0;
    }

    .about-box3 .en {
        font-size: 20px;
        line-height: 1;
    }

    .about-box3 .cn {
        font-size: 22px;
        margin-top: 5px;
        margin-bottom: 20px;
        line-height: 1;
    }

    .about-box3 .list {
        flex-wrap: wrap;
        margin-top: 0px;
    }

    .about-box3 .list .item {
        width: 48%;
        margin-bottom: 4%;
    }

    .about-box3 .list .item:nth-child(2n) {
        margin-bottom: 4%;
    }

    .about-box3 .list .item:nth-child(n) {
        margin-top: 0;
    }

    .about-box3 .list .item .st {
        font-size: 16px;
        margin-top: 15px;
    }

    .about-box3 .list .item .desc {
        font-size: 13px;
    }

    /* 企业文化 */
    .tc-wh img {
        width: 100%;
        height: auto;
    }

    .tc-wh .mxw-box {
        position: static;
        display: block;
    }

    .tc-wh .mxw-box .item {
        width: 100%;
        border-right: 0;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .tc-wh .mxw-box .item:first-child {
        margin-left: 0;
        padding: 30px 0;
    }

    .tc-wh .mxw-box .item:nth-child(2) {
        margin-left: 0;
        padding: 30px 0;
    }

    .tc-wh .mxw-box .item:nth-child(3) {
        margin-left: 0;
        padding: 30px 0;
    }

    .tc-wh .mxw-box .item:nth-child(4) {
        margin-left: 0;
        padding: 30px 0;
        border-bottom: 0;
    }

    .tc-wh .mxw-box .item .con {
        border: 1px solid rgba(255, 255, 255, 0.3);
        height: auto;
        padding: 20px;
        margin: 0;
    }

    .tc-wh .mxw-box .item .cn {
        font-size: 18px;
    }

    .tc-wh .mxw-box .item .en {
        font-size: 14px;
        margin-top: 10px;
    }

    .tc-wh .mxw-box .item .ico img {
        margin-top: 15px;
    }

    .about-box3 .list .item .image {
        padding: 10px;
    }

    .about-box3 .list .item .desc {
        margin-top: 15px;
    }

    .about-box3 .list .item:nth-child(2n) .desc {
        margin-bottom: 15px;
    }

    .tc-wh {
        display: none
    }

    /* 案例展示 */
    .tc-case {
        padding: 45px 0;
    }

    .tc-case .tc-title2 .en {
        font-size: 20px;
    }

    .tc-case .tc-title2 .cn {
        font-size: 22px;
        margin-top: 8px;
    }

    .case-swiper .swiper-slide {
        flex-direction: column;
    }

    .case-swiper .swiper-slide .tc-left {
        width: 100%;
    }

    .case-swiper .swiper-slide .tc-right {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .case-swiper .swiper-slide .tc-right .image:nth-child(1) ~ .image {
        width: 48%;
    }

    .case-swiper .swiper-button-prev,
    .case-swiper .swiper-button-next {
        display: inline-block;
        margin: 10px 5px;
    }

    .tc-case .mo {
        font-size: 14px;
        padding: 10px 30px;
        margin-top: 20px;
    }

    /* 新闻中心 */
    .tc-news {
        padding: 45px 0;
    }

    .tc-news .tc-title2 .en {
        font-size: 20px;
    }

    .tc-news .tc-title2 .cn {
        font-size: 22px;
        margin-top: 8px;
    }

    .news-cate {
        flex-wrap: wrap;
        margin: 20px auto;
    }

    .news-cate .item {
        font-size: 14px;
        padding: 8px 20px;
        margin: 5px !important;
    }

    .news-swiper .swiper-slide .st {
        font-size: 16px;
    }

    .news-swiper .swiper-slide .tim {
        font-size: 13px;
        margin: 10px auto;
    }

    .news-swiper .swiper-slide .desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .tc-news .mo {
        font-size: 14px;
        padding: 10px 30px;
        margin-top: 20px;
    }

    /* 页脚链接 */
    footer .tc-link {
        display: none;
    }

    footer .tc-link .mxw-box {
        flex-wrap: wrap;
    }

    footer .tc-link .mxw-box .title {
        width: 100%;
        margin-bottom: 15px;
    }

    footer .tc-link .mxw-box .list {
        margin-left: 0;
    }

    /* 页脚信息 */
    footer {
        padding-top: 45px
    }

    footer .db-center {
        flex-wrap: wrap;
        padding-top: 0
    }

    footer .db-center .db1 {
        width: 100%;
        margin-bottom: 20px;
    }

    footer .db-center .db2 {
        width: 100%;
        margin: 0 0 20px 0;
        flex-wrap: wrap;
        display: none
    }

    footer .db-center .db3 {
        width: 100%;
    }

    footer .db-center .db3 .ewm-list {
        justify-content: flex-start;
    }

    footer .db-center .db3 .ewm-list .item {
        max-width: 40%;
        margin-right: 15px
    }

    footer .db-center .db1 .d-tel .st {
        font-size: 18px;
    }

    footer .db-center .db1 .d-tel .num {
        font-size: 22px;
        margin-top: 8px;
    }

    footer .db-center .db1 .desc {
        font-size: 13px;
        margin-top: 10px;
    }

    footer .db-center .db2 .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    footer .db-center .db2 .list {
        font-size: 13px;
        line-height: 1.8;
    }

    /* 版权信息 */
    .mxw-copy .mxw-box {
        font-size: 14px;
        padding: 15px 0;
    }

    .mxw-copy .mxw-box .tc-left,
    .mxw-copy .mxw-box .tc-right {
        text-align: center;
    }

    .nt-cate .mxw-box .tc-right {
        display: none
    }

    .nt-cate .mxw-box .tc-left {
        font-size: 15px;
        flex-wrap: wrap;
        width: 100%;
        display: flex;
        align-items: stretch;
        padding: 10px 0
    }

    .nt-cate .mxw-box .tc-left a {
        width: 32%;
        margin-right: 2%;
    }

    .nt-cate .mxw-box .tc-left a:nth-child(3n) {
        margin-right: 0
    }

    .nt-cate .mxw-box .tc-left a.active::before {
        width: 14px;
        height: 14px;
        margin-right: 5px;
    }

    .about-box1 {
        padding: 45px 0
    }

    .about-box1 .mxw-box {
        flex-wrap: wrap
    }

    .about-box1 .mxw-box .tc-left {
        margin-right: 0
    }

    .about-box1 .mxw-box .tc-left .en {
        font-size: 20px;
        line-height: 1
    }

    .about-box1 .mxw-box .tc-left .cn {
        font-size: 22px;
        margin-top: 8px;
        line-height: 1;
    }

    .about-box1 .mxw-box .tc-left .desc {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 20px;
    }

    .about-box1 .mxw-box .tc-right {
        width: 100%;
        margin-top: 15px;
    }

    .num-box {
        margin: -20px auto 45px;
    }

    .num-box > .mxw-box {
        flex-wrap: wrap;
    }

    .num-box > .mxw-box .item {
        width: 50%;
        text-align: center;
    }

    .hj-list .mxw-box {
        padding: 15px;
    }

    .num-box > .mxw-box .item {
        padding: 15px;
    }

    .num-box > .mxw-box .item .icon img {
        height: 38px;
    }

    .num-box > .mxw-box .item .num {
        margin-top: 10px;
    }

    .num-box > .mxw-box .item .num .scrolling-numbers {
        font-size: 26px;
    }

    .num-box > .mxw-box .item .num sub {
        font-size: 12px;
        vertical-align: bottom;
        display: inline-block;
    }

    .num-box > .mxw-box .item p {
        margin-top: 10px;
        padding-top: 10px;
        font-size: 14px;
    }

    .nt-cate .mxw-box .tc-left a::before {
        width: 14px;
        height: 14px;
        margin-right: 5px;
        content: "";
        display: inline-block;
    }

    .nt-cate .mxw-box .tc-left a.active::before {
        background: url(../images/oth-ico.png) center no-repeat;
        background-size: 100%;
    }

    .nt-cate .mxw-box .tc-left a:nth-child(3) ~ a {
        margin-top: 5px
    }

    .pro-list p {
        font-size: 14px;
        margin-top: 5px;
    }

    .pro-page {
        padding: 45px 0;
    }

    .nt-cate .mxw-box .tc-left a {
        font-size: 14px;
        display: flex;
        align-items: center
    }

    .case-page {
        padding: 45px 0
    }

    .case-page .case-list .item p {
        font-size: 14px;
        margin-top: 5px;
    }

    .ny-news-desc > .mxw-box {
        padding: 45px 0
    }

    .ny-news {
        margin: 0 auto;
    }

    .ny-news .item .info {
        padding: 0 0 10px
    }


    .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;
    }
}












