@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-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: 0.3rem;
    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: 20px;
    bottom: 10%;
    width: 40px;
    height: 40px;
    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: 14px;
    height: 14px;
    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;    -webkit-line-clamp: 1;
}
.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: #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: 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: 18px;
    white-space: nowrap;
    background: #eaeaea;
    color: #333;
    padding: 0 30px;
    margin-right: 54px;
    line-height: 40px;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #0748b2;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    font-size: 0;
    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: 20px;
    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: 10px;}
.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(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;
    background-size: cover;
}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 750px) {
    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: 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: 65px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 41px;
    height: 4px;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    outline: none;
    opacity: 1;
    border-radius: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ff4800;
    border-color: #ff4800;
    opacity: 1;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 83px;
    height: 60px;
    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: 40px;
    color: #fff;
}
.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: 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: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}
.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: 1650px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    html {
        font-size: 60px;
    }
    .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:36px;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#0748b2;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{
    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;}
@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: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 .logo-box{  font-size: 0;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start;
    margin: 0.333rem auto 0.333rem 0;
}
.top-box .right{ flex-grow: 1; min-width: 0; padding-left: 2rem;}
.top-box .logo-box .t-logo>img{ max-height:0.84rem;}

.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{
   width: 100%; 	background-color: rgba(255, 255, 255, 1); z-index: 10;
}
header .welcome {
    line-height: 34px;
    border-bottom: 1px solid #e5e5e5; display: none;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}


.top-box{ align-items: stretch; justify-content: space-between;}





.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;

}
.x-menu > li {
    margin: 0 0.25rem;
    text-align: center;
    float: none;
    position: relative;
    flex-grow: 1;
    min-width: 0;
    z-index: 1;
}

.x-menu > li > a {
    font-size: 0.3rem;
    color: #333;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding:0;
    line-height: 1.2;
    width: 100%;
    position: relative;z-index: 2;
}
.x-menu > li:last-child>a{ background: none; padding-right: 0}
.x-menu > li > a:hover {
    color: #33;
}
.x-menu>li.active{ 	 	}
.x-menu > li.active > a {
    color: #333; background: none;font-weight: bold;
}

.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:#3553e9;
}

.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.se-box{ position: relative;}
.x-menu > li.se-box .box{ position: absolute; right: -0.8rem;     top: calc(100% + 0.167rem);    opacity: 0;
    visibility: hidden; z-index: 99;
    -webkit-transform: translate(0, 0.333rem);
    transform: translate(0, 0.333rem);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;}
.x-menu > li.se-box .box form{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between; }
.x-menu > li.se-box .box form .su{	width: 1.083rem;
    height: 0.667rem; color: #fff; cursor: pointer; font-size: 0.233rem;
    background-color: #2660a3;
    border-radius: 0rem 0.15rem 0.15rem 0rem;}
.x-menu > li.se-box .box form .ke{ font-size: 0.233rem; color: #333; background: #fff; padding: 0.167rem; border-radius:  0.15rem 0 0 0.15rem;}
.x-menu > li.se-box .box:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 0.167rem;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -0.167rem;
    right: 1.1rem;
    margin-left: -0.167rem;
    z-index: 99;
}
.x-menu > li.se-box:hover .box{   opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);  }



.x-menu > li.tel-box{margin-left: 1rem; margin-right: 0; flex-grow: initial}
.x-menu > li.tel-box>a{ font-weight: bold; }
.x-menu > li.tel-box>a>img{ width: 0.333rem; margin-right: 0.2rem;}
.x-menu > li.se-box>a>img{ width: 0.4rem;}
.x-menu > li.lang>a>img{ width: 0.317rem; margin-right: 0.133rem;}
.x-menu > li.lang{ margin-right: 0; margin-left: 0.467rem; flex-grow: initial}
.x-menu > li.se-box{ margin-right: 0; margin-left: 0.5rem; flex-grow: initial}




.nt-nav{ margin-top: -1rem; position: relative; z-index: 1; }
.nt-nav>.mxw-box{ display: flex; display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items: stretch; justify-content: space-between; background: #fff; padding: 0 0.917rem; }
.nt-nav>.mxw-box .tc-right{ padding: 0.367rem 0;	font-size: 0.267rem;	color: #004da9; line-height: 1;}
.nt-nav>.mxw-box .tc-left a{ display: inline-block; color: #949494; margin-right: 1rem; height: 100%; border-bottom: 0.033rem solid transparent; line-height: 1rem;}
.nt-nav>.mxw-box .tc-left a.active{	color: #004da9; border-bottom: 2px solid #004da9}
.nt-nav>.mxw-box .tc-left a:hover{ color: #004da9}
.about-box1{ padding: 1.467rem 0;}
.tc-title2{ text-align: center; }
.tc-title2 .cn{	font-size: 0.5rem;	color: #010101; font-weight: bold;}
.tc-title2 .cn::after{	width: 0.583rem;
    height: 0.067rem;
    background-color: #004da9; content: ""; margin: 0.367rem auto 0; display: block;}
.about-box1 .body{ padding: 0 1.5rem;}
.about-box1 .body .title{font-size: 0.5rem;	color: #010101; font-weight: bold; text-align: center;	margin: 0.533rem auto 0.8rem;}
.about-box1 .body .text{font-size: 0.267rem; color: #333; line-height: 1.7}
.about-box1 .body .list{display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items: stretch; justify-content: center;  margin-top: 0.967rem;}
.about-box1 .body .list>div:nth-child(1)~div{ margin-left: 0.233rem;}

.about-box2{ padding: 1.583rem 0 1.917rem; background: url("../images/about-box2-bg.jpg") center no-repeat; background-size: cover;}
.about-box2 .tc-title2{ color: #fff;}
.about-box2 .tc-title2 .cn{ color: #fff;}
.about-box2 .tc-title2 .cn::after{ background: #fff;}
.tc-title2 .en{ text-transform: uppercase;margin-top: 0.417rem;line-height: 1; }
.about-box2 .list{ margin-top: 1.25rem;display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items: stretch; justify-content: space-around; color: #fff; text-align: center}
.about-box2 .list img{	width: 1.333rem;}
.about-box2 .list p{ margin-top: 0.233rem;	font-size: 0.4rem;}

.about-box3{ padding: 1.967rem 0 1.467rem;}
.about-box3 .list{ margin-top: 0.917rem;}
.about-box3 .list .item p{ margin-top: 0.417rem; text-align: center;	font-size: 0.3rem; line-height: 1.8; padding: 0 0.667rem;}

.about-box4{	background-color: #f8f8f8; padding: 1.467rem 0;}
.about-box4 .desc{ margin: 0.533rem auto 0.733rem;font-size: 0.267rem; text-align: center;}
.about-box4 .body{ position: relative; padding: 0 1.317rem}
.about-box4 .body .swiper-slide{ width: 25%}
.about-box4 .body .xc-swiper{ overflow: hidden}
.about-box4 .body .swiper-button-prev{ left: 0;	border: solid 1px rgba(0, 77, 169, 0.4); opacity: 1;
width: 0.667rem; height: 0.667rem; border-radius: 50%;}
.about-box4 .body .swiper-button-next{ right: 0;	border: solid 1px rgba(0, 77, 169, 0.4);opacity: 1;
    width: 0.667rem; height: 0.667rem; border-radius: 50%;}
.about-box4 .body .swiper-button-next::after,.about-box4 .body .swiper-button-prev::after{ font-size: 0.367rem;}
.about-box4 .body .swiper-button-next:hover,.about-box4 .body .swiper-button-prev:hover{	background-color: #004da9;}
.about-box4 .body .swiper-button-next:hover::after,.about-box4 .body .swiper-button-prev:hover::after{	color: #fff}

.about-box5{ padding: 1rem 0 1.333rem;}
.about-box5 .body{ margin-top: 1.2rem;display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items: stretch; justify-content: space-between;}
.about-box5 .body .tc-left{ flex-shrink: 0; width: 24.19%; }
.about-box5 .body .tc-right{ flex-grow: 1; min-width: 0; margin-left: 0.433rem; }
.about-box5 .body .tc-right .up{ display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items: stretch; justify-content: flex-start; }
.about-box5 .body .tc-right .up .item{ padding: 0.5rem  1.25rem;	background-color: #f2f2f8;
    border-radius: 0.167rem; text-align: center; margin-right: 0.633rem;}
.about-box5 .body .tc-right .up .item div{	color: #052053; font-size: 0.8rem; font-weight: bold; line-height: 1;}
.about-box5 .body .tc-right .up .item p{	font-size: 0.3rem; margin-top: 0.333rem; line-height: 1.2}
.about-box5 .body .tc-right .up .item:hover{ background: #004da9; color: #fff; }
.about-box5 .body .tc-right .up .item:hover p{  color: #fff; }
.about-box5 .body .tc-right .up .item:hover div{  color: #fff; }
.about-box5 .body .tc-right .list{ margin-top: 0.55rem;}

.pro-page{ background: #f9f9f9; padding: 0.9rem 0 1.417rem;}
.p-tt{ text-align: center;}
.p-tt .cn{	font-size: 0.5rem;color: #010101; font-weight: bold;}
.p-tt .cn::after{	width: 0.583rem;
    height: 0.067rem;
    background-color: #004da9; content: ""; margin: 0.367rem auto 0.6rem; display: block;}
.p-tt .desc{	font-size: 0.267rem;padding: 0 1.083rem; line-height: 1.7; margin-top: 0.367rem; margin-bottom: 0.7rem;}
.pro-page .pro-list{display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items: stretch; justify-content: flex-start; flex-wrap: wrap; padding: 0 0.933rem;}
.pro-page .pro-list .item{ width: 32.19%; margin-right:1.715%;}
.pro-page .pro-list .item:nth-child(3n){ margin-right: 0}
.pro-page .pro-list .item .st{ text-align: center;	font-size: 0.333rem;	color: #004da9; margin-top: 0.3rem;}
.pro-page .pro-list .item:nth-child(3n)~.item{ margin-top: 0.533rem;}

.cont-box{ padding: 1.1rem 0 2rem;}
.cont-box .lx-list{ margin-top: 0.833rem;display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items: stretch; justify-content: space-between; }
.cont-box .lx-list .item{	border: solid 1px #949494;
 width: 32.5%;display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items: stretch; justify-content: space-between; padding: 0.667rem;}
.cont-box .lx-list .item .icon{display: -webkit-flex; display: -ms-flex; display: -moz-flex; align-items: center;
    width: 1.167rem; flex-shrink: 0; text-align: center; justify-content: center }
.cont-box .lx-list .item .text{	font-size: 18px; line-height: 2; flex-grow: 1; min-width: 0; padding-right: 1rem}

.cnt-msg{ padding:1.15rem 1rem; margin-top: 1.5rem;	box-shadow: 0px 0px 2px 0px
rgba(0, 0, 0, 0.2); background: #fff}
.cnt-msg .title{ text-align: center;	font-size: 0.5rem; font-weight: bold;}

.cnt-msg form{ margin: 1rem auto 0; display: block; font-size: 0}
.cnt-msg form .up{ display: flex; align-items: stretch; justify-content: space-between;}
.cnt-msg form .up .up1{ width: 31.5%; position: relative;border: solid 2px #e1e1e1;
    font-size: 0.267rem;color: #bababa;}
.cnt-msg form .up .up1 input{    padding: 0.3rem 0.417rem;font-size: 0.267rem; background: #ffffff; width: 100%;	}
.cnt-msg form  textarea{ padding: 0.3rem 0.417rem;border: solid 2px #e1e1e1;
    margin: 0.5rem auto 0; resize: none; height: 2.167rem; width: 100%; font-size: 0.267rem;}
.cnt-msg button{width: 4.3rem;
    height: 1.067rem;
    background-color: #004da9;
    border-radius: 0.083rem;	font-size: 0.3rem; color: #fff; margin: 0.917rem auto 0; display: block;}

.tc-about{ padding: 1.967rem 0 1.8rem; background: url("../images/about-bg.jpg") center no-repeat; background-size:cover;}
.tc-about .mxw-box{display: -webkit-flex; display: -ms-flex; display: -moz-flex; align-items: center;}
.tc-about .mxw-box .tc-right{ width: 54.375%; flex-shrink: 0;border: solid 6px rgba(0, 77, 169, 0.49);
    border-radius: 4px;}
.tc-about .mxw-box .tc-right img{ width: 100%;}
.tc-about .mxw-box .tc-left{ flex-grow: 1; min-width: 0; padding-right: 2.333rem;	}
.tc-about .mxw-box .tc-left .en{	font-size: 0.333rem; font-weight: bold; color: #004da9; line-height: 1; }
.tc-about .mxw-box .tc-left .en img{ margin-left: 0.15rem; vertical-align: bottom; margin-bottom: 3px;}
.tc-about .mxw-box .tc-left .cn{ margin-top: 0.367rem;	font-size: 0.5rem;	color: #010101; font-weight: bold; line-height: 1;}
.tc-about .mxw-box .tc-left .cn::after{
    display: block;content: ""; margin-top: 0.5rem;
    width: 35px;
    height: 4px;
    background-color: #004da9;
}
.tc-about .mxw-box .tc-left .title{	font-size: 0.5rem; font-weight: bold;	color: #010101; margin-top: 1.367rem;}
.tc-about .mxw-box .tc-left .desc{	font-size: 0.267rem;	color: #333333; line-height: 1.8; margin-top: 0.5rem; text-indent: 2em}
.tc-about .mxw-box .tc-left .list{ margin: 1.333rem auto 2.167rem;display: -webkit-flex; display: -ms-flex; display: -moz-flex; align-items: center; justify-content: space-between;}
.tc-about .mxw-box .tc-left .list .item{ width: 1.383rem; text-align: center;}
.tc-about .mxw-box .tc-left .list .item p{ margin-top: 0.267rem;	font-size: 0.3rem;}
.a-more{	font-size: 0.267rem;color: #004da9; display: inline-block}
.a-more img{ width: 0.617rem; margin-left: 0.267rem;}

.tc-pro{ padding: 1.917rem 0 1.583rem;}
.tc-pro .up{display: -webkit-flex; display: -ms-flex; display: -moz-flex; align-items: flex-end; justify-content: space-between;}
.tc-pro>.up.mxw-box .tc-left .en{	font-size: 0.333rem; font-weight: bold; color: #004da9; line-height: 1; }
.tc-pro>.up.mxw-box .tc-left .en img{ margin-left: 0.15rem; vertical-align: bottom; margin-bottom: 3px;}
.tc-pro>.up.mxw-box .tc-left .cn{ margin-top: 0.367rem;	font-size: 0.5rem;	color: #010101; font-weight: bold; line-height: 1;}
.tc-pro>.up.mxw-box .tc-left .desc{font-size: 0.3rem;	color: #949494; margin-top: 0.25rem;}
.tc-pro>.up.mxw-box .tc-right .co{	font-size: 0.28rem;	color: #888888; padding: 0.233rem 0.5rem; line-height: 1;background-color: #f8f8f8;
    border-radius: 0.417rem; margin-left: 0.5rem; display: inline-block}
.tc-pro>.up.mxw-box .tc-right .co.active{	background-color: #0055d9;   color: #fff;}
.tc-pro>.up.mxw-box .tc-right{ text-align: right; flex-grow: 1; min-width: 0;}
.tc-pro>.up.mxw-box .tc-left{ flex-shrink: 0}

.pro-swiper{ border-top: 1px solid #e8e8e8;
    margin-top: 1.2rem;}
.pro-swiper>.swiper-wrapper>.swiper-slide{ overflow: hidden;}
.pro-con .swiper-slide .image{border-right: 1px solid #e8e8e8}
.pro-con .swiper-slide{ width: 30%; }
.pro-con .swiper-slide .st{ padding-bottom: 0.4rem; margin: 0.433rem 0.767rem 0 0.833rem;border-bottom: 1px solid #e8e8e8;display: -webkit-flex; display: -ms-flex; display: -moz-flex; align-items: center; justify-content: space-between; display: flex;}
.pro-con .swiper-slide .st p{ flex-grow: 1; min-width: 0}
.pro-con .swiper-slide .st .ico{ width: 0.433rem; flex-shrink: 0; margin-left: 0.333rem;}

.dcd{ margin-top: 1.1rem;display: -webkit-flex; display: -ms-flex; display: -moz-flex; align-items: center; justify-content: space-between; display: flex;}
.dcd .tc-left{ padding: 0 2.5rem 0 0.8rem; flex-shrink: 0;}
.dcd .tc-left a{ display: inline-block; color: #004da9; font-size: 0.267rem;}
.dcd .tc-left a img{ width: 0.617rem; margin-left: 0.267rem;}
.dcd .tc-right{ flex-grow: 1; min-width: 0;}
.dcd .tc-right .swiper-pagination{ width: 100%; height: 4px; position: initial;}
.dcd .tc-right .swiper-pagination-progressbar{ background: none;}
.dcd .tc-right .swiper-pagination-progressbar::after{ display: block; content: ""; background: #e8e8e8; height: 1px; width: 100%; margin-bottom: -3px;}
.dcd .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{ top: -1px;}

.tc-adv{ padding: 2rem 0 2.533rem; background: url("../images/adv-bg.jpg") center no-repeat; background-size: cover;}
.tc-adv .tc-title{ text-align: center;}
.tc-adv .tc-title .cn{ font-weight: bold; line-height: 1; color: #fff;	font-size: 0.5rem; }
.tc-adv .tc-title .en{	font-size: 0.333rem; margin-bottom: 0.3rem; color: #fff; line-height: 1; font-weight: bold;}
.tc-adv .tc-title .cn::after{ display: block; content: "";	width: 0.583rem;
    height: 0.067rem; margin: 0.267rem auto 0.283rem;
    background-color: #ffffff;}
.tc-adv .tc-title .desc{	font-size: 0.333rem; line-height: 1; color: #fff;}
.tc-adv .body{ margin: 1.583rem auto 0; display: flex;display: -webkit-flex; display: -ms-flex; display: -moz-flex; align-items: center; justify-content: space-between; }
.tc-adv .body .tc-center{ width: 6.7rem;}
.tc-adv .body .tc-left{ width: 5.54rem;}
.tc-adv .body .tc-right{ width: 5.54rem;}
.tc-adv .body .item{display: flex;display: -webkit-flex; display: -ms-flex; display: -moz-flex; align-items: center; justify-content: center; color: #fff;padding: 0.367rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.4)
}
.tc-adv .body .item .num{ width: 0.867rem; flex-shrink: 0;}
.tc-adv .body .item .ico{ flex-grow: 1; min-width: 0; margin-left: 0.6rem; font-weight: 400;	font-size: 0.367rem; line-height: 1; }
.tc-adv .body .item .ico img{ font-size: 0.7rem; margin-right: 0.3rem; width: 0.7rem; }
.tc-adv .body .item:nth-child(1)~.item{ margin-top: 0.367rem;}

.tc-prj{ padding: 1.917rem 0 1.25rem; background: #f6f8fa; }
.tc-prj .mxw-box{display: flex;display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items: stretch; justify-content: space-between;}
.tc-prj .tc-left{ background:#fff; margin-left: -2.5rem; width: 68.7%; flex-shrink: 0}
.tc-prj .tc-right{ flex-grow: 1; min-width: 0; padding-left: 1.25rem;}
.tc-prj .tc-right .cn{	font-size: 0.6rem; font-weight: bold; line-height: 1; margin-bottom: 0.2rem;}
.tc-prj .tc-right .en{	font-size: 0.267rem; line-height: 1; text-transform: uppercase;	color: #004da9;}
.tc-prj .tc-right .en::after{
    content: ""; display: block; margin: 0.367rem auto 0.6rem 0;
    width: 0.583rem;
    height: 0.067rem;
    background-color: #004da9;
}
.tc-prj .tc-right .title{	font-size: 0.333rem;	color: #333333; margin-bottom: 0.35rem; line-height: 1;}
.tc-prj .tc-right .desc{	font-size: 0.267rem;	color: #333333; line-height: 2;}
.prj-swiper{ margin-top: 0.45rem; overflow: hidden; margin-right: 0.8rem;}
.prj-swiper .swiper-pagination{position: initial; text-align: left; margin-top: 0.933rem;}
.prj-swiper .swiper-pagination .swiper-pagination-bullet{	width: 0.25rem;
    height: 0.25rem;
    background-color: #004da9;
    opacity: 0.4;}
.prj-swiper .swiper-pagination .swiper-pagination-bullet-active{ opacity: 1}

.tc-case{ padding: 1.933rem 0 1.633rem; background: url("../images/case-bg.jpg") center no-repeat; background-size: cover; text-align: center}
.tc-case .tc-title{ text-align: center;}
.tc-case .tc-title .en{	font-size: 0.333rem;	color: #004da9; font-weight: bold; line-height: 1;}
.tc-case .tc-title .cn{	font-size: 0.5rem;	color: #010101; font-weight: bold; line-height: 1; margin: 0.267rem auto;}
.tc-case .tc-title .cn::after{	width: 0.583rem;
    height: 0.067rem; margin: 0.267rem auto;
    background-color: #004da9; content: ""; display: block;}
.tc-case .tc-title .desc{	color: #949494; font-size: 0.333rem; margin-top: 0.267rem;}
.case-cate{ margin: 1.033rem auto 1.167rem;display: flex;display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items: stretch; justify-content: center; }
.case-cate .item{	font-size: 0.3rem;	color: #888888; line-height: 1; padding: 0.233rem 0.5rem;	border-radius: 0.417rem;	background-color: #f8f8f8;}
.case-cate .item:nth-child(1)~.item{ margin-left: 0.333rem;}
.case-swiper{ overflow: hidden}
.case-con-swiper{ overflow: hidden;}
.tc-case .a-more{ margin-top: 1rem;}

.tc-news{ padding: 2.083rem 0 1.417rem;}
.tc-news .mxw-box{display: flex;display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items: flex-start; justify-content: space-between;}
.tc-news .mxw-box .tc-left{ width: 4.3rem; flex-shrink: 0;}
.tc-news .mxw-box .tc-right{ flex-grow: 1; min-width: 0; margin-left: 0.5rem; }
.tc-news .mxw-box .tc-left .en{ text-transform: uppercase; line-height: 1;	font-size: 0.333rem; font-weight: bold;	color: #004da9;}
.tc-news .mxw-box .tc-left .en img{ vertical-align: baseline; margin-left: 0.2rem }
.tc-news .mxw-box .tc-left .cn{ line-height: 1;	color: #010101; font-weight: bold; margin-top: 0.433rem; font-size: 0.5rem;}
.tc-news .mxw-box .tc-left .desc{ margin: 0.8rem auto 1.3rem; text-align: left;	font-size: 0.333rem;	color: #949494; line-height: 1.8}
.news-cate{ margin-right: 1.833rem;}
.news-cate .item{ display: block; width: 100%; padding-bottom: 0.267rem; border-bottom: 1px solid #949494;	color: #949494;}
.news-cate .item:nth-child(1)~.item{ margin-top: 0.583rem;}
.news-cate .item.active{ color: #004da9; border-bottom: 1px solid #004da9}
.news-swiper{ overflow: hidden; margin-top: 2rem;}
.news-con{ overflow: hidden;}
.news-con .swiper-slide{ width: 33%;}
.news-con .swiper-slide .mxw-image{ 	border-radius: 0.2rem; }
.news-con .swiper-slide .tim{	font-size: 0.267rem; margin-top: 0.433rem;}
.news-con .swiper-slide .st p{	font-size: 0.333rem; margin-top: 0.367rem; padding-bottom: 0.2rem; border-bottom: 1px solid #eaeaea;	color: #333333;}
.news-con .swiper-slide .st div{	font-size: 0.233rem; margin-top: 0.2rem;	color: #949494; line-height: 1.8}
.news-con .swiper-slide:hover .tim{	color: #204174;}
.news-con .swiper-slide:hover .st p{	color: #204174;}
.tc-news .mxw-box .tc-right .a-more{ margin-top: 1.6rem;}
.qh{ margin-top: 1.367rem;}
.qh .swiper-button-prev,.qh .swiper-button-next{ position: initial; display: inline-block; margin-top: 0;width: 0.667rem; border-radius: 0.333rem;height: 0.667rem;border: solid 1px rgba(0, 77, 169, 0.4);
text-align: center; line-height: 0.6rem;}
.qh .swiper-button-prev::after,.qh .swiper-button-next::after{ color: #004da9; font-size: 0.367rem;}
.qh .swiper-button-prev:hover,.qh .swiper-button-next:hover{ background: #004da9}
.qh .swiper-button-prev:hover::after,.qh .swiper-button-next:hover::after{ color: #fff;}

footer{	background-color: #004da9; padding-top: 0.567rem;}
.tc-links{ border-bottom: 1px solid rgba(255, 255, 255, 0.1); width: 95%;margin: 0 auto;
    padding-bottom: 0.55rem;  }
.tc-links .mxw-box{ color: #fff;display: flex;display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items:center; justify-content: space-between;}
.tc-links .mxw-box .tc-left{ flex-shrink: 0;	font-size: 0.283rem;}
.tc-links .mxw-box .tc-right{flex-grow: 1; min-width: 0; padding-left: 0.75rem;	font-size: 0.233rem;}
.tc-links .mxw-box .tc-left img{	width: 0.367rem; margin-right: 0.233rem;}
.tc-links .mxw-box .tc-right a{ color: #fff; margin-right: 0.4rem;}

footer .con{ padding-bottom: 0.6rem; padding-top: 0.533rem;display: flex;display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items:flex-start; justify-content: space-between;}
footer .con .tc-left{ color: #fff; width: 24.4%; flex-shrink: 0}
footer .con .tc-left .tel p{	font-size: 0.4rem; font-weight: bold;}
footer .con .tc-left .tel .num{	font-size: 0.667rem; font-weight: bold; margin-top: 0.3rem;}
footer .con .tc-left  .lx-info{ margin-top: 0.7rem;	font-size: 0.267rem; line-height: 2}
footer .con .tc-center{ flex-grow: 1; min-width: 0; margin-left: 3rem; margin-right: 1.667rem;display: flex;display: -webkit-flex; display: -ms-flex; display: -moz-flex;  align-items:flex-start; justify-content: space-between; }
footer .con .tc-center .title{	font-size: 0.283rem; color: #fff; margin-bottom: 0.333rem;}
footer .con .tc-center p a{	font-size: 0.233rem; opacity: 0.8; line-height: 2; color: #fff;}
footer .con .tc-right{ width: 4.083rem; flex-shrink: 0;}
footer .con .tc-right .ewm{ margin-right: 0; margin-left: auto; width: 2.183rem; text-align: center;}
footer .con .tc-right .ewm p{	font-size: 0.267rem; color: #fff; margin-bottom: 0.18rem;}

.news-page{ padding: 0.8rem 0 1rem;}
.news-page .list{  }
.news-page .list .item{display: flex;	background-color: #f3f8ff; display: -webkit-flex; display: -moz-flex; display: -ms-flex;  justify-content: space-between; align-items: flex-start;transition: all 0.3s}
.news-page .list .item:nth-child(1)~.item{ margin-top: 0.55rem;}
.news-page .list .item .image{ width: 25%; flex-shrink: 0;}
.news-page .list .item .date{ flex-shrink: 0; text-align: center; padding: 0.767rem 0.6rem 0.6rem 1.25rem;}
.news-page .list .item .date .day{	font-size: 0.767rem;color: #2660a3; line-height: 1; }
.news-page .list .item .date p{ font-size: 0.367rem;color: #2660a3; margin-top: 0.3rem;}
.news-page .list .item .text{ padding: 0.6rem 3.25rem 0.633rem 0}
.news-page .list .item .text .st{	font-size: 0.333rem; font-weight: bold;color: #2660a3;}
.news-page .list .item .text .info{font-size: 0.267rem;color: #2660a3; margin: 0.4rem auto 0.467rem; line-height: 1.8}
.news-page .list .item .text .more{	font-size: 0.233rem;	color: #2660a3;}
.news-page .list .item:hover{background-color: #2660a3; transition: all 0.3s}
.news-page .list .item:hover .date .day{ color: #fff}
.news-page .list .item:hover .date p{ color: #fff}
.news-page .list .item:hover .text .st{ color: #fff}
.news-page .list .item:hover .text .info{ color: #fff}
.news-page .list .item:hover .text .more{ color: #fff}

/* ==================== 新闻详情 start ==================== */
.ny-news-desc {


}
.ny-news-desc > .mxw-box {

}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 0.45rem;
    color: #333;
    padding-bottom: 0.317rem;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 0.317rem;
    border-bottom: 0.017rem solid #333;
    margin-bottom: 0.317rem;
}
.ny-news-desc .info .text {
    font-size: 0.25rem;
    color: #333;
    display: inline-block;
    margin-right: 0.317rem;
    border-left: 0.017rem solid #333;
    padding-left: 0.317rem;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 0.017rem solid #999;
    border-radius: 1.617rem;
    padding: 0.083rem 0.167rem;
    line-height: 1;
    font-size: 0.233rem;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;

}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {

    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */

/* ==================== 产品详情 start ==================== */
.ny-product-desc {
    position:relative;
    padding-top: 1.6129rem;
    padding-bottom: 1.6129rem;
}
.ny-product-desc .product-image {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8065rem;
}
.ny-product-desc .image {
    flex-shrink: 0;
    max-width: 9.6774rem;
    width: 100%;
    position: relative;z-index:9;
}
.ny-product-desc .image img {
    width: 100%;
}
.ny-product-desc .right {
    padding-left: 0.7258rem;
    flex: 1;
}
.ny-product-desc .right .title {
    font-size: 0.4516rem;
    color: #333;
    border-bottom: 1px solid #dadada;
    padding-bottom: 0.3226rem;
}
.ny-product-desc .right .desc h2 {
    font-size: 0.2581rem;
    color: #333;
    margin-top: 0.4839rem;
}
.ny-product-desc .right .desc p {
    font-size: 0.2581rem;
    color: #666;
    line-height: 1.8em;
}
.ny-product-desc .product-btn{width:30px;height:30px;border-top:3px solid #333;position:absolute;top:50%;cursor:pointer;display:block;}
.ny-product-desc .product-btn-prev{border-left:3px solid #333;transform:rotate(-45deg) translateY(-50%);left:50px}
.ny-product-desc .product-btn-next{border-right:3px solid #333;transform:rotate(45deg) translateY(-50%);right:100px;}
/* ==================== 产品详情 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ny-product-desc .big-swiper {
    border: 1px solid #ddd;
}
.ny-product-desc .ny-product-image {
    width: 35%;
    flex-shrink: 0;
    margin-right: 5%;


}



.ny-product-desc .right {
    width: 60%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;
}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 0.0167rem solid #d9d9d9;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.5667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;
    max-width: 10rem;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
    max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
    cursor: pointer;
    border: 3px solid #eee;
    border-radius: 0.0833rem;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #004da9;
}
.ny-product-desc .small-image .swiper-button-disabled {
    opacity: 1;
}
.ny-product-desc .small-image .swiper-button-next:after,
.ny-product-desc .small-image .swiper-button-prev:after {
    font-size: 0.4667rem;
    color: #ccc;
}
.ny-product-desc .small-image .swiper-button-next {
    right: 0rem;
}
.ny-product-desc .small-image .swiper-button-prev {
    left: 0rem;
}
.ny-product-desc .bottom {
    margin-top: 0.8333rem;
}
.ny-product-desc .bottom .head {
    width: 100%;
    border-bottom: 0.0167rem solid #d9d9d9;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 0.6667rem;
}
.ny-product-desc .bottom .head .text1 {
    padding: 0 0.3333rem;
    border-bottom: 0.0833rem solid #004da9;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #004da9;
}
.ny-product-desc .bottom .desc{
    font-size: 0.3rem; line-height: 1.8;
}
.ny-product-desc .bottom .desc img{ height: auto !important;}
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 1400px;
    }
    .ny-product-desc .top {
        align-items: stretch;
    }
}
@media screen and (max-width: 1480px) {
    .ny-product-desc .mxw-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 100%;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {
        margin-bottom: 10px;
    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 16px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }
}
/* ==================== 内页 - 产品详情 end ==================== */

















#map{ height: 445px; font-size: 14px;
    margin-top: 0.4rem;}


@media screen and (max-width: 1800px) {


}

@media screen and (max-width: 1760px) {

}
@media screen and (max-width: 1680px) {
    .x-menu > li{ margin: 0 0.2rem}
    .x-menu > li.tel-box{ margin-left: 0.7rem}
    .tc-about .mxw-box .tc-left .title{ margin-top: 0.7rem}
    .tc-about .mxw-box .tc-left .list{ margin: 0.7rem auto 1.2rem}
    .tc-pro>.up.mxw-box .tc-right .co{ margin-left: 0.4rem;padding: 0.233rem 0.4rem;}
}
















body{ overflow-x: hidden}




.mxw-copy{ background: #034594}
.mxw-copy .mxw-box{ padding: 10px 0; line-height: 1.6;	font-size: 14px; color: #fff;  text-align: center;  }
.mxw-copy .mxw-box a{font-size: 14px; color: #fff; }
.mxw-copy .mxw-box a:hover{font-size: 14px; 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 ==================== */



.ny-product-desc .bottom .desc table{width:100% !important;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459;
    display: block;
    overflow-y: hidden;
    height: auto;}
.ny-product-desc .bottom .desc table tbody {
    display: table;
    table-layout: fixed;
    min-width: 100%;
}
.ny-product-desc .bottom .desc table th,
.ny-product-desc .bottom .desc table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.ny-product-desc .bottom .desc table td p{line-height:1.8!important;}
.ny-product-desc .bottom .desc table tr:hover{background-color:#f2f2f2!important;}
.ny-product-desc .bottom .desc table tr:nth-child(2n-1){background-color:#fff ;}
.ny-product-desc .bottom .desc table tr:nth-child(2n){background-color:#fdfdfd ;}


/* ==================== 通用 - 无缝滚动 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: 1300px) {
    .tc-pro>.up.mxw-box .tc-right .co{ margin-left: 0.3rem; padding: 0.28rem 0.4rem}
    html{ font-size: 40px;}
}


@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}

    .tc-about{ padding: 45px 0;}
    .tc-about .mxw-box{ flex-wrap: wrap;}
    .tc-about .mxw-box .tc-left{ padding-right: 0; width: 100%;}
    .tc-about .mxw-box .tc-left .en{ font-size: 16px;}
    .tc-about .mxw-box .tc-left .en img{ margin-left: 5px;}
    .tc-about .mxw-box .tc-left .cn{ font-size: 22px; margin-top: 5px;}
    .tc-about .mxw-box .tc-left .cn::after{ margin-top: 5px;}
    .tc-about .mxw-box .tc-left .title{ font-size: 20px; margin-top: 25px;}
    .tc-about .mxw-box .tc-left .desc{ font-size: 14px; margin-top: 10px;}
    .tc-about .mxw-box .tc-left .list{ margin-top: 15px; margin-bottom: 20px;}
    .tc-about .mxw-box .tc-left .list .item{ width: 22%;}
    .tc-about .mxw-box .tc-left .list .item p{ font-size: 14px; margin-top: 5px;}
    .a-more{ font-size: 14px;}
    .a-more img{  width: 24px;}
    .tc-about .mxw-box .tc-right{ width: 100%; margin-top: 20px;}

    .tc-pro{ padding: 45px 0}
    .tc-pro .up{ flex-wrap: wrap;}
    .tc-pro>.up.mxw-box .tc-left .en{ font-size: 16px;}
    .tc-pro>.up.mxw-box .tc-left .cn{ margin-top: 8px; font-size: 22px;}
    .tc-pro>.up.mxw-box .tc-left .desc{ font-size: 14px; margin-top: 5px;}
    .tc-pro>.up.mxw-box .tc-left{ width: 100%;}
    .tc-pro>.up.mxw-box .tc-right{ margin-top: 20px; width: 100%; justify-content: space-between; display: flex; align-items: stretch; flex-wrap: wrap;}
    .tc-pro>.up.mxw-box .tc-right .co{ font-size: 14px; text-align: center; padding: 10px 15px; width: 48.5%; margin: 0;}
    .tc-pro>.up.mxw-box .tc-right .co:nth-child(2)~.co{ margin-top: 10px;}
    .pro-swiper{ margin-top: 20px;}
    .pro-con .swiper-slide{ width: 50%;}
    .pro-con .swiper-slide .st{ margin: 10px auto 0; width: 90%; padding-bottom: 5px;}
    .pro-con .swiper-slide .st p{ font-size: 14px;}
    .pro-con .swiper-slide .st .ico{ width: 20px; margin-left: 12px;}
    .dcd{ margin-top: 20px;}
    .dcd .tc-left{ padding: 0 25px 0 10px;}
    .dcd .tc-left a{ font-size: 14px;}
    .dcd .tc-left a img{ width: 20px; margin-left: 10px;}

    .tc-adv{ padding: 45px 0}
    .tc-adv .tc-title .en{ font-size: 16px; margin-bottom: 10px;}
    .tc-adv .tc-title .cn{ font-size: 22px;}
    .tc-adv .tc-title .cn::after{ margin: 10px auto; width: 35px; height: 2px;}
    .tc-adv .tc-title .desc{ font-size: 14px;}
    .tc-adv .body{ flex-wrap: wrap; margin-top: 25px;}
    .tc-adv .body .item{ padding: 0 0 10px;}
    .tc-adv .body .item .num{ width: 35px;}
    .tc-adv .body .item .ico{ margin-left: 10px; font-size: 16px;}
    .tc-adv .body .item .ico img{ width: 30px;}
    .tc-adv .body .tc-left{ width: 100%}
    .tc-adv .body .tc-center{ margin: 25px auto; width: 100%; padding: 0 5%;}
    .tc-adv .body .tc-right{ width: 100%;}

    .tc-prj{ padding: 45px 0;}
    .tc-prj .mxw-box{ flex-wrap: wrap;}
    .tc-prj .tc-left{ width: 100%; margin: 0 auto;}
    .tc-prj .tc-right{ padding-left: 0; padding-top: 20px;}
    .tc-prj .tc-right .cn{ font-size: 22px; margin-bottom:10px;}
    .tc-prj .tc-right .en{ font-size: 14px;}
    .tc-prj .tc-right .en::after{ width: 35px; height: 3px; margin: 10px auto 25px 0}
    .tc-prj .tc-right .title{ font-size: 18px; margin-bottom: 20px;}
    .tc-prj .tc-right .desc{ font-size: 14px; line-height: 1.8}
    .prj-swiper{ margin-top: 20px; margin-right: 0;}
    .prj-swiper .swiper-pagination{ margin-top: 20px;}
    .prj-swiper .swiper-pagination .swiper-pagination-bullet{ width: 12px; height: 12px;}

    .tc-case{ padding: 45px 0;}
    .tc-case .tc-title .en{ font-size: 16px;}
    .tc-case .tc-title .cn{ font-size: 22px; margin: 5px auto;}
    .tc-case .tc-title .cn::after{ width: 35px; height: 3px; margin: 10px auto 15px;}
    .tc-case .tc-title .desc{ font-size: 14px; margin-top: 15px;}
    .case-cate{ margin: 25px auto 15px; flex-wrap: wrap; width: 100%; justify-content: flex-start; }
    .case-cate .item{ width: 32%; font-size: 14px; padding: 8px 10px; margin: 0 2% 0 0; }
    .case-cate .item:nth-child(1)~.item{ margin-left: 0; margin-right: 2%; }
    .case-cate .item:nth-child(3n){ margin-right: 0 !important; }
    .case-cate .item:nth-child(3n)~.item{ margin-top: 10px;}
    .tc-case .a-more{ margin-top: 20px;}
    .tc-news{ padding: 45px 0}
    .tc-news .mxw-box{ flex-wrap: wrap;}
    .tc-news .mxw-box .tc-left .en{ font-size: 14px;}
    .tc-news .mxw-box .tc-left .cn{ font-size: 22px; margin-top: 10px;}
    .tc-news .mxw-box .tc-left{ width: 100%;}
    .tc-news .mxw-box .tc-left .desc{ font-size: 12px; margin: 15px auto 20px;}
    .tc-news .mxw-box .tc-left .desc br{ display: none;}
    .news-cate{ margin-right: 0; display: flex; align-items: stretch; justify-content: flex-start;}
    .news-cate .item{ width: 32%; margin-right: 2%; padding-bottom: 10px; font-size: 16px;}
    .news-cate .item:nth-child(3n){ margin-right: 0;}
    .news-cate .item:nth-child(1)~.item{ margin-top: 0}

    .qh{ margin-top: 25px; width: 100%; text-align: right;}
    .qh .swiper-button-prev, .qh .swiper-button-next{ width: 30px; height: 30px; line-height: 25px;}
    .qh .swiper-button-prev::after, .qh .swiper-button-next::after{ font-size: 14px;}
    .news-swiper{ margin-top: 25px;}
    .news-con .swiper-slide{ width: 100%;}
    .tc-news .mxw-box .tc-right{ margin-left: 0}
    .news-con .swiper-slide .tim{ font-size: 12px; margin-top: 10px;}
    .news-con .swiper-slide .st p{ font-size: 16px; margin-top: 12px; padding-bottom: 10px;}
    .news-con .swiper-slide .st div{ font-size: 14px; margin-top: 10px;}
    .tc-news .mxw-box .tc-right .a-more{ margin-top: 20px;}
    .tc-links{ display: none;}
    footer{ padding-top: 40px;}
    footer .con{ padding-top: 0; flex-wrap: wrap;}
    footer .con .tc-left{ width: 100%;}
    footer .con .tc-left .tel p{ font-size: 16px;}
    footer .con .tc-left .tel .num{ font-size: 30px; margin-top: 10px;}
    footer .con .tc-left .lx-info{ font-size: 14px; margin-top: 25px;}
    footer .con .tc-center{ display: none;}
    footer .con .tc-right{ margin-top: 20px; margin-left: 0}

    footer .con .tc-right .ewm{ margin-left: 0; width: 120px;}
    footer .con .tc-right .ewm p{ font-size: 14px;}

    body{ margin-bottom: 0}
    .nt-nav{ margin-top: 0}
    .nt-nav>.mxw-box .tc-right{ display: none}
    .nt-nav>.mxw-box{ padding: 0}
    .nt-nav>.mxw-box .tc-left{ width: 100%; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
    .nt-nav>.mxw-box .tc-left a{ margin-right: 2%; width: 32%; line-height: 1; height: auto; margin-top: 15px; font-size: 14px; padding-bottom: 10px; text-align: center;}
    .nt-nav>.mxw-box .tc-left a:nth-child(3n){ margin-right: 0}
    .about-box1{ padding: 45px 0;}
    .tc-title2 .cn{ font-size: 22px;}
    .tc-title2 .cn::after{ width: 35px; height: 3px; margin: 5px auto 10px;}
    .about-box1 .body{ padding: 0}
    .about-box1 .body .title{ margin: 25px auto 15px; font-size: 18px;}
    .about-box1 .body .text{ font-size: 14px;}
    .about-box1 .body .list{ margin-top: 15px;}
    .about-box2{ padding: 45px 0}
    .tc-title2 .en{ font-size: 14px; margin-top: 10px;}
    .about-box2 .list{ margin: 25px auto 0; flex-wrap: wrap; justify-content:space-between;}
    .about-box2 .list .item{ width: 33%;}
    .about-box2 .list img{ width: 60px; max-width: 100%;}
    .about-box2 .list p{ font-size: 18px; margin-top: 10px;}
    .about-box2 .list .item:nth-child(3n)~.item{ margin-top: 20px;}
    .about-box3{ padding: 45px 0;}
    .about-box3 .list{ margin-top: 25px;}
    .about-box3 .list .item p{ margin-top: 5px; font-size: 14px; padding: 0}
    .about-box3 .list .item{ width: 100%; margin: 0}
    .about-box3 .list .item:nth-child(1)~.item{ margin-top: 20px;}

    .about-box4{ padding: 45px 0}
    .about-box4 .desc{ margin: 15px auto 25px; font-size: 14px;}
    .about-box4 .body .swiper-button-prev{ width: 25px; height: 25px;  }
    .about-box4 .body .swiper-button-next{width: 25px; height: 25px;}
    .about-box4 .body .swiper-button-next::after, .about-box4 .body .swiper-button-prev::after{ font-size: 14px;}
    .about-box4 .body{ padding: 0 35px;}

    .about-box5{ padding: 45px 0}
    .about-box5 .body{ margin-top: 30px;}
    .about-box5 .body .tc-left{ display: none;}
    .about-box5 .body .tc-right{ margin-left: 0}
    .about-box5 .body .tc-right .up{ justify-content: space-between;}
    .about-box5 .body .tc-right .up .item{ width: 32%; padding: 15px 10px; margin-right: 2%; text-align: center;}
    .about-box5 .body .tc-right .up .item:nth-child(3n){ margin-right: 0}
    .about-box5 .body .tc-right .up .item p{ font-size: 14px; margin-top: 5px;}
    .about-box5 .body .tc-right .up .item div{ font-size: 25px;}
    .about-box5 .body .tc-right .list{ margin-top: 25px;}

    .pro-page{ padding: 45px 0}
    .p-tt .cn{ font-size: 18px;}
    .p-tt .cn::after{ margin: 10px auto 15px; width: 35px; height: 3px;}
    .p-tt .desc{ font-size: 14px; padding: 0; margin: 15px auto 25px;}
    .pro-page .pro-list{ padding: 0; justify-content: space-between;}
    .pro-page .pro-list .item{ width: 48.5%;}
    .pro-page .pro-list .item:nth-child(2n){ margin-right: 0}
    .pro-page .pro-list .item .st{ margin-top: 5px; font-size: 14px;}
    .pro-page .pro-list .item:nth-child(2n)~.item{ margin-top: 20px;}

    .cont-box{ padding: 45px 0}
    .cont-box .lx-list{ flex-wrap: wrap; width: 100%; margin-top: 25px;}
    .cont-box .lx-list .item{ width: 100%; padding: 10px;}
    .cont-box .lx-list .item .icon{ width: 30px;}
    .cont-box .lx-list .item .text{ padding-right: 15px; font-size: 14px;}
    .cont-box .lx-list .item:nth-child(1)~.item{ margin-top: 15px;}
    .cnt-msg{ margin-top: 35px; padding:30px 20px; }
    .cnt-msg .title{ font-size: 18px;}
    .cnt-msg form{ margin-top: 25px;}
    .cnt-msg form .up{ flex-wrap: wrap;}
    .cnt-msg form .up .up1{ width: 100%; font-size: 14px;}
    .cnt-msg form .up .up1 input{ padding: 6px 10px; font-size: 14px;}
    .cnt-msg form .up .up1:nth-child(1)~.up1{ margin-top: 12px;}
    .cnt-msg form textarea{ margin-top: 12px; padding: 8px 10px; font-size: 14px;}
    .cnt-msg button{ width: 180px; height: 40px; font-size: 14px; margin-top: 25px;}

    .ny-product-desc .bottom .desc{
        font-size: 14px; line-height: 1.6;
    }
}







