<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', 'PingFang SC', Arial, 'Helvetica Neue', 'Segoe UI', Verdana, Roboto, 'SF Pro Text', 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-crisp-edges; /* 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: 30px;
    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: #8cc332;
    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-color: rgba(201, 201, 201, 0.1);
}
.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: #777;
    vertical-align: middle;
    /*font-weight: bold;*/
    display: flex; align-items: center;	font-size: 0.267rem;
}
.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: #0748b2;
}
.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: 394px;

    height: 48px;
    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 {
    height: 48px;
margin-left: -18px;

cursor: pointer;	background-color: #8cc332;	width: 68px;
}
.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: 12px;
    height: 12px;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    outline: none;
    opacity: 1;
    border-radius: 6px;
}
.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: #8cc332;
    border-color: #8cc332;

}
.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: #8cc332;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 84.1%;
}
.mxw-box2 {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}





/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    html {

    }
    .mxw-box {
        max-width: 89%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1600px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */
.pg{ margin: 1rem auto 0; font-size: 0.267rem; line-height: 1.8}

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#0748b2;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;
    padding: 0.5rem 0 0.417rem 0;
   }
.top-box .logo-box .t-logo&gt;img{ max-height: 1.05rem;}

.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-color: #ffffff;
    width:100%;
    position: sticky;
    z-index: 9999; top: 0;
}
header .welcome {
    line-height: 34px;
    border-bottom: 1px solid #e5e5e5;
}
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: 1.2rem; justify-content: flex-end; align-items: center;  color: #fff; }










.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-shrink: 0;
    z-index: 1;
}

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


}
.x-menu &gt; li:last-child&gt;a{ background: none}
.x-menu &gt; li &gt; a:hover {
    color: #4b9b04;
}
.x-menu&gt;li.active{ 			}
.x-menu &gt; li.active &gt; a {color: #4b9b04; font-weight: bold}

.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: #8cc332;

}

.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;
}


.clos{    color: #fff;
    position: absolute; cursor: pointer;
    right: 15px; font-weight:bold}



/* ==================== 通用 - 内页导航 start ==================== */

.ny-nav .mxw-box {

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    box-shadow: 0px 4px 24px 0px
    rgba(4, 37, 115, 0.04);
}

.ny-nav .nav-item {
   width: 20%;	font-size: 0.367rem; font-weight: bold; color: #333; padding: 0.6rem 0.25rem;
    text-align: center;
}
.ny-nav .nav-item.active{	background-color: #4b9b04; color: #fff;
    box-shadow: 0px 4px 24px 0px rgba(4, 37, 115, 0.04);}





@media screen and (min-width: 1200px) {
    .ny-nav {
        /*   position: sticky;
           top: 0; background: #fff;*/
    }
}
@media screen and (max-width: 1200px) {
    .ny-nav .mxw-box {
        justify-content: flex-start;
    }
    .ny-nav .nav-item {
        width: 31%;
        margin: 0;
        font-size: 14px;
        padding-top: 10px;
        padding-bottom: 10px;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .ny-nav .nav-item:nth-child(3n-1) {
        margin-left: 3.5%;
        margin-right: 3.5%;
    }
    .ny-nav .nav-item:nth-child(3) ~ .nav-item {
        margin-top: 2%;
    }
}
/* ==================== 通用 - 内页导航 end ==================== */


/* ==================== 内页 - 产品中心 end ==================== */
.ny-product&gt;.nw{ padding-bottom: 1rem; padding-top: 0.667rem}
.ny-product .mxw-cate {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 0.6667rem;
}
.ny-product .mxw-cate .cate-item {
    height: 1.0833rem;
    line-height: 1.0833rem;
    width: 18.75%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f3f3;
    font-size: 0.3rem;
    color: #333;
    margin-right: 20px;
}
.ny-product .mxw-cate .cate-item:last-child {
    margin-right: 0;
}
.ny-product .mxw-cate .cate-item:hover,
.ny-product .mxw-cate .cate-item.active {
    background-color: #0099d9;
    color: #fff;
}
.ny-product .mxw-cate .cate-item:hover .icon img,
.ny-product .mxw-cate .cate-item.active .icon img {
    transform: translateY(0);
}
.ny-product .mxw-cate .cate-item .icon {
    width: 0.5rem;
    height: 0.5rem;
    overflow: hidden;
    margin-right: 0.1667rem;
}
.ny-product .mxw-cate .cate-item .icon img {
    transform: translateY(-50%);
    display: block;
}
.ny-product .item{ position: relative;   }
.ny-product .item .image {
    border-radius: 0.25rem; overflow: hidden; border: 1px solid #e5e5e5
}

.ny-product .item  .title{ 	font-size: 0.283rem; padding: 0 0.25rem; text-align: center; width: 100%; height: auto;  margin: 10px auto 0; color: #333; }


@media screen and (max-width: 1200px) {
    .ny-product .mxw-cate {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .ny-product .mxw-cate .cate-item {
        width: 49%;
        margin-right: 2%;
        font-size: 12px;
        height: auto;
        line-height: inherit;
        padding: 8px 10px;
    }
    .ny-product .mxw-cate .cate-item:nth-child(2) ~ .cate-item {
        margin-top: 2%;
    }
    .ny-product .mxw-cate .cate-item:nth-child(2n) {
        margin-right: 0;
    }
    .ny-product .mxw-cate .cate-item .icon {
        width: 20px;
        height: 20px;
    }
    .ny-product .item .title {
        font-size: 12px;
        padding: 8px 10px;
    }

}
/* ==================== 内页 - 产品中心 end ==================== */



/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ny-product-desc .big-swiper {
    border: 1px solid #ddd;
}
.ny-product-desc .ny-product-image {
    width: 38%;
    flex-shrink: 0;
    margin-right: 5%;
}



.ny-product-desc .right {
    width: 65%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;
}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 0.0167rem solid #dcdcdc;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.5667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;
    max-width: 10rem;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
    max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
    cursor: pointer;
    border: 3px solid #eee;
    border-radius: 0.0833rem;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #168a53;
}
.ny-product-desc .small-image .swiper-button-disabled {
    opacity: 1;
}
.ny-product-desc .small-image .swiper-button-next:after,
.ny-product-desc .small-image .swiper-button-prev:after {
    font-size: 0.4667rem;
    color: #ccc;
}
.ny-product-desc .small-image .swiper-button-next {
    right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
    left: 0rem;
}
.ny-product-desc .bottom {
    margin-top: 0.8333rem;
}
.ny-product-desc .bottom .head {
    width: 100%;
    border-bottom: 0.0167rem solid #d9d9d9;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
    padding: 0 0.3333rem;
    border-bottom: 0.0833rem solid #168a53;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #168a53;
}
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 1400px;
    }
    .ny-product-desc .top {
        align-items: stretch;
    }
}
@media screen and (max-width: 1480px) {
    .ny-product-desc .mxw-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 100%;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {
        margin-bottom: 10px;
    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 16px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }
}
/* ==================== 内页 - 产品详情 end ==================== */

/* ==================== 内页 - 新闻列表2 start ==================== */
.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.6667rem;
}
.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;
    width: 4.767rem;
    margin-right: 0.5rem;
    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 .more {
    width: 2.0833rem;
    height: 0.6rem;
    line-height: 0.6rem;
    background-color: #fff;
    border: solid 0.0167rem #dedede;
    display: block;
    text-align: center;
    font-size: 0.2rem;
    color: #888888;
}
.ny-news .item:hover .more{	background-color: #0099d9; color: #fff; border: 1px solid #0099d9}
@media screen and (max-width: 1200px) {
    .ny-news .item {
        padding: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .ny-news .item .image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .ny-news .item .info {
        width: 100%;
    }
    .ny-news .item .head {
        margin-bottom: 10px;
    }
    .ny-news .item .title {
        font-size: 16px;
    }
    .ny-news .item .time {
        font-size: 12px;
    }
    .ny-news .item .desc {
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 1.8em;
        height: 3.6em;
        margin-bottom: 10px;
        overflow: hidden;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: inherit;
    }
    .ny-news .item .more {
        width: 100%;
        padding: 8px 20px;
        font-size: 12px;
        height: auto;
        line-height: inherit;
    }
    .ny-news{ padding: 45px 0}
}
/* ==================== 内页 - 新闻列表2 end ==================== */
.ny-news&gt;.nw{ padding-top: 0.7rem;padding-bottom: 0.7rem;}

.ab-box1{ padding-top: 1.1rem;}
.n-title{ text-align: center;}
.n-title .cn{	font-size: 0.5rem; padding-bottom: 0.367rem; background: url("../images/abxt.png") center bottom no-repeat;}
.box1-body{ margin-top: 1.5rem;}
.box1-body .item{ display: flex; align-items: center; justify-content: space-between;}
.box1-body .tc-right{ width: 34.7%; flex-shrink: 0;}
.box1-body .tc-left{ flex-grow: 1; min-width: 0; margin-right: 1.167rem;}
.box1-body .tc-left .st{ display: flex; align-items: stretch; justify-content: flex-start;}
.box1-body .tc-left .st .ico{ width: 1.3rem; flex-shrink: 0; margin-right: 0.333rem;}
.box1-body .tc-left .st .con{ flex-grow: 1; min-width: 0; position: relative; display: flex; flex-direction: column; justify-content: center;}
.box1-body .tc-left .st .con .cn{	font-size: 0.433rem;	color: #2b2b2b;}
.box1-body .tc-left .st .con .en{	font-size: 0.55rem; font-weight: bold;	color: #2b2b2b; text-transform: uppercase;}
.box1-body .tc-left .st .con::after{ display: block; content: "";	width: 1.2rem;
    height: 2px;
    background-color: #4dab0d; position: absolute; left: 0; bottom: 0}
.box1-body .tc-left .desc{ display: flex; align-items: flex-start; 	font-size: 0.267rem; line-height: 2.2; margin-top: 0.367rem;}
.box1-body .tc-left .desc::before{	width: 10px;
    height: 10px; content: ""; display: block; flex-shrink: 0;
    background-color: #4dab0d; border-radius: 50%; margin: 0.2rem 0.2rem 0 1.233rem;}
.box1-body .item:nth-child(2){ margin-top: 2.467rem;}
.box1-body .item:nth-child(2) .tc-left{ order: 1; margin-right: 0; margin-left: 0.867rem}
.box1-body .item:nth-child(2) .tc-right{ width: 53%; flex-shrink:0 ; margin-left: -2rem;}
.box1-body .item:nth-child(2) .tc-left .st{ justify-content: flex-end;}
.box1-body .item:nth-child(2) .tc-left .st .con{ text-align: right; margin-left: 0; margin-right: 0.467rem;}
.box1-body .item:nth-child(2) .tc-left .st .ico{ order: 1; margin-right: 0;}
.box1-body .item:nth-child(2) .tc-left .st .con::after{ right: 0; left: auto;}
.box1-body .item:nth-child(2) .tc-left .desc{ text-align: right;}
.box1-body .item:nth-child(2) .tc-left .desc::before{ order: 1;  margin: 0.2rem 0.2rem 0 0.2rem;}

.ab-box2{ padding-top: 2rem;}
.box2-body{ margin: 1.167rem auto 0;background-color: #f9f9f9; display: flex; align-items: stretch; justify-content: space-between;}
.box2-body .tc-left{ width: 49.5%; flex-shrink: 0;}
.box2-body .tc-right{ flex-grow: 1; min-width: 0; padding: 1.167rem 0.5rem 1.367rem 1.033rem;	font-size: 0.3rem; line-height: 2.2}

.ab-box3{ padding: 1.1rem 0 1.333rem;	background-color: #f9f9f9; margin-top: 1.433rem;}
.box3-body{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap; margin-top: 0.8rem;}
.box3-body .item{ margin-right: 0.75rem; width: calc((100% - 3rem)/5);}
.box3-body .item .mxw-image{border: solid 1px #dcdcdc;}
.box3-body .item:nth-child(5n){ margin-right: 0}
.box3-body .item:nth-child(5n)~.item{ margin-top: 0.583rem;}
.box3-body .item p{	font-size: 0.333rem; color: #333; margin-top: 0.267rem; text-align: center;}

.ab-box5{padding: 1.25rem 0 1.417rem; }
.box5-body{ position: relative; margin-top: 1.083rem;}
.box5-swiper{ overflow: hidden; margin: 0 auto; width: 88%;}
.box5-swiper .swiper-slide{ width: 20%;}
.box5-body .swiper-button-prev,.box5-body .swiper-button-next{width: 40px;
    height: 40px; border-radius: 50%;
    background-color: rgba(80, 80, 80, 0.65); opacity: 1;}
.box5-body .swiper-button-prev::after,.box5-body .swiper-button-next::after{ color: #fff; font-size: 15px;line-height: 1;}
.box5-swiper .swiper-slide p{ white-space: nowrap; text-overflow: ellipsis; overflow: hidden; font-size: 0.3rem; text-align: center; margin-top: 10px;}

.ab-box6{padding: 1.25rem 0 1.417rem; }
.box6-body{ position: relative; margin-top: 1.083rem;}
.box6-swiper{ overflow: hidden; margin: 0 auto; width: 100%;}
.box6-swiper .swiper-slide{ width: 20%;}
.box6-body .swiper-button-prev,.box6-body .swiper-button-next{width: 40px;
    height: 40px; border-radius: 50%;
    background-color: rgba(80, 80, 80, 0.65); opacity: 1;}
.box6-body .swiper-button-prev::after,.box6-body .swiper-button-next::after{ color: #fff; font-size: 15px;line-height: 1;}
.box6-swiper .swiper-slide p{ white-space: nowrap; text-overflow: ellipsis; overflow: hidden; font-size: 0.3rem; text-align: center; margin-top: 10px;}
.box6-body .swiper-button-prev{ left: -1.3rem}
.box6-body .swiper-button-next{ right: -1.3rem}
.cpro .mxw-box{ justify-content: flex-start; flex-wrap: wrap; box-shadow: none; align-items: stretch}
.cpro .nav-item{background-color: #ffffff;
    box-shadow: 0px 4px 24px 0px
    rgba(4, 37, 115, 0.04);}
.cpro .nav-item.active{ background: url("../images/na.png") center no-repeat; background-size: cover; box-shadow: none}
.pro-box{ padding-top: 0.917rem;}
.pro-box .list{ margin-top: 1.25rem;}
.pro-box .list .item{ position: relative;box-shadow: 0px 0px 9px 0px
rgba(0, 0, 0, 0.3); overflow:hidden}
.pro-box .list .item .st{ position: absolute; bottom: 0; width: 100%; padding: 0.233rem;	color: #ffffff;	background-color: rgba(0, 0, 0, 0.6); text-align: center;}
.pd-img{ margin: 1.5rem auto 0.583rem;}

.dz-box{ padding: 1.25rem 0 1.833rem;}
.dz-box .list{ margin-top: 1.167rem;}
.dz-box .list .item{ display: flex; align-items: stretch; justify-content: space-between;padding: 0.333rem;border: solid 1px #dadada;}
.dz-box .list .item .mxw-image{ width: 42.2%; flex-shrink: 0;}
.dz-box .list .item .con{ flex-grow: 1; min-width: 0; margin-left: 0.567rem; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;}
.dz-box .list .item .con .st{	font-size: 0.4rem; font-weight: bold;color: #333;}
.dz-box .list .item .con .desc{	font-size: 0.3rem; margin-top: 0.267rem; margin-bottom: auto; line-height: 1.8}
.dz-box .list .item .con .cz{ display: flex;}
.dz-box .list .item .con .cz .xq{	border: solid 1px #999999; 	font-size: 0.267rem;	color: #8d8d8d; padding: 0.1rem 0.633rem; flex-shrink: 0;}
.dz-box .list .item .con .cz .zx{	border: solid 1px #4b9b04;font-size: 0.267rem;	color: #4b9b04; padding: 0.1rem 0.633rem; flex-shrink: 0; margin-left: 0.333rem; display: flex; align-items: center;}
.dz-box .list .item .con .cz .zx img{ margin-right: 0.15rem; height: 0.267rem}
.case-box{ padding: 1.25rem 0 1.583rem}
.case-box .case-list{ margin-top: 1rem;}
.case-box .n-title .desc{ margin-top: 0.5rem; line-height: 1;}
.case-box .case-list .item .st{	font-size: 0.333rem;	color: #fbfbfb; padding: 0.333rem; text-align: center;	background-color: #4b9b04;}

.jjfa-box{ padding: 1.25rem 0 1.583rem;}
.jjfa-box .ny-nav{ margin-top: 0.867rem;}
.fa-list{ margin: 1.167rem auto 0;}
.fa-list .item{ position: relative;overflow: hidden; box-shadow: 0px 0px 9px 0px
rgba(0, 0, 0, 0.3);}
.fa-list .item .flx{ position: absolute; right: -50%; top: 0; height: 100%; width: 50%;background-color: rgba(0, 0, 0, 0.7);	color: #ffffff;font-size: 0.333rem; padding: 0.583rem 0.833rem; line-height: 1.8;  transition: all 0.3s;}
.fa-list .item:hover .flx{ right: 0;transition: all 0.3s;}
.fa-list .item .desc{ font-size:0.233rem; margin-top:0.1rem; }

.news-box{ padding: 1.25rem 0 1.583rem;}
.news-box .ny-nav{ margin-top: 0.917rem;}
.news-box .ny-nav&gt;.mxw-box{ box-shadow: none;}
.news-box .ny-nav&gt;.mxw-box .nav-item{box-shadow: 0px 4px 24px 0px rgba(4, 37, 115, 0.04);}
.news-list{ margin-top: 1rem;}
.news-list .item{ display: flex;  align-items: stretch; justify-content: space-between; padding-bottom: 0.4rem; border-bottom: 1px solid #dfdfdf}
.news-list .item .date{ padding-left: 1.033rem;  padding-right: 0.867rem; flex-shrink: 0}
.news-list .item .date .years{ font-size: 0.833rem;}
.news-list .item .date .moon{	font-size: 0.233rem;color: #6b6b6b; font-weight: bold;}
.news-list .item .con{ flex-grow: 1; min-width: 0; margin-left: 0.467rem;}
.news-list .item .mxw-image{ width: 17.5%; flex-shrink: 0;}
.news-list .item .con .st{	font-size: 0.4rem; margin-bottom: 0.15rem;}
.news-list .item .con .desc{	font-size: 0.267rem;	color: #a1a1a1; line-height: 1.8}
.news-list .item .con .n-more{	font-size: 0.267rem;	color: #4b9b04; margin-top: 0.417rem;}
.news-list .item:nth-child(1)~.item{ margin-top: 0.533rem;}
.news-list .item:hover .st{ color: #4b9b04}

footer{	background-color: #181819; padding-top: 0.8rem;}
footer .up{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.75rem;}
footer .up .d-logo{ width: 25.9375%; flex-shrink: 0; padding-right: 1.533rem;}
footer .up .d-logo&gt;img{ }
footer .up .d-ewm{ width: 19.5%; flex-shrink: 0; display: flex; align-items: stretch; justify-content: space-between; background: #222;}
footer .up .d-ewm .item{ width: 49.5%;	font-size: 0.267rem; color: #999; text-align: center; padding: 0.2rem 0.2rem 0.1rem;}
footer .up .d-ewm .item p{ margin-top: 0.1rem; }
footer .up .d-contact{ flex-grow: 1; min-width: 0; padding: 0 2.3rem 0 1.367rem; border-left: 1px solid rgba(255, 255, 255, 0.1);}
footer .up .d-contact .dc1{ display: flex; align-items: center; justify-content: flex-start; margin-bottom: 0.52rem;}
footer .up .d-contact .dc1 .text{	font-size: 0.267rem;	color: #999999; flex-shrink: 0;}
footer .up .d-contact .dc1 .num{	font-size: 0.767rem; font-weight: bold; line-height: 1; color: #fff; margin: 0 0.65rem 0 0.25rem;  letter-spacing: -2px;}
footer .up .d-contact .dc1 a{
    background-color: #4b9b04; padding: 0.2rem 0.55rem; flex-shrink: 0; color: #fff;}
footer .up .d-contact .dc1 a img{ width: 0.3rem; margin-right: 10px;}
footer .up .d-contact .dc2{	font-size: 0.3rem;color: #999999;line-height: 1.8; margin-top: 0.6rem;}
.tc-link{ padding: 0.417rem 0; border-top: 1px solid #303030;}
.tc-link .mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.tc-link .mxw-box .title{ flex-shrink: 0; font-weight: bold; font-size: 0.283rem; color: #fff;}
.tc-link .mxw-box .list{ display: flex; align-items: center; justify-content: flex-start; flex-wrap: wrap; flex-grow: 1; min-width: 0}
.tc-link .mxw-box .list a{ color: rgba(255, 255, 255, 0.24); font-size: 0.233rem; margin-right: 0.2rem;}

.mxw-copy{ background-color: #4b9b04; color: #fff;}

.tc-news{ margin: 0.633rem auto 1.75rem; }
.tc-news .up{ display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 0.433rem; border-bottom: 1px solid #d1cfcf;}
.tc-news .up .en{	font-size: 0.833rem; font-weight: bold; }
.tc-news .up .cn{	font-size: 0.5rem;}
.tc-news .up .en::after{	width: 51px;
    height: 4px;
    background-color: #4b9b04; display: block; content: ""; margin: 0.4rem auto 0.533rem 0;}
.tc-news .news-cate{ display: flex; align-items: flex-end; justify-content: flex-end; margin-left: 0.367rem;}
.tc-news .news-cate .item{ 	font-size: 0.267rem;display: flex; align-items: center; justify-content: space-between; margin-left: 0.367rem;}
.tc-news .news-cate .item::after{ display: block; content: ""; margin-left: 0.333rem;	width: 0.3rem;
    height: 0.3rem;  background: url("../images/news-ico.png") center no-repeat; background-size: cover}
.tc-news .news-cate .item.active::after{background: url("../images/news-ico-on.png") center no-repeat; background-size: cover;}
.tc-news .news-cate .item:hover{ color: #4b9b04}
.news-swiper{ overflow: hidden; margin-top: 0.767rem;}
.news-con{ overflow: hidden}
.news-con .swiper-slide{ width: 33%;}
.news-con .swiper-slide .date{	font-size: 0.25rem;	color: #666666;}
.news-con .swiper-slide .st{	font-size: 0.333rem; font-weight: bold; margin: 0.333rem auto 0.4rem;}
.news-con .swiper-slide .mxw-image{	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);}
.news-con .swiper-slide .mxw-image img{/* max-height:335px*/}
.news-con .swiper-slide .desc{	font-size: 0.267rem; color: #444; margin-top: 0.5rem; line-height: 1.8}
.tc-news .ns-more{ margin: 1rem auto 0; display: flex; width: -moz-max-content; width: max-content;	font-size: 0.233rem;	color: #ffffff; padding: 0.2rem 0.767rem;background-color: #4b9b04; position: relative; }
.tc-news .ns-more::after{	width: 0.433rem;
    height: 2px;
    background-color: #ffffff; content: ""; display: block; position: absolute; left: 0; top: 0.35rem; transition: all 0.3s;}

.tc-hz{padding: 3.5rem 0 2.333rem; background: url("../images/hz-bg.jpg") center no-repeat; background-size: cover; }
.tc-hz img{    transform: scale(0.98);    transition: all 0.3s;}
.tc-hz img:hover{transform: scale(1);    transition: all 0.3s;}
.tc-dz{ padding: 1.917rem 0 2.25rem; background: url('../images/dz-bg.jpg') center no-repeat; background-size: cover;}
.dz-title{ text-align: center; color: #fff;}
.dz-title .en{	font-size: 0.833rem; font-weight: bold; line-height: 1;}
.dz-title .cn{	font-size: 0.5rem;}
.dz-title .en::after{	width: 0.85rem;
    height: 4px;
    background-color: #8cc332; margin: 0.367rem auto 0.25rem; display: block; content: "" }
.hz-body{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; margin-top: 1.583rem;}
.hz-body .item{ background: #fff;	border-right: solid 1px #dddddd; width: 33.333%;
    padding: 0.467rem 0.567rem 0.567rem 0.8rem;}
.hz-body .item:nth-child(3n){ border-right: 0}
.hz-body .item:nth-child(3n)~.item{ border-top: 1px solid #ddd; }
.hz-body .item .icon img{ height: 0.95rem}
.hz-body .item .st{ font-size: 0.4rem;	color: #333333; margin: 0.25rem auto 0.2rem;}
.hz-body .item .desc{	font-size: 0.3rem; line-height: 1.6}
.hz-body .item:hover{ color: #fff; background: url("../images/dz-bg.png") center no-repeat; background-size: cover}
.hz-body .item:hover .icon img{filter:brightness(100); -webkit-filter:brightness(100);-ms-filter: "brightness(100)"; }
.hz-body .item:hover .st{ color: #fff;}

.tc-about{ padding-top: 2.333rem; background: url("../images/about-bg2.jpg") center no-repeat; background-size: cover;}
.tc-about .tc-left .en{	font-size: 0.833rem; font-weight: bold; line-height: 1; text-transform: uppercase;}
.tc-about .tc-left .cn{	font-size: 0.5rem; color: #333;}
.tc-about .tc-left .en::after{	width: 51px;
    height: 4px;
    background-color: #4b9b04; display: block; content: "";margin: 0.4rem auto 0.5rem 0;}
.tc-about .tc-left{ width: 51%;}
.tc-about .tc-left .desc{	font-size: 0.3rem; line-height: 2; margin: 0.967rem auto;}

.tc-about .ns-more{ margin:0 auto 0 0; display: flex; width: -moz-max-content; width: max-content;	font-size: 0.233rem;	color: #ffffff; padding: 0.2rem 0.767rem;background-color: #4b9b04; position: relative; }
.tc-about .ns-more::after{	width: 0.433rem;
    height: 2px;
    background-color: #ffffff; content: ""; display: block; position: absolute; left: 0; top: 0.35rem; transition: all 0.3s;}
.tc-about .bot{	background-color: rgba(253, 255, 249, 0.62); padding: 0.867rem 0 0.717rem;}
.tc-about .bot&gt;.mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.tc-about .bot&gt;.mxw-box .num-box{ width: 50%; }
.tc-about .bot&gt;.mxw-box .hon-con{ width: 46%; position: relative; padding: 0 0.7rem;}
.tc-about .bot&gt;.mxw-box .num-box {display: flex; align-items: center; justify-content: space-between;}
.tc-about .bot&gt;.mxw-box .num-box .num{	font-size: 0.92rem; line-height: 1; font-weight: bold;	color: #6c6b6b;	font-style: italic;}
.tc-about .bot&gt;.mxw-box .num-box .item p{	color: #6c6b6b; margin-top: 0.1rem; font-size: 0.288rem}
.tc-about .bot&gt;.mxw-box .num-box .item{ flex-grow: 1; min-width: 0}
.tc-about .bot&gt;.mxw-box .num-box .item:nth-child(2){ text-align: center; border-right: 1px solid #eaeaea; border-left: 1px solid #eaeaea; width: 40%; flex-shrink: 0;}
.tc-about .bot&gt;.mxw-box .num-box .item:nth-child(1){ padding-right: 0.75rem;}
.tc-about .bot&gt;.mxw-box .num-box .item:nth-child(3){ padding-left: 0.9rem;}
.in-honor{ overflow: hidden;}
.in-honor .swiper-slide{ width: 33%; padding: 0 0.4rem 0.75rem 0.4rem; background: url("../images/zsdz.png") center bottom no-repeat; background-size: 100% auto;}
.tc-about .bot&gt;.mxw-box .hon-con .swiper-button-prev{}
.tc-about .bot&gt;.mxw-box .hon-con .swiper-button-next{}

.tc-pro{ margin: 1.417rem auto 1.5rem; display: flex; align-items: stretch; justify-content: space-between; max-width: 1920px;}
.tc-pro .tc-left{ width: 38.3%; flex-shrink: 0; background: url("../images/tc-pl-bg.jpg") center no-repeat; background-size: cover; padding: 135px 100px 75px 2.5rem;}
.tc-pro .tc-left .en{	font-size: 0.833rem; font-weight: bold;}
.tc-pro .tc-left .en::after{	width: 51px;
    height: 4px;
    background-color: #4b9b04; display: block; content: "";margin: 0.4rem auto 0.5rem 0;}
.tc-pro .tc-left .cn{font-size: 0.5rem; color: #333;}
.tc-pro .tc-right{ flex-grow: 1; min-width: 0; padding: 0.8rem 2.5rem 0.9rem 1.333rem;}
.pro-l-swiper{ overflow: hidden;}
.pro-l-swiper .st{	font-size: 0.333rem; font-weight: bold; padding: 0.15rem;line-height: 1; color: #fff; width: max-content; width: -moz-max-content;	background-color: #4b9b04; margin: 0.3rem auto 0.9rem 0;}
.pro-l-swiper .desc{ line-height: 2;	color: #333333; margin-bottom: 1.583rem;}
.tc-pro .pro-cate{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.tc-pro .pro-cate .item{ width: 19%; margin-right: 1.25%; text-align: center;	color: #4b9b04; padding: 0.15rem 0.467rem;	border: solid 1px #8cc332;}
.tc-pro .pro-cate .item:nth-child(5n){ margin-right: 0}
.tc-pro .pro-cate .item:nth-child(5n)~.item{ margin-top: 0.3rem;}

.pro-swiper{ margin-top: 0.5rem; overflow: hidden}
.pro-cswiper{ padding: 10px; overflow: hidden;}
.pro-cswiper .swiper-slide{	box-shadow: 0px 0px 9px 0px
rgba(0, 0, 0, 0.3);	background-color: #ffffff; width: 33%;}
.pro-cswiper .swiper-slide .st{ text-align: center; padding: 0.15rem;}
.pro-cswiper .swiper-pagination{ position: initial; margin-top: 0.5rem; font-size: 0}
.pro-cswiper .swiper-pagination .swiper-pagination-bullet{	width: 0.667rem;
    height: 0.1rem;
    background-color: #a8a8a8;
    border-radius: 3px;}
.pro-cswiper .swiper-pagination .swiper-pagination-bullet-active{	width: 1.317rem;	background-color: #4b9b04;}

.pr-ld{ position: relative; display: flex; align-items: center; justify-content: center; width: max-content; width: -moz-max-content; max-width: 100%;	font-size: 16px; color: #000}
.pr-ld .swiper-button-next::after,.pr-ld .swiper-button-prev::after{	color: #000000; font-size: 16px; line-height: 1; opacity: 1; }
.pr-ld .xt{	width: 2.117rem;
    height: 1px;
    background-color: #333333; margin: 0 15px;}

.pr-ld .swiper-button-next,.pr-ld .swiper-button-prev{position: initial; margin-top: initial;opacity: 1; width: initial;}
.pr-ld .num{ margin-right: 10px}

.tc-case{ padding: 1.583rem 0 2.083rem; background: url("../images/case-bg.jpg") center no-repeat; background-size: cover;}
.case-body{ width: 91.2%; max-width: 1750px;
    margin: 1.033rem auto 0; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.tc-case .en{ color: #333; text-transform: uppercase}
.tc-case .cn{ color: #333;}

.case-body .item{ width: 31%; margin-right: 3.5%;	box-shadow: 0px 0px 9px 0px
rgba(0, 0, 0, 0.3); position: relative; overflow: hidden;}
.case-body .item:nth-child(3n){ margin-right: 0 }
.case-body .item:nth-child(3n)~.item{ margin-top: 0.917rem;}
.case-body .item .img img{ width: 100%}
.case-body .item .flx{ position: absolute; width: 100%; height: 100%; bottom: -100%; left: 0;	background-color: rgba(0, 0, 0, 0.3);
   transition: all 0.3s ;
    display: flex; align-items: center; justify-content: center; flex-direction: column;}
.case-body .item .flx .icon img{ height: 1.083rem;}
.case-body .item .flx p{	font-size: 0.333rem; margin-top: 0.583rem;color: #fbfbfb; text-align: center;}
.case-body .item:hover .flx{ bottom: 0; transition: all 0.3s;}


.tc-case .ns-more{ margin: 1rem auto 0; display: flex; width: -moz-max-content; width: max-content;	font-size: 0.233rem;	color: #ffffff; padding: 0.2rem 0.767rem;background-color: #4b9b04; position: relative; }
.tc-case .ns-more::after{	width: 0.433rem;
    height: 2px;
    background-color: #ffffff; content: ""; display: block; position: absolute; left: 0; top: 0.35rem; transition: all 0.3s;}

.tc-jx{ padding: 0 0 1.333rem;}
.tc-jx .en{ color: #333; 	font-size: 0.5rem; font-weight: initial;}
.tc-jx .cn{ color: #333; 	font-size: 18px;}
.tc-about .bot&gt;.mxw-box .hon-con .swiper-button-prev{ left: 0;
    width: 22px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.8);opacity: 1;
 }
.tc-about .bot&gt;.mxw-box .hon-con .swiper-button-next{	width: 22px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.8); right: 0; opacity: 1;}
.tc-about .bot&gt;.mxw-box .hon-con .swiper-button-next::after,.tc-about .bot&gt;.mxw-box .hon-con .swiper-button-prev::after{color: #87898a; font-size: 0.35rem;}

.jx-body{ margin: 0.933rem auto 0; display: flex; align-items: stretch; justify-content: space-between; max-width: 1920px; width: 100%; overflow: hidden; }
.jx-body .item{ width: 17.8%;  flex-shrink: 0; display: flex;align-items: center; justify-content: center;  overflow: hidden;position: relative; transition:all 0.3s;}
.jx-body .item.active{ flex-grow: 1; min-width: 0; transition:all 0.3s; }
.jx-body .item .c2{ z-index:-1; }
.jx-body .item.active .c1{ display: none;}
.jx-body .item.active .c2{ width:100%;  padding: 0 2.333rem 1.667rem 2.583rem; z-index:1;}
.jx-body .item&gt;img{ width: initial; max-width: initial;}
.jx-body .item .c1{ position: absolute; width: 100%; height: 100%; top: 0; left: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; color: #fff; background: rgba(0, 0, 0, 0.4); }
.jx-body .item .c1 img{ height: 0.667rem;}
.jx-body .item .c1 p{ margin-top: 0.25rem;	font-size: 0.5rem; font-weight: bold;}
.jx-body .item .c2{ position: absolute; width: 0; display: flex; overflow:hidden; height: 100%; top: 0; left: 0; align-items: flex-start; justify-content: flex-end; flex-direction: column; color: #fff; background: rgba(0, 0, 0, 0.4);}
.jx-body .item .c2 .st{display: flex; align-items: center; justify-content: flex-start;	font-size: 0.5rem; font-weight: bold; transition:all 0.3s;}
.jx-body .item .c2 .st img{ height: 0.667rem; margin-right: 0.3rem; transition:all 0.3s;}
.jx-body .item .c2 .st2{font-size: 0.333rem; margin: 0.4rem auto 0.6rem 0;transition:all 0.3s;}
.jx-body .item .c2 .desc{ line-height: 1.8; font-size: 0.267rem; transition:all 0.3s;}

.xf-msg{ position: fixed; bottom: 0; width: 100%; z-index:999}
    .xf-msg .top{ background: rgba(0,0,0,.7); padding: 0.3rem 0 0.233rem;}
    .xf-msg .top .mxw-box{font-size: 0.5rem; color: #fff; }
    .xf-msg .top img{ margin-right: 0.25rem;}
    .xf-msg .top span{ margin-left: 0.25rem;}
    .xf-msg .bot{ background:#2a3a0f; padding:9px 0 36px;}
    .xf-msg .bot form{ display:flex; align-items:stretch; justify-content:space-between;}
    .xf-msg .bot form input{ background:#fff; font-size:16px; padding:16px 16px 15px;}
    .xf-msg .bot form&gt;input{ width:26%; margin-right:10px;}
    .xf-msg .bot form .yz{ width: 13%; position:relative; margin-right:10px}
    .xf-msg .bot form button{    background-color: #4b9b04;
    box-shadow: 7px 0px 8px 1px rgba(0, 0, 0, 0.07);
    font-size: 20px;
    color: #fff;
    padding: 12px 15px;
    width: 13%;
}
    .xf-msg .bot form .yz  #code{ position:absolute; right:5px; top:10px;}
.xf-msg .bot form&gt;input:nth-child(1){ width:21%; }
    .xf-msg .bot form .yz input{ width:100%;}

footer{ padding-bottom:1.5rem;}









    /* ==================== 新闻详情 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;
}

@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 ==================== */




body{ overflow-x: hidden}




.mxw-copy{ border-top: 1px solid #303030;}
.mxw-copy .mxw-box{  padding: 0.333rem 0; 	font-size: 0.233rem; color: #fff;  text-align: center; opacity: 0.6}
.mxw-copy .mxw-box a{font-size: 0.233rem; color: #fff; }
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; color: #fff;}


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

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



@media screen and (max-width: 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 ==================== */

.x-sub-menu&gt;li {
    position: relative;
}

.x-sub-menu&gt;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;
    width: 200px;
}

.x-sub-menu&gt;li .x-sub-menux a {
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: #333;
    /* padding: 0 2%; */
    box-sizing: content-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all ease .3s;
    padding: 2px 3px;
    width: -moz-max-content;
    width: max-content;
    margin: 6px auto;
    max-width: 100%;
    border-bottom: 1px solid transparent;
}

.x-sub-menu&gt;li .x-sub-menux a:hover {
    border-bottom: 1px solid #333;
    color: #000;
}

.x-sub-menu&gt;li:hover .x-sub-menux {
    z-index: 99;
    opacity: 1;
    visibility: visible;
}

.x-sub-menux&gt;li{ position: relative;}
.x-sub-menux&gt;li&gt;div {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;

}

.x-sub-menux &gt;li:hover&gt;div {
    z-index: 99;
    opacity: 1;
    visibility: visible;
}





    @media screen and (max-width: 768px) {
        .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
        .tc-about{ padding-top: 45px;}
        .tc-about .tc-left{ width: 100%;}
        .tc-about .tc-left .en{ font-size: 22px;}
        .tc-about .tc-left .en::after{ height: 2px; margin: 5px auto 10px 0;}
        .tc-about .tc-left .cn{ font-size: 18px;}
        .tc-about .tc-left .st{ font-size: 14px; margin-top: 12px;}
        .tc-about .tc-left .desc{ margin: 15px auto ; font-size: 14px;}
        .tc-about .ns-more{ padding: 10px 25px; font-size: 14px;}

        .tc-about .bot{ margin-top: 25px; padding: 30px 0; }
        .tc-about .bot&gt;.mxw-box{ flex-wrap: wrap;}
        .tc-about .bot&gt;.mxw-box .num-box{ width: 100%; align-items: flex-start; justify-content: space-between;}
        .tc-about .bot&gt;.mxw-box .num-box .num{ font-size: 22px;}
        .tc-about .bot&gt;.mxw-box .num-box .item:nth-child(1),.tc-about .bot&gt;.mxw-box .num-box .item:nth-child(3){ width: 30%; padding: 0;}
        .tc-about .bot&gt;.mxw-box .num-box .item:nth-child(2){ width: 30%;}
        .tc-about .bot&gt;.mxw-box .num-box .item p{ font-size: 12px;}
        .tc-about .bot&gt;.mxw-box .num-box .item{ text-align: center; flex-grow: initial;}
        .tc-about .bot&gt;.mxw-box .hon-con{ width: 100%; margin-top: 25px; padding: 0 30px;}
        .tc-about .bot&gt;.mxw-box .hon-con .swiper-slide{ padding: 0 20px 35px 20px; width: 50%;}

        .tc-pro{ margin: 45px auto; flex-wrap: wrap;}
        .tc-pro .tc-left{ padding: 20px; width: 100%;}

        .tc-pro .tc-left .en{ font-size: 22px;}
        .tc-pro .tc-left .en::after{ height: 2px; margin: 5px auto 10px 0;}
        .tc-pro .tc-left .cn{font-size: 18px}
        .pro-l-swiper .st{ font-size: 15px; padding: 8px 10px; margin: 10px auto 0 0}
        .pro-l-swiper .desc{ font-size: 14px; margin: 15px auto 20px;}
        .tc-pro .tc-right{ padding: 35px 2.5% 0;}
        .tc-pro .pro-cate{ flex-wrap: wrap; justify-content: space-between}
        .tc-pro .pro-cate .item{ width: 48.5%; padding: 6px 5px; margin: initial; font-size: 14px;}
        .tc-pro .pro-cate .item:nth-child(2n)~.item{ margin-top: 12px;}
        .pro-swiper{ margin-top: 20px; }
        .pro-cswiper .swiper-slide{ width: 48.5%;}
        .pro-cswiper .swiper-slide .st{ padding: 8px; font-size: 14px;}
        .pro-cswiper .swiper-pagination .swiper-pagination-bullet{ width: 25px; height: 3px;}
        .pro-cswiper .swiper-pagination .swiper-pagination-bullet-active{ width: 40px;}
        .tc-jx .en{ font-size: 18px;}
        .tc-jx .cn{ font-size: 14px; padding: 0 2.5%}
        .dz-title .en::after{ margin: 5px auto 10px;}
        .jx-body{ margin: 25px auto 0; flex-wrap: wrap;}
        .jx-body .item{ width: 100%;}
        .jx-body .item&gt;img{ width: 100%; max-width: 100%;}
        .jx-body .item .c2{ display: flex !important; padding: 20px 20px 35px; }
        .jx-body .item .c1{ display: none !important;}
        .jx-body .item .c2 .st{ font-size: 18px;}
        .jx-body .item .c2 .st img{ height: 25px; margin-right: 10px;}
        .jx-body .item .c2 .st2{ margin: 10px auto 10px 0; font-size: 16px; }
        .jx-body .item .c2 .desc{ font-size: 14px;}

        .tc-case{ padding: 45px 0;}
        .tc-case .en{ font-size: 22px;}
        .dz-title .en::after{ width: 48px; height:  2px;}
        .tc-case .cn{ font-size: 16px;}
        .case-body{ width: 95%; margin: 25px auto 0; justify-content: space-between;}
        .case-body .item{ width: 48.5%; margin: initial;}
        .case-body .item:nth-child(2n)~.item{ margin-top: 15px;}
        .tc-case .ns-more{ padding: 8px 25px; font-size: 14px; margin-top: 20px;}
        .case-body .item:hover .flx img{ height: 30px;}
        .case-body .item .flx{ padding: 15px;}
        .case-body .item .flx p{ font-size: 14px; margin-top: 10px;}

        .tc-dz{ padding: 45px 0;}
        .dz-title .en{ font-size: 22px;}
        .dz-title .cn{ font-size: 18px;}
        .hz-body{ margin: 25px auto;}
        .hz-body .item{ width: 100%; border-right:0; padding: 20px 30px;}
        .hz-body .item .icon img{ height: 30px;}
        .hz-body .item .st{ font-size: 18px;}
        .hz-body .item .desc{ font-size: 16px}
        .tc-hz{ padding: 45px 0}
        .tc-news{ margin-top: 30px;}
        .tc-news .up{ flex-wrap: wrap; padding-bottom: 10px;}
        .n-title2{ width: 100%; text-align: center;}
        .tc-news .up .en{ font-size: 22px;}
        .tc-news .up .en::after{ height: 2px; margin: 5px auto 10px;}
        .tc-news .up .cn{ font-size: 18px;}
        .news-cate{ margin-top: 25px;}
        .news-swiper{ margin-top: 25px;}

        .sev-swiper .swiper-slide .icon{ width: 20px; height: 20px;}
        .dz-title .cn{ font-size: 14px; line-height: 1.7}
        .dz-title .en::after{ margin: 8px auto 12px;}
        .tc-jx{ padding-bottom: 40px;}
        .news-con .swiper-slide .st{ font-size: 16px; margin: 10px auto 15px;}
        .news-con .swiper-slide .date{ font-size: 14px;}
        .news-con .swiper-slide .desc{ font-size: 14px; margin-top: 10px;}
        .tc-news .ns-more{ padding: 8px 30px; margin-top: 25px;}
        .tc-news .ns-more::after{ top: 15px}
        .tc-news{ margin-bottom: 45px;}
        footer .up .d-logo{ padding: 0; margin: 15px auto; text-align: left;}
        footer .up .d-logo img{ height: 120px;}
        footer .up .d-contact{ margin-top: 30px;}
        footer .up .d-contact .dc1 .text{ font-size: 14px}
        footer .up .d-contact .dc1 .num{ font-size: 22px;}
        footer .up .d-contact .dc1 a{ font-size: 14px; padding: 8px 15px;}
        footer .up .d-contact .dc1 a img{ width: 15px;}
        footer .up .d-contact .dc2{ margin-top: 15px; font-size: 14px;}
        footer .up .d-ewm{ width: 100%;}
        footer .up .d-ewm .item img{ width: 120px;}
        footer .up .d-ewm .item p{ font-size: 14px; margin-top: 5px;}
        footer .up{}
        .ny-nav .mxw-box{ flex-wrap: wrap}
        .ab-box1{ padding-top: 45px}
        footer .up{ flex-wrap: wrap; padding: 0 2.5% 30px;}
        footer .up .d-logo{ width: 100%; margin: 0;}
        footer .up .d-contact{ padding: 0; width: 100%; }


        .n-title .cn{ font-size: 22px; padding-bottom: 10px;}
        .box1-body{ margin-top: 30px;}
        .box1-body .item{ flex-wrap: wrap;}
        .box1-body .tc-left{ margin-right: 0}
        .box1-body .tc-left .st .ico{ width: 60px;}
        .box1-body .tc-left .st .con .cn{ font-size: 18px;}
        .box1-body .tc-left .st .con .en{ font-size: 16px; margin-top: 5px;}
        .box1-body .tc-left .desc::before{ margin-left: 0; margin-top: 8px;}
        .box1-body .tc-left .desc{ font-size: 14px; line-height: 1.8; margin-top: 15px;}
        .box1-body .tc-right{ width: 100%; margin-top: 15px;}
        .box1-body .item:nth-child(2){ margin-top: 25px;}
        .box1-body .item:nth-child(2) .tc-right{ width: 100%; margin: 0 auto;}
        .box1-body .item:nth-child(2) .tc-left{ margin: 0;}

        .ab-box2{ padding-top: 45px;}
        .box2-body{ margin-top: 25px; flex-wrap: wrap;}
        .box2-body .tc-left{ width: 100%;}
        .box2-body .tc-right{ padding: 20px 15px; line-height: 1.8; font-size: 14px;}

        .ab-box3{ padding-top: 45px; margin-top: 45px;}
        .box3-body{ margin: 25px auto 0;}
        .box3-body .item{ width: 32%; margin-right: 2%; margin-top: initial;}
        .box3-body .item:nth-child(5n){ margin-right: 2%;}
        .box3-body .item:nth-child(3n){ margin-right: 0;}
        .box3-body .item:nth-child(3n)~.item{ margin-top: 15px;}
        .box3-body .item p{ font-size: 14px; margin-top: 5px;}

        .ab-box5{ padding: 45px 0;}
        .box5-body{ margin-top: 25px;}
        .ab-box6{ padding: 0 0 45px;}
        .box6-swiper .swiper-slide p{ font-size: 14px;}
        .box6-body{ margin-top: 25px;}
        .pro-box{ padding-top: 45px;}
        .pro-box .list{ margin-top: 25px;}
        .pro-box .list .item .st{ font-size: 14px; padding: 8px 15px;}

        .pd-img{ margin-top: 25px;}
        .dz-box{ padding: 45px 0;}
        .dz-box .list{ margin-top: 25px;}
        .dz-box .list .item{ flex-wrap: wrap;   }
        .dz-box .list .item .mxw-image{ width: 100%;}
        .dz-box .list .item .con{ margin-left: 0;}
        .dz-box .list .item .con .st{ font-size: 16px; margin-top: 5px;}
        .dz-box .list .item .con .desc{ font-size: 14px; margin: 5px auto 10px; text-align: left; width: 100%;}

        .case-box{ padding: 45px 0;}
        .case-box .case-list{ margin-top: 25px;}
        .case-box .case-list .item .st{ font-size: 14px; padding: 8px;}
        .fa-list .item .flx{ position: initial; width: 100%; display: block; padding: 20px;}
        .fa-list .item .flx .st{ font-size: 16px;}
        .fa-list .item .flx .desc{ font-size: 14px;}
        .fa-list .item:nth-child(1)~.item{ margin-top: 25px;}
        .jjfa-box{ padding: 45px 0}
        .news-box{ padding: 45px 0;}

        .news-list{ margin-top: 25px;}
        .news-list .item{ flex-wrap: wrap;}
        .news-list .item .date{ width: 100%; order: 1; display: none; }
        .news-list .item .mxw-image{ width: 100%;}
        .news-list .item .con{ margin: 0;}
        .news-list .item .con .st{ margin-top: 5px; font-size: 16px;}
        .news-list .item .con .desc{ font-size: 14px; height: 51px;}
        .news-list .item .con .n-more{ margin-top: 5px; margin-left: auto; margin-right: 0;}



    .xf-msg{ display:none;}
footer{ padding-bottom:0}










    }












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