﻿
/* ==================== 重置默认样式 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-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: 768px) {
    #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: 769px) {
    .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: 768px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination   a,.mxw-pagination   span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: inline-block;
    margin: 4px;
}
.mxw-pagination  a.current,
.mxw-pagination  a:hover {
    background-color: #0748b2;
    color: #fff !important;
}
.mxw-pagination  a:first-child {
    margin-left: 0;
}
.mxw-pagination  a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 768px) {
    .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: 0 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: 768px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    font-size: 0;
    border-bottom: 1px solid #e5e5e5;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: stretch;
    font-size: 0;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    padding-left: 0.333rem;
    display: flex; align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}
.mxw-keywords .left strong {
    vertical-align: inherit; color: #444444;
}
.mxw-keywords .left span {
    color: #000;
    vertical-align: middle;
    /*font-weight: bold;*/
    display: flex; align-items: center;
}
.mxw-keywords .left span img{ margin-right: 0.167rem;}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #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;
    border-radius: 24px;
    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;
    border-radius: 24px;
cursor: pointer;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    font-size: 0;
    background: url(../image/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: 768px) {
    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: 768px;
        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: 0 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: 1px solid #eee;
        font-size: 16px;
        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: #0089e1;
    border-color: #0089e1;

}
.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: #245eb5;
}
.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: 768px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0;
        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: 1700px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 88.55%;
}
.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: 769px) {
    .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: 768px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 768px) {
    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:#00529f;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{
    border:1px solid #eaeaea;
    padding: 10px 10px 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;}

 .xypg-right-content  iframe, .xypg-right-content  video{ max-width: 100%; width: 800px; height:auto !important;}
 .xypg-right-content  video{ max-height: 400px;}

@media screen and (min-width: 769px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 768px) {
    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:0;}
    .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{transition: all 0.3s;}
.top-box .logo-box{  font-size: 0;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start; }
.top-box .logo-box .t-logo>img{ max-height:1.917rem; transition: all 0.3s;}

header.bg .top-box{ padding: 0.25rem 0; transition: all 0.3s;}
header.bg .logo-box .t-logo>img{ max-height: 1.5rem; transition: all 0.3s;}

.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: #0748b2; font-size: 0.35rem}
.mxw-link .mxw-box{color:#fff; opacity: 0.4 }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;overflow:visible;}
.mxw-link .mxw-link-list{color:#333;position:absolute;top:0;left:0;width:100%;transform:translateY(-100%);padding:10px 0;display:none; background: #fff;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:0.3rem;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:0.267rem;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{
 position: fixed; top: 0;
    width: 100%; z-index: 11;transition: all 0.3s;
}
header.bg{ background: rgba(0, 0, 0, 0.90); transition: all 0.3s;}
header .welcome {
    line-height: 34px;
    border-bottom: 1px solid #e5e5e5; display: none;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}


.top-box{ align-items: center; max-width: 1770px; width: 90.1%;padding: 0.467rem 0 0.3rem; justify-content: space-between;}


.nav-bg{ 	background-color: #0062e7;}
.nav-bg>.mxw-box{ max-width: 1500px; width: 82%}


.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.3rem 0.5rem;
    line-height: 1.2;
    width: 100%;
    position: relative;z-index: 2;
}
.x-menu > li:last-child>a{ background: none}
.x-menu > li > a:hover {
    color: #fff;
}
.x-menu>li.active{ 	 	}
.x-menu > li.active > a {
    color: #fff; background: none;
}

.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:#00529f;
}

.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-sub-menu>li .x-sub-menux {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.x-sub-menu>li .x-sub-menux a {
    display: block;
    line-height: 35px;
    font-size: 14px;
    font-weight: normal;
    color: #041d38;
    /* padding: 0 2%; */
    box-sizing: content-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all ease .3s;
    padding: 0 0.7rem;

}

.x-sub-menu>li .x-sub-menux a:hover {
    background-color: #004cbf;
    color: #fff;
}

.x-sub-menu>li:hover .x-sub-menux {
    z-index: 99;
    opacity: 1;
    visibility: visible;
}

.x-sub-menux>li{ position: relative;}
.x-sub-menux>li>div {
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;

}

.x-sub-menux >li:hover>div {
    z-index: 99;
    opacity: 1;
    visibility: visible;
}


.x-menu > li.tel{ align-items: center; display: flex;}
.x-menu > li.tel>span{ padding: 0.167rem 0.5rem 0.167rem;border-radius: 0.383rem;
    border: solid 0.017rem #1a87d2;	font-size: 0.4rem;color: #1a87d2; display: flex; align-items: center; line-height: 1; font-weight: bold;}
.x-menu > li.tel>span img{ height: 0.367rem; margin-right: 0.3rem}


.tc-about{ padding: 1rem 0 1.333rem; background: url("../image/468fdd1f8f2524ccc28e2ad7d450e1f215794404.jpg") center no-repeat; background-size: cover;}
.ab-title{ text-align: center;}
.ab-title img{ height: 2.133rem; display: none;}
.tc-about .ab-con{ margin: 0.467rem auto 0; display: flex; align-items: stretch; }
.tc-about .ab-con .tc-img{ width: 50.8%; flex-shrink: 0;border-radius: 0.333rem; overflow: hidden}
.tc-about .ab-con .tc-img video{ object-fit: cover; height: 100%; min-height: 9.72rem;}
.tc-about .ab-con .tc-right{ flex-grow: 1; min-width: 0; margin-left: 1.167rem;}
.tc-about .ab-con .tc-right .st{	font-size: 0.767rem; font-weight: bold;}
.tc-about .ab-con .tc-right .desc{	font-size: 0.633rem;font-weight: bold; color: #00529f; line-height: 1}
.tc-about .ab-con .tc-right .st::after{	width: 100px;
    height: 4px;
    background-color: #00529f; display: block; margin: 0.333rem auto 0.6rem 0;  content: "";}
.tc-about .ab-con .tc-right .text{ color: #000; margin: 0.867rem auto 1.167rem; line-height: 1.8;}
.tc-about .ab-con .tc-right .a-more{ padding: 0.167rem 0.633rem;background-color: #00529f;
    border-radius: 0.367rem; color: #fff;}

.num-box{ padding: 0 2.5rem; margin: 0.917rem auto 0; display: flex; align-items: stretch; justify-content: space-around; line-height: 1;}
.num-box .item{ text-align: center; width: 25%; border-right: 1px solid #eeeeee}
.num-box .item .num{ display: flex; align-items: flex-end; justify-content: center;}
.num-box .item .scrolling-numbers{ display: block; line-height: 1;	font-size: 1rem;	color: #00529f; font-weight: bold;}
.num-box .item sub{	font-size: 0.333rem; font-weight: bold;	color: #00529f; padding-bottom: 0.12rem; margin-left: 0.167rem; bottom: 12px;}
.num-box .item p{	color: #666666;	font-size: 0.267rem; margin-top: 0.167rem;}
.num-box .item:last-child{ border: 0}

.tc-brand{ padding: 1.2rem 0 0;}
.ab-title .cn{ line-height: 1;}
.ab-title .cn1{font-size: 0.767rem;	color: #333333; font-weight: bold;}
.ab-title .cn2{	font-size: 0.3rem;	color: #666666; margin-top: 0.5rem;}
.tc-brand .brand-con{ margin: 1.033rem auto 0; display: flex; align-items: stretch; justify-content: space-between;}
.tc-brand .brand-con .item{ width: 50%; position: relative;}
.tc-brand .brand-con .item p{ text-align: center; padding: 0.267rem; position: absolute; bottom: 0; width: 100%;background-color: #313131;	}
.tc-brand .brand-con .item p img{ height: 0.533rem;}
.tc-brand .brand-con .item:hover p{background-color: #00529f;}

.tc-pro{ padding: 1.75rem 0 0.767rem;}
.tc-pro>.mxw-box{ width: 93.75%; max-width: 1800px;}
.pro-body{ background: #eeeeee; display: flex; align-items: center; justify-content: space-between; padding: 0.367rem 0.5rem; margin-top: 1.333rem;}
.pro-body .tc-right{ flex-shrink: 0; width: 57.89%; }
.pro-body .tc-left{ flex-grow: 1; min-width: 0; padding-right: 2.75rem; padding-left: 0.7rem; }
.pro-body .tc-left .top img{ height: 1.6rem;}
.pro-swiper{ overflow: hidden;}
.pro-body .tc-left .pro-cate{ margin-top: 0.8rem;}
.pro-body .tc-left .pro-cate .item{ display: flex; align-items: center; justify-content: space-between;	background-color: rgba(0, 82, 159, 0.07); padding: 0.217rem 0.633rem 0.2rem 0.4rem; line-height: 1;}
.pro-body .tc-left .pro-cate .item i{ visibility: hidden; flex-shrink: 0;}
.pro-body .tc-left .pro-cate .item i img{ height: 0.4rem;}
.pro-body .tc-left .pro-cate .item p{ margin-left: 0.3rem; margin-right: auto;	color: #666666;font-size: 0.3rem; }
.pro-body .tc-left .pro-cate .item .xt{ height: 1px;	background-color: #a0a0a0;
    width: 0.933rem; margin-right: 1.033rem;}
.pro-body .tc-left .pro-cate .item .ico{ flex-shrink: 0;} 
.pro-body .tc-left .pro-cate .item .ico img{ height: 0.95rem;}   
.pro-body .tc-left .pro-cate .item:nth-child(1)~.item{ margin-top: 0.2rem;}
.pro-body .tc-left .pro-cate .item.active{	background-color: #00529f;}
.pro-body .tc-left .pro-cate .item.active i{visibility: visible}
.pro-body .tc-left .pro-cate .item.active p{color: #fff}
.pro-body .tc-left .pro-cate .item.active .xt{background: #fff}
.pro-body .tc-left .pro-cate .item.active .ico img{ filter:brightness(100) }

.tc-adv{ padding: 2.033rem 0  1.917rem; background: url("../image/63c274b6258e13a67333c340b5444c98bc73e6a7.jpg") center no-repeat;}
.adv-body{ margin-top: 2.3rem; display: flex; align-items: center; justify-content: space-between;}
.adv-body .item{ width: calc((100% - 0.6rem)/4); background: url("../image/514d3af6079c3a4c017924add75ad1d87e1ad762.png") center no-repeat; background-size: 100% auto; padding: 0  0.583rem  0.8rem 1.2rem;}
.adv-body .item .num{	background-color: #313131;
    border-radius: 0.133rem;	font-size: 1.033rem; line-height: 1; padding: 0.333rem 0.2rem; color: #fff; width: max-content; width: -moz-max-content; margin-top: -0.733rem;}
.adv-body .item .st{	font-size: 0.367rem;	color: #333333;line-height: 1; margin: 0.583rem  auto 0.333rem;}
.adv-body .item .desc{	font-size: 0.3rem; line-height: 1.6; color: #666;}
.adv-body .item .adv-more{	color: #666666; font-size: 12px;
    margin-top: 0.75rem; display: inline-block}
.adv-body .item .adv-more img{ margin-left: 0.167rem; height: 0.233rem;filter: invert(48%) sepia(13%) saturate(13%) hue-rotate(336deg) brightness(82%) contrast(102%);

}
.adv-body .item:hover .num{	background-color: #00529f;}
.adv-body .item:hover .st{	color: #00529f;}
.adv-body .item:hover .adv-more{	color: #00529f;}
.adv-body .item:hover .adv-more img{	filter: none}

.tc-case{ padding-top: 1.25rem;}
.case-body{ margin-top: 1.167rem;}
.case-swiper{ overflow: hidden; position: relative;}
.case-swiper .swiper-slide{ width: 33.33%;}
.case-swiper .swiper-slide .st{ padding: 0.333rem;	font-size: 0.4rem;	color: #666666;	background-color: #f7f6f6; text-align: center;}
.case-swiper .swiper-slide:hover .st{	background-color: #00529f;	color: #ffffff;}
.case-swiper .swiper-button-next,.case-swiper .swiper-button-prev{	background-color: #00529f;	width: 1.283rem;height: 1.367rem;
    border-radius: 3px;}
.case-swiper .swiper-button-next{ right: 0}
.case-swiper .swiper-button-prev{ left: 0}
.case-swiper .swiper-button-next::after,.case-swiper .swiper-button-prev::after{ color: rgba(255,255,255,.5);font-size: 0.583rem;}
.case-swiper .swiper-button-disabled{	background-color: rgb(247, 246, 246); opacity: 0.6}
.case-swiper .swiper-button-disabled::after{ color: rgb(0, 82, 159)
}

.tc-news{ padding: 1.333rem 0 2.133rem;	background-color: #eff5f9;}
.tc-news .up{ display:flex; align-items: center; justify-content: space-between;}
.tc-news .up .tc-left{	font-size: 0.767rem; line-height: 1;	color: #000000; font-weight: bold; flex-shrink: 0;}
.tc-news .up .tc-right{ display: flex; align-items: center; justify-content: flex-end; flex-grow: 1; min-width: 0; }
.tc-news .up .tc-right .news-more{	font-size: 0.3rem;	color: #00529f; margin-left: 0.75rem;}
.tc-news .up .tc-right .news-cate .item{ padding: 0.167rem 0.6rem; margin-left: 0.2rem;}
.tc-news .up .tc-right .news-cate .item.active{	background-color: #00529f;
    border-radius: 0.367rem;	color: #ffffff;}
.news-swiper{ overflow: hidden; margin-top: 1.75rem;}
.con-swiper{ overflow: hidden; padding: 0.167rem 0.25rem 0.333rem;}
.con-swiper .swiper-slide{ width: 30%;	background-color: #ffffff; padding: 0.967rem 0.583rem 0.667rem 0.7rem;	box-shadow: -3px 6px 10px 0px
rgba(0, 0, 0, 0.25);}
.con-swiper .swiper-slide .st{	font-size: 0.367rem;}
.con-swiper .swiper-slide .desc{	font-size: 0.267rem; line-height: 1.8; margin: 0.367rem auto 0.8rem;}
.con-swiper .swiper-slide .nd{ display: flex; align-items: center; justify-content: space-between; padding-top: 0.55rem; border-top: 1px solid rgba(133, 133, 133, 0.1)
}
.con-swiper .swiper-slide .nd .tt{	font-size: 0.267rem; font-style: italic;}
.con-swiper .swiper-slide .nd .tm{ font-size: 0.267rem;}
.con-swiper .swiper-slide:hover{ background: url("../image/361fab2df8e654b780838d680173a82954156e0a.jpg") center no-repeat; background-size: cover;}
.con-swiper .swiper-slide:hover .st{ color: #fff}
.con-swiper .swiper-slide:hover .desc{ color: #fff}
.con-swiper .swiper-slide:hover .tt{ color: #fff}
.con-swiper .swiper-slide:hover .tm{ color: #fff}
.con-swiper .swiper-slide:hover .nd{ border-top: 1px solid #858585}


footer{ border-top: 0.1rem solid #fdb200;}
footer .ftu{ background: url("../image/7621949db78c79f83f533a9b1c3f2d063c8007c3.jpg") top center no-repeat; background-size: cover; padding: 1rem 0 1.333rem;}
footer .ftu .mxw-box{ display: flex; align-items: stretch; justify-content: space-between; width: 82%; max-width: 1550px;}
footer .ftu .mxw-box .tc-left{ width: 45%;}
footer .ftu .mxw-box .tc-left .st{	font-size: 0.433rem; font-weight: bold;	color: #00529f;}
footer .ftu .mxw-box .tc-left .desc{ margin-top: 0.583rem; line-height: 2}
footer .ftu .mxw-box .tc-left .desc img{ width: 0.333rem; margin-right: 0.333rem;}
footer .ftu .mxw-box .tc-right{ display: flex; align-items: stretch; justify-content: flex-end; padding-top: 0.333rem; flex-grow: 1; min-width: 0;}
footer .ftu .mxw-box .tc-right .item{ margin-left: 1.1rem;}
footer .ftu .mxw-box .tc-right .st{ font-size: 0.333rem;	color: #00529f; margin-bottom: 0.5rem;}
footer .ftu .mxw-box .tc-right a{ display: block;	font-size: 0.3rem; color: #333; line-height: 2; margin-top: 0.083rem;}
footer .ftu .mxw-box .tc-right a:hover{ color: #00529f}
footer .ftu .mxw-box .tc-right .item:nth-child(2) .ta:nth-child(5)~.ta{ display: none;}




.x-menu > li.se{ position: relative;}
.x-menu > li.se:hover .ss{ display: block; top: 1rem;}
.x-menu > li.lang .x-sub-menu a{ display: block; color: #333; font-size: 14px; padding: 6px;}
.x-menu > li.lang .x-sub-menu a:hover{ color: #fff;; background: #00529f;}




.xypg-left-con2 .xypg-left-nav>li:hover .xypg-left-subnav{ display: block;}

.pro-content{ padding: 0.6rem 0 1.333rem;}
.pro-st{	font-size: 0.433rem;	color: #00529f;}
.pro-st::after{	width: 0.9rem; margin-top: 0.25rem;
    height: 0.1rem; content: ""; display: block;
    background-color: #00529f;}
.brand-cat{ margin-top: 0.667rem; position: relative; background: url("/skin/images/pp-bg.jpg") center no-repeat; background-size: cover; }
.img-box{ display: flex; align-items: flex-start; justify-content: space-between; }
.img-box .item:nth-child(1){ width: 41.25%; flex-shrink: 0; }
.img-box .item{ cursor: pointer;}
.img-box .st{font-size: 0.667rem; margin-top: 1.65rem; font-weight: bold; color: #fff; width: 0.7rem; line-height: 1.1;}
.img-box .st .cn{ display: block; }
.img-box .st i{transform: rotate3d(0,0,1,90deg); display: block; font-weight: normal}
.img-box .st .en{	font-size: 0.3rem;	letter-spacing: 2px; font-weight: normal; transform: rotate3d(0,0,1,90deg); display: block; white-space: nowrap}
.img-box .item:nth-child(3){ width: 46.5%; flex-shrink: 0; margin-top: 1.667rem;}

.text-swiper{ overflow: hidden; position: relative; z-index: 2;  margin-top: -0.5rem;}
.text-swiper .t1{	font-size: 0.567rem; font-weight: bold; margin-bottom: 0.75rem; color: #fff;}
.text-swiper .swiper-slide{padding: 0 2.2rem 1.333rem 0.95rem;}
.text-swiper .desc{ line-height: 2.1; color: #fff;
    font-size: 0.267rem;}

.pro-con1{ margin-top: 0.533rem; display: flex; align-items: flex-start; justify-content: space-between;}
.pro-con1 .pro-nright{ 	background-color: #00529f; width: 28%; flex-shrink: 0; color: #fff; padding: 2rem 1.1rem 2.25rem 1.1rem; }
.pro-con1 .pro-nright .en{	font-size: 0.75rem; font-weight: bold; text-transform: uppercase; line-height: 1.1;}
.pro-con1 .pro-nright .cn{ line-height: 1;	font-size: 0.433rem; font-weight: bold; color: #fff; margin: 0.583rem auto 0.667rem;}
.pro-con1 .pro-nright .desc{	font-size: 0.25rem; letter-spacing: 0}
.pro-con1 .pro-nright .desc::before{
    width: 1.7rem; display: block; content: "";
    height: 0.2rem;
    background-color: #ffffff; margin-bottom: 0.5rem;
}
.pro-con1 .pro-nright .more{ margin-top: 0.917rem;}
.pro-con1 .pro-ncate{ width: 100%; margin-top: 1.8rem; display: flex; align-items: flex-start; flex-wrap: wrap; justify-content: flex-start; padding-right: 1rem}
.pro-con1 .pro-ncate .item{ width: 25%; font-size: 0.267rem; display: flex; align-items: center; color: #777 }
.pro-con1 .pro-ncate .item:nth-child(4n)~.item{ margin-top:0.25rem}
.pro-con1 .pro-ncate .item::before{
    width: 0.15rem; content: "";
    height: 0.15rem; display: inline-block;
 margin-right: 0.25rem;
}
.pro-con1 .pro-ncate .item.active{	color: #00529f;}
.pro-con1 .pro-ncate .item:hover{color: #00529f;}
.pro-con1 .pro-ncate .item.active::before{    background-color: #00529f;}

.pro-con2{ width: 100%; margin-top: -4.8rem; display: flex; align-items: flex-start; justify-content: space-between; }
.pro-con2 .c1-box{width: 28%; flex-shrink: 0}
.pro-con2 .c3-box{width: 28%; flex-shrink: 0}
.pro-con2 .c2-box{flex-grow: 1; min-width: 0;}
.pro-con2 .c1-box .item{ text-align: center; width: 100%; display: block;	background-color: #ffffff;
    padding-bottom: 1rem; position: relative;}
.pro-con2 .item .cn{	font-size: 0.333rem;	color: #00529f; font-weight: bold; text-align: center;}
.pro-con2 .item .en{	font-size: 0.233rem; color: #333; font-weight: bold; text-align: center;}
.pro-con2 .item .mxw-image{ text-align: center;height: 4.917rem; border: 0;}
.pro-con2 .item .mxw-image img{ height: 4.917rem; width: initial; max-width: initial;}
.pro-con2 .item .name{ text-align: center; padding-top: 0.333rem; border-top: 1px solid #eaeaea;}
.pro-con2 .c1-box .item .mxw-image{ margin: 0.6rem auto;}

.pro-con2 .c1-box .item .name{ line-height: 1;}
.pro-con2 .c1-box .item .con{ padding:1.1rem 0.4rem 0.4rem; box-shadow: 0px 0px 4px 0px
rgba(0, 0, 0, 0.1);transition: all 0.3s}
.pro-con2 .c1-box .item:hover .con{	box-shadow: 0px 0px 4px 0px
rgba(0, 0, 0, 0.4); transition: all 0.3s;}
.pro-con2 .c1-box .item:hover .name{ color: #00529f}
.pro-con2 .c1-box .item::after{	width: 1.183rem;
    height: 1.017rem; display: block;content: "";
    background-color: #00529f; margin-left: -100%; transition: all 0.3s}
.pro-con2 .c1-box .item:hover::after{ margin-left: 0}
.pro-con2 .c2-box .item{ padding: 1.6rem 2.5rem 1.1rem; display: block;}
.c2-img{ margin-top: 0.967rem;}

.pro-con2 .c3-box{ padding-top: 4.8rem;}
.pro-con2 .c3-box .item{ text-align: center; width: 100%; display: block;	background-color: #ffffff;
    position: relative;}
.pro-con2 .c3-box .item .mxw-image{ margin: 0.6rem auto;}
.pro-con2 .c3-box .item .name{ line-height: 1;}
.pro-con2 .c3-box .item .con{ padding:1.1rem 0.4rem 0.4rem; box-shadow: 0px 0px 4px 0px
rgba(0, 0, 0, 0.1);transition: all 0.3s;}
.pro-con2 .c3-box .item:hover{ z-index: 2}
.pro-con2 .c3-box .item:hover .con{	box-shadow: 0px 0px 4px 0px
rgba(0, 0, 0, 0.4); transition: all 0.3s;}
.pro-con2 .c3-box .item:hover .name{ color: #00529f}














    /*
    .mxw-banner .swiper-slide>img {
      transition: 1s linear 2s!important;
      transform: scale(1.1, 1.1);
    }
    .mxw-banner .swiper-slide-active>img,
    .mxw-banner .swiper-slide-duplicate-active>img {
      transition: 6s linear!important;
      transform: scale(1, 1);
    }

    */






body{ overflow-x: hidden}




.mxw-copy{	background-color: #00529f;}
.mxw-copy .mxw-box{ padding: 0.3rem 0; line-height: 1.6;	font-size: 0.233rem; color: #fff;  text-align: center; }
.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% !important;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;}
.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:#efefef ;}

.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 ;}



.news-box{ margin-top: 1rem; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.news-box .item{ width: 48.5%;}
.news-box .item .tit{ display: flex; align-items: center; justify-content: space-between; text-align: center; margin-bottom: 0.333rem; }
.news-box .item .tit .date{ font-size: 0.767rem; font-weight: bold;color: #aaa; line-height: 1; margin-right: 20px; flex-shrink: 0;}
.news-box .item .tit .date p{ font-weight: normal;  margin-top: 10px;  font-size: 0.233rem; color: #666}
.news-box .item .tit .desc{ text-align: left; flex-grow: 1; min-width: 0; padding-top: 3px}
.news-box .item .tit .desc h3{ font-size: 0.3rem; color: #000 }
.news-box .item .tit .desc .info{ font-size: 0.233rem; margin-top: 0.1rem; color: #666}
.news-box .item:nth-child(2n)~.item{ margin-top: 0.75rem;}
.news-box .item:hover .tit .desc h3{ color: #00529f}







@media screen and (max-width: 1680px) {
.pro-body .tc-left{ padding-right: 1.8rem;}

}

@media screen and (max-width: 1440px) {
    .top-box{ width: 95%; max-width: 95%;}






}

/* ==================== 页面具体样式 end ==================== */






/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll {
    overflow: hidden;
}
.mxw-scroll .scroll-wrap {
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.mxw-scroll .scroll-item {
    flex-shrink: 0;
}

@media screen and (max-width: 500px) {
    .mxw-scroll .scroll-item {
        width: 48%;
        margin-right: 4%;
    }

}
/* ==================== 通用 - 无缝滚动 end ==================== */


@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}

    .tc-about{ padding: 45px 0;}
    .ab-title img{ height: auto; width: 70%;}
    .tc-about .ab-con{ flex-wrap: wrap;}
    .tc-about .ab-con .tc-img{ width: 100%;}
    .tc-about .ab-con .tc-right{ margin-left: 0; padding-top: 0.333rem;}
    .tc-about .ab-con .tc-right .st{ font-size: 22px;}
    .tc-about .ab-con .tc-right .st::after{ margin: 5px auto 20px 0; height: 2px;}
    .tc-about .ab-con .tc-right .desc{ font-size: 18px;}

    .tc-about .ab-con .tc-right .text{ margin: 15px auto 25px; font-size: 14px; line-height: 1.8}
    .tc-about .ab-con .tc-right .a-more{ font-size: 14px; padding: 10px 30px;}
    .num-box{ padding: 0; flex-wrap: wrap;}
    .num-box .item{ width: 50%;}
    .num-box .item .scrolling-numbers{ font-size: 26px;}
    .num-box .item sub{ font-size: 14px; padding-bottom: 0}
    .num-box .item:nth-child(2n)~.item{ margin-top: 20px;}

    .tc-brand{ padding: 45px 0;}
    .ab-title .cn{ margin-top: -20px;}
    .ab-title .cn1{ font-size: 22px;}
    .ab-title .cn2{ font-size: 14px; margin-top: 10px;}
    .tc-brand .brand-con{ margin: 25px auto 0; flex-wrap: wrap;}
    .tc-brand .brand-con .item{ width: 100%;}
    .tc-brand .brand-con .item p img{ height: 22px;}
    .tc-brand .brand-con .item p{  padding: 15px;}

    .tc-pro{ padding: 0 0 45px;}
    .pro-body{ margin: 25px auto 0; padding: 20px 15px; flex-wrap: wrap;}
    .pro-body .tc-left{ padding: 20px 0;}
    .pro-body .tc-left .top img{ height: auto; max-width: 100%;}
    .pro-body .tc-left .pro-cate{ margin-top: 25px; justify-content: space-between; display: flex; flex-wrap: wrap;}
    .pro-body .tc-left .pro-cate .item{ padding: 10px 20px; justify-content: flex-start; width: 48.5%;}
    .pro-body .tc-left .pro-cate .item i{ display: none; }
    .pro-body .tc-left .pro-cate .item .ico{ display: none;}
    .pro-body .tc-left .pro-cate .item .xt{ display: none;}
    .pro-body .tc-left .pro-cate .item p{ margin: 0; font-size: 14px;}
    .pro-body .tc-left .pro-cate .item:nth-child(1)~.item{ margin-top: 0}
    .pro-body .tc-left .pro-cate .item:nth-child(2)~.item{ margin-top: 10px;}

    .tc-adv .ab-title .cn{ margin-top: -10px; }
    .adv-body{ margin: 60px auto 0; flex-wrap: wrap; justify-content: space-between;}
    .adv-body .item{ width: 48%; padding: 15px 2.5vw 25px 5.5vw;}
    .adv-body .item .num{ font-size: 24px; padding: 10px 15px; margin-top: -30px;}
    .adv-body .item:nth-child(2n)~.item{ margin-top: 50px;}
    .adv-body .item .st{ font-size: 18px; margin: 10px auto 15px;}
    .adv-body .item .desc{ font-size: 14px;}
    .adv-body .item .adv-more{ margin-top: 20px;}
    .adv-body .item .adv-more img{ margin-left: 10px; height: 10px;}

    .tc-case{ padding-top: 45px;}
    .tc-case .ab-title img{ height: 50px; width: initial}
    .case-body{ margin-top: 25px;}

    .case-swiper .swiper-slide .st{ font-size: 14px; padding: 8px 10px;}
    .case-swiper .swiper-button-next, .case-swiper .swiper-button-prev{ width: 30px; height: 30px; top: 60%;}
    .case-swiper .swiper-button-next::after, .case-swiper .swiper-button-prev::after{ font-size: 14px;}

    .tc-news{ padding: 45px 0;}
    .tc-news .up{ flex-wrap: wrap;}
    .tc-news .up .tc-left{ width: 100%; font-size:22px; text-align: center;}
    .tc-news .up .tc-right{ margin-top: 20px;}
    .tc-news .up .tc-right .news-more{ display: none}
    .tc-news .up .tc-right .news-cate{ margin: 25px auto 15px; width: 100%;}
    .tc-news .up .tc-right .news-cate .item:first-child{ margin-left: 0}
    .tc-news .up .tc-right .news-cate .item{ width: calc((100% - 24px) /3); font-size: 16px; padding: 8px 20px;}

    .news-swiper{ margin-top: 20px;}
    .con-swiper{ padding: 10px;}
    footer .ftu{ padding: 45px 0 20px;}
    footer .ftu .mxw-box{ flex-wrap: wrap;}
    footer .ftu .mxw-box .tc-left{ width: 100%;}
    footer .ftu .mxw-box .tc-left .desc img{ width: 18px; margin-right: 10px;}
    footer .ftu .mxw-box .tc-right{ display: none}
    .con-swiper .swiper-slide{ width: 100%;}


.product-detail-tabcon table{ table-layout: fixed;}
.product-detail-tabcon table td{ width: max-content !important; width: -moz-max-content !important; font-size: 14px !important;}

.adv-body .item{ background-size: cover;}
.con-swiper .swiper-slide{ padding: 15px;}
.con-swiper .swiper-slide .st{font-size: 16px;}
.con-swiper .swiper-slide .desc{font-size: 14px; margin: 10px auto 15px;}
.con-swiper .swiper-slide .nd{ padding-top: 10px; font-size: 12px;}

    .tc-adv{ padding: 45px 0;}










.con-swiper .swiper-slide .nd .tt{ font-size: 12px;}
.con-swiper .swiper-slide .nd .tm{ font-size: 12px;}
footer .ftu .mxw-box .tc-left .desc{ font-size: 14px;}


    .pro-body .tc-right{ width: 100%;}
footer .ftu .mxw-box{ width: 95%;}




.tc-about .ab-con .tc-img video{ height: auto; min-height: initial;}
.mxw-box2{ max-width: 95%; width: 95%}
    .pro-st{ display: none;}
    .brand-cat{ margin-top: 0;}
    .img-box .st{ order: -1; width: 100%; text-align: center; font-size: 22px; margin-top: 40px; }
    .img-box .st i{ display: none;}
    .img-box{ flex-wrap: wrap;justify-content: space-between;}
    .img-box .st .en{ transform: none; letter-spacing: 0; font-size: 12px; margin-top: 5px}
    .img-box .item:nth-child(1){ width: 48.5%; margin-top: 25px}
    .img-box .item:nth-child(3){ margin-top: 0;}
    .text-swiper{ margin-top: 20px;}
    .text-swiper .swiper-slide{ padding: 0 2.5% 40px}
    .text-swiper .t1{ font-size: 20px; margin-bottom: 10px;}
    .text-swiper .desc{ font-size: 14px; line-height: 1.8}

    .pro-con1 .pro-nright{ display: none;}
    .pro-con1 .pro-ncate{ padding: 0; margin-top: 0; justify-content: space-between; flex-wrap: wrap;}
    .pro-con1 .pro-ncate .item{ width: 48.5%; font-size: 14px;}
    .pro-con1 .pro-ncate .item::before{ width: 6px; height: 6px; margin-right: 5px;}
    .pro-con1 .pro-ncate .item:nth-child(2n)~.item{ margin-top: 15px;}

    .pro-con2{ margin-top: 20px; flex-wrap: wrap;}
    .pro-con2 .c1-box{ width: 100%; display: flex; align-items: stretch; justify-content: space-between }
    .pro-con2 .c1-box .item{ width: 48.5%; padding-bottom: 20px}
    .pro-con2 .c1-box .item .con{ padding: 15px 10px 15px;}
    .pro-con2 .item .mxw-image img{ height: auto; width: 100%; max-width: 100%}
    .pro-con2 .item .cn{ font-size: 16px;}
    .pro-con2 .item .en{ font-size: 12px;}
    .pro-con2 .c1-box .item .mxw-image{ margin: 10px auto; height: auto;}
    .pro-con2 .c1-box .item .name{ font-size: 14px; padding-top: 12px;}
    .pro-con2 .c1-box .item::after{ width: 32px; height: 30px;}
    .pro-con2 .c2-box .item{ padding: 20px 12px; width: 48.5%}
    .pro-con2 .c2-box{ display: flex; align-items: stretch; justify-content: space-between;}
    .pro-con2 .item .mxw-image{ height: auto;}
    .pro-con2 .item .name{ font-size: 14px; padding-top: 12px;}
    .c2-img{ display: none}
    .pro-con2 .c3-box{ padding-top: 20px;display: flex; align-items: stretch; justify-content: space-between; width: 100%}
    .pro-con2 .c3-box .item{ width: 48.5%;}
    .pro-con2 .c3-box .item .con{ padding: 15px 12px;}
    .pro-con2 .c3-box .item .mxw-image{ margin: 10px auto;}
    .pro-con2 .c1-box .item::after{ margin-left: -200%;}
}












