<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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 &gt; .u-col {
        width: 48%;
    }
    .u-row-2 &gt; .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 &gt; .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 &gt; .u-col {
        width: 32%;
    }
    .u-row-3 &gt; .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 &gt; .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 &gt; .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 &gt; .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 &gt; .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 &gt; .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 &gt; .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 &gt; .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 &gt; .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 &gt; .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 &gt; .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 &gt; .u-col,
    .u-row-4 &gt; .u-col,
    .u-row-5 &gt; .u-col,
    .u-row-6 &gt; .u-col {
        width: 48%;
    }
    .u-row-3 &gt; .u-col:nth-child(2n),
    .u-row-4 &gt; .u-col:nth-child(2n),
    .u-row-5 &gt; .u-col:nth-child(2n),
    .u-row-6 &gt; .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 &gt; .u-col:nth-child(2) ~ .u-col,
    .u-row-4 &gt; .u-col:nth-child(2) ~ .u-col,
    .u-row-5 &gt; .u-col:nth-child(2) ~ .u-col,
    .u-row-6 &gt; .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;
    margin: 4px;
}
.mxw-pagination  a.current,
.mxw-pagination  a:hover {
    background-color: #ff0000;
    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: #0748b2;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    font-size: 0;

    background: #f9f9f9;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: stretch;
    font-size: 0;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    padding-left: 0.333rem;
    display: flex; align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}
.mxw-keywords .left strong {
    vertical-align: inherit; color: #444444;
}
.mxw-keywords .left span {
    color: #000;
    vertical-align: middle;
    /*font-weight: bold;*/
    display: flex; align-items: center;
}
.mxw-keywords .left span img{ margin-right: 0.167rem;}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #ff0000;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right{
    display: flex;
    align-items: center;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
   /* content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);*/
}
.mxw-keywords .right input {
    width: 284px;

    height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    width: 68px;
    height: 44px;
    background-color: #ff0000; cursor: pointer;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;
    background-size: cover;
}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 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 &gt; ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus &gt; ul &gt; li.active &gt; ul {
        display: block;
    }
    .mxw-mob-nav .menus &gt; ul &gt; li &gt; 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 &gt; ul &gt; li &gt; 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 &gt; ul &gt; li &gt; ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus &gt; ul &gt; li &gt; ul &gt; li &gt; 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: 0.833rem;
    height: 0.167rem;
    background-color: #ffffff;
    opacity: 0.5;
    margin-left: 5px;
    margin-right: 5px;
    outline: none;
    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: #ff0000;
    border-color: #ff0000;
    opacity: 1;

}
.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: #ff0000;
}
.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: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 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;}
.page-wrap&gt;.mxw-box{ font-size: 14px}
.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:#ff0000;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&gt;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&gt;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; margin: 0.22rem auto 0.18rem 0;}
.top-box .logo-box .t-logo&gt;img{ max-height:1.217rem}

.mxw-keywords .left .zx{ display: inline-block; font-size: 0.35rem; margin-right: 0.833rem; vertical-align: middle}
.mxw-keywords .left .zx&gt;img{ margin-right: 5px}
.mxw-keywords .left .zx b{ color: #0748b2; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; opacity: 0.4 }
.mxw-link&gt;.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{
 background: #fff;
    box-shadow: 0px 3px 10px 0px
    rgba(0, 0, 0, 0.18); position: sticky; top: 0; width: 100%; z-index: 100;
}
header .welcome {
    line-height: 34px;
    border-bottom: 1px solid #e5e5e5; display: none;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}


.top-box{ align-items: stretch;  }
.top-box .right{ display: flex; flex-grow:1; min-width: 0;  padding-left:5rem; justify-content: flex-end; align-items: center;}



.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;

}
.x-menu &gt; li {
    margin: 0;
    text-align: center;
    float: none;
    position: relative;
    flex-grow: 1;
    min-width: 0;
    z-index: 1;
}

.x-menu &gt; li &gt; a {
    font-size: 0.333rem;
    color: #333333;
    display: flex;
    height: 100%;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding:0 ;
    line-height: 1.2;
    width: 100%;
}

.x-menu &gt; li:last-child&gt;a{ background: none}
.x-menu &gt; li &gt; a:hover {
    color: #ff0000;
}
.x-menu&gt;li.active{ 		background-color: #ff0000;	}
.x-menu &gt; li.active &gt; a {color: #fff;}

.x-menu &gt; li.active &gt; a::before{ opacity: 1; transition: all 0.3s}
.x-menu &gt; 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 &gt; li &gt; a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;

}

.x-sub-menu &gt; li &gt; a:hover {
    color: #fff;
    background:#ff0000;
}

.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;
}
.top-box .right .tp-tel{  flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start;	font-size: 0.333rem; font-weight: bold; color: #ff0000 }
.top-box .right .tp-tel img{ height: 0.467rem; margin-right: 0.25rem;}


.tc-about{ margin-top: 0.75rem; padding: 2.833rem 0 2.583rem; background: url("../images/1.png") center no-repeat; background-size: cover;}
.tc-about&gt;.mxw-box&gt;.tc-left{ width: 48.5%; flex-shrink: 0;}
.tc-about&gt;.mxw-box&gt;.tc-left .st1{	font-size: 0.5rem;	color: #ff0000; font-weight: bold;padding-bottom: 0.4rem; border-bottom: 1px solid #ff0000; width: -moz-max-content; width: max-content;}
.tc-about&gt;.mxw-box&gt;.tc-left .st1 img{ height: 0.967rem; margin-right: 0.35rem; }
.tc-about&gt;.mxw-box&gt;.tc-left .st2{	font-size: 0.3rem; margin-top: 0.433rem;}
.tc-about&gt;.mxw-box&gt;.tc-left .desc{ font-size: 0.3rem; line-height: 2;}
.tc-about&gt;.mxw-box&gt;.tc-left .list{ display: flex; align-items: stretch; justify-content: flex-start; margin-top: 1.25rem;}
.tc-about&gt;.mxw-box&gt;.tc-left .list .item{ text-align: center;	color: #666666; margin-right: 1.1rem;	font-size: 0.267rem;}
.tc-about&gt;.mxw-box&gt;.tc-left .list .item .icon{	width: 1.233rem;
    height: 1.233rem;  transition: all 0.3s;
    background-color: #ffffff;
    border-radius: 0.1rem; display: flex; align-items: center; justify-content: center;
    border: solid 1px #e6e6e6;}
.tc-about&gt;.mxw-box&gt;.tc-left .list .item .icon img{ height: 0.767rem; transition: all  0.3s;}
.tc-about&gt;.mxw-box&gt;.tc-left .list .item p{ margin-top: 0.25rem;}
.tc-about&gt;.mxw-box&gt;.tc-left .list .item:hover p{ color: #ff0000;}
.tc-about&gt;.mxw-box&gt;.tc-left .list .item:hover .icon{ background: #ff0000;  }
.tc-about&gt;.mxw-box&gt;.tc-left .list .item:hover .icon img{filter:grayscale(100%)brightness(800%);-webkit-filter:grayscale(100%)brightness(800%); transition: all 0.3s; -ms-filter: "grayscale(100%) brightness(200%)";}

.c-more{ display: inline-block; color: #fff; padding: 0.2rem 0.4rem; background: #ff0000; border-radius: 0.4rem; font-size: 0.267rem}
.tc-about .c-more{ margin-top: 1.333rem;}
.num-box{	background-color: #ffffff;
    box-shadow: 0px 3px 30px 0px
    rgba(0, 0, 0, 0.15); margin-top: -1.5rem; position: relative; z-index: 1; display: flex; align-items: stretch; justify-content: space-between; padding: 0.8rem 0.167rem;}
.num-box .item{ text-align: center; width: 25%; flex-shrink: 0; line-height: 1; border-right: 1px solid rgba(0, 0, 0, 0.2);}
.num-box .item .num{ font-size: 0}
.num-box .item .num .scrolling-numbers{	font-size: 0.917rem; font-weight: bold; line-height: 1; display: inline-block;}
.num-box .item .num sub{	font-size: 0.333rem; display: inline-block; margin: 0 0 0 10px;vertical-align: text-bottom}
.num-box .item p{	color: #666666;	font-size: 0.3rem; margin-top: 0.267rem;}
.num-box .item:last-child{ border: 0}


.tc-case{ margin: 2.25rem auto 0; padding-bottom: 1.833rem;}
.tc-title{ text-align: center;}
.tc-title .en{ font-size: 0.333rem; line-height: 1; padding-bottom: 0.3rem; border-bottom: 1px solid #f8f8f8; position: relative; text-transform: uppercase}
.tc-title .en span{font-size: 0.6rem; font-weight: bold;line-height: 1;  display: inline-block; vertical-align: baseline}
.tc-title .en b{ font-size: 0.5rem; display: inline-block; vertical-align: text-bottom}
.tc-title .en::after{ display: block; content: ""; position: absolute; left: 0; right: 0; bottom: -1px; background: #ff0000; height: 3px; border-top: 1px solid #ffcccc;
    width: 1rem; margin: 0 auto;}

.case-cate{ display: flex; align-items: center; justify-content: center; margin: 0.917rem auto 0.833rem;}
.case-cate .item{	font-size: 0.3rem; color: #fff; padding: 0.233rem 0.633rem;	background-color: #999999; position: relative; margin: 0 0.333rem;}
.case-cate .item::after{ position: absolute; bottom: -0.283rem;width: 0.55rem; height: 0.283rem; content: ""; margin: 0 auto; left: 0; right: 0;}
.case-cate .item.active{ background: #ff0000; }
.case-cate .item.active::after{ background: url("../images/sanj.png") center no-repeat; background-size: 100%;}
.case-swiper{ overflow: hidden; width: 100%; max-width: 1920px; margin: 0 auto;}
.case-swiper .swiper-slide{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap; padding: 0.167rem 0.2rem;}
.case-swiper .swiper-slide .item{	box-shadow: 0px 0px 9px 0px
rgba(0, 0, 0, 0.3); background: #fff; width: calc((100% - 36px)/4); margin-right: 12px; transition: all 0.3s}
.case-swiper .swiper-slide .item:nth-child(4n){ margin-right: 0}
.case-swiper .swiper-slide .item:nth-child(4n)~.item{ margin-top: 0.8rem;}
.case-swiper .swiper-slide .item .info{ display: flex; align-items: center; justify-content: center; padding: 0.333rem;}
.case-swiper .swiper-slide .item .info .con{ width: max-content; width: -moz-max-content; margin: 0 auto; max-width: 90%; }
.case-swiper .swiper-slide .item .info .con p:nth-child(1)~p{ margin-top: 0.2rem; line-height: 1;}
.case-swiper .swiper-slide .item:hover{ background: #ff0000; transition: all 0.3s}
.case-swiper .swiper-slide .item:hover .info{ color: #fff;}

.tc-adv{ display: flex;  align-items: stretch; justify-content: space-between; margin: 0 auto; max-width: 1920px;}
.tc-adv .tc-left{ width: 36.67%; background: url("../images/adv-bg1.jpg") center no-repeat; background-size: cover;}
.tc-adv .tc-right{width: 63.33%; background: url("../images/adv2_bg.jpg") center no-repeat; background-size: cover; padding: 0.9rem 2.333rem 1.5rem 1rem; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.tc-adv .tc-right .item{ text-align: center; width: 32%; margin-right: 2%; padding: 0.433rem 0.367rem 0.3rem 0.367rem; transition: all 0.3s;}
.tc-adv .tc-right .item:nth-child(3n){ margin-right: 0}
.tc-adv .tc-right .item:nth-child(3n)~.item{ margin-top: 0.5rem;}
.tc-adv .tc-right .item .icon img{ height: 1.067rem; }
.tc-adv .tc-right .item .st{	font-size: 0.3rem; margin-top: 0.2rem; font-weight: bold; line-height: 1;}
.tc-adv .tc-right .item .st::after{	width: 40px;
    height: 2px;
    background-color: #ff0000; content: ""; display: block; margin: 0.2rem auto 0;}
.tc-adv .tc-right .item .desc{	font-size: 0.233rem; color: #666; line-height: 1.6; margin-top: 0.4rem;}
.tc-adv .tc-right .item:hover{	background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px
    rgba(0, 0, 0, 0.3); transition: all 0.3s;}
.tc-sev{ padding: 2.5rem  0 2.083rem;}

.sev-swiper{ overflow: hidden; margin-top: 1rem; padding: 10px;}
.sev-swiper .swiper-slide{	background-color: #f8f8f8;
    box-shadow: 0px 0px 9px 0px
    rgba(0, 0, 0, 0.3); padding: 0.467rem 0.333rem 0.417rem 0.333rem;}
.sev-swiper .swiper-slide p{ text-align: center;	font-size: 0.3rem; margin-top: 0.333rem;}
.sev-swiper .swiper-slide .icon{ margin: 0.5rem auto 0; width: 0.667rem; height: 0.667rem; background: url("../images/kk.png") center no-repeat; background-size: cover; }
.sev-swiper .swiper-slide:hover p{ color: #ff0000; font-weight: bold;}
.sev-swiper .swiper-slide:hover .icon{ background: url("../images/kk2.png") center no-repeat; background-size: cover;}
.tc-hb .desc{	font-size: 0.267rem;color: #666; margin-top: 0.583rem; text-align: center;}
.hb-body{ margin: 1.167rem auto 2.5rem; padding: 0 1.2rem;}
.hb-body .swiper-button-prev::after,.hb-body .swiper-button-next::after{ font-size: 18px; color: #333333;}
.hb-body{ position: relative; }
.hb-body .hb-swiper{ overflow: hidden; padding: 0 1px}
.hb-body .hb-swiper .swiper-slide{	border: solid 1px #e6e6e6;}

.tc-news{ padding: 1.133rem 0 1.467rem; background: url("../images/news-bg.jpg") center no-repeat; background-size: cover;}
.tc-news .news-top{ margin: 1.1rem auto 1rem; display: flex; align-items: center; justify-content: space-between;}
.tc-news .news-top .news-cate{ display: flex; flex-shrink: 0; align-items: center; justify-content: flex-start;}
.tc-news .news-top .news-cate .item{	font-size: 0.3rem;	color: #ffffff; padding: 0.233rem 0.633rem;	background-color: #999999;
    border-radius:0.417rem; line-height: 1; margin-right: 0.667rem;}
.c-more{ border: 1px solid transparent; transition: all 0.3s}
.c-more:hover{ color: #ff0000; border-color: #ff0000; transition: all 0.3s; background: none}
.tc-news .news-top .news-cate .item.active{ border-color: #ff0000; transition: all 0.3s; background: #ff0000;}
.news-swiper{ overflow: hidden;}
.news-con{ overflow: hidden;}
.news-con .swiper-slide{ width: 33.333%;}
.news-con .swiper-slide .info{background-color: #f7f7f7; padding: 0.467rem 1.417rem 0.75rem 1.133rem;}
.news-con .swiper-slide .info .st{	font-size: 0.3rem; font-weight: bold; margin-bottom: 0.3rem; transition: all 0.3s}
.news-con .swiper-slide .info .desc{	font-size: 14px; 	color: #999999; line-height: 2; }
.news-con .swiper-slide .info .mo{	color: #d90404; font-size: 0.267rem; margin-top: 0.367rem;display: flex; align-items: center;}
.news-con .swiper-slide .info .mo i{	width: 0.9rem; margin-left: 10px; transition: all 0.3s;
    height: 2px;
    background-color: #d90404; display: block;}
.news-con .swiper-slide:hover .st{ color: #ff0000; transition: all 0.3s}
.news-con .swiper-slide:hover .mo i{ width: 0.417rem; transition: all 0.3s; background: #333;}
.news-con .swiper-slide:hover .mo{ color: #333;}


.tc-fw{ padding: 2.167rem 0 3.417rem; background: url("../images/fw-bg.jpg") center no-repeat; background-size: cover;}
.tc-fw .fw-body{ margin-top: 1.333rem; display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; padding: 0 1.3rem;}
.tc-fw .fw-body .item{ width: 1.7rem; height: 1.867rem; text-align: center; background: url("../images/fw-bg1.png") center no-repeat;background-size: cover; 	font-size: 0.283rem; margin-right: 1.4rem;}
.tc-fw .fw-body .item:nth-child(8){ margin-right: 0}
.tc-fw .fw-body .item:last-child{ margin-right: 0}
.tc-fw .fw-body .item .st{ line-height: 1; margin-top: 0.7rem;}
.tc-fw .fw-body .item p{ font-size: 0.2rem; margin-top: 0.58rem; line-height: 1;}
.tc-fw .fw-body .item:hover{ background: url("../images/fw-bg2.png") center no-repeat; background-size: cover;}
.tc-fw .fw-body .item:hover p{ color: #fff;}
.tc-fw .fw-body .item:hover .st{ font-weight: bold;
    color: #ff0000;}
.tc-fw .fw-body .item:nth-child(8)~.item{ margin-top: 1.333rem;}

footer{ background: #333;}
footer&gt;.up-box{ color: #fff; display: flex; align-items: stretch; justify-content: space-between;}
footer&gt;.up-box .d-msg{	background-color: #ff0000; width: 25.625%; flex-shrink: 0; padding: 1.167rem 0.633rem; text-align: center;}
footer&gt;.up-box .d-msg .st1{	font-size: 0.367rem; color: #fff; font-weight: bold; display: flex; align-items: center; justify-content: space-around; line-height: 1;}
footer&gt;.up-box .d-msg .st1::before,footer&gt;.up-box .d-msg .st1::after{
    width: 0.733rem;
    height: 1px;
    background-color: #ffffff; content: "";
     display: block;
}
footer&gt;.up-box .d-msg .st2{	font-size: 0.233rem;	color: #eeeeee; margin-top: 0.233rem; margin-bottom: 0.583rem;}
footer&gt;.up-box .d-msg .inp{	border: solid 1px rgba(255, 255, 255, 0.5);  	border-radius: 5px; display: flex; align-items: stretch; margin-bottom: 14px;}
footer&gt;.up-box .d-msg .inp input{ flex-grow: 1; min-width: 0; padding: 0.233rem 0.333rem;	font-size: 14px; color: rgba(255, 255, 255, 0.7);}
footer&gt;.up-box .d-msg .inp input::placeholder{color: rgba(255, 255, 255, 0.7);}
footer&gt;.up-box .d-msg .inp input::-webkit-input-placeholder{color: rgba(255, 255, 255, 0.7);}
footer&gt;.up-box .d-msg .inp input::-ms-input-placeholder{color: rgba(255, 255, 255, 0.7);}
footer&gt;.up-box .d-msg .inp input::-moz-placeholder{color: rgba(255, 255, 255, 0.7);}
footer&gt;.up-box .d-msg button{ padding: 0.25rem;	font-size: 0.267rem; background: #fff; width: 100%; font-weight: bold; text-align: center; margin-top: 0.667rem; cursor: pointer}
footer&gt;.up-box .tc-left{ flex-grow: 1; min-width: 0; padding-top: 0.767rem; padding-right: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; }
footer&gt;.up-box .tc-left .up{display: flex; align-items: flex-start; justify-content: space-between;}
footer&gt;.up-box .tc-left .up .d-tel{ width: 29%; flex-shrink: 0;}
footer&gt;.up-box .tc-left .up .title{	font-size: 0.333rem; font-weight: bold;	color: #eeeeee; margin-bottom: 0.433rem;}
footer&gt;.up-box .tc-left .up .d-menu{ flex-grow: 1; min-width: 0; display: flex; align-items: flex-start; justify-content: space-between;  margin-right: 2rem;}
footer&gt;.up-box .tc-left .up .d-menu p{ margin-bottom: 0.333rem;	font-size: 0.267rem;	color: #adadad;}
footer&gt;.up-box .tc-left .up .d-tel .st {font-size: 0.267rem;	color: #adadad;}
footer&gt;.up-box .tc-left .up .d-tel .num{	font-size: 0.5rem;	color: #eeeeee; font-weight: bold; margin: 0.2rem auto 0.3rem;}
footer&gt;.up-box .tc-left .up .text{	font-size: 0.267rem; color: #adadad; line-height: 1.8}
footer&gt;.up-box .tc-left .mxw-copy{ padding: 0.6rem 0;	font-size: 16px; color: rgba(238, 238, 238, 0.5); border-top: 1px solid rgba(255, 255, 255, 0.1); }

.tc-link{ padding: 0.467rem 0;}
.tc-link&gt;.mxw-box{ display: flex; align-items: center; justify-content: flex-start;}
.tc-link&gt;.mxw-box .title{ flex-shrink: 0;	font-size: 14px;}
.tc-link&gt;.mxw-box .list{	font-size: 14px; color: #444}
.tc-link&gt;.mxw-box .list a{font-size: 14px; color: #444; margin-right: 15px;}
body{ overflow-x: hidden}

.ny-cate{	background-color: #f1f1f1; }
.ny-cate&gt;.mxw-box{ display: flex; align-items: center; justify-content: center;}
.ny-cate&gt;.mxw-box .item{ font-size: 0.3rem; color: #333; margin: 0.483rem 0; padding: 0 0.75rem;  border-right: 0.017rem solid #bdbdbd; line-height: 1.1; position: relative;}

.ny-cate&gt;.mxw-box .item:last-child{  border-right: 0;}
.ny-cate&gt;.mxw-box .item.active{	color: #ff0000; font-weight: bold;}
.ny-cate&gt;.mxw-box .item.active::after{	width: 0.917rem;bottom: -0.5rem;
    height: 2px;
    background-color: #ff0000;
    border-radius: 1px; content: ""; display: block; position: absolute;  margin: 0 auto; left: 0; right: 0;}

.ab-box1{ margin: 1.133rem auto 1.3rem;}
.ab-box1&gt;.mxw-box{ display:flex; align-items: stretch; justify-content: space-between;}
.ab-box1&gt;.mxw-box .tc-right{ width: 46.5%; flex-shrink: 0;	box-shadow: 0px 4px 7px 0px
rgba(3, 0, 0, 0.17); }
.ab-box1&gt;.mxw-box .tc-left{ flex-grow: 1; min-width: 0; padding-right: 0.75rem;}
.ab-box1&gt;.mxw-box .tc-left .st .cn{ display: flex; align-items: flex-end; justify-content:flex-start;	font-size: 0.6rem;}
.ab-box1&gt;.mxw-box .tc-left .st .cn .en{	font-size: 0.333rem;	color: #6e6e6e; margin-left: 0.2rem;}
.ab-box1&gt;.mxw-box .tc-left .st::after{width: 112px;
    height: 1px;
    background-color: #ff0000; display: block; content: ""; margin-top: 0.35rem;}
.ab-box1&gt;.mxw-box .tc-left .desc{ margin-top: 0.9rem; line-height: 2;}
.ab-box1&gt;.mxw-box .tc-left .desc&gt;p&gt;span{ font-size: 0.333rem; font-weight: bold;}

.ab2{	box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.15); margin-top: 0}
.ab-box3{ padding: 1.333rem 0 1.75rem;}
.ab-box3 .mxw-box{ display: flex; align-items: flex-end; justify-content: space-between;}
.ab-box3 .mxw-box .tc-left{ width: 54%; flex-shrink: 0; }
.ab-box3 .mxw-box .tc-right{ flex-grow: 1; min-width: 0;background-color: #fcfcf9; margin-left: -3.583rem; margin-bottom: -0.917rem; padding: 0.75rem 1.533rem 0.75rem 1.333rem;
    border-radius: 10px; }
.ab-box3 .mxw-box .tc-right .desc{	font-size: 0.3rem; line-height:2;}
.ab-box3 .mxw-box .tc-right .list{ margin-top: 0.867rem; display: flex; align-items: flex-start; justify-content: flex-start;}
.ab-box3 .mxw-box .tc-right .list .item{ margin-right: 1.2rem; text-align: center;}
.ab-box3 .mxw-box .tc-right .list .item .icon{ width: 1.667rem;}
.ab-box3 .mxw-box .tc-right .list .item p{	font-size: 0.333rem; font-weight: bold; margin-top: 0.2rem;}

.honor-swiper{ overflow: hidden; margin-top: 0.75rem;}
.honor-swiper&gt;.swiper-wrapper{ align-items: flex-end}
.honor-swiper&gt;.swiper-wrapper .swiper-slide img{ width: 100%;}
.ab-box4{ padding: 1.133rem 0;	background-color: #f1f1f1;}
.ab-title{ text-align: center;}
.ab-title .cn{	font-size: 0.6rem; line-height: 1;}
.ab-title .en{	font-size: 0.333rem;color: #6e6e6e; line-height: 1; font-weight: lighter}
.ab-title .cn::after{	width: 112px;
    height: 1px;
    background-color: #da251e; display: block; content: ""; margin: 0.333rem auto 0.3rem;}
.honor{ position: relative;}
.honor .swiper-button-prev,.honor .swiper-button-next{ bottom: 0.917rem; 	width: 34px;
    height: 60px; top: initial;
    background-color: #ff0000;}
.honor .swiper-button-prev::after,.honor .swiper-button-next::after{ font-size: 0.333rem; color: #fff; }
.honor .swiper-button-prev{ left: -1rem;}
.honor .swiper-button-next{ right: -1rem;}

.ab-box5{ padding: 1.583rem 0 1.583rem;}
.box5-body{ display: flex; align-items: stretch; justify-content: center; margin-top: 0.917rem;}
.box5-body .item{ width: 27.75%; margin-right: 0.867rem; position: relative; text-align: center;}
.box5-body .item:last-child{ margin-right: 0;}
.box5-body .item .fx1{ background: #fff; border-bottom: 8px solid #d8271c;  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.18);padding-top: 1.167rem;}
.box5-body .item .fx1 .st1{  display: flex; align-items: center; justify-content: center;	font-size: 0.4rem; font-weight: bold; margin-bottom: 0.867rem;}
.box5-body .item .fx1 .st1 img{ height: 0.7rem; margin-right: 0.333rem;}
.box5-body .item .fx1 .img{ width: 86%; margin: 0 auto}
.box5-body .item .fx1 .st2{	font-size: 0.367rem; margin: 0.867rem auto 1.333rem;}
.box5-body .item .fx2{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 11; background: url("../images/ab4-bg.png") center no-repeat; background-size: cover; display: none; align-items: center; justify-content: center; color: #fff;}
.box5-body .item .fx2 .st1{	font-size: 0.4rem; font-weight: bold; line-height: 1;}
.box5-body .item .fx2 .con{width:75%; }
.box5-body .item .fx2 .st1 img{ height: 0.7rem; margin-right: 0.333rem; filter:grayscale(100%)brightness(800%);-webkit-filter:grayscale(100%)brightness(800%); transition: all 0.3s; -ms-filter: "grayscale(100%) brightness(200%)";}

.box5-body .item .fx2 .st2{  font-size: 0.333rem; margin-top: 0.633rem; padding-top: 0.733rem; border-top: 1px solid #fff;}
.box5-body .item:hover .fx2{ display: flex;}
.case-box{ padding: 1.167rem 0 1.583rem;}
.case-box .list{ margin-top: 0.75rem;}
.case-box .list .item{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem;box-shadow: 0px 3px 10px 0px
    rgba(0, 0, 0, 0.18); padding-right:1rem}
.case-box .list .item .mxw-image{ width: 29%; flex-shrink: 0; margin-right: 1.417rem;border-bottom: 5px solid transparent; transition: 0.3s;}
.case-box .list .item .cz{ width: 12%;flex-shrink: 0; margin-left: 2.333rem;border-bottom: 5px solid transparent; }
.case-box .list .item .con{ flex-grow: 1; min-width: 0;border-bottom: 5px solid transparent; }
.case-box .list .item .con .st{	font-size: 0.4rem; margin-bottom: 0.6rem;}
.case-box .list .item .con .text{	font-size: 0.267rem; line-height: 2.2}
.case-box .list .item .cz .dy{	background-color: #da251e; padding: 0.183rem; width: 100%; text-align: center; font-size: 0.267rem; line-height: 1; color: #fff;}
.case-box .list .item .cz .dy img{ height: 0.367rem; margin-right: 0.3rem;}
.case-box .list .item .cz a{  justify-content: center; margin-top: 0.7rem; padding: 0.183rem; font-size: 0.267rem; color: #8e8e8e;	border: solid 1px #c7c7c7;line-height: 1; text-align: center; display: flex; align-items: center;}
.case-box .list .item .cz a img{ height: 0.333rem; margin-right: 0.3rem;}
.case-box .list .item:hover .mxw-image{ border-bottom: 5px solid #da251e;transition: 0.3s;}
.fw-lc{ padding: 1.167rem 0 2rem;}
.fw-ys{	background-color: #f1f1f1; padding: 1.417rem 0;}
.fw-ys .ys-body{ margin-top: 0.75rem;}
.fw-ys .ys-body .item{ display: flex; align-items: stretch; justify-content: space-between; background: #fff;}
.fw-ys .ys-body .item .tc-left{ width: 50%;}
.fw-ys .ys-body .item .tc-right{ width: 50%; padding: 0.6rem 0.5rem 0.333rem;}
.fw-ys .ys-body .item .tc-right .st{	font-size: 0.367rem; display: flex; align-items: center;}
.fw-ys .ys-body .item .tc-right .st span{ margin-right: 0.2rem;}
.fw-ys .ys-body .item .tc-right .desc{	font-size: 0.3rem; margin-top: 0.5rem; line-height: 1.8}

.fw-gc{ padding: 1.583rem 0;}
.fw-gc .list{ margin-top: 0.867rem;}
.fw-gc .list .item{	background-color: #ffffff;
    border-radius: 0.167rem; box-shadow: 0px 3px 20px -5px rgba(0, 0, 0, 0.1);}
.fw-gc .list .item .mxw-image{	border-radius: 0.167rem;}
.fw-gc .list .item .st{	font-size: 0.333rem; color: #ff0000; font-weight: bold; margin-top: 0.233rem; text-align: center; padding: 0 0.25rem;}
.fw-gc .list .item .desc{ padding: 0 0.467rem; margin-top: 0.3rem; margin-bottom: 0.333rem; line-height: 1.6;	font-size: 0.267rem; font-weight: lighter;}

.news-box{ padding: 1.167rem 0 1.417rem; }
.news-box .list{ margin-top: 0.767rem;}
.news-box .list .item{}
.news-box .list .item .info{ box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 0.733rem 0.6rem 0.7rem;}
.news-box .list .item .info .st{	font-size: 0.333rem;}
.news-box .list .item .info .desc{ margin: 0.333rem auto 0; line-height: 1.8;	color: #666666; font-size: 0.267rem;}


.cnt-top{ padding: 0.75rem 0 1.5rem;}
.cnt-top .desc{	color: #666666; line-height: 2; font-size: 0.3rem;}
.cnt-body{ display: flex;  align-items:center; justify-content: space-between; margin: 0.867rem auto 0;}
.cnt-body .tc-left{ width: 57.5%; flex-shrink: 0; min-height: 6rem;}
.cnt-body .tc-left #map{border: solid 1px #cacaca;}
.cnt-body .tc-right{ flex-grow: 1; min-width: 0; padding-left: 1.067rem;}
.cnt-body .tc-right .title{	font-size: 0.5rem; font-weight: bold; margin-bottom: 0.5rem;}

.cnt-body .tc-right .desc{	font-size: 0.3rem; color: #666}
.cnt-body .tc-right .ewm-box{ margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px solid #e5e5e5;}
.cnt-body .tc-right .ewm-box{ display: flex; align-items: flex-start; justify-content: flex-start;}
.cnt-body .tc-right .ewm-box .item{ max-width: 2.833rem; text-align: center;	font-size: 0.333rem;	color: rgba(47, 51, 52, 0.6); margin-right: 0.417rem }
.cnt-body .tc-right .ewm-box .item p{ margin-top: 0.15rem;}


.cnt-list{ margin: 0.917rem auto 0; display: flex; align-items: stretch; justify-content: space-around;}
.cnt-list .item{ width: 15%; text-align: center;}
.cnt-list .item p{	color: #666666; font-size: 0.333rem; margin-top: 0.333rem;}

.cnt-msg{ padding:1.1rem 0;background: #f3f3f3;}
.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: #ff0000;
    border-radius: 0.083rem;	font-size: 0.3rem; color: #fff; margin: 0.917rem auto 0; display: block;}

.td-box1{ padding: 1.083rem 0 1.583rem;}
.td-box1 .list{ margin: 25px auto 0;}
.td-box1 .list .item{ position: relative; overflow: hidden;}
.td-box1 .list .item .fx1&gt;img{ width: 100%; position: relative; color: #fff;}
.td-box1 .list .item .fx2{	background-color: #f5f5f5;}
.td-box1 .list .item .fx1 .flx{ position: absolute; bottom: 0; width: 100%; color: #fff;padding: 0 0.583rem 0.5rem;	font-size: 0.267rem;}
.td-box1 .list .item .fx2{ position: absolute; width: 100%; height: 100%; bottom: 0; padding: 0.8rem 0.667rem; left: -100%; transition: all 0.3s; }
.td-box1 .list .item .fx1 .flx .st1{ margin-bottom: 0.2rem;}
.td-box1 .list .item .fx1 .flx .st2{ display: flex; align-items: center; justify-content: space-between;}
.td-box1 .list .item .fx1 .flx .st2 span{ width: 50%;}
.td-box1 .list .item .fx2 .up{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px;}
.td-box1 .list .item .fx2 .up .c2{ border-radius: 50%; overflow: hidden; width: 1.983rem; flex-shrink: 0;}
.td-box1 .list .item .fx2 .up .c1{	font-size: 0.5rem; font-weight: bold; }
.td-box1 .list .item .fx2 .st{ line-height: 1.8; font-size: 0.3rem;}
.td-box1 .list .item .fx2 .desc{line-height: 1.8; font-size: 0.3rem;}
.td-box1 .list .item .fx2 .st::after{	width: 2.117rem;
    height: 1px;
    background-color: #c9151e; content: ""; display: block; margin: 0.417rem auto 0.333rem 0;}
.td-box1 .list .item:hover .fx2{ left: 0; transition: all 0.3s;}

.td-box2{ padding: 1.367rem 0;	background-color: #f1f1f1;}
.td-box2 .list{ display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; padding: 0 0.167rem; margin-top: 1.033rem;}
.td-box2 .list .item{transition: all 0.3s; width: 25%;border-right:  1px solid #e5e5e5;}
.td-box2 .list .item:hover{box-shadow: 0px 0px 24px 0px
rgba(174, 174, 174, 0.4); transition: all 0.3s; position: relative; z-index: 1; }
.td-box2 .list .item:nth-child(4n){ border-top: 1px solid #e5e5e5; border-right: 0 }























   /* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 0 0 1.067rem;

}
.ny-news-desc &gt; .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;
}

.pg{ margin-top: 40px; font-size: 14px; line-height: 1.8}
@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc &gt; .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 ==================== */












.product-detail-tabcon table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.product-detail-tabcon table th,
.product-detail-tabcon table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.product-detail-tabcon table td p{line-height:1.8!important;}
.product-detail-tabcon table tr:hover{background-color:#f2f2f2!important;}
.product-detail-tabcon table tr:nth-child(2n-1){background-color:#fff ;}
.product-detail-tabcon table tr:nth-child(2n){background-color:#fdfdfd ;}

.xypg-detail-con table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.xypg-detail-con table th,
.xypg-detail-con table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.xypg-detail-con table td p{line-height:1.8!important;}
.xypg-detail-con table tr:hover{background-color:#f2f2f2!important;}
.xypg-detail-con table tr:nth-child(2n-1){background-color:#fff ;}
.xypg-detail-con table tr:nth-child(2n){background-color:#fdfdfd ;}



@media screen and (max-width: 1440px) {
    .top-box{ width: 95%; max-width: 95%;}






}

/* ==================== 页面具体样式 end ==================== */






/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll {
    overflow: hidden;
}
.mxw-scroll .scroll-wrap {
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.mxw-scroll .scroll-item {
    flex-shrink: 0;
}

@media screen and (max-width: 500px) {
    .mxw-scroll .scroll-item {
        width: 48%;
        margin-right: 4%;
    }

}
/* ==================== 通用 - 无缝滚动 end ==================== */


@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    .tc-about{ margin-top: 45px; padding: 45px 0;}
    .tc-about&gt;.mxw-box&gt;.tc-left{ width: 100%;}
    .tc-about&gt;.mxw-box&gt;.tc-left .st1{ font-size: 22px; width: 100%; padding-bottom: 10px;}
    .tc-about&gt;.mxw-box&gt;.tc-left .st1 img{ height: 40px; margin-right: 10px;}
    .tc-about&gt;.mxw-box&gt;.tc-left .st2{ margin: 15px auto 0; font-size: 18px; line-height: 1.6}
    .tc-about&gt;.mxw-box&gt;.tc-left .desc{ font-size: 14px; margin: 25px auto ;}
    .tc-about&gt;.mxw-box&gt;.tc-left .list{ margin: 0 auto;}
    .tc-about&gt;.mxw-box&gt;.tc-left .list .item{ width: 25%; margin: initial; text-align: center;}
    .tc-about&gt;.mxw-box&gt;.tc-left .list .item .icon{ width: 65px; height: 65px; margin: 0 auto;}
    .tc-about&gt;.mxw-box&gt;.tc-left .list .item .icon img{ height: 36px;}
    .tc-about&gt;.mxw-box&gt;.tc-left .list .item p{ font-size: 14px; margin-top: 10px;}
    .num-box{ margin-top: 0; padding: 20px 10px; flex-wrap: wrap;}
    .c-more{ font-size: 14px; padding: 8px 25px;}
    .tc-about .c-more{ margin-top: 40px;}
    .num-box .item{ width: 50%;}
    .num-box .item:nth-child(2n){ border-right: 0}
    .num-box .item .num .scrolling-numbers{ font-size: 28px;}
    .num-box .item .num sub{ font-size: 14px; margin-left: 5px;}
    .num-box .item:nth-child(2n)~.item{ margin-top: 25px;}
    .num-box .item p{ font-size: 14px; margin-top: 10px;}

    .tc-case{ margin-top: 45px; padding-bottom: 45px;}
    .tc-title .en{ font-size: 16px; padding-bottom: 12px;}
    .tc-title .en span{ font-size: 22px;}
    .tc-title .en b{ font-size: 20px;}
    .case-cate{ margin: 25px auto 15px; padding: 0 2.5%; flex-wrap: wrap;}
    .case-cate .item{
        font-size: 14px; padding: 9px; width: 32%;
    text-align: center;    margin: 0 2% 0 0;
    }
    .case-cate .item:nth-child(3n){ margin-right: 0}
    .case-cate .item:nth-child(3n)~.item{ margin-top: 15px;}
    .case-cate .item::after{ width: 15px; height: 8px; bottom: -8px;}
    .case-swiper .swiper-slide{ padding:8px 10px; flex-wrap: wrap; justify-content: space-between;}
    .case-swiper .swiper-slide .item{ width: 48.5%;}
    .case-swiper .swiper-slide .item:nth-child(2n){ margin-right: 0}
    .case-swiper .swiper-slide .item:nth-child(2n)~.item{ margin-top: 15px;}
    .case-swiper .swiper-slide .item .info{ padding: 15px 10px;}
    .case-swiper .swiper-slide .item .info .con{ max-width: 100%; font-size: 14px; }
    .case-swiper .swiper-slide .item .info .con p{ white-space: initial}
    .case-swiper .swiper-slide .item .info .con p:nth-child(1)~p{ margin-top: 8px;}

    .tc-adv{ flex-wrap: wrap;}
    .tc-adv .tc-left{ width: 100%; height: 80vw;}
    .tc-adv .tc-right{ width: 100%; height: auto; padding: 30px 20px;}
    .tc-adv .tc-right .item{ width: 48.5%; margin-right: 3%; padding: 10px 10px 15px;}
    .tc-adv .tc-right .item:nth-child(2n){ margin-right: 0;}
    .tc-adv .tc-right .item .icon img{ height: 50px;}
    .tc-adv .tc-right .item .st{ font-size: 18px;}
    .tc-adv .tc-right .item .st::after{ margin: 12px auto 0;}
    .tc-adv .tc-right .item .desc{ font-size: 14px; margin-top: 20px;}
    .tc-adv .tc-right .item:nth-child(2n)~.item{ margin-top: 20px;}
    .tc-adv .tc-right .item:nth-child(3n)~.item{ margin-top: 20px}

    .tc-sev{ padding: 45px 0;}
    .sev-swiper{ padding: 5px; margin-top: 25px;}
    .sev-swiper .swiper-slide{ padding: 5px;}
    .sev-swiper .swiper-slide p{ margin-top: 12px; padding: 0 10px; font-size: 14px;}
    .sev-swiper .swiper-slide .icon{ margin: 10px auto 20px; width: 28px; height: 28px;}
    .tc-hb .desc{ font-size: 14px; margin-top: 15px;}
    .hb-body{ margin: 25px auto 45px; padding: 0 25px;}
    .hb-body .swiper-button-prev{ left: 0}
    .hb-body .swiper-button-next{ right: 0}
    .tc-news{ padding: 45px 0;}
    .tc-news .news-top{ margin: 25px auto 15px; flex-wrap: wrap;}
    .tc-news .c-more{ display: none;}
    .tc-news .news-top .news-cate{ justify-content: space-between; width: 100%;}
    .tc-news .news-top .news-cate .item{ padding: 10px; width: 32%; font-size: 14px; margin: initial; text-align: center;   }
    .news-con .swiper-slide .info{ padding: 15px 20px 25px;}
    .news-con .swiper-slide:hover .st{ font-size: 16px; margin-bottom: 12px;}
    .news-con .swiper-slide .info .mo{ margin-top: 12px;}
    .tc-fw{ padding: 45px 0;}
    .tc-fw .fw-body{ margin: 25px auto 15px; padding: 0;justify-content: flex-start;}
    .tc-fw .fw-body .item{ width: 23.5%; margin: 0 2% 0 0;}
    .tc-fw .fw-body .item:nth-child(4n){ margin-right: 0}
    .tc-fw .fw-body .item:nth-child(4)~.item{ margin-top: 10px;}
    .tc-fw .fw-body .item:nth-child(8)~.item{ margin-top: 10px;}
    footer&gt;.up-box .tc-left .up .d-menu{ display: none;}

    footer&gt;.up-box{ flex-wrap: wrap;}
    footer&gt;.up-box .tc-left{ padding: 25px 0 0; order: 1;}
    footer&gt;.up-box .tc-left .up{ width: 100%;}
    footer&gt;.up-box .d-msg{ width: 100%; margin: 45px auto 0;}
    footer&gt;.up-box .tc-left .up .d-tel{ width: 100%;}
    .tc-link{ display: none;}
    footer&gt;.up-box .d-msg{ padding: 30px 20px;}
    footer&gt;.up-box .d-msg .st1{ font-size: 18px; justify-content: center}
    footer&gt;.up-box .d-msg .st1::before, footer&gt;.up-box .d-msg .st1::after{ width: 25px;}
    footer&gt;.up-box .d-msg .st1::before{ margin-right: 15px;}
    footer&gt;.up-box .d-msg .st1::after{ margin-left: 15px}
    footer&gt;.up-box .d-msg .st2{ font-size: 14px; margin: 10px auto 25px; }
    footer&gt;.up-box .d-msg .inp input{ font-size: 14px; padding: 6px 12px;}
    footer&gt;.up-box .d-msg button{ margin-top: 15px; font-size: 16px; padding: 10px 15px;}
    footer&gt;.up-box .tc-left .up .title{ font-size: 18px;}
    footer&gt;.up-box .tc-left .up .d-tel{ padding-bottom: 30px;}

    footer&gt;.up-box .tc-left .mxw-copy{ font-size: 14px; padding: 10px 0;}
    footer&gt;.up-box .tc-left .up .text{ font-size: 14px;}
    footer&gt;.up-box .tc-left .up .d-tel .st{ font-size: 14px;}
    footer&gt;.up-box .tc-left .up .d-tel .num{ margin: 10px auto 15px; font-size: 20px;}

    .ny-cate&gt;.mxw-box{ flex-wrap: wrap; padding: 20px 0; justify-content: flex-start;}
    .ny-cate&gt;.mxw-box .item{
        padding: 0; border: 0; width: 23.5%; text-align: center;
        margin: 0 2% 0 0; font-size: 16px;
    }
    .ny-cate&gt;.mxw-box .item::after,.ny-cate&gt;.mxw-box .item.active::after{ display: none;}
    .ny-cate&gt;.mxw-box .item:nth-child(4n){ margin-right: 0}
    .ny-cate&gt;.mxw-box .item:nth-child(4n)~.item{ margin-top: 15px;}

    .ab-box1{ margin: 45px auto ;}
    .ab-box1&gt;.mxw-box{ flex-wrap: wrap;}

    .ab-box1&gt;.mxw-box .tc-left .st .cn{ font-size: 22px;}
    .ab-box1&gt;.mxw-box .tc-left .st .cn .en{ font-size: 14px;}
    .ab-box1&gt;.mxw-box .tc-left .st::after{ margin-top: 5px;}
    .ab-box1&gt;.mxw-box .tc-left{ padding-right: 0}

    .ab-box1&gt;.mxw-box .tc-left .desc{ margin-top: 25px; font-size: 14px;}
    .ab-box1&gt;.mxw-box .tc-right{ width: 100%; margin-top: 20px;}
    .ab-box3{ padding: 45px 0;}
    .ab-box3 .mxw-box .tc-right{ padding: 20px 20px 30px; margin: 0 auto;}
    .ab-box3 .mxw-box{ flex-wrap: wrap;}
    .ab-box3 .mxw-box .tc-left{ width: 100%;}
    .ab-box3 .mxw-box .tc-right .desc{ font-size: 14px;}

    .ab-box3 .mxw-box .tc-right .list{ margin: 15px auto 0; justify-content: space-between;}
    .ab-box3 .mxw-box .tc-right .list .item{ width: 32%; margin: initial;}
    .ab-box3 .mxw-box .tc-right .list .item .icon{ width: 60%; margin: 0 auto;}
    .ab-box3 .mxw-box .tc-right .list .item p{ font-size: 14px; margin-top: 5px;}

    .ab-box4{ padding: 45px 0;}
    .ab-title .cn{ font-size: 22px;}
    .ab-title .cn::after{ margin: 10px auto;}
    .ab-title .en{ font-size: 14px;}
    .honor-swiper{ margin: 25px auto 0;}
    .ab-box5{ padding: 45px 0;}

    .box5-body{ margin: 25px auto 0; flex-wrap: wrap; }
    .box5-body .item{ width: 100%; margin: 0;}
    .box5-body .item .fx1{ padding-top: 30px;}
    .box5-body .item .fx1 .st1{ font-size: 18px;}
    .box5-body .item .fx1 .st1 img{ height: 30px; margin-right: 10px;}
    .box5-body .item .fx1 .st1{ margin-bottom: 20px;}
    .box5-body .item .fx1 .st2{ margin: 15px auto 35px; font-size: 14px;}

    .box5-body .item:nth-child(1)~.item{ margin-top: 25px;}

    .box5-body .item .fx2 .con{ width: 80%;}
    .box5-body .item .fx2 .st2{ margin: 30px auto 0; padding-top: 30px;}
    .box5-body .item .fx2 .st1{ font-size: 18px;}
    .box5-body .item .fx2 .st1 img{ height: 30px; margin-right: 10px;}
    .box5-body .item .fx2 .st1{ margin-bottom: 20px;}

    .td-box1 .list .item .fx1 .flx{ padding: 0 20px 20px;}
    .td-box1 .list .item .fx1 .flx .st1{ font-size: 14px; margin-bottom: 10px;}
    .td-box1 .list .item .fx1 .flx .st2{ flex-wrap: wrap;}
    .td-box1 .list .item .fx1 .flx .st2 span{ width: 100%;}
    .td-box1 .list .item .fx2{  padding: 10px 10px;}
    .td-box1 .list .item .fx2 .up .c2{ width: 60px;}
    .td-box1 .list .item .fx2 .up .c1{ font-size: 18px;}
    .td-box1 .list .item .fx2 .st{ font-size: 14px; margin-top: -5px;}
    .td-box1 .list .item .fx2 .st::after{ margin: 10px auto 10px 0;}
    .td-box1 .list .item .fx2 .desc{ font-size: 12px; line-height: 1.8}

    .case-box{ padding: 45px 0;}
    .case-box .list{ margin: 30px auto 0;}
    .case-box .list .item{ flex-wrap: wrap;}
    .case-box .list .item .mxw-image{ margin: 0; width: 100%;}
    .case-box .list .item .con .st{ font-size: 16px; margin-top: 10px; margin-bottom: 15px;}
    .case-box .list .item .con{ width: 100%; }
    .case-box .list .item .con .text{ font-size: 14px; line-height: 1.8}
    .case-box .list .item .cz{ margin: 15px auto 0;  width: 100%; display: flex; align-items: center;}
    .case-box .list .item .cz .dy{ width: 32%; margin-right: 2%; font-size: 14px;}
    .case-box .list .item .cz .mz{ margin: 0 2% 0 0; width: 32%; font-size: 14px}
    .case-box .list .item .cz a:last-child{ margin: 0; font-size: 14px; padding: 8px; width: 32%;}
    .case-box .list .item .cz img{ height: 16px; margin-right: 5px !important;}

    .fw-lc{ padding: 45px 0;}
    .fw-ys{ padding: 45px 0}
    .fw-ys .ys-body{ margin-top: 25px;}
    .fw-ys .ys-body .item{ width: 100%;}
    .fw-ys .ys-body .item .tc-left{ width: 40%;}
    .fw-ys .ys-body .item .tc-right{ width: 60%; padding:15px 10px;}
    .fw-ys .ys-body .item:nth-child(2n){ margin: 0;}
    .fw-ys .ys-body .item:nth-child(1)~.item{ margin-top: 15px;}
    .fw-ys .ys-body .item .tc-right .st{ font-size: 18px; display: flex; align-items: center; line-height: 1;}
    .fw-ys .ys-body .item .tc-right .desc{ margin-top: 15px; font-size: 14px;}

    .fw-gc{ padding: 45px 0;}
    .fw-gc .list{ margin: 25px auto 0;}
    .fw-gc .list .item .st{ font-size: 16px; margin-top: 10px;}
    .fw-gc .list .item .desc{ margin: 15px auto 25px; font-size: 14px; padding: 0 10px; }

    .news-box{ padding: 45px 0;}
    .news-box .list{ margin-top: 25px;}
    .news-box .list .item .info{ padding: 20px 10px;}
    .news-box .list .item .info .st{ font-size: 16px;}
    .news-box .list .item .info .desc{ margin: 10px auto 0; font-size: 14px; height: 51px;}

    .cnt-top{ padding: 45px 0;}
    .cnt-body{ margin: 0 auto; flex-wrap: wrap;}
    .cnt-body .tc-left{ width: 100%; height: 400px; min-height: initial;}
    .cnt-body .tc-left #map{ height: 100% !important;}
    .cnt-body .tc-right{ padding: 0; margin-top: 20px;}
    .cnt-body .tc-right .title{ font-size: 18px; margin-bottom: 10px;}
    .cnt-body .tc-right .desc{ font-size: 14px;}
    .cnt-body .tc-right .ewm-box{ margin-top: 15px; padding-top: 15px;}
    .cnt-msg{ padding: 45px 0;}
    .cnt-msg .title{ font-size: 20px;}
    .cnt-msg form{ margin: 25px auto 0;}
    .cnt-msg form .up{ flex-wrap: wrap;}
    .cnt-msg form .up .up1{ width: 100%; margin-bottom: 10px;}
    .cnt-msg form .up .up1 input{ padding: 10px 15px;}
    .cnt-msg form textarea{  padding: 10px 15px; margin-top: 0; }
    .cnt-msg button{ width: 200px; padding: 10px 25px; font-size: 16px; height: auto; margin-top: 15px;}

.case-swiper .swiper-slide .item{ margin-right:initial}









    body{ margin-bottom: 0;}

}












</pre></body></html>