@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
    image-rendering: -moz-crisp-edges; /* Firefox */
   image-rendering: -o-crisp-edges; /* Opera */
   image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
   -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .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: inline-block;
    margin: 4px;
}
.mxw-pagination  a.current,
.mxw-pagination  a:hover {
    background-color: #0065fe;
    color: #fff !important;
}
.mxw-pagination  a:first-child {
    margin-left: 0;
}
.mxw-pagination  a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .mxw-pagination {
        margin-top: 30px;
    }
    .mxw-pagination  a {
        font-size: 12px;
        margin: 2px;
        padding: 8px 10px;
    }
}
/* ==================== 分页样式 end ==================== */

/* ==================== 通用标签页 start ==================== */
/* 标签页 */
.mxw-tabs {
    padding-left: 0;
    padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.mxw-tabs .mxw-tabs-wrap {
    position: relative;
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
    align-items: center;
    justify-content: flex-start;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
    display: none;
}
.mxw-tabs .mxw-tabs-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    font-size: 0.3rem;
    white-space: nowrap;
    background: #eaeaea;
    color: #333;
    padding: 0rem 0.5rem;
    margin-right: 0.9rem;
    line-height: 0.6667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #0065fe;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #f9f9f9;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #0065fe;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #0065fe;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    width: 65px;
    height: 44px;
    background-color: #0065fe;
    border-radius: 0px 5px 5px 0px;
     color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;

}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;z-index: 0;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
    height: 100%; text-align: center;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: none;
    margin-left: 5px;
    margin-right: 5px;
    border: 2px solid #fff;
    outline: none;
    opacity: 1;
    border-radius: 50%;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0065fe;
    border-color: #0065fe;

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

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


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

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





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

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

/* ==================== 通用细节调整 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:#0065fe;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 240%;
        width:240%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
	.footer3 ul li .iconfont{ width:initial; height:initial}
    .product-detail-tab .product-detail-tabcon iframe,.product-detail-tab .product-detail-tabcon video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content  iframe, .xypg-right-content  video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content img{ max-width: 100%; height: auto !important;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}
.top-box .logo-box{  font-size: 0;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start;
    padding: 0.3rem 0 0.3rem   0;
   }
.top-box .logo-box .t-logo>img{ max-height:0.9rem;}

.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: #0065fe; 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; z-index: 99; top: 0; width: 100%;  background: #fff;box-shadow: 0px 0px 10px 0px rgba(29, 31, 43, 0.08);}
header .welcome {
    background: #11509b;
    line-height: 0.833rem;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

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

/* .p_l_r_30 {
    padding-left: 30px;
    padding-right: 30px;
} */


.top-box{ align-items: stretch;}
.top-box .right{ display: flex; flex-grow:1; min-width: 0;  padding-left: 2rem; justify-content: flex-end; align-items: center;  color: #fff; }
.top-box .right .tp-lang{ flex-shrink: 0;	font-size: 0.267rem; }
.top-box .right .tp-lang img{ margin-left: 0.167rem;}




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

    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.3rem 0 0.35rem;
    line-height: 1.2;
    position: relative;z-index: 2;
}

.x-menu > li > a:hover {
    color: #0065fe;
}
.x-menu > li > a::after{ content: ""; width: 100%; height: 2px; margin-top: 4px;}
.x-menu>li.active{ color: #fff;  		}
.x-menu>li.active>a::after{background: #0065fe; }
.x-menu > li.active > a {
    color: #0065fe;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:#0065fe;
}

.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.lang>a img{ margin-left: 0.367rem;}
.x-sub-menu>li {
    position: relative;
}

.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: 32px;
    font-size: 12px;
    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: #007aff;
    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;
}



.n-banner{ margin: 1.5rem auto 0;}
.n-banner>img{ width: 100%;}
.pro-main{ padding: 1.083rem 0 1.583rem;}
.pro-title{ text-align: center;}
.pro-title .cn{	font-size: 0.5rem;}
.pro-title .desc{font-size: 0.3rem; margin-top: 0.367rem;}
.pro-cate{ margin: 0.833rem auto 0.467rem; display: flex; align-items: center; justify-content: center;}
.pro-cate .item{ margin: 0 2.333rem; font-size: 0.3rem; color: #333;}
.pro-cate .item::after{ width: 100%; height: 0.017rem;  content: ""; display: block; margin-top: 0.12rem; }
.pro-cate .item.active{ color: #007aff}
.pro-cate .item.active::after{background: #007aff;}

.pro-main .p-list{ margin-top: 0.5rem; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.pro-main .p-list .item{display: flex; align-items: stretch; justify-content: space-between;	box-shadow: 0rem 0.05rem 0.167rem 0rem rgba(0, 0, 0, 0.17); padding: 1rem 0.333rem 0.333rem 0.833rem; background: #fff;}
.pro-main .p-list .item .tc-right{ width: 3.017rem; flex-shrink: 0; display: flex; align-items: flex-end;}
.pro-main .p-list .item .tc-left{ flex-grow: 1; min-width: 0; }
.pro-main .p-list .item .tc-left .st{	font-size: 0.333rem;color: #1a1a1a;}
.pro-main .p-list .item .tc-left .st2{	font-size: 0.267rem; color: #333; margin: 0.467rem auto 0;}
.pro-main .p-list .item .tc-left .lmo{	border-radius: 0.333rem;border: solid 0.017rem #3892f4;	font-size: 0.233rem; letter-spacing: 0.017rem;  padding: 0.15rem 0.5rem; display: inline-block; margin: 0.967rem auto 0.75rem 0;}
.pro-main .p-list .item:hover .lmo{ background: #3892f4; color: #fff;}

.xy-cate-bg{ border-bottom: solid 1px #e1e1e1;}
.xy-cate-bg>.mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.xy-cate-bg>.mxw-box .xy-title{	font-size: 0.3rem; color: #000; font-weight: bold; flex-shrink: 0; margin: 0.333rem 0 0.35rem 0;}
.xy-cate-bg>.mxw-box .xy-cate{ flex-grow: 1; min-width: 0; display: flex; align-items: center; justify-content: flex-end;}
.xy-cate-bg>.mxw-box .xy-cate .item{ font-size: 0.267rem; margin-left: 1.333rem;}

.xy-main{ padding: 0.933rem 0 1rem;}
.xy1-list{ margin: 0.917rem auto 0; display: flex; align-items: stretch; justify-content: space-between;}
.xy1-list .item{box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07); width: calc((100% - 80px)/6); }
.xy1-list .item .txt{ padding: 0.467rem 0.4rem 0.8rem ;	font-size: 0.267rem; line-height: 2;}
.xy1-list .item .txt p img{ margin-right: 0.117rem; height: 0.183rem;}

.xy2-box{	background-color: #f1f2f8; margin-top: 1.417rem; padding: 0.933rem 0 1.25rem;}
.xy2-list{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; margin-top: 0.967rem;}
.xy2-list .item{	background-color: #ffffff; box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07); display: flex; align-items: center; justify-content: space-between;
padding: 0.583rem 1.917rem 0.667rem 0.583rem;}
.xy2-list .item .img{ width: 2.6rem;flex-shrink: 0;}
.xy2-list .item .con{ flex-grow: 1; min-width: 0; margin-left: 0.583rem; }
.xy2-list .item .con .st{	font-size: 0.4rem; color: #333; margin-bottom: 0.267rem; font-weight: bold;}
.xy2-list .item .con .desc{	color: #555555;	font-size: 0.3rem; line-height: 1.8}

.xy3-box{ padding: 0.967rem 0 1.417rem;}
.xy3-con{ margin: 0.933rem auto 0; text-align: center}
.xy3-con img{max-width: 1200px;}

.xy4-box{ background-color: #f1f2f8; padding: 0.933rem 0 1.2rem;}
.xy4-body{ position: relative; width: 82%; max-width: 1200px;}
.xy4-list{ /*display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;*/ overflow: hidden; margin: 0.933rem auto 0; width: 85%;}
.xy4-list .item{ width: 10.32%; margin-right: 2.48%;}
.xy4-list .item:nth-child(8n){ margin-right: 0;}
.xy4-list .item:nth-child(8n)~.item{ margin-top: 0.833rem;}

.xy5-box{padding: 0.967rem 0 1.333rem;}
.xy5-list{ margin: 0.933rem auto 0; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.xy5-list .item{box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1); width: 17.5%; margin-right: 3.11%; }
.xy5-list .item:nth-child(5n){ margin-right: 0}
.xy5-list .item:nth-child(5n)~.item{ margin-top: 0.75rem;}


.xy6-box{ padding: 0.933rem 0 1.917rem;background-color: #f1f2f8;}
.xy6-body{ display: flex; align-items: stretch; justify-content: center; margin: 1.25rem auto 0;}
.xy6-body .tc-right{ width: 5rem; flex-shrink: 0; text-align: center;}
.xy6-body .tc-left{ flex-grow: 1; min-width: 0; display: flex; align-items: center; justify-content: center; }
.xy6-body .tc-left img{ width: 82%;}
.xy6-body .tc-right .st{ margin-bottom: 0.5rem;	font-size: 20px;}
.xy6-body .tc-right .cd{font-size: 0.3rem; color: #333; margin-top: -0.333rem;}
.xy6-body .tc-right .cd a{ padding: 0.15rem 0.267rem;	background-color: #0065fe;
    border-radius: 0.117rem; color: #fff; margin-right: 0.1rem;line-height: 1;}

.xy7-box{ padding: 0.933rem 0 1rem;}
.xy7-body{margin: 0.6rem auto 1.367rem;}

.comm-inq{ text-align: center;}
.comm-inq .st{	font-size: 0.5rem;}
.comm-inq .inq{	font-size: 0.4rem;	color: #ffffff; line-height: 1; padding: 0.267rem 0.567rem;	background-image: linear-gradient(180deg,
#3387f7 0%,
#3a5feb 100%); display: inline-block; margin: 0.583rem auto 0; border-radius: 0.15rem;}
.wq-swiper{overflow: hidden; text-align: center;	box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.06); position: relative;}
.wq-swiper .swiper-slide p{ text-align: center; padding: 0.267rem 0.167rem;}
.wq-swiper .swiper-button-prev{width: 0.4rem; height: 0.4rem; opacity: 1; left: 0; }
.wq-swiper .swiper-button-next{width: 0.4rem; height: 0.4rem;  opacity: 1; right: 0;}
.wq-swiper .swiper-button-next::after,.wq-swiper .swiper-button-prev::after{ display: none;}


.gy-main{ padding: 0.933rem 0 0 ;}
.gy-list{ margin: 0.917rem auto 1.583rem; display: flex; align-items: stretch; justify-content: space-between;}
.gy-list .item{ width: 12%;	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07); background: #fff;}
.gy-list .item .txt{	font-size: 0.3rem; padding: 0.467rem 0.467rem 0.333rem; line-height: 2;}
.gy-list .item .txt img{ margin-right: 8px;}

.gy2-box{ padding: 0.5rem 0 0.467rem;	background-color: #f1f2f8;}
.gy2-body{ display: flex; align-items: center; justify-content: space-between;}
.gy2-body .tc-right{ width: 33.7%; flex-shrink: 0; margin-right: 2.5rem}
.gy2-body .tc-left{ flex-grow: 1; min-width: 0;  padding-right: 2.7rem;}
.gy2-body .tc-left .st{	font-size: 0.5rem;	color: #333333;}
.gy2-body .tc-left .desc{	color: #555555; margin-top: 0.867rem; line-height: 2.1; padding-right: 3rem;}

.gy3-box{ padding: 2.167rem 0 2.333rem;}
.gy3-body{display: flex; align-items: flex-end; justify-content: space-between;}
.gy3-body .tc-left{ width: 30%; flex-shrink: 0; margin-right: 1.433rem;}
.gy3-body .tc-right{ flex-grow: 1; min-width: 0; }
.gy3-body .tc-left .st{	font-size: 0.5rem; margin-bottom: 0.8rem;}
.gy3-body .tc-left .st{ white-space: nowrap; }
.gy3-body .tc-left .desc{ font-size: 0.3rem; line-height: 2.1;	color: #555555;}

.gy4-box{	background-color: #f1f2f8; padding: 2.167rem 0 2rem;}
.gy4-body{ display: flex; align-items: center; justify-content: space-between;}
.gy4-body .tc-left{ width: 32%; flex-shrink: 0; margin-right: 0.9rem;}
.gy4-body .tc-right{ flex-grow: 1; min-width: 0;}
.gy4-body .tc-left .st{	font-size: 0.5rem; margin-bottom: 0.867rem;}
.gy4-body .tc-left .st{	white-space: nowrap; }
.gy4-body .tc-left .desc{	font-size: 0.3rem;	color: #555555; line-height: 2 }
.gy4-body .tc-left .to-inq{ padding: 0.267rem 0.567rem;	background-image: linear-gradient(180deg, #3387f7 0%, #3a5feb 100%); font-size: 0.4rem; display: inline-block; color: #fff; margin-top: 1.333rem; border-radius: 0.133rem;}
.gy-cat-txt{ margin-left: 2rem;}


.jjf-main{ padding-top: 1rem;}
.jjf1-box{ padding-bottom: 1.2rem;}
.jjf1-box .st{	font-size: 0.5rem; text-align: center; margin-bottom: 0.467rem;}
.jjf1-box .st2{font-size: 0.3rem; text-align: center; margin-bottom: 0.367rem;}
.jjf1-box .txt{font-size: 0.267rem;	color: #333333;line-height: 2;}
.jjf1-box .list{ margin: 0.833rem auto 0; display: flex; align-items: stretch; justify-content: space-around;}
.jjf1-box .list .item{	box-shadow: 0rem 0rem 0.1rem 0rem
#dddddd;
    border-radius: 0.4rem 0.4rem 0.4rem 0rem; padding: 0.633rem 1.367rem 0.533rem; text-align: center;}
.jjf1-box .list .item .icon img{ height: 0.7rem;}
.jjf1-box .list .item .title{font-size: 0.4rem; padding: 0.25rem 0 0.2rem; border-bottom: 1px solid rgba(119, 119, 119, 0.32); width: max-content; width: -moz-max-content; margin: 0 auto;}
.jjf1-box .list .item .desc{color: #555555; font-size: 0.333rem; margin-top: 0.267rem;}

.jjf2-box{ padding: 0.933rem 0 1.233rem;background-color: #f1f2f8;}
.jjf-title{ text-align: center;}
.jjf-title .cn{	font-size: 0.5rem; margin-bottom: 0.4rem;}
.jjf-title .desc{	font-size: 0.3rem;}
.jjf2-body{ display: flex; margin: 1.5rem auto 0; align-items: flex-start; justify-content: space-around;}
.jjf2-body .tc-left{ width: 40.63%; flex-shrink: 0;}
.jjf2-body .tc-right{ flex-grow: 1; min-width: 0;}
.jjf2-body .tc-right .item{ display: flex; align-items: flex-start; justify-content: space-between;}
.jjf2-body .tc-right .item .title{	font-size: 0.367rem;  flex-shrink: 0;}
.jjf2-body .tc-right .item .list{	font-size: 0.267rem; line-height: 2; flex-grow: 1;min-width: 0}
.jjf2-body .tc-right .item:nth-child(1)~.item{ margin-top: 1.5rem;}

.jjf3-box{ padding: 1.5rem 0 1rem;}
.jjf3-box .list{ display: flex; align-items:center; justify-content: space-between;}
.jjf3-box .list .item{ display: flex; align-items: center;justify-content: flex-start; zoom: 0.95}
.jjf3-box .list .item .icon img{ height: 0.8rem; flex-shrink: 0; margin-right: 0.25rem; }
.jjf3-box .list .item .con{ flex-grow: 1; min-width: 0;}
.jjf3-box .list .item .con .cn{ font-size: 0.333rem;}
.jjf3-box .list .item .con .en{	font-size: 0.25rem; color: rgba(51, 51, 51, 0.6)}


.case-main{ padding: 0.967rem 0 1.583rem;}
.case-title{ text-align: center;	font-size: 0.5rem;}
.case-main .list{ margin: 0.967rem auto 0; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.case-main .list .item{	box-shadow: 0px 2px 7px 0px
rgba(52, 52, 52, 0.11);
    border: solid 1px #dedede;
    padding: 0.5rem 0.833rem 0.483rem;
}
.case-main .list .item .image img{ height: 0.533rem;}
.case-main .list .item .con{	font-size: 0.267rem;color: #555555; margin: 0.467rem auto 0.8rem; line-height: 1.6}
.case-main .list .item .mo{	font-size: 0.233rem;	color: #0767fc; padding: 0.167rem 0.5rem;	border: solid 1px #0767fc;
    border-radius: 0.333rem; width: max-content; width: -moz-max-content}
.case-main .list .item:hover .mo{ background: #0767fc;color: #fff;}

.jon-main{ padding: 0.967rem 0 0;}
.jon1-box .case-title{ margin-bottom: 0.367rem;}
.jon1-box .desc{	font-size: 0.3rem; text-align: center; line-height:1.8;}
.jon1-box .txt{	font-size: 0.267rem; color: #555; margin: 0.4rem auto 0; text-align: center;}
.jon1-box .list{ margin: 0.833rem auto 0; display: flex; align-items: flex-start; justify-content: space-around;}
.jon1-box .list .item{ text-align: center;}
.jon1-box .list .item p{ margin: 0.367rem auto 0}
.jon1-box .list .item .icon{ width: 2.533rem; margin: 0 auto;}

.jon2-box{ padding: 0.967rem 0 1.083rem;background: url("../images/jo2-bg.jpg") center no-repeat; background-size: cover; margin: 1.583rem auto 0;}
.jon2-box .list{ margin: 1.067rem 2.2rem 0; position: relative; display: flex; align-items: flex-start; justify-content: space-between; background: url("../images/xuxian.png") center no-repeat; background-position-y:0.967rem; }
.jon2-box .list .item{ text-align: center;}
.jon2-box .list .item p{ margin-top: 0.417rem;}
.jon2-box .list .item .icon{ width: 1.883rem; margin: 0 auto;}
.jon2-box .list .item{  }

.jon3-box{ margin: 1.083rem 0 2.083rem;}
.jon3-box .mxw-box{ display: flex; align-items: center;	background-color: #f1f2f8;}
.jon3-box .mxw-box .tc-left{ width: 45.25%; flex-shrink: 0;}
.jon3-box .mxw-box .tc-right{ flex-grow: 1; min-width: 0; padding: 0.3rem 0.7rem ;}
.jon3-box .mxw-box .tc-right .st{	font-size: 0.5rem;	color: #006cc6; margin-bottom: 0.633rem;}
.jon3-box .mxw-box .tc-right .desc{font-size: 0.3rem;color: #333333; line-height: 2;}

.jon4-box{ padding: 0.917rem 0 0.867rem;	background-color: #f1f2f8;}
.jon4-box .desc{ margin-top: 0.4rem; text-align: center;font-size: 0.3rem;}
.jon4-body{ display: flex;align-items: stretch;justify-content: space-between; margin: 1.083rem auto 0;}
.jon4-body .tc-right{ width: 48.5%;}
.jon4-body .tc-left{ width: 48.5%;}
.jon4-body .item{ display: flex; align-items: stretch; justify-content: space-between;}
.jon4-body .item .in1{ width: 49%;}
.jon4-body .item label,.jon4-body .item1 label{ display: block;font-size: 0.283rem;color: #333; margin-bottom: 0.25rem;}
.jon4-body .item label span,.jon4-body .item1 label span{color: #c20000; margin-right: 6px}
.jon4-body .item input,.jon4-body .item1 input{background-color: #ffffff; padding: 0.333rem;font-size: 0.267rem;	color: #a8a8a8; width: 100%; margin-bottom: 0.417rem;
    border: solid 1px #eaeaea;}
.jon4-box .but{ padding-top: 0.3rem; display: flex; align-items: center; justify-content: center;}
.jon4-box .but button{ display: inline-block;	background-image: linear-gradient(180deg,
#3387f7 0%,
#3a5feb 100%); padding: 0.3rem 1rem;font-size: 0.333rem;color: #fff; margin: 0 0.417rem; cursor: pointer; border-radius: 9px;}

.ab-main{ padding: 0.833rem 0 0;}
.ab-main .ab-top{ margin: 1.583rem auto 0; display: flex; align-items: stretch; justify-content: space-between;}
.ab-main .ab-top .tc-right{ width: 55.8%; flex-shrink: 0}
.ab-main .ab-top .tc-left{ padding-right: 0.567rem; padding-top: 0.25rem;}
.ab-main .ab-top .tc-left .st{	font-size: 0.4rem;color: #0065fe;}
.ab-main .ab-top .tc-left .desc{	font-size: 0.267rem;	color: #333333; line-height: 2; margin: 0.5rem auto 1rem; padding-right: 0.633rem;}
.ab-main .num-box{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 0.8rem}
.ab-main .num-box .item{	box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.05);
    border-radius: 0.133rem; background: #fff; padding: 0.5rem  0.2rem 0.6rem; width: calc((100% - 70px)/6); text-align: center; font-size: 0}
.ab-main .num-box .item p{	font-size: 0.267rem; margin-top: 0.1rem;}
.ab-main .num-box .item .scrolling-numbers{font-size: 0.833rem;	color: #0065fe; line-height: 1; display: inline-block}
.ab-main .num-box .item sub{ font-size: 0.233rem;	color: #0065fe; margin-left: 0.25rem; display: inline-block;  vertical-align: text-bottom}

.ab2-box{ padding: 0.967rem 0 1.133rem;	background-color: #f1f2f8; margin-top: 1.583rem;}
.ab2-box .list{ margin: 0.8rem auto 0;}
.ab2-box .list .item{ background: #fff; text-align: center;	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 0.167rem; padding: 0.833rem 0.75rem 0.75rem 0.75rem;}
.ab2-box .list .item .st{	font-size: 0.333rem; color: #000; margin-bottom: 0.367rem; }
.ab2-box .list .item .desc{font-size: 0.267rem; line-height: 1.6}

.ab3-box{ padding: 1rem 0 1.8rem;}
.ab3-body{ margin: 1.033rem auto 0; width: 95%; position: relative}
.ab3-body .fz-swiper{ width: 90%; margin: 0 auto; overflow: hidden; position: relative;}
.ab3-body .fz-swiper .swiper-slide{ width: 25%;}
.ab3-body .fz-swiper .swiper-slide .st{	font-size: 0.4rem;	color: #333333;	font-style: italic; font-weight: bold; position: relative;}
.ab3-body .fz-swiper .swiper-slide .st img{ width: 0.467rem;  margin-right: 0.1rem;  }
.ab3-body .fz-swiper .swiper-slide .st2{	font-size: 0.3rem; color: #333; margin-top: 1.4rem; padding-left: 0.4rem;}
.ab3-body .fz-swiper .swiper-slide .dian{font-size: 0.233rem;	color: #111111; padding-left: 0.4rem;}
.ab3-body .fz-swiper .swiper-slide .desc{ padding-left: 0.4rem;	font-size: 0.233rem; line-height: 1.9;color: #555555; margin-top: 0.2rem;}
.ab3-body .fz-swiper .swiper-slide .st::after{	width: 2px;
    height: 1.667rem;
    background-color: #1464df; display: block; content: ""; position: absolute; top: 0.733rem; left: 0.2rem;}
.ab3-body .fz-swiper::before{ width: 100%; content: "";height: 2px;
    background-color: #1464df; display: block; position: absolute;  top: 0.833rem;}
.ab3-body .swiper-button-prev,.ab3-body .swiper-button-next{ top: 1rem; font-size: 0.717rem;}

.ab4-box{ padding: 1rem 0 1.167rem;	background-color: #f1f2f8;}
.ab4-body{ display: flex; align-items: center; justify-content: space-between; margin: 1.25rem auto 0;}
.ab4-body .tc-left{ width: 50%; background-color: #ffffff;  padding:1.2rem  1.3rem  1.667rem 3rem; ;
    border-radius: 4.333rem 0rem 0rem 0rem;}
.ab4-body .tc-right{ width: 50%; padding-right: 2.5rem; display: flex; align-items: center; justify-content: space-between; }
.ab4-body .tc-left .st{	font-size: 0.4rem;}
.ab4-body .tc-left .list{ margin-top: 1.917rem; display: flex; align-items: stretch; justify-content: space-around;}
.ab4-body .tc-left .list .item{ flex-grow: 1; min-width: 0; text-align: center;}
.ab4-body .tc-left .list .item .num{	font-size: 0.833rem; font-weight: bold; line-height: 1;color: #0043ff;}
.ab4-body .tc-left .list .item p{ margin-top: 0.4rem;	font-size: 0.333rem;}
.ab4-body .con{margin: 0 0.75rem; flex-grow: 1; min-width: 0; overflow: hidden; }
.ab4-swiper{ overflow: hidden; margin-right: -36%;}
.ab4-body .tc-right .swiper-button-next,.ab4-body .tc-right .swiper-button-prev{ position: initial; margin-top: 0; width: 0.933rem; height: 0.933rem; flex-shrink: 0}
.ab4-body .tc-right .swiper-button-next::after,.ab4-body .tc-right .swiper-button-prev::after{ display: none}
.ab4-body .tc-right .swiper-button-prev{ margin-left: 0.3rem;}
.ab4-swiper .swiper-slide{ width: 48%;}
.ab4-swiper .swiper-slide img{ width: 100%;}
.ab-main .comm-inq{ padding: 0.967rem 0;}

.xy-cate-bg>.mxw-box .xy-cate .item.active{ color: #0767fc}
.cont-main{ padding: 1rem 0 0;}
.cont-list{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
/* .cont-list .item{ width: 30%; padding-right: 1.333rem; border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1.167rem;} */
.cont-list .item{ width: 30%; border-right: 1px solid rgba(0, 0, 0, 0.05);padding-bottom: 1.167rem;}
/* .cont-list .item:nth-child(3n-1){ width: 37%; padding:0 1.667rem  1.167rem; }
 */
.cont-list .item:nth-child(3n-1){ width: 37%; padding:0 1.5rem  1.167rem; }
.cont-list .item:nth-child(3n){ padding-right: 0; padding-left: 1.333rem; border-right: 0; width: 33%;}
.cont-list .item .st1{	font-size: 0.433rem;	color: #333333; font-weight: bold;}
.cont-list .item .st2{font-size: 0.267rem;color: #666666; margin-top: 0.2rem;}
.cont-list .item .tel{ display: flex; align-items: center; justify-content: flex-start; margin: 0.833rem auto 0.583rem;}
.cont-list .item .tel .icon{	width: 0.85rem; margin-right: 0.217rem;}
.cont-list .item .tel .con{ flex-grow: 1; min-width: 0}
.cont-list .item .tel .con .txt1{	font-size: 0.233rem;}
.cont-list .item .tel .con .txt2{	font-size: 0.4rem; margin-top: 0.167rem; line-height: 1;}
.cont-list .item .info{	font-size: 0.267rem;}
.cont-list .item .info p{ display: flex; align-items: center; justify-content: flex-start; margin-bottom: 0.367rem;}
.cont-list .item .info p img{ margin-right: 0.233rem;}
.cont-list .item .ew{ margin-top: 0.667rem; display: none}
.cont-list .item:nth-child(3n)~.item{ padding-top: 1.25rem; border-top: 1px solid rgba(0, 0, 0, 0.05);}

.con-msg{ margin: 1.583rem auto 1.833rem;}
.cont-title{ text-align: center;}
.cont-title .cn{	font-size: 0.433rem; font-weight: bold;}
.cont-title .desc{	font-size: 0.3rem; color: #666; margin-top: 0.2rem;}
.cont2-body{ margin: 85px auto 0; display: flex; align-items: stretch; justify-content: space-between;}
.cont2-body .tc-left{ width: 49%; flex-shrink: 0; margin-right: 2.5rem;}
.cont2-body .tc-left svg{    top: 0.16rem;
    right: -0.38rem;}
.cont2-body .tc-right{ flex-grow: 1; min-width: 0;box-shadow: 0rem 0rem 0.483rem 0rem rgba(0, 0, 0, 0.05); background: #fff; padding: 0.667rem 0.783rem 0.533rem 0.833rem; border-bottom: 6px solid #3387f7; }
.cont2-body .tc-right .st{	font-size: 0.367rem;}
.cont2-body .tc-right .st2{	font-size: 0.267rem; margin-top: 0.1rem;	color: #666666; margin-bottom: 0.333rem;}
.cont2-body .tc-right .in1{ padding: 0.417rem 0 0; border-bottom: 1px solid #dee0e2}
.cont2-body .tc-right .in1 input{ width: 100%;	font-size: 0.233rem; color: #999; padding-bottom: 0.417rem;}
.cont2-body .tc-right .in2{padding: 0.417rem 0 0;display: flex; align-items: stretch; justify-content: space-between;}
.cont2-body .tc-right .in2 .code{ width: 70%; position: relative; border-bottom: 0.017rem solid #dee0e2; flex-shrink: 0; margin-right: 0.633rem;  }
.cont2-body .tc-right .in2 .code input{ width: 100%; padding-bottom: 0.417rem;}
.cont2-body .tc-right .in2 .code img{ position: absolute; right: 0;}
.cont2-body .tc-right .in2 button{ cursor: pointer; flex-grow: 1; min-width: 0; font-size: 0.233rem; color: #fff;	background-image: linear-gradient(201deg,
#3387f7 0%,
#3a5feb 100%),
linear-gradient(
        #16599c,
        #16599c);
    background-blend-mode: normal,
    normal;}
.cont2-body .tc-right .st3{ margin: 0.45rem auto 0.367rem; font-size: 0.233rem; color: #666}
.cont2-body .tc-right .st4{	font-size: 0.2rem; color: #999; line-height: 1.5}
.map{ height: 9.917rem;	border: solid 1px #d4d4d4;}

.comm-inq2{ padding: 1.25rem 0 1.583rem; text-align: center; }
.comm-inq2 .st{	font-size: 0.5rem; font-weight: bold; text-align: center;}
.comm-inq2 .st2{	font-size: 0.267rem; margin: 0.467rem auto 0.917rem;text-align: center;	}
.comm-inq2 .iq{	background-image: linear-gradient(180deg,
#3387f7 0%,
#3a5feb 100%);	font-size: 0.433rem; color: #fff; padding: 0.25rem 2.333rem; display: inline-block; margin: 0 auto;}

.tc-about{ padding: 0.933rem 0;}
.tc-title{ text-align: center;}
.tc-title .cn{font-size: 0.5rem;}
.tc-title .desc{	font-size: 0.3rem; margin-top: 0.417rem;}

.tc-about .num-box{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 0.9rem}
.tc-about .num-box .item{	box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.05);
    border-radius: 0.133rem; background: #fff; padding: 0.5rem  0.2rem 0.6rem; width: calc((100% - 70px)/6); text-align: center; font-size: 0}
.tc-about .num-box .item p{	font-size: 0.267rem; margin-top: 0.1rem;}
.tc-about .num-box .item .scrolling-numbers{font-size: 0.833rem;	color: #0065fe; line-height: 1; display: inline-block}
.tc-about .num-box .item sub{ font-size: 0.233rem;	color: #0065fe; margin-left: 0.25rem; display: inline-block;  vertical-align: text-bottom}

/* .tc-about .ab-top{ margin: 1.167rem auto 0; display: flex; align-items: stretch; justify-content: space-between;} */
.tc-about .ab-top{ margin: 1.167rem auto 0; display: flex; align-items: center; justify-content: space-between;}
.tc-about .ab-top .tc-right{ width: 55.8%; flex-shrink: 0}
.tc-about .ab-top .tc-left{ padding-right: 0.567rem; padding-top: 0.25rem;}
.tc-about .ab-top .tc-left .st{	font-size: 0.4rem;color: #0065fe;}
.tc-about .ab-top .tc-left .desc{	font-size: 0.267rem;	color: #333333; line-height: 2; margin: 0.5rem auto 1rem; padding-right: 0.633rem;}

.ab-more{font-size: 0.267rem; padding: 0.15rem 0.417rem;	color: #3892f4; border-radius: 0.333rem; border: 0.017rem solid #3892f4; line-height:1; display: inline-block; margin-top: 1.25rem; transition: all 0.3s}
.ab-more:hover{ color: #fff; background: #0767fc; transition: all 0.3s}

.tc-pro{ padding: 1.25rem 0;	background-color: #f1f2f8;box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08);}

.pro-swiper{ margin: 0.5rem auto 0; overflow: hidden;}
.pro-swiper .swiper-slide{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.pro-swiper .item{ width: 49.1%;}
.pro-swiper .item{display: flex; align-items: stretch; justify-content: space-between;	box-shadow: 0rem 0.05rem 0.167rem 0rem rgba(0, 0, 0, 0.17); padding: 1rem 0.333rem 0.333rem 0.833rem; background: #fff;}
.pro-swiper .item .tc-right{ width: 3.017rem; flex-shrink: 0; display: flex; align-items: flex-end;}
.pro-swiper .item .tc-left{ flex-grow: 1; min-width: 0; }
.pro-swiper .item .tc-left .st{	font-size: 0.333rem;color: #1a1a1a;}
.pro-swiper .item .tc-left .st2{	font-size: 0.267rem; color: #333; margin: 0.467rem auto 0;}
.pro-swiper .item .tc-left .lmo{	border-radius: 0.333rem;border: solid 0.017rem #3892f4;	font-size: 0.233rem; letter-spacing: 0.017rem;  padding: 0.15rem 0.5rem; display: inline-block; margin: 0.967rem auto 0.75rem 0;}
.pro-swiper .item:hover .lmo{ background: #3892f4; color: #fff;}
.pro-swiper .item:nth-child(2n)~.item{ margin-top: 0.5rem;}

.tc-xy{ padding: 1.25rem 0 1.917rem;}
.tc-xy .xy-body{ margin: 0.917rem auto 0; display: flex; align-items: stretch; justify-content: space-between;}
.tc-xy .xy-body .tc-left{ width: 28.8%; flex-shrink: 0;}
.tc-xy .xy-body .tc-left .up{ background: url("../images/xylt-bg.png") center no-repeat; background-size: cover; padding: 0.667rem 1.133rem 0.5rem 1.133rem; color: #fff;}
.tc-xy .xy-body .tc-left .up .st{	font-size: 0.367rem; margin-top: 0.233rem;}
.tc-xy .xy-body .tc-left .up .st2{	font-size: 0.233rem;}
.tc-xy .xy-body .tc-left .up .st::after{ content: "";	width: 36px;
    height: 4px;
    background-color: #ffffff; display: block; margin: 0.167rem auto 0.167rem 0;}
.tc-xy .xy-body .tc-left .up .con{ display: flex; flex-wrap: wrap; justify-content: flex-start;  margin: 0.4rem auto 0 0; width: 3rem;}
.tc-xy .xy-body .tc-left .up .con p{ width: 50%; font-size: 0.267rem;}
.tc-xy .xy-body .tc-left .up .con p:nth-child(2n)~p{ margin-top: 0.15rem;}

.tc-xy .xy-body .tc-right{ flex-grow: 1; min-width: 0; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap; margin-left: 0.367rem;}
.tc-xy .xy-body .tc-left .down{	background-image: linear-gradient(
        #0b6afc,
        #0b6afc),
linear-gradient(
        #ffffff,
        #ffffff);
    background-blend-mode: normal,
    normal; padding: 0.35rem 1.5rem; margin-top: 8px; color: #fff; text-align: right;}
.tc-xy .xy-body .tc-left .down .st { font-weight: bold;	font-size: 0.3rem; margin-bottom: 0.333rem;}
.tc-xy .xy-body .tc-left .iq1{	font-size: 0.233rem; display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.25rem; position: relative; }
.tc-xy .xy-body .tc-left .iq1 .yzz{ position: absolute; right: 0; border-radius: 6px; height: 100%; width: initial}
.tc-xy .xy-body .tc-left .iq1 label{ width: 43%; display: flex; align-items: center; justify-content: space-between;}
.tc-xy .xy-body .tc-left .iq1 label span{ color: red}
.tc-xy .xy-body .tc-left .iq1 input{ height: 0.417rem; background: #fff; color: #333; border-radius: 3px;}
.tc-xy .xy-body .tc-left button{ font-size: 12px; padding: 6px 20px; color: #fff; background: #409eff; border-radius: 6px; display: inline-block; cursor: pointer}
.tc-xy .xy-body .tc-right .item{	background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px
    rgba(0, 0, 0, 0.2); width: calc((100% - 40px)/3); margin-right: 20px;
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;display: flex;flex-direction: column; justify-content: space-between; align-items: flex-start;
}
.tc-xy .xy-body .tc-right .item:nth-child(3n){ margin-right: 0}
.tc-xy .xy-body .tc-right .item:nth-child(3n)~.item{ margin-top: 20px;}
.tc-xy .xy-body .tc-right .item .st{	font-size: 0.333rem; color: #000; margin-bottom: 0.633rem;}
.tc-xy .xy-body .tc-right .item .desc{	font-size: 0.267rem; color: #333; line-height: 1.6; margin-bottom: 0.4rem; flex-grow: 1; min-width: 0}

.tc-zk{	background-color: #f1f2f8; padding: 1.533rem 0 1rem;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08);
}
.zk-body{ display: flex; align-items: center; justify-content: space-around; margin: 1.833rem auto 0;}
.zk-body .tc-right{ width: 45.65%; flex-shrink: 0;}
.zk-body .tc-left .st{	font-size: 0.333rem; line-height: 1.6; margin: 0.75rem auto 0.5rem; letter-spacing: 1;}
.zk-body .tc-left .desc{ 	font-size: 0.4rem; line-height: 2; letter-spacing: 1px;}
.zk-body .tc-left .zk-more{color: #3892f4; line-height: 1; display: inline-block; margin-top: 0.667rem;}
.zk-body .tc-left .zk-more:hover{color: #3892f4;}

.tc-cj{ padding: 1.5rem 0 1rem;}
.cj-cate{ margin: 1.4rem auto 0.617rem; display: flex; align-items: center; justify-content:center;}
.cj-cate .item{	font-size: 0.3rem; line-height: 1; margin: 0 1rem;}
.cj-cate .item::after{ display: block; margin: 0.1rem auto 0; width: 100%; content:""; height: 2px; }
.cj-cate .item.active{	color: #0767fc;}
.cj-cate .item.active::after{background: #73a9fd;}
.cj-body{ position: relative;}
.tc-cj .jjf3-box{ padding: 0.7rem 0 0.333rem;}
.tc-cj .cj-swiper{ overflow: hidden;}
.tc-cj .cj-swiper .swiper-slide{ position: relative;}
.tc-cj .cj-swiper .swiper-slide .flx{ position: absolute; left: 0; top: 0; width: 100%; height: 100%; padding: 1.083rem 2rem; color: #fff;}
.tc-cj .cj-swiper .swiper-slide .flx .st1{	font-size: 0.267rem; font-weight: bold;}
.tc-cj .cj-swiper .swiper-slide .flx .st2{	font-size: 0.267rem; margin: 0.367rem auto 0.7rem;}
.tc-cj .cj-swiper .swiper-slide .flx .cont{font-size: 0.233rem; padding: 0.2rem 0.5rem; line-height: 1;	border: solid 1px #ffffff; display: inline-block;}
.tc-cj .cj-swiper .swiper-slide .flx .left{ width: 43%;}
.tc-cj .cj-swiper .swiper-slide .flx .xt{ height: 1px; width: 100%; background: #fff;
margin: 0.6rem auto;}
.tc-cj .cj-swiper .swiper-slide .flx .list{ display: flex; align-items: stretch; justify-content: flex-start; padding-right: 0.8rem;}
.tc-cj .cj-swiper .swiper-slide .flx .list .li{	font-size: 0.233rem; line-height: 1; padding: 0.167rem 0.5rem;border-radius: 0.333rem;
    border: solid 1px #ffffff; text-align: center}
.tc-cj .cj-swiper .swiper-slide .flx .list .li:nth-child(4n)~.li{ margin-top: 0.333rem;}
.tc-cj .cj-swiper .swiper-slide .flx .cont:hover{ color: #333; background: #fff;}
.tc-cj .cj-swiper .swiper-slide .flx .list .li:hover{ background: #fff; color: #333;}

.tc-case{
    background-color: #f1f2f8;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.08);
    padding: 1.583rem 0 1.917rem;
}
.case-swiper{ margin: 1.467rem auto 0; overflow: hidden;}
.case-swiper .swiper-slide{ width: 30%;	box-shadow: 0px 2px 7px 0px
rgba(52, 52, 52, 0.11); background: #fff;
    border: solid 1px #dedede;}
.case-swiper .swiper-slide .title{ padding: 0.25rem 0.867rem 0; text-align: center; font-size: 0.4rem}
.case-swiper .swiper-slide .desc{	font-size: 0.267rem; padding: 0.25rem 0.867rem 1.2rem; line-height: 1.8; height: 4.05rem;}
.case-swiper .swiper-slide .c-more{	font-size: 0.233rem;color: #0767fc; line-height: 1; padding: 0.167rem 0.5rem;	border-radius: 0.333rem;
    border: solid 1px #0767fc; display: inline-block; margin: 0 auto 1.25rem 0.867rem;}
.case-swiper .swiper-slide:hover{	background-image: linear-gradient(0deg,
#0767fc 0%,
#9ab1f2 100%);}
.case-swiper .swiper-slide:hover .c-more{ color: #fff; border-color: #fff;}
.case-swiper .swiper-slide:hover .desc,.case-swiper .swiper-slide:hover .title{ color: #fff;}
.tc-news{ padding: 1.417rem 0 1.833rem; }
.tc-ntop{ margin: 1.583rem auto 0; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eaeaea; }
.tc-ntop .news-cate{ display: flex; align-items: center; justify-content: flex-start; margin-bottom: -1px;}
.tc-ntop .news-cate .item{font-size: 0.3rem; margin-right: 0.667rem; padding: 0 0.333rem;}
.tc-ntop .news-cate .item{ padding-bottom: 0.417rem; border-bottom: 2px solid transparent;}
.tc-ntop .news-cate .item.active{ color: #0767fc; border-color: #0767fc}
.tc-ntop .n-more{ margin-bottom: 0.4rem; color: #0767fc}
.news-swiper{ margin: 1.25rem auto 0; overflow: hidden; padding: 0.15rem 0.15rem 0.15rem 0}
.news-swiper .swiper-slide{ display: flex; align-items: stretch; justify-content: space-between;}
.news-swiper .swiper-slide .tc-left{ flex-grow: 1; min-width: 0;}
.news-swiper .swiper-slide .tc-right{background-color: #ffffff;
    box-shadow: 0rem 0rem 0.133rem 0rem rgba(0, 0, 0, 0.15); padding: 0.5rem 0.667rem 0.4rem; width: 38%; margin-left: 1.583rem; flex-shrink: 0;}
.news-swiper .swiper-slide .tc-left .item{ display: flex; align-items: center; justify-content: flex-start;}
.news-swiper .swiper-slide .tc-left .item .mxw-image{ width: 26.5%; flex-shrink: 0; margin-right: 0.5rem;}
.news-swiper .swiper-slide .tc-left .item .con{ flex-grow: 1; min-width: 0;}
.news-swiper .swiper-slide .tc-left .item .con .st{	font-size: 0.333rem; color: #333;}
.news-swiper .swiper-slide .tc-left .item .con .desc{ font-size: 0.233rem; color: #666; margin: 0.3rem auto 0.267rem; line-height: 1.6 }
.news-swiper .swiper-slide .tc-left .item .con .dat{ display: flex; align-items: center; justify-content: space-between;	font-size: 0.267rem; color: #555;}
.news-swiper .swiper-slide .tc-left .item .con .dat .mo{ font-size: 0.233rem;}
.news-swiper .swiper-slide .tc-left .item:nth-child(1)~.item{ margin-top: 0.833rem;}
.news-swiper .swiper-slide .tc-left .item:hover .st{ color: #0767fc;}
.news-swiper .swiper-slide .tc-right .st{	font-size: 0.333rem;}
.news-swiper .swiper-slide .tc-right .st::after{width: 114px;
    height: 2px;
    background-color: #022842; margin: 0.1rem auto 0.267rem 0;}
.news-swiper .swiper-slide .tc-right .desc{	font-size: 0.267rem; line-height: 2; color: #555; margin: 0.25rem auto 0.333rem;}
.news-swiper .swiper-slide .tc-right .dat{ display: flex; align-items: center; justify-content: space-between;	font-size: 0.267rem; color: #555;padding-top: 0.3rem;border-top: 1px solid rgba(85, 85, 85, 0.4);  margin-top: 0.3rem;}
.news-swiper .swiper-slide .tc-right .dat .mo{ font-size: 0.233rem;  padding-top: 0.2rem }

.tc-hz{ padding: 1.917rem 0 1rem;  background: url("../images/news-bg.jpg") center no-repeat;background-size: cover;}
.tc-hz>.mxw-box{ width: 100%; max-width: 100%}
.tc-hz .hz-body{ margin: 1.083rem auto 0;}
.tc-hz .comm-inq{ margin-top: 0.967rem;}

footer{	background-image: linear-gradient(180deg,
rgba(52, 132, 253, 0.39) 0%,
rgba(0, 101, 254, 0.39) 100%),
linear-gradient(
        #04408d,
        #04408d);
    background-blend-mode: normal,
    normal;}

.tc-link{border-bottom: solid 1px rgba(228, 228, 228, 0.2);}

footer .con{ margin: 0.45rem auto 0.933rem; color: #fff; display: flex; align-items: stretch; justify-content: space-between;}
/* footer .con .db1{ width: 29%; flex-shrink: 0; padding-right: 1.3rem;} */
footer .con .db1{ width: 26%; flex-shrink: 0; padding-right: 0.1rem;}
footer .con .db-menu{ flex-grow:1; min-width: 0; display: flex; align-items: flex-start; justify-content: space-between;}
footer .con .db1 .title{ line-height: 1;	font-size: 0.5rem;	color: #fefefe; font-weight: bold;}
footer .con .db1 .title span{	font-size: 0.367rem;color: rgba(254, 254, 254, 0.4);font-family: Impact,sans-serif; margin-left: 0.167rem; font-weight: normal }

.tel-t{ margin: 0.417rem auto 0;font-size: 0.233rem;	color: rgba(254, 254, 254, 0.73);}
.tel-t img{ height: 0.567rem; margin-right: 0.233rem;}
.tel-num{	font-size: 0.467rem; font-weight: bold;	color: #fefefe; letter-spacing: 1px; margin: 0.25rem auto 0.333rem; line-height: 1;}
footer .con .db1 .info{	font-size: 0.267rem; 	color: rgba(254, 254, 254, 0.7); line-height: 1.8}
/* footer .con .db2{ width: 15%; flex-shrink: 0; padding-left: 1.583rem;	border-left: solid 1px rgba(228, 228, 228, 0.2); flex-shrink: 0} */
footer .con .db2{ width: 20%; flex-shrink: 0; padding-left: 1rem;	border-left: solid 1px rgba(228, 228, 228, 0.2); flex-shrink: 0}
footer .con .db2 .ewm p{	color: #fefefe; font-size: 0.267rem; margin-top: 0.25rem;}
footer .con .db-menu .list{ flex-direction: column; align-items: flex-start; justify-content: flex-start;	font-size: 0.233rem; color: rgba(255, 255, 255, 0.8); flex-wrap: wrap; display: flex; line-height: 2.2}
footer .con .db-menu .item .st{ margin-bottom: 0.2rem;}
footer .con .db1 {border-right: solid 1px rgba(228, 228, 228, 0.2);}
footer .con .db-menu{ padding: 0 1.25rem;}
/* footer .con .db2 .list{ margin: 0.417rem auto 0; display: flex; align-items: stretch; justify-content: flex-start;} */
footer .con .db2 .list{ margin: 0.417rem auto 0; display: flex; align-items: center; justify-content: center;}
footer .con .db2 .list .item{ margin-right: 0.267rem; width: 0.5rem; display: block}
footer .con .db2 .list .item:last-child{ margin-right: 0}

.pro-show1{ padding: 1rem 0 1.25rem;}
.pro-show1 .mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.pro-show1 .mxw-box .tc-right{ width: 40.3%; flex-shrink: 0;}
.pro-show1 .mxw-box .tc-left{ flex-grow: 1; min-width: 0; margin-right: 2.417rem;}
.pro-show1 .mxw-box .tc-left .st{	font-size: 0.4rem;}
.pro-show1 .mxw-box .tc-left .desc{	font-size: 0.267rem; line-height: 2; margin: 0.667rem auto 1.083rem;}

.ps1-more{	font-size: 0.233rem; color: #fff; padding: 0.15rem 0.417rem;	background-color: #0065fe;
    border-radius: 0.333rem;}
.pro-show2{ padding: 1rem 0 1.417rem;	background-color: #f1f2f8;}
.pro-show2 .list{ margin: 1.033rem auto 0; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.cj-body .swiper-button-next{ right: -1rem;}
.cj-body .swiper-button-prev{ left: -1rem;}
.pro-show2 .list .item{	background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px
    rgba(0, 0, 0, 0.2); width: 24.25%; margin-right: 1%; padding: 1rem 0.667rem;}
.pro-show2 .list .item:nth-child(4n){ margin-right: 0;}
.pro-show2 .list .item .st{font-size: 0.333rem; color: #000; font-weight: bold;}
.pro-show2 .list .item .desc{	font-size: 0.267rem; line-height: 2;margin-top: 0.6rem;}
.pro-show2 .list .item:nth-child(4n)~.item{ margin-top: 0.333rem;}

.pro-show3{ padding: 1rem 0 1.033rem;}
.pro-show3 .list{ margin: 0.933rem auto 0;display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.pro-show3 .list .item{ width: 32%; margin-right: 2%;	background-color: #ffffff;box-shadow: 0rem 0rem 0.167rem 0rem rgba(0, 0, 0, 0.2); padding: 0.3rem 0.75rem;}
.pro-show3 .list .item:nth-child(3n){ margin-right: 0;}
.pro-show3 .list .item:nth-child(3n)~.item{ margin-top: 0.633rem;}
.pro-show3 .list .item .st{	font-size: 0.333rem; font-weight: bold; color: #007db7; margin-bottom: 0.3rem;}
.pro-show3 .list .item .st img{ height: 0.85rem; margin-right: 0.25rem;}
.pro-show3 .list .item .desc{	font-size: 0.267rem;	color: #666666; line-height: 2; margin: 0.267rem auto 0;}
.pro-show3 .down{ margin: 1.2rem auto 0; text-align: center;}
.pro-show3 .down .txt1{	font-size: 0.5rem;}
.pro-show3 .down .txt2{		font-size: 0.3rem; margin-top: 0.433rem;}
.pro-show3 .down .img{ margin-top: 1.033rem;}

.pro-show4{ padding: 0.917rem 0 1.533rem;	background-color: #f1f2f8;}
.pro-show4 .img{ text-align: center; margin: 0.933rem auto 0;}
.pro-show5{ padding: 1rem 0 1.5rem;}

.psh5-cate{ display: flex; align-items: center; justify-content: center;margin: 0.583rem auto 1rem;}
.psh5-cate .item{ font-size: 0.3rem; margin-right: 0.333rem; padding-right: 0.333rem; position: relative; }
.psh5-cate .item::after{ position: absolute; right: 0; content: "|";  display: block; top: 0;}
.psh5-swiper{ overflow: hidden;}
.psh5-cate .item:last-child{ margin: 0; padding: 0;}
.psh5-cate .item:last-child::after{ display: none;}

.psh5-swiper .swiper-slide{ display: flex; align-items: stretch; justify-content: space-between; }
.psh5-swiper .swiper-slide .tc-right{ width: 58.5%; flex-shrink: 0;}
.psh5-swiper .swiper-slide .tc-left{ padding-right: 1.667rem;flex-grow: 1; min-width: 0;}
.psh5-swiper .swiper-slide .tc-left .desc{font-size: 0.3rem; line-height: 2;}
.psh5-swiper .swiper-slide .tc-left .desc2{ margin: 0.5rem auto 0;	font-size: 0.267rem;	color: #555555; line-height: 2.2;}

.pro-show6{ padding: 1rem 0 1.7rem;	background-color: #f1f2f8;}
.pro-show6 .list{ margin: 0.967rem auto; display: flex; align-items: stretch; justify-content: flex-start;}
.pro-show6 .list .item{ width: 31%;	background-color: #ffffff;padding: 0.467rem 0.833rem; margin-right: 3.5%; display: flex; flex-direction: column; align-items: flex-start;
    box-shadow: 0px 2px 7px 0px
    rgba(52, 52, 52, 0.11);
    border: solid 1px #dedede; }
.pro-show6 .list .item:last-child{ margin-right: 0;}
.pro-show6 .list .item .desc{ margin: 0.5rem auto 0.767rem; color: #555; font-size: 0.267rem; line-height: 1.8; flex-grow: 1; min-width: 0}
.pro-show6 .list .item .mo{ 	color: #0767fc; font-size: 0.233rem; padding: 0.15rem 0.333rem;	border-radius: 0.333rem;
    border: solid 1px #0767fc; transition:  all 0.3s;}
.pro-show6 .list .item:hover .mo{ color: #fff; background: #0767fc}
.pro-show6 .list2{ display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap; }
.pro-show6 .list2 .item{width: 16%; margin-right: 0.8%;	background-color: #ffffff;
    box-shadow: 0px 2px 7px 0px
    rgba(52, 52, 52, 0.11);
    border: solid 1px #dedede;}
.pro-show6 .list2 .item:nth-child(6n){ margin-right: 0;}
.pro-show6 .list2 .item:nth-child(6n)~.item{ margin-top: 0.55rem;}

.ps-show{ padding: 1rem 0;}





.buju-svg{ position: relative;}
.buju-svg svg{
    position: absolute; z-index: 1;
width: 100%; height: 100%;
    margin: 0 auto;
    top: 0.2rem;
    right: -0.417rem
}
.bg3{ width:100%;  position: absolute;
    left: 0;
    top: 0;}
.buju-svg path{stroke-width: 1px; fill-rule: evenodd;}
.buju-svg .solid path{stroke-dasharray: 1000;stroke-dashoffset: 1000;animation: dash 5s 0.3s linear both infinite;}
@keyframes dash{
    from{stroke-dashoffset: 1000;}
    to{stroke-dashoffset: 0;}
}
.buju-svg  path{stroke: #0467fd;stroke-dasharray: 1000;stroke-dashoffset: 1000;animation: dash2 5s 0.3s linear both infinite;}
@keyframes dash2{
    from{stroke-dashoffset: 1000;}
    to{stroke-dashoffset: 0;}
}












    /* ==================== 内页 - 新闻列表2 start ==================== */
.ny-news .item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    transition: all 0.4s;
    border: 0.0167rem solid #dedede;
    box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.14);
    margin-bottom: 0.6667rem;
}
.ny-news .item:hover {
    box-shadow: 0rem 0rem 0.1667rem 0rem rgba(0, 0, 0, 0.14);
}
.ny-news .item:hover .title {
    color: #0065fe;
}
.ny-news .item .image {
    flex-shrink: 0;
    width: 4.6667rem;
    margin-right: 0.5rem;
}
.ny-news .item .info {
    min-width: 0;
    flex-grow: 1;
}
.ny-news .item .head {
    display: flex;
    align-items: center;
    color: #888;
    padding-bottom: 0.1667rem;
    border-bottom: 0.0167rem solid #888;
    margin-bottom: 0.3333rem;
}
.ny-news .item .title {
    flex-grow: 1;
    font-size: 0.3rem;
    line-height: 1.2;
    color:#333
}
.ny-news .item .time {
    font-size: 0.233rem;
    line-height: 1.2;
    flex-shrink: 0;
    color: #666;
    margin-bottom: 0.15rem;
}
.ny-news .item .desc {
    font-size: 0.2667rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.ny-news .item .more {
    width: 2.0833rem;
    height: 0.6rem;
    line-height: 0.6rem;
    background-color: #fff;
    border: solid 0.0167rem #dedede;
    display: block;
    text-align: center;
    font-size: 0.2rem;
    color: #888888;
}
@media screen and (max-width: 1200px) {
    .ny-news .item {
        padding: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .ny-news .item .image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .ny-news .item .info {
        width: 100%;
    }
    .ny-news .item .head {
        margin-bottom: 10px;
    }
    .ny-news .item .title {
        font-size: 16px;
    }
    .ny-news .item .time {
        font-size: 12px;
    }
    .ny-news .item .desc {
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 1.8em;
        height: 3.6em;
        margin-bottom: 10px;
        overflow: hidden;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: inherit;
    }
    .ny-news .item .more {
        width: 100%;
        padding: 8px 20px;
        font-size: 12px;
        height: auto;
        line-height: inherit;
    }
}
/* ==================== 内页 - 新闻列表2 end ==================== */


    /* ==================== 产品详情页 start ==================== */
.ny-product-desc {
    overflow: hidden;
}
.ny-product-desc .product-image {
    width: 44%;
    margin-right: 3%;
    flex-shrink: 0;
    position: relative;
    z-index: 9;
}
.ny-product-desc .product-image img {
    width: 100%;
}
.ny-product-desc .product-desc {
    width: 53%;
}
.ny-product-desc .product-desc .title {
    font-size: 0.4667rem;
    padding-bottom: 0.3333rem;
    border-bottom: 0.0167rem solid #ddd;
    margin-bottom: 0.3333rem;
    font-weight: bold;
    color: #0065fe;
}
.ny-product-desc .product-desc .desc {
    word-break: break-all;
    font-size: 0.3rem;
    color: #666;
    line-height: 1.8;
}
.ny-product-desc .bottom {
    margin-top: 0.6667rem;
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.easyzoom-flyout img {
    max-width: inherit!important;
    width: auto!important;
}
@media screen and (max-width: 1200px) {
    .ny-product-desc {
        padding: 0;
    }
    .ny-product-desc .product-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        pointer-events: none;
    }
    .ny-product-desc .product-desc {
        width: 100%;
    }
    .ny-product-desc .product-desc .title {
        font-size: 18px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .ny-product-desc .top {
        flex-flow: column;
    }
    .ny-product-desc .product-desc .desc {
        font-size: 14px;
    }
    .ny-product-desc .bottom {
        margin-top: 15px;
    }
}
/* ==================== 产品详情页 end ==================== */
/* ==================== 内页 - 产品详情 start ==================== */
.ny-product-desc .top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ny-product-desc .big-swiper {
    border: 1px solid #ddd;
}
.ny-product-desc .ny-product-image {
    width: 38%;
    flex-shrink: 0;
    margin-right: 5%;
}



.ny-product-desc .right {
    width: 65%;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.ny-product-desc .info {
    flex-grow: 1;
    width: 100%;

}
.ny-product-desc .info .head {
    padding-bottom: 0.1667rem;
    width: 100%;
    border-bottom: 0.0167rem solid #dcdcdc;
    margin-bottom: 0.3333rem;
}
.ny-product-desc .info .head .text1 {
    font-size: 0.5667rem;
    font-weight: bold;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}
.ny-product-desc .info .head .text2 {
    font-size: 0.2667rem;
    color: #606060;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .detail {
    font-size: 0.2667rem;
    line-height: 1.8;
    text-align: justify;
}
.ny-product-desc .info .mxw-more {
    margin-top: 1rem;
    border-radius: 1.6667rem;
    margin-left: 0;
}
.ny-product-desc .small-image {
    width: 100%;
    max-width: 10rem;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.ny-product-desc .small-image .swiper-slide {
    max-width: 2rem;
}
.ny-product-desc .small-image .mxw-image {
    cursor: pointer;
    border: 3px solid #eee;
    border-radius: 0.0833rem;

    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #0065fe;
}
.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 #0065fe;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #0065fe;
}
.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: 1600px;
    }
    .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 ==================== */

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

}
.ny-news-desc > .mxw-box {
    padding-top: 0;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;

    font-size: 15px;
}
.ny-news-desc .pg{ font-size: 0.267rem; line-height: 1.8; margin-top: 1rem; }
.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 {
        font-size: 14px;
        line-height: 1.5;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */


body{ overflow-x: hidden}



.ny-news .nw{ margin: 1rem auto 25px}






.tc-link{  padding-bottom: 0.517rem; padding-top: 0.533rem; display: flex; align-items: center; justify-content: space-between;	}

.tc-link .title{ flex-shrink: 0;font-size: 0.233rem; color:#fefefe; }

.tc-link .list{ flex-grow: 1; min-width: 0;}
.tc-link .list a{ font-size: 0.233rem; color: #fefefe;  margin-right: 0.3rem;}
.tc-link .list a:hover{ color:#fff; }

.case-swiper .st{  text-align: right; font-size: 0.233rem; margin-bottom: 0.5rem}
.case-swiper .st a{
    color: #0767fc;
font-size: 0.3rem;

}
.case-swiper .st a:hover{  color: #0767fc;}



.mxw-copy{ border-top: 1px solid rgba(250, 251, 255, 0.1)}
.mxw-copy .mxw-box{ padding: 0.333rem 0; 	font-size: 0.233rem; color: #fff;  text-align: center; opacity: 0.8; display: flex; justify-content: space-between;}
.mxw-copy .mxw-box a{font-size: 0.233rem; color: #fff; }
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; color: #fff;}


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

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


header  form {

    width: 3.3333rem;
    display: flex;
    align-items: stretch;

    transition: all 0.4s;
    padding: 0 15px;.

}
header  input {
    flex-grow: 1;
    min-width: 0;
    background-color: #fff;
    border: 0.0167rem solid #eee;
    font-size: 0.2rem;
    padding: 0 0.1667rem;
}
header  button {
    width: 0.5rem;
    flex-shrink: 0;
    padding: 0.1333rem;
    background-color: #0066CC;cursor: pointer;
}
header  button img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}


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






}

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






/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll.s1{ padding-left: 1.333rem;}
.mxw-scroll.s2{ padding-left: 1.667rem}
.mxw-scroll.s3{ padding-left: 1.5rem}
.mxw-scroll {
    overflow: hidden;
    padding: 0 10px 15px;
}
.mxw-scroll .scroll-wrap {
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.mxw-scroll .scroll-item {
    flex-shrink: 0; box-shadow:  0 6px 9px 3px #f3f5fa; overflow: hidden;
    padding:0.05rem 0.25rem 0.1rem; border-radius: 0.583rem;
    margin: 0 0.2rem;
}
.mxw-scroll .scroll-item img{ height: 1.1rem;}
@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%;}



    body{ padding-bottom: 0; margin-bottom: 0}
    .tc-about{ padding: 45px 0;}
    .tc-title .cn{ font-size: 20px;}
    .tc-title .desc{ font-size: 16px; margin-top: 10px;}
    .tc-about .num-box{ flex-wrap: wrap;}
    .tc-about .num-box .item{ width: 31.8%; padding: 20px 10px; }
    .tc-about .num-box .item .scrolling-numbers{ font-size: 24px;}
    .tc-about .num-box .item sub{ font-size: 14px; margin-left: 3px; vertical-align: bottom}
    .tc-about .num-box .item p{ font-size: 14px}
    .tc-about .num-box .item:nth-child(3n)~.item{ margin-top: 10px;}
    .tc-about .ab-top{ margin: 30px auto 0; flex-wrap: wrap;}
    .tc-about .ab-top .tc-left{width: 100%; margin: 0 auto 0; padding: 0}
    .tc-about .ab-top .tc-left .st{ font-size: 18px;  }
    .tc-about .ab-top .tc-left .desc{ font-size: 14px; margin: 15px auto 20px; padding: 0}

    .ab-more{ font-size: 14px; margin: 30px auto 0; padding: 8px 20px;}
    .tc-about .ab-top .tc-right{ width: 100%; margin: 30px auto 0;}
    .tc-pro{ padding: 45px 0;}
    .pro-cate{ margin: 30px auto 15px; }
    .pro-cate .item{ font-size: 14px; margin: 0 20px;}
    .pro-cate .item::after{ height: 1px; margin-top: 6px;}
    .pro-swiper{ margin: 25px auto 0;}
    .pro-swiper .item{ width: 100%; padding: 20px 15px;   box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.17);}
    .pro-swiper .item .tc-left .st{ font-size: 16px;}
    .pro-swiper .item .tc-right{ width: 25%; text-align: right;  justify-content: flex-end}
    .pro-swiper .item .tc-left .st2{ font-size: 14px; margin-top: 15px;}
    .pro-swiper .item .tc-left .lmo{ margin: 15px auto 20px; font-size: 14px; padding: 6px 20px;}
    .pro-swiper .item .tc-right img{ width: 100%;}
    .pro-swiper .item:nth-child(1)~.item{ margin-top: 15px;}

    .tc-xy{ padding: 45px 0;}
    .tc-xy .xy-body{ margin: 25px auto 0; flex-wrap: wrap;}
    .tc-xy .xy-body .tc-left{ width: 100%;}
    .tc-xy .xy-body .tc-left .up{ padding: 20px;}
    .tc-xy .xy-body .tc-left .up .st{ margin-top: 15px; font-size: 18px;}
    .tc-xy .xy-body .tc-left .up .st::after{ height: 2px; margin: 10px auto 10px 0;}
    .tc-xy .xy-body .tc-left .up .st2{ font-size: 14px;}
    .tc-xy .xy-body .tc-left .up .con p{ font-size: 14px;}

    .tc-xy .xy-body .tc-left .down{ padding: 30px 20px;}
    .tc-xy .xy-body .tc-left .down .st{ font-size: 16px; text-align: left;}
    .tc-xy .xy-body .tc-left .iq1{ font-size: 14px;}
    .tc-xy .xy-body .tc-left .iq1 label{ width: 100px; flex-shrink: 0;}
    .tc-xy .xy-body .tc-left .iq1 input{ height: 24px; flex-grow: 1; min-width: 0}

    .tc-xy .xy-body .tc-right{ margin: 20px auto 0; justify-content: space-between}
    .tc-xy .xy-body .tc-right .item{ width: 48.5%; margin-right: initial; padding: 20px 15px;}
    .tc-xy .xy-body .tc-right .item:nth-child(2n){ margin-right: 0}
    .tc-xy .xy-body .tc-right .item:nth-child(2n)~.item{ margin-top: 15px;}
    .tc-xy .xy-body .tc-right .item .st{ font-size: 16px; margin-bottom: 15px;}
    .tc-xy .xy-body .tc-right .item .desc{ font-size: 14px; margin-bottom: 20px;}
    .tc-xy .xy-body .tc-right .item .icon img{ max-height: 36px;}

    .tc-zk{ padding: 45px 0;}
    .zk-body{ margin: 25px auto 0; flex-wrap: wrap;}
    .zk-body .tc-right{ width: 100%}
    .zk-body .tc-left .st{ font-size: 16px; margin: 10px auto 15px;}
    .zk-body .tc-left .desc{ font-size: 12px; line-height: 1.8}
    .zk-body .tc-left .zk-more{ font-size: 14px; padding: 8px 20px; margin: 20px auto 35px;}

    .tc-cj{ padding: 45px 0}
    .cj-cate{ margin: 20px auto 10px; justify-content: space-between; flex-wrap: wrap;}
    .cj-cate .item{ font-size: 14px; margin: initial; width: 48.5%;}
    .cj-cate .item:nth-child(2)~.item{ margin-top: 15px}

    .tc-cj .cj-swiper .swiper-slide .flx{ position: initial; color: #333;}
    .tc-cj .swiper-button-next, .tc-cj  .swiper-button-prev{ display: none}
    .tc-cj .cj-swiper .swiper-slide .flx{ padding: 20px 10px; flex-wrap: wrap; justify-content: space-between;}
    .tc-cj .cj-swiper .swiper-slide .flx .left{ width: 100%;}
    .tc-cj .cj-swiper .swiper-slide .flx .st1{ font-size: 18px;}
    .tc-cj .cj-swiper .swiper-slide .flx .st2{ font-size: 16px; margin: 10px auto 15px;}
    .tc-cj .cj-swiper .swiper-slide .flx .cont{ font-size: 14px; border-color: #333; padding: 9px 25px}
    .tc-cj .cj-swiper .swiper-slide .flx .xt{ margin: 15px auto; background-color: #666}
    .tc-cj .cj-swiper .swiper-slide .flx .list{ padding-right: 0}
    .tc-cj .cj-swiper .swiper-slide .flx .list .li{ font-size: 14px; border-color: #333;}
    .tc-cj .jjf3-box{ padding: 0 0 0;}
    .tc-cj .jjf3-box .mxw-box{ flex-wrap: wrap;}
    .jjf3-box .list .item{ width: 33%; display: flex;}
    .jjf3-box .list .item .icon img{ width: 24px; height: auto; margin-right: 10px;}
    .jjf3-box .list .item .con .cn{ font-size: 16px;}
    .jjf3-box .list .item .con .en{ font-size: 14px;}
    .jjf3-box .list .item:nth-child(3n)~.item{ margin-top: 15px;}

    .tc-case{ padding: 45px 0}
    .case-swiper{ margin: 30px auto 0;}
    .case-swiper .swiper-slide .desc{ font-size: 14px; padding: 15px; height: auto;}
    .case-swiper .swiper-slide .c-more{ font-size: 14px; margin-left: 15px; margin-bottom: 30px; padding: 6px 15px;}
    .tc-news{ padding: 45px 0;}
    .tc-ntop{ margin: 20px auto 0; flex-wrap: wrap;}
    .tc-ntop .news-cate .item{ font-size: 15px;
        padding: 0 0 5px;
        margin: 0 15px 0 0;
    }
    .tc-ntop .n-more{ font-size: 12px; margin-bottom: 0; display: none}
    .news-swiper{ margin: 10px auto 0;}
    .news-swiper .swiper-slide{ flex-wrap: wrap;}
    .news-swiper .swiper-slide .tc-left .item .mxw-image{ width: 40%; margin-right: 10px;}
    .news-swiper .swiper-slide .tc-left .item .con .st{ font-size: 16px;}
    .news-swiper .swiper-slide .tc-left .item .con .desc{ font-size: 12px; margin: 5px auto 15px; height: 38px;}
    .news-swiper .swiper-slide .tc-left .item .con .dat{ font-size: 12px;}
    .news-swiper .swiper-slide .tc-left .item:nth-child(1)~.item{ margin-top: 15px;}
    .news-swiper .swiper-slide .tc-right{margin:20px auto 0; width: 100%; padding: 20px; }
    .news-swiper .swiper-slide .tc-right .st{font-size: 16px;}
    .news-swiper .swiper-slide .tc-right .desc{ font-size: 14px; margin: 5px auto 10px; line-height: 1.6}
    .news-swiper .swiper-slide .tc-right .dat{ font-size: 12px; margin: 10px auto 0; padding-top: 10px;}
    .tc-hz{ padding-top:40px}
    .tc-hz .hz-body{ margin: 20px auto 0;}
    .tc-hz .comm-inq{ margin: 20px auto 0;}
    .comm-inq .st{ font-size: 16px;}
    .comm-inq .inq{ font-size: 14px; margin: 20px auto 0; padding: 10px 25px; }

    footer .con .db-menu{ display: none;}
    .tc-link{ padding: 35px 0 20px; font-size: 14px;}
    footer .con{ flex-wrap: wrap; margin: 25px auto;}
    footer .con .db1{ width: 100%; padding-right: 0}
    footer .con .db1 .title{ font-size: 24px;}
    footer .con .db1 .title .en{font-size: 16px;}
    .tel-t{ font-size: 14px; margin-top: 20px;}
    .tel-t img{ height: 28px; margin-right: 15px;}
    footer .con .db2{ width: 100%;}
    footer .con .db1 .info{ font-size: 14px;}
    .tel-num{ font-size: 24px; margin: 20px auto;}
    footer .con .db2{ padding-left: 0; margin-top: 25px;}
    .mxw-copy .mxw-box{flex-wrap: wrap;}
    .mxw-copy .mxw-box>div{  width: 100%; text-align: center;}
    footer .con .db2 .list .item{ margin-right: 15px;}
    footer .con .db2 .list .item img{ height: 20px;}

    .n-banner{ margin-top: 60px;}

    .pro-main{ padding: 45px 0;}
    .pro-title{ width: 95%; margin: 0 auto;}
    .pro-title .cn{ font-size: 22px;}
    .pro-title .desc{ font-size: 14px; margin: 5px auto 0; line-height: 1.6}
    .pro-main .p-list .item{ padding: 20px 15px;}
    .pro-main .p-list .item .tc-left .st{ font-size: 16px;}
    .pro-main .p-list .item .tc-left .st2{font-size: 14px; margin-top: 10px;}
    .pro-main .p-list .item .tc-left .lmo{ margin: 15px auto;}
    .pro-main .p-list .item .tc-right{ width: 25%;}
    .pro-main .p-list .item .tc-left .lmo{ font-size: 14px; padding: 6px 20px;}

    .xy-cate-bg{ padding: 20px 0;}
    .xy-cate-bg>.mxw-box .xy-title{ display: none;}
    .xy-cate-bg>.mxw-box .xy-cate{ flex-wrap: wrap; justify-content: space-between;}
    .xy-cate-bg>.mxw-box .xy-cate .item{ margin-left: initial; width: 32%; margin-right: 2%; }
    .xy-cate-bg>.mxw-box .xy-cate .item:nth-child(3n){ margin-right: 0}
    .xy-cate-bg>.mxw-box .xy-cate .item:nth-child(3n)~.item{ margin-top: 10px}

    .xy-main{ padding: 45px 0 0;}
    .xy1-list{ margin: 25px auto 0; flex-wrap: wrap;}
    .xy1-list .item{ width: 48.5%;}
    .xy1-list .item .txt{ padding: 15px 10px;}
    .xy1-list .item .txt p{ font-size: 14px;}
    .xy1-list .item .txt p img{ height: 9px;}
    .xy1-list .item:nth-child(2n)~.item{ margin-top: 20px;}
    .xy2-box{ margin: 45px auto 0; padding: 45px 0 ;}
    .xy2-list{ margin: 25px auto 0;}
    .xy2-list .item{ padding: 20px;}
    .xy2-list .item .img{ width: 30%;}
    .xy2-list .item .con{ margin-left: 10px;}
    .xy2-list .item .con .st{ font-size: 16px; margin-bottom: 5px;}
    .xy2-list .item .con .desc{ font-size: 14px;}

    .xy3-box{ padding: 45px 0;}
    .xy3-con{ margin: 25px auto 0;}
    .xy4-box{ padding: 45px 0;}
    .xy4-list{ margin: 25px auto 0; flex-wrap: wrap; text-align: center;}
    .xy4-list .item{ width: 23.5%; margin-right: 2%;}
    .xy4-list .item:nth-child(4n){ margin-right: 0}
    .xy4-list .item:nth-child(4n)~.item{ margin-top: 15px;}

    .xy5-box{ padding: 45px 0}
    .xy5-list{ margin: 25px auto 0}
    .xy5-list .item{ width: 32%; margin-right: 2%;}
    .xy5-list .item:nth-child(5n){ margin-right: 2%}
    .xy5-list .item:nth-child(3n){ margin-right: 0;}
    .xy5-list .item:nth-child(3n)~.item{ margin-top: 15px}

    .gy-list{ margin: 25px auto 45px; flex-wrap: wrap; justify-content: space-between;}
    .gy-main{ padding: 45px 0 0}
    .gy-list .item{ width: 48.5%; margin: initial}
    .gy-list .item:nth-child(2)~.item{ margin-top: 15px;}
    .gy-list .item .txt{ font-size: 14px; padding: 20px;}
    .gy2-body{ flex-wrap: wrap;}
    .gy2-body .tc-left{ width: 100%; padding: 0}
    .gy2-box{ padding: 45px 0}
    .gy2-body .tc-left .st{ font-size: 20px;}
    .gy2-body .tc-left .desc{ padding: 0; font-size: 14px; margin-top: 15px;}
    .gy2-body .tc-right{ margin-right: 0; margin-top: 20px; width: 100%;}

    .gy3-box{ padding: 45px 0}
    .gy3-body{ flex-wrap: wrap;}
    .gy3-body .tc-left{ width: 100%; margin: 0}
    .gy3-body .tc-left .st{ font-size: 20px; margin-bottom: 15px;}
    .gy3-body .tc-left .desc{ font-size: 14px; margin-bottom: 20px;}
    .gy4-box{ padding: 45px 0}
    .gy4-body{ flex-wrap: wrap;}
    .gy4-body .tc-left{ width: 100%; margin-right: 0}
    .gy4-body .tc-left .st{ font-size: 20px; margin-bottom: 10px;}
    .gy4-body .tc-left .desc{ font-size: 14px;}
    .gy4-body .tc-left .to-inq{ font-size: 16px; padding: 10px 25px; margin: 15px auto 0}

    .jjf-main{ padding-top: 45px;}
    .jjf1-box .st{ font-size: 22px; margin-bottom: 15px;}
    .jjf1-box .st2{ font-size: 14px; margin-bottom: 10px;}
    .jjf1-box .txt{ font-size: 14px; line-height: 1.8}

    .jjf1-box .list{ margin: 25px auto 45px; flex-wrap: wrap; justify-content: space-between;}
    .jjf1-box .list .item{ padding: 30px 15px; width: 48.5%;}
    .jjf1-box .list .item .icon img{ height: 35px;}
    .jjf1-box .list .item .title{ font-size: 18px; padding: 5px 0;}
    .jjf1-box .list .item .desc{ margin: 5px auto 0; font-size: 14px;}
    .jjf1-box .list .item:nth-child(2n)~.item{ margin-top: 18px;}

    .jjf-title .cn{ font-size: 22px;}
    .jjf-title .desc{ font-size: 14px; line-height: 1.8}
    .jjf2-body{ margin: 25px auto 0; flex-wrap: wrap}
    .jjf2-body .tc-left{ width: 100%;}
    .jjf2-body .tc-right{ margin-top: 20px;}
    .jjf2-body .tc-right .item{ flex-wrap: wrap;}
    .jjf2-body .tc-right .item .title{ font-size: 16px; margin-bottom: 5px;}
    .jjf2-body .tc-right .item .list{ font-size: 14px; margin-top: 10px;}
    .jjf2-body .tc-right .item:nth-child(1)~.item{ margin-top: 25px;}

    .jjf2-box{ padding: 45px 0}
    .jjf3-box{ padding: 40px 0;}
    .jjf3-box .list{ flex-wrap: wrap;}

    .case-main{ padding: 45px 0}
    .case-title{ font-size: 22px;}
    .case-main .list{ margin: 25px auto 0}
    .case-main .list .item{ padding: 15px 10px;}
    .case-main .list .item .image img{ height: auto;}
    .case-main .list .item .con{ font-size: 14px; margin: 10px auto 15px;}
    .case-main .list .item .mo{ font-size: 14px; padding: 6px 20px;}

    .jon-main{ padding: 45px 0;}
    .jon1-box .case-title{ margin-bottom: 15px;}
    .jon1-box .desc{ font-size: 16px;}
    .jon1-box .txt{ margin-top: 15px; font-size: 14px;}
    .jon1-box .list{ margin: 25px auto 0; flex-wrap: wrap; justify-content: space-between;}
    .jon1-box .list .item{ width: 19%;}
    .jon1-box .list .item .icon{ width: 80%;}
    .jon1-box .list .item p{ font-size: 14px; margin: 10px auto 0;}
    .jon2-box{ margin: 45px auto 0; padding: 45px 0;}
    .jon2-box .list{ flex-wrap: wrap; margin: 25px auto 0;    background-position-y: 0.6rem;}
    .jon2-box .list .item{ width: 19%;}
    .jon2-box .list .item .icon{ width: 80%;}
    .jon2-box .list .item p{ font-size: 14px; margin: 5px auto 0}

    .jon3-box{ margin: 45px auto;}
    .jon3-box .mxw-box{ flex-wrap: wrap;}
    .jon3-box .mxw-box .tc-left{ width: 100%;}
    .jon3-box .mxw-box .tc-right{ padding: 25px 15px;}
    .jon3-box .mxw-box .tc-right .st{ font-size: 16px; margin-bottom: 15px;}
    .jon3-box .mxw-box .tc-right .desc{ font-size: 14px; line-height: 1.6}

    .jon4-box{ padding: 45px 0}
    .jon4-box .desc{ font-size: 14px; line-height: 1.8}
    .jon4-body{  margin: 25px auto 0; flex-wrap: wrap;}
    .jon4-body .tc-left{ width: 100%;}
    .jon4-body .item label, .jon4-body .item1 label{ font-size: 14px; margin-bottom: 5px}
    .jon4-body .item input, .jon4-body .item1 input{ padding: 6px 10px; font-size: 14px; margin-bottom: 20px}
    .jon4-body .tc-right{ width: 100%;}
    .jon4-box .but{ padding: 0}
    .jon4-box .but button{ font-size: 14px; padding: 8px 20px;}

    .ab-main{ padding: 45px 0;}
    .ab-main .ab-top{ margin: 25px auto 0; flex-wrap: wrap;}
    .ab-main .ab-top .tc-left{ padding: 0; width: 100%;}
    .ab-main .ab-top .tc-left .st{ font-size: 18px;}
    .ab-main .ab-top .tc-left .desc{ padding: 0; font-size: 14px; margin: 10px auto 10px;}
    .ab-main .ab-top .tc-right{ width: 100%; margin-top: 30px;}
    .ab-main .num-box{ margin: 25px auto 0; flex-wrap: wrap;}
    .ab-main .num-box .item{ width: 32%;}
    .ab-main .num-box .item .scrolling-numbers{ font-size: 28px;}
    .ab-main .num-box .item sub{ font-size: 12px; margin-left: 5px;}
    .ab-main .num-box .item p{ font-size: 14px;}
    .ab-main .num-box .item:nth-child(3n)~.item{ margin-top: 10px;}
    .ab2-box{ margin: 45px auto 0; padding: 45px 0}
    .ab2-box .list .item{ padding: 25px 15px; }
    .ab2-box .list .item .st{ font-size: 16px; margin-bottom: 10px;}
    .ab2-box .list .item .desc{ font-size: 14px;}
    .ab3-box{ padding: 45px 0}
    .ab3-body{ margin: 25px auto;}
    .ab3-body .swiper-button-prev { left: -2.5%; font-size: 18px; top: 0.85rem}
    .ab3-body .swiper-button-next{ right: -2.5%;font-size: 18px;top: 0.85rem}
    .ab3-body .swiper-button-next:after,.ab3-body .swiper-button-prev:after{ font-size: 18px;}
    .ab3-body .fz-swiper .swiper-slide .st{ font-size: 18px;}
    .ab3-body .fz-swiper .swiper-slide .st img{ width: 20px;}
    .ab3-body .fz-swiper .swiper-slide .st2{ font-size: 16px;}
    .ab3-body .fz-swiper .swiper-slide .desc{ font-size: 14px;}
    .ab4-box{ padding: 45px 0}
    .ab4-body{ margin: 25px auto 0; flex-wrap: wrap;}
    .ab4-body .tc-left{ width: 100%; padding: 30px 20px;   border-radius: 40px 0rem 0rem 0rem; }
    .ab4-body .tc-left .st{ font-size: 18px;}
    .ab4-body .tc-left .list{ margin: 20px auto 0;}
    .ab4-body .tc-left .list .item .num{ font-size: 20px;}
    .ab4-body .tc-left .list .item p{ font-size: 14px; margin-top: 5px;}
    .ab4-body .tc-right{ width: 100%; padding: 0; margin: 25px auto 0;}
    .ab4-body .tc-right .swiper-button-prev{margin-left: 2.5%; width: 30px;}
    .ab4-body .tc-right .swiper-button-next{margin-right: 2.5%; width: 30px;}
    .ab4-swiper{ margin: 0 auto;}
    .ab4-body .con{margin: 0 20px}
    .ab-main .comm-inq{ padding: 45px 0 0;}

    .cont-main{ padding: 45px 0 ;}
    .cont-list .item{ width: 100%; padding: 0; border: 0}
    .cont-list .item .st1{ font-size: 20px;}
    .cont-list .item .st2{font-size: 15px; margin: 10px auto 15px;}
    .cont-list .item .tel{ margin: 0 auto 15px;}
    .cont-list .item .tel .icon{ width: 48px; margin-right: 10px;}
    .cont-list .item .tel .con .txt1{ font-size: 14px; margin-bottom: 10px;}
    .cont-list .item .tel .con .txt2{ font-size: 20px;margin: 0}
    .cont-list .item .info{ font-size: 14px; margin: 20px auto 0;}
    .cont-list .item .info p{margin-bottom: 10px;}
    .cont-list .item .ew{ margin-top: 20px;}
    .cont-list .item:nth-child(3n-1){ width: 100%; padding: 0; margin: 0 auto;}
    .cont-list .item:nth-child(3n){ width: 100%; padding: 0; border: 0}
    .cont-list .item:nth-child(3n)~.item{ margin-top: 0; padding: 0; border: 0}
    .cont-list .item:nth-child(1)~.item{ margin-top: 25px;}

    .con-msg{ margin: 45px auto;}
    .cont-title .cn{ font-size: 20px;}
    .cont-title .desc{ font-size: 14px; margin: 5px auto 0;}
    .cont2-body{ margin: 25px auto 0; flex-wrap: wrap;}
    .cont2-body .tc-left{ margin-right: 0; width: 100%;}
    .cont2-body .tc-right{ margin: 25px auto 0; padding: 20px 15px;}
    .cont2-body .tc-right .st{ font-size: 18px;}
    .cont2-body .tc-right .st2{ font-size: 14px;}
    .cont2-body .tc-right .in1{ padding-top: 15px;}
    .cont2-body .tc-right .in1 input{ font-size: 14px; padding-bottom: 10px;}
    .cont2-body .tc-right .in2 .code{ width: 65%; margin-right: 10px;}
    .cont2-body .tc-right .in2 button{ font-size: 14px;}
    .map{ width: 95%; margin: 0 auto; height: 450px;}
    .comm-inq2{ padding: 0 0 45px;}
    .comm-inq2 .st{ font-size: 18px;}
    .comm-inq2 .st2{ font-size: 14px; margin: 10px auto 20px; }
    .comm-inq2 .iq{ font-size: 14px; padding: 10px 30px;}
    .ny-news .nw{ margin: 30px auto 25px}
    .pro-show1{ padding: 45px 0;}
    .pro-show1 .mxw-box{ flex-wrap: wrap;}
    .pro-show1 .mxw-box .tc-left{ margin: 0;}
    .pro-show1 .mxw-box .tc-left .st{ font-size: 18px;}
    .pro-show1 .mxw-box .tc-left .desc{ font-size: 14px; margin: 10px auto 15px;}
    .ps1-more{ display: inline-block}
    .pro-show1 .mxw-box .tc-right{ margin: 30px auto 0; width: 100%;}

    .pro-show2{ padding: 45px 0;}
    .pro-show2 .list{ margin: 25px auto 0; flex-wrap: wrap;}
    .pro-show2 .list .item{ width: 100%; margin: 0; padding: 20px;}
    .pro-show2 .list .item .st{ font-size: 18px;}
    .pro-show2 .list .item .desc{ font-size: 14px; margin: 10px auto 0;}
    .pro-show2 .list .item:nth-child(1)~.item{ margin-top: 18px;}
    .pro-show3{ padding: 45px 0;}
    .pro-show3 .list{ margin: 25px auto 0;}
    .pro-show3 .list .item{ width: 100%; margin: 0; padding: 20px 15px;}
    .pro-show3 .list .item .st img{ height: 35px; margin-right: 10px;}
    .pro-show3 .list .item .st{ font-size: 16px;}
    .pro-show3 .list .item .desc{ font-size: 14px; line-height: 1.6}
    .pro-show3 .list .item:nth-child(1)~.item{ margin-top: 15px;}

    .pro-show3 .down{ margin: 45px auto 0;}
    .pro-show3 .down .txt1{ font-size: 16px;}
    .pro-show3 .down .txt2{ font-size: 12px;margin-top: 10px}
    .pro-show3 .down .img{ margin: 25px auto 0;}
    .pro-show4{ padding: 45px 0;}
    .pro-show4 .img{ margin-top: 20px;}

    .pro-show5{ padding: 45px 0;}
    .psh5-cate{ margin: 25px auto 15px; flex-wrap: wrap;}
    .psh5-cate .item{ width: 33%; padding: 0; margin: 0; text-align: center; font-size: 16px;}
    .psh5-cate .item:nth-child(3n)::after{ display: none}
    .psh5-cate .item:nth-child(3n)~.item{ margin-top: 12px;}
    .psh5-swiper{ margin-top: 25px;}
    .psh5-swiper .swiper-slide{ flex-wrap: wrap}

    .psh5-swiper .swiper-slide .tc-left{ padding: 0;}
    .psh5-swiper .swiper-slide .tc-left .desc{ font-size: 16px;}
    .psh5-swiper .swiper-slide .tc-left .desc2{ font-size: 14px; margin: 15px auto 20px;}
    .psh5-swiper .swiper-slide .tc-right{ width: 100%;}

    .pro-show6{ padding: 45px 0;}
    .pro-show6 .list{ margin: 25px auto 0; flex-wrap: wrap;}
    .pro-show6 .list .item{ width: 100%; margin: 0; padding: 20px 15px;}
    .pro-show6 .list .item .desc{ font-size: 14px; margin: 15px auto 20px; }
    .pro-show6 .list .item .mo{ font-size: 14px; padding: 6px 20px;}
    .pro-show6 .list .item:nth-child(1)~.item{ margin-top: 20px;}

    .ps-show{ padding: 30px 0 45px}
    .pro-show6 .list2{ margin: 25px auto 0; flex-wrap: wrap; justify-content: space-between;}
    .pro-show6 .list2 .item{ width: 48.5%; margin-right: initial;}
    .pro-show6 .list2 .item:nth-child(2n)~.item{ margin-top: 15px;}


    .buju-svg svg{
        top: 6px;
        right: -9px;
    }
    .cont2-body .tc-left svg{
        top: 4px;
        right: -9px;
    }







}

.flex_zy {
    display: flex;
}

.flex_zy .img {
    width: 25%;
}

.default-flex {
    display: flex;
 }

 .default-flex-column {
    flex-flow: column;
 }

 .default-flex-column-center {
    align-items: center;
 }

 .defualt-flex-row-space-between {
    justify-content: space-between;
 }

 .default-flex-row-center {
    justify-content: center;
 }

 .p_t_b_30 {
    padding: 30px 0; 
 }
 .p_l_2_5 {
    padding-left: 2.5rem;
 }

 .p-t-0 {
    padding-top: 0;
 }

 .p_l_0 {
    padding-left: 0;
 }
 
 .p-b-0 {
    padding-bottom: 0;
 }

 .m-t-0_5 {
    margin-top: 0.5rem;
 }

 .m-t-0_9 {
    margin-top: 0.9rem;
 }
 
 .m-l-0-5 {
    margin-left: 0.5rem;
 }
 .w_all {
    width: 100%;
 }


 .about-default-flex {
     margin-top: 0.367rem;
     display: flex;
     flex-flow: column;
     justify-content: center;
     align-items: center;
 }
 .subhead {
    font-size: 0.3rem; 
 }


 






