
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
    image-rendering: -moz-crisp-edges; /* Firefox */
   image-rendering: -o-crisp-edges; /* Opera */
   image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
   -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination > a,.mxw-pagination > span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: block;
    margin: 4px;
}
.mxw-pagination > a.active,
.mxw-pagination > a:hover {
    background-color: #1c9531;
    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: #1c9531;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #f9f9f9;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #1c9531;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #1c9531;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    width: 65px;
    height: 44px;
    background-color: #1c9531;
    border-radius: 0px 5px 5px 0px;
     color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(../image/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;

}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;z-index: 0;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
    height: 100%; text-align: center;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #cccccc;
    margin-left: 5px;
    margin-right: 5px;
    border: 2px solid #cccccc;
    outline: none;
    opacity: 1;
    border-radius: 50%;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #1064a2;
    border-color: #1064a2;

}
.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: #1c9531;
}
.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: 1400px;
    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: 1880px) {
    /* 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;}
.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:#0070c0;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 240%;
        width:240%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
	.footer3 ul li .iconfont{ width:initial; height:initial}
    .product-detail-tab .product-detail-tabcon iframe,.product-detail-tab .product-detail-tabcon video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content  iframe, .xypg-right-content  video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content img{ max-width: 100%; height: auto !important;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}
.top-box .logo-box{  font-size: 0;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start;
    padding: 0.38rem 0 0.3rem 0;
   }
.top-box .logo-box .t-logo>img{ max-height:1.383rem;}
.top-box .logo-box .logo-text{
    margin-left: 0.2rem; padding-left: 0.333rem; background: url("../image/e66837a21b6a029977aeafeec6a1f64415e27ef0.png") center left no-repeat;}
.top-box .logo-box .logo-text .cn{ 	font-size: 0.433rem;color: #11509b; font-weight: bold; line-height: 1;}
.top-box .logo-box .logo-text .en{	font-size: 0.267rem; color: #616161; text-transform: uppercase; margin-top: 0.1rem;  }

.mxw-keywords .left .zx{ display: inline-block; font-size: 0.35rem; margin-right: 0.833rem; vertical-align: middle}
.mxw-keywords .left .zx>img{ margin-right: 5px}
.mxw-keywords .left .zx b{ color: #1c9531; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; opacity: 0.4 }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;overflow:visible;}
.mxw-link .mxw-link-list{color:#333;position:absolute;top:0;left:0;width:100%;transform:translateY(-100%);padding:10px 0;display:none; background: #fff;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:0.3rem;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:0.267rem;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{  }
header .welcome {
    background: #11509b;
    line-height: 0.833rem;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #aeaeae;
}
header .welcome .right a{ margin: 0 5px;}
header .welcome .right a:hover{ color: #aeaeae}

.top-box{ align-items: stretch;}
.top-box .right{ display: flex; flex-grow:1; min-width: 0;  padding-left: 0.7rem; justify-content: flex-end; align-items: center;  color: #fff; }
.top-box .right .tp-tel{ flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-right: 2rem; }
.top-box .right .tp-tel .icon{ height: 0.7rem;}
.top-box .right .tp-tel .con{ margin-left: 0.167rem;}
.top-box .right .tp-tel .con .st{ 	font-size: 0.233rem;	color: #222222; }
.top-box .right .tp-tel .con .num { line-height: 1;	font-size: 0.5rem; color: #222; font-weight: bold;}
.top-box .right .tp-se{	box-shadow: 0px 0px 6px 0px rgba(4, 0, 0, 0.53);}
.top-box .right .tp-se form{ display: flex; align-items: stretch; justify-content: flex-end;	width: 4.233rem;}
.top-box .right .tp-se form button{	width: 0.583rem; padding: 8px 6px 7px 7px;	background-color: #11509b; flex-shrink: 0; cursor: pointer;}
.top-box .right .tp-se form input{	font-size: 0.267rem;color: #aeaeae; text-indent: 0.5em; flex-grow: 1;min-width: 0; }










.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;

}
.x-menu > li {
    margin: 0;
    text-align: center;
    float: none;
    position: relative;
    flex-grow: 1;
    min-width: 0;
    z-index: 1;
}

.x-menu > li > a {
    font-size: 0.333rem;
    color: #fff;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding: 0.33rem 0 0.35rem;
    line-height: 1.2;
    position: relative;z-index: 2;
}

.x-menu > li > a:hover {
    color: #fff;
}
.x-menu>li.active{ color: #fff;  		}
.x-menu > li.active > a {
    color: #fff;
}
.x-menu>li.active::before{ 	width: 2.167rem;
    height: 1.35rem;
 background: url("../image/b6b73318badc486c54dc25b7770b193ce4b4c7bc.png") center no-repeat;  content: ""; display: block; position: absolute; margin: 0 auto; left: 0; right: 0; background-size: 100% auto; }
.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 200px;
    left:50%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,20px);
    transform: translate(-50%,20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;

}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#11509b;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}

.x-menu > li > a>span{ margin-left: 5px }
.x-menu > li.active > a>span{  filter: invert(52%) sepia(46%) saturate(3044%) hue-rotate(165deg) brightness(92%) contrast(100%);}

.mxw-banner .swiper-slide{ position: relative;}
.mxw-banner .swiper-slide video{     width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;}
.mxw-banner .swiper-slide .flx{    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center; z-index: 11}

.tc-1800{width: 94%; max-width: 1800px; margin: 0 auto;}
.mxw-banner{ background: #000}
.mxw-banner .swiper-pagination{}
.mxw-banner .swiper-pagination .swiper-pagination-bullet{width: 1.5rem;
    height: 2px;
    background-color: #fff;border: 0; opacity: 0.5;
    border-radius: 2px;}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    height: 2px;
    background-color: #fff; opacity: 1;
    border-radius: 2px; border: 0}

.mxw-keywords{ border-bottom: 1px solid #dedede;}


.nav-bg{	background-color: #11509b;}
.tc-pro{ padding: 1.167rem 0 1.033rem; background: url("../image/cf3d5a1d6a9b096ee31d7d4add10e6b0e897c200.jpg") center no-repeat; background-size: cover;}
.tc-title{ text-align: center;}
.tc-title .en{ position: relative;font-size: 0.833rem; font-weight: bold;	color: rgba(17, 80, 155, 0.1); text-transform: uppercase; line-height: 1;}
.tc-title .en .cn{color: #222222; position: absolute; left: 0; right: 0;	font-size: 0.8rem; top: 0.1rem; line-height: 1;}
.tc-title .en .cn span{	color: #11509b;}
.tc-title .desc{ margin-top: 0.4rem;	color: #666666;}
.tc-title .ico{ margin-top: 0.267rem;}

.pro-cate{ display: flex; align-items: center; justify-content: center; display: -webkit-flex; margin-top: 0.633rem;}
.pro-cate .item{	font-size: 0.3rem;color: #333333; padding: 0.2rem 0.367rem;background-color: #ffffff;
    border-radius: 0.383rem; margin: 0 0.267rem;}
.pro-cate .item.active{	background-color: #11509b; color: #fff;}
.pro-swiper{ overflow: hidden; margin-top: 0.917rem; }
.pro-swiper .swiper-slide{ display: flex; align-items: center; display: -webkit-flex; flex-wrap: wrap; width: 100%; overflow: hidden;}
.pro-swiper .swiper-slide .item{ }
.pro-swiper .swiper-slide .item p{	font-size: 0.3rem;	color: #333333;text-align: center; padding: 0.2rem 0.333rem;	box-shadow: -1px 1px 25px 0px
rgba(78, 78, 78, 0.06);	background-color: #ffffff;
    border: solid 1px #e8e8e8;}
.pro-swiper .swiper-slide .item:hover p{	background-color: #11509b; color: #fff;}

.tc-adv{ padding: 1.583rem 0 1.333rem; background: url("../image/5de539e19562dbcd348624e79698cb2f5ca91dad.jpg") center no-repeat; background-size: cover; }
.tc-adv .st .cn{	font-size: 0.8rem;color: #ffffff; font-weight: bold;}
.tc-adv .st .desc{	font-size: 0.417rem;color: #ffffff; margin-top: 0.3rem}
.adv-body{ background: #fff; padding: 1.083rem 0.733rem 0.933rem; margin-top: 0.733rem}
.adv-swiper{ overflow: hidden;}
.adv-swiper .swiper-slide{ width: 25%;}
.adv-swiper .swiper-slide .mxw-image{border-radius: 0.4rem;}
.adv-swiper .swiper-slide .st{text-align: center; margin: 0.567rem auto 0.467rem; 	font-size: 0.533rem; font-weight: bold;color: #11509b;}
.adv-swiper .swiper-slide .desc{font-size: 0.233rem;color: #666666; text-align: center; line-height: 1.6}
.adv-swiper .swiper-pagination{ position: initial; text-align: left; margin-top: 1.5rem;}
.adv-swiper .swiper-pagination .swiper-pagination-bullet{	width: 0.5rem;
    height: 0.167rem;
    background-color: #666666;
    border-radius: 0.083rem;}
.adv-swiper .swiper-pagination .swiper-pagination-bullet-active{	width: 1.667rem;	background-color: #11509b;}

.tc-case{ padding: 1.583rem 0 2.75rem; background: url("../image/4abc781f2737cae0904ce784df60d7ee24ae7453.jpg") center no-repeat; background-size: cover;}
.tc-case .case-cate{ margin: 1rem auto 0.417rem; display: flex; align-items: stretch; justify-content: space-between;}
.tc-case .case-cate .item{	border: solid 1px #eeeeee; text-align: center;
    padding: 0.5rem 0.25rem 0.3rem; background: #fff; flex-grow: 1; min-width: 0; border-right: 0;}
.tc-case .case-cate .item:last-child{	border-right: 1px solid  #eeeeee;}
.tc-case .case-cate .item .icon{ height: 0.717rem; display: flex; align-items: center; justify-content: center;}
.tc-case .case-cate .item .icon img{ max-height: 0.717rem;}
.tc-case .case-cate .item p{ font-size: 0.267rem; color: #777; margin-top: 0.25rem;}
.tc-case .case-cate .item.active p,.tc-case .case-cate .item:hover p{ color: #11509b;}
.case-con-swiper .swiper-slide{ width: 24%; background: #f5f5f5}
.case-box>.mxw-box{ position: relative;}
.case-con-swiper .swiper-slide .mxw-image{ display: block;}
.case-con-swiper .swiper-slide .st{ font-size: 0.3rem; color: #333; font-weight: bold; padding: 0.25rem; display: block; text-align: center; }
.case-con-swiper .swiper-slide .c-more{ display: block; width: max-content; width:-moz-max-content; color: #fff; padding: 0.1rem 0.5rem;
    border-radius: 0.333rem; background: #222; margin: 0 auto 0.417rem; font-size: 0.233rem;}
.case-box>.mxw-box .swiper-button-next::after,.case-box>.mxw-box .swiper-button-prev::after{ color: #e9e9e9; font-size: 1.6rem;}
.case-box>.mxw-box .swiper-button-next{ right: -1.1rem}
.case-box>.mxw-box .swiper-button-prev{ left: -1.1rem;}
.case-con-swiper{ overflow: hidden;}

.tc-adv2{ padding: 1.467rem 0 0.967rem; background: url("../image/25e81f4b75be9daebf3b445e2f5f9ebe3a4ed196.jpg") center no-repeat; background-size: cover;}
.adv2-body{ margin-top: 0.583rem; position: relative;}
.adv2-swiper{ overflow: hidden; width: 118%;}
.adv2-swiper .swiper-slide{ display: flex; align-items: stretch; justify-content: space-between; display: -webkit-flex;}
.adv2-swiper .swiper-slide .tc-right{ width: 49.35%; flex-shrink: 0;}
.adv2-swiper .swiper-slide .tc-left{ padding: 1rem 0.667rem 3.5rem; color: #fff; flex-grow: 1; min-width: 0; background: url("../image/afb73d3a7034fe42449905ceff2243c48004c23e.png") center no-repeat; background-size: cover;}
.adv2-swiper .swiper-slide .tc-left .st{ padding-bottom: 0.4rem; width: max-content; width: -moz-max-content; border-bottom: 2px solid #ffff;}
.adv2-swiper .swiper-slide .tc-left .st .text1{ font-size: 0.6rem; font-weight: bold; line-height: 1;}
.adv2-swiper .swiper-slide .tc-left .st .text2{	font-size: 0.3rem; margin-top: 0.2rem}
.adv2-swiper .swiper-slide .tc-left .desc{ margin-top: 0.533rem;	font-size: 0.267rem; line-height: 2;}
.adv2-swiper .swiper-slide .tc-left .desc p::before{	width: 0.217rem; 
    height: 0.217rem;
    margin-right: 0.2rem;
    border: solid 1px #ffffff; content: ""; display: inline-block;display: none;}
.adv2-body .adv2-cate{ position: absolute; bottom: 0; left: 0;background-color: #ffffff;z-index: 1; width: 100%; padding: 0.433rem; display: flex; align-items: stretch; justify-content: space-between; display: -webkit-flex;}
.adv2-body .adv2-cate .item{ width: 25%; border-right: 1px solid #e6e6e6; text-align: center; cursor: pointer;}
.adv2-body .adv2-cate .item:last-child{ border: 0;}
.adv2-body .adv2-cate .item .icon{ height: 0.8rem; display: flex; align-items: center; justify-content: center;}
.adv2-body .adv2-cate .item .icon img{ max-height: 100%;filter: invert(60%) sepia(81%) saturate(0%) hue-rotate(146deg) brightness(108%) contrast(106%);}
.adv2-body .adv2-cate .item .cn{	font-size: 0.4rem;  margin: 0.15rem auto 0.1rem;}
.adv2-body .adv2-cate .item .en{ text-transform: uppercase;	font-size: 12px;color: #c8c8c8;
    margin-top: 0.1rem;}
.adv2-body .adv2-cate .item.active .icon img{filter:none}
.adv2-body .adv2-cate .item.active .cn{ font-weight: bold;}
.tc-sev{ padding: 1.5rem 0 1.333rem; background: url("../image/780e7671151fb04e8fa0d820981f2398f6f36e44.jpg") center no-repeat; background-size: cover;}
.sev-body{ margin-top: 0.967rem; display: flex; align-items: stretch; justify-content: space-between; display: -webkit-flex; width: 100%; }
.sev-body .item{ width: calc(100% / 6); text-align: center; padding: 0.533rem 0.2rem 1.083rem;}
.sev-body .item .icon{	width: 1.867rem;
    height: 1.85rem; border-radius: 50%;
    background-color: #ffffff; display: flex; align-items: center; justify-content: center;
    border: solid 1px #cccccc; margin: 0 auto;}
.sev-body .item .text1{	font-size: 0.4rem;	color: #222222; margin: 0.367rem auto 0.15rem;}
.sev-body .item .text2{	font-size: 0.267rem;	color: rgba(34, 34, 34, 0.4);}
.sev-body .item .se-more{ margin-top: 0.5rem;
    border-radius: 0.3rem; display: inline-block; width: max-content; width: -moz-max-content; padding: 0.15rem 0.417rem; line-height: 1;
    border: solid 1px #cccccc;}
.sev-body .item:hover{background-color: #11509b;}
.sev-body .item:hover .icon{ border-color: #fff;}
.sev-body .item:hover .icon img{filter: invert(58%) sepia(83%) saturate(4%) hue-rotate(314deg) brightness(95%) contrast(98%);}
.sev-body .item:hover .text1{	color: #fefefe;}
.sev-body .item:hover .text2{	color: #fefefe;}
.sev-body .item:hover .se-more{	color: #11509b; background: #fff; border-color: #fff;}
.sev-bot{ margin: 0.917rem auto 0; width: max-content; width: -moz-max-content; display: flex; align-items: stretch; justify-content: center; display: -webkit-flex;}
.sev-bot .inq{background-color: #c50212; padding: 0.3rem 0.833rem;	font-size: 0.317rem; color: #fff; line-height: 1; display: flex; align-items: center; display: -webkit-flex;}
.sev-bot .inq img{ margin-left: 0.4rem;}
.sev-bot .s-tel{background-color: #11509b;	font-size: 0.4rem; font-weight: bold; padding: 0.3rem 0.367rem; color: #fff;}

.tc-about{ padding: 1.367rem 0 1.067rem; background: url("../image/d1cbfa63e76f55ad0b682b0fa5175543ccd6ea9c.jpg") center no-repeat; background-size: cover;}
.tc-title .en { color: rgba(255, 255, 255, 0.4);}
.about-body{	box-shadow: 0px 6px 14px 2px rgba(0, 0, 0, 0.08); padding: 0.8rem; background: #fff; display: flex; align-items: stretch; justify-content: space-between; display: -webkit-flex; position: relative; z-index: 1; margin-top: 00.7rem;}
.about-body .tc-left{ width: 48.17%; flex-shrink: 0; margin-right: 0.6rem;}
.about-body .tc-right{ flex-grow: 1; min-width: 0;font-size: 0.267rem; color: #444; text-indent: 2em; line-height: 2;}
.about-body .tc-right .ab-con{ display: flex; align-items: stretch; justify-content: flex-start; margin-top: 1.1rem; display: -webkit-flex;text-align: center}
.about-body .tc-right .ab-con .ab1{	font-size: 0.3rem; color: #fff; padding: 0.233rem 0.3rem; background: #11509b;border-radius: 0.067rem 0rem 0rem 0.067rem; text-indent: 0;transition: all 0.3s; width: 3.6rem;}
.about-body .tc-right .ab-con .ab2{	font-size: 0.3rem; color: #222222; padding: 0.233rem 0.3rem; background: #ebebeb;border-radius: 4px 0px 0px 4px; text-indent: 0;transition: all 0.3s;width: 3.6rem; }
.about-body .tc-right .ab-con .ab1:hover{text-indent: 2em;transition: all 0.3s}
.about-body .tc-right .ab-con .ab2:hover{text-indent: 2em; transition: all 0.3s}
.num-box{background-color: #11509b; padding: 1.8rem 0  1.3rem; position: relative; z-index: 0; margin-top: -0.533rem;}
.num-box>.mxw-box{ display: flex; align-items: stretch; justify-content: space-between; display: -webkit-flex;}
.num-box>.mxw-box .item{ text-align:center; color: #fff; width: 25%;  font-size: 0 }
.num-box>.mxw-box .item .scrolling-numbers{	font-size: 1.067rem; line-height: 1; display: inline-block;}
.num-box>.mxw-box .item sup{width: 22px;
    height: 22px; border-radius: 50%;
    background-color: #ffffff; 	font-size: 0.3rem;color: #027890; display: inline-flex; display: -webkit-inline-flex; align-items: center; justify-content: center; vertical-align: top; line-height: 1;}
.num-box>.mxw-box .item P{ font-size: 0.267rem; margin-top: 0.25rem;}
.tc-about .list{ margin-top: 0.917rem; display: flex; display: -webkit-flex; align-items: stretch; justify-content: flex-start;}
.tc-about .list .item{ margin-right: 14px; width: calc((100% - 43px)/4);}
.tc-about .list .item:last-child{ margin-right: 0;}
.tc-about .list .item p{ text-align: center; padding: 0.2rem 0.333rem;	font-size: 0.267rem; color: #222;background-color: #ebebeb;}
.tc-about .list .item:hover p{ background: #0f5bb6; color: #fff;}




.tc-news{ padding: 1.333rem 0 1.4rem; background: url("../image/2afb8c41300d536e203c455a2cd09d43ade094b0.jpg") center no-repeat; background-size: cover;}
.news-cate{ margin: 0.7rem auto 0.767rem; display: flex; align-items: center; justify-content: center;}
.news-cate .item{background-color: #0f5bb6; padding: 0.333rem 1.033rem; 	font-size: 0.3rem; color: #fff; margin: 0 0.167rem;}
.news-cate .item.active{background-color: #11509b;}
.news-swiper{ overflow: hidden; }
.news-swiper .swiper-slide{ display: flex; display: -webkit-flex; align-items: stretch; justify-content: space-between; padding: 0.167rem}
.news-swiper .swiper-slide .tc-left{box-shadow: 0rem 0rem 0.1rem 0.017rem rgba(0, 0, 0, 0.08); width: 36.7%; flex-shrink: 0; background: #fff; padding: 0.75rem 0.5rem 0.5rem 0.5rem;}
.news-swiper .swiper-slide .tc-left .date{ font-size: 0.3rem;color: #11509b; line-height: 1;}
.news-swiper .swiper-slide .tc-left .date span{	font-size: 0.8rem; font-weight: bold; line-height: 1; display: inline-flex; align-items: center;}
.news-swiper .swiper-slide .tc-left .date span small{ font-weight: lighter;}
.news-swiper .swiper-slide .tc-left .st{ margin: 0.3rem auto; font-size: 0.4rem;}
.news-swiper .swiper-slide .tc-left .desc{	font-size: 0.233rem;	color: #666666; line-height: 1.6; margin-bottom: 0.467rem;}
.news-swiper .swiper-slide .tc-right{ margin-left: 0.567rem; flex-grow: 1; min-width: 0;}
.news-swiper .swiper-slide .tc-right .item{ display: flex; align-items: center; justify-content: space-between; display:-webkit-flex; margin-bottom: 0.917rem;}
.news-swiper .swiper-slide .tc-right .item .date{ padding: 0.4rem 0.633rem;	background-color: #11509b; text-align: center;	color: rgba(255, 255, 255, 0.4); flex-shrink: 0; margin-right: 0.6rem;}
.news-swiper .swiper-slide .tc-right .item .date p{	font-size: 0.8rem; margin-bottom: 0.167rem;color: #fff; line-height: 1;}
.news-swiper .swiper-slide .tc-right .item:last-child{ margin-bottom: 0;}
.news-swiper .swiper-slide .tc-right .item .con{ flex-grow: 1; min-width: 0;}
.news-swiper .swiper-slide .tc-right .item .con .st{font-size: 0.3rem;color: #222222;}
.news-swiper .swiper-slide .tc-right .item .con .desc{	font-size: 0.233rem;	color: #666666; line-height: 1.6; margin: 0.333rem auto 0.4rem;}
.news-swiper .swiper-slide .tc-right .item .con .n-more{	font-size: 0.233rem;	color: #027890;}
.news-swiper .swiper-slide .tc-right .item:hover .st{ color: #11509b}



footer{ padding-top: 1.167rem;	background-color: #1f1f1f;}
footer .d-top{ display: flex; align-items: flex-start;justify-content: space-between; display: -webkit-flex; padding-bottom: 1.333rem}
footer .d-top .d-ewm{ width: 19.5%; flex-shrink: 0; display: flex; align-items: stretch; justify-content: space-between;}
footer .d-top .d-ewm .item{ width: 46%; text-align: center;}
footer .d-top .d-ewm .item p{	font-size: 12px;	color: rgba(255, 255, 255, 0.4); margin-top: 16px;}
footer .d-top .d-cont{ margin: 0 1.8rem; width: 18%; }
footer .d-top .d-menu{ flex-grow: 1; min-width: 0; display: flex; display: -webkit-flex; justify-content: space-between}
footer .d-top .d-cont .st{font-size: 25px; font-weight: bold; color: rgba(255, 255, 255, 0.4);}
footer .d-top .d-cont .tel{font-size: 0.467rem; color: #fff; margin: 0.267rem auto; font-weight: bold; }
footer .d-top .d-cont .con{ font-size: 0.267rem; color: rgba(255, 255, 255, 0.4); line-height: 1.6;}
footer .d-top .d-menu .title{ font-size: 0.3rem; color: #fff; font-weight: bold;}
footer .d-top .d-menu .list{ display: flex; display: -webkit-flex; flex-direction: column; 	font-size: 0.233rem;color: rgba(255, 255, 255, 0.4); margin-top: 0.633rem; line-height:2}
footer .d-top .d-menu .list a:hover{ color: #fff;}










body{ overflow-x: hidden}










.tc-link{  display: flex; align-items: flex-start; justify-content: space-between; display: -webkit-flex; flex-grow: 1; min-width: 0; padding: 0.5rem 0;}
.tc-link>.mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.tc-link .title{ flex-shrink: 0;font-size: 0.267rem; color: rgba(255,255,255,.3); }
.tc-link .title p{color: #1c9531;font-size: 0.433rem; font-weight: bold; text-transform: uppercase }
.tc-link .list{ flex-grow: 1; min-width: 0;}
.tc-link .list a{ font-size: 0.267rem; color: rgba(255,255,255,.3);  margin-right: 0.5rem;}
.tc-link .list a:hover{ color: rgba(255,255,255,.3); }


.page-wrap .xypg-right-content{ line-height: 1.8}






.mxw-copy{	background-color: #161616;}
.mxw-copy .mxw-box{ display: flex; align-items: center; padding: 0.333rem 0; 	font-size: 0.233rem; color: #fff;  text-align: center; opacity: 0.6; justify-content: space-between;}
.mxw-copy .mxw-box .left-box{ text-align: left;}
.mxw-copy .mxw-box .right-box{ text-align: right;}
.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 ==================== */


@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    footer .d-top .d-menu .list .item{ padding: 45px 0;}
    header .welcome{ display: none}
    .nav-bg{ display: none}

    .mxw-banner .swiper-pagination .swiper-pagination-bullet{ width: 30px;}
    .tc-pro{ padding: 45px 0;}
    .tc-title .en{ font-size: 0;}
    .tc-title .en .cn{ font-size: 22px;position: initial;}
    .tc-title .desc{ margin-top: 9px; font-size: 14px;}
    .tc-title .ico{ margin: 5px auto 0; width: 14px;}
    .pro-cate{ margin-top: 25px; flex-wrap: wrap; justify-content: space-between;}
    .pro-cate .item{ margin: 0; width: 48.5%; font-size: 15px; text-align: center; padding: 9px 10px;}
    .pro-cate .item:nth-child(2n)~.item{ margin-top: 15px;}
    .pro-swiper{ margin-top: 25px;}
    .pro-swiper .swiper-slide .item p{ font-size: 14px; padding: 8px 10px;}
    .tc-adv{ padding: 45px 0; background-position: left;}
    .tc-adv .st .cn{ font-size: 22px;}
    .tc-adv .st .desc{ font-size: 14px; margin-top: 10px;}
    .adv-body{ margin-top: 25px; padding: 15px;}
    .adv-swiper .swiper-slide .st{ font-size: 16px; margin: 10px auto;}
    .adv-swiper .swiper-pagination{ margin-top: 15px;}
    .adv-swiper .swiper-pagination .swiper-pagination-bullet{ width: 20px; height: 3px;}
    .tc-case{ padding: 45px 0;}
    .tc-case .case-cate{ margin: 25px auto 15px; flex-wrap: wrap}

    .tc-adv2{ padding: 45px 0;}
    .adv2-swiper{ width: 100%; margin-top: 25px;}
    .adv2-swiper .swiper-slide{ flex-wrap: wrap;}
    .adv2-swiper .swiper-slide .tc-left{ padding: 20px 15px;}
    .adv2-swiper .swiper-slide .tc-left .st .text1{ font-size: 22px;}
    .adv2-swiper .swiper-slide .tc-left .st .text2{ font-size: 16px; margin-top: 6px;}
    .adv2-swiper .swiper-slide .tc-left .st{ padding-bottom: 10px;}
    .adv2-body .adv2-cate{ position: initial;}
    .adv2-swiper .swiper-slide .tc-left .desc{ font-size: 14px; margin-top: 15px;}
    .adv2-swiper .swiper-slide .tc-left .desc p::before{ width: 8px; height: 8px; margin-right: 8px;}
    .adv2-swiper .swiper-slide .tc-right{ width: 100%;}
    .adv2-body .adv2-cate{ padding: 15px 10px; flex-wrap: wrap;}
    .adv2-body .adv2-cate .item{ padding: 0 10px; width: 50%}
    .adv2-body .adv2-cate .item .icon{ height: 30px}
    .adv2-body .adv2-cate .item .cn{ font-size: 16px;}
    .adv2-body .adv2-cate .item .en{ font-size: 12px;}
    .tc-sev{ padding: 45px 0;}
    .adv2-body .adv2-cate .item:nth-child(2){ margin-right: 0}
    .adv2-body .adv2-cate .item:nth-child(2)~.item{ margin-top: 20px;}
    .sev-body{ margin-top: 25px; flex-wrap: wrap;}
    .sev-body .item{ width: 49%; padding: 20px 10px;}
    .mxw-box2{ width: 95%; max-width: 95%;}
    .sev-body .item .text1{ margin: 5px auto 10px; font-size: 16px;}
    .sev-body .item .text2{ font-size: 14px;}
    .sev-body .item .se-more{ margin: 10px auto; font-size: 12px; padding: 6px 20px;}
    .sev-bot{ margin: 15px auto 0; width: 100%}
    .sev-bot .inq{ width: 50%; padding: 10px; font-size: 16px; text-align: center; justify-content: center;}
    .sev-bot .s-tel{ width: 50%; padding: 10px; font-size: 16px; text-align: center;}

    .tc-about{ padding: 45px 0;}
    .about-body{ margin-top: 25px; flex-wrap: wrap; padding: 15px;}
    .about-body .tc-left{ margin-right: 0; width: 100%;}
    .about-body .tc-right{ font-size: 14px;}
    .about-body .tc-right .ab-con{ margin-top: 25px;}
    .about-body .tc-right .ab-con .ab1{ font-size: 14px; padding: 8px 16px; width: 40%;}
    .about-body .tc-right .ab-con .ab2{ font-size: 14px; padding: 8px 16px; width: 40%;}
    .num-box{ margin: 20px auto; padding: 30px 0;}
    .num-box>.mxw-box{ flex-wrap: wrap; justify-content: space-between;}
    .num-box>.mxw-box .item .scrolling-numbers{font-size: 30px;}
    .num-box>.mxw-box .item{ width: 48%;}
    .num-box>.mxw-box .item:nth-child(2)~.item{ margin-top: 20px;}
    .num-box>.mxw-box .item P{ font-size: 14px; margin-top: 10px;}
    .num-box>.mxw-box .item sup{ font-size: 12px; width: 18px; height: 18px; margin-left: 10px;}

    .tc-about .list{ margin-top: 30px; flex-wrap: wrap; justify-content: space-between;}
    .tc-about .list .item{ width: 48.5%; margin-right: initial;}
    .tc-about .list .item:nth-child(2)~.item{ margin-top: 20px;}
    .tc-about .list .item p{ padding: 8px 15px; font-size: 14px;}

    .tc-news{ padding: 45px 0;}
    .news-cate{ margin: 25px auto 15px;}
    .news-cate .item{ font-size: 16px; padding: 8px 20px;}
    .news-swiper .swiper-slide{ flex-wrap: wrap;}
    .news-swiper .swiper-slide .tc-left{ width: 100%; padding: 20px;}
    .news-swiper .swiper-slide .tc-right{ margin-left: 0; margin-top: 25px;}
    .news-swiper .swiper-slide .tc-left .date{ font-size: 14px;}
    .news-swiper .swiper-slide .tc-left .date span{ font-size: 20px;}
    .news-swiper .swiper-slide .tc-left .st{ margin: 10px auto; font-size: 16px;}
    .news-swiper .swiper-slide .tc-left .desc{ font-size: 14px; margin-bottom: 15px;}
    .news-swiper .swiper-slide .tc-right .item .date{ padding: 10px; margin-right: 15px;}
    .news-swiper .swiper-slide .tc-right .item .date p{ font-size: 32px; margin-bottom: 5px;}
    .news-swiper .swiper-slide .tc-right .item .con .desc{ margin: 5px auto 5px; font-size: 14px;}
    .news-swiper .swiper-slide .tc-right .item .con .st{ font-size: 16px;}
    .tc-link{display: none;}

    footer{padding-top: 45px; }
    footer .d-top{ flex-wrap: wrap; padding-bottom: 40px;}
    footer .d-top .d-menu{ display: none;}
    footer .d-top .d-cont{ width: 100%; margin: 0 auto;}
    footer .d-top .d-ewm{ width: 100%;  margin: 25px auto 0; justify-content: flex-start;}
    footer .d-top .d-ewm .item{ width: initial; max-width: 120px; margin-right: 20px}
    .news-swiper .swiper-slide .tc-right .item{ margin-bottom: 15px;}
    .mxw-copy .mxw-box{ flex-wrap: wrap}
    .mxw-copy .mxw-box>div,.mxw-copy .mxw-box .right-box{ text-align: left}
    .wh{ width: 95%;}
}












