@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%;
}
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;

    margin: 4px;
}
.mxw-pagination  a.current,
.mxw-pagination  a:hover {
    background-color: #f37b1d;
    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: #032a75;
    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: #fff;
    border-bottom: 1px solid #e1e1e1;
}
.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: #053DAD;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #053DAD;
}
.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;
}
.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 {
    outline: none;
    border-width: 0;
    cursor: pointer;
    background: #053DAD;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;

}
.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;
    margin-left: 12px;
}
.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: 50px;
    }
    .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;    height: calc(100vh - 2.033rem) !important;    margin-top: 2.033rem;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
}
.mxw-banner .swiper-slide img {
    width: 100%;
    object-fit: cover;
    height: 100%;    transition: all .5s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;
}
/*
.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: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 1;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #fff;
    outline: none;
}
.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: #ff0000;
    border-color: #ff0000;
}
*/
.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: #fff;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    /*.mxw-banner .swiper-pagination {
        padding-right: 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: 86%;
}
.mxw-box2 {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-box {
        max-width: 80%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1000px;
        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:#00a2ea;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%;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}
.top-box{ align-items: stretch }
.top-box .logo-box{  margin: 0.5rem auto 0.467rem 0;}
.top-box .logo-box>img{ max-height:1.067rem;}
.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: #193883; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; padding: 0.5rem 0 }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;padding-top:10px;padding-bottom:10px;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;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:18px;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:16px;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{}
header .welcome {
    background-color: #f2f2f2;
    height: 40px;
    line-height: 40px;

}
header .welcome .mxw-box2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    height: 100%;
}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 13px; color: #333333;
}
header .welcome .right img{ margin-right: 15px;}
header .welcome .right >a {
    padding-left:10px;padding-right:10px;
}
header .welcome .right .title{ display: flex; align-items: center;}
header .welcome .right .title img{ margin-right: 10px; cursor: pointer;}
header .welcome .right .item{ position: relative; cursor: pointer; margin-left: 0.417rem}
header .welcome .right .item .con{ width: 135px; background: #fff; position: absolute; top: 43px; right: 0; left: 0; margin: 0 auto; padding: 3px;z-index: 10; display: none;}
header .welcome .right .item:hover .con{ display: block;}


.top-box .right{ display: flex; flex-grow: 1; min-width: 0; align-items: center; justify-content: flex-end; margin-left: 2rem}
.top-box .right .se-box form{ display: flex; flex-shrink: 0; margin-right: 0.567rem}
.top-box .right .se-box input{	width: 4.667rem;
    height: 0.733rem; text-indent: 1em;
    border: solid 1px #dddddd;}
.top-box .right .se-box button{width: 0.833rem;
    height: 0.733rem; display: flex; align-items: center; justify-content: center;
    background-color: #d11911;}
.top-tel{ display: flex; align-items: flex-end;}
.top-tel .left-box{ padding-right: 0.233rem; border-right: 0.017rem solid #cccccc; margin-right: 0.2rem}
.top-tel .right-box .con{ 	font-size: 0.467rem; color: #d01911; font-weight: bold; line-height: 1;}
.top-tel .right-box .title{ font-size: 0.3rem; color: #777; margin-bottom: 0.15rem;}

.top-box .right .tel-box{ display: flex; align-items: center; justify-content: flex-end;}
.top-box .right .tel-box .icon{ flex-shrink: 0; margin-left: 0.2rem;}
.top-box .right .tel-box .con p{ font-size: 0.267rem; color: #333; text-align: right;}
.top-box .right .tel-box .con div{ font-size: 0.5rem; font-weight: bold;}

.top-box .right .ewm-box{display: flex; align-items: center; justify-content: flex-end; margin-left: 0.6rem;}
.top-box .right .ewm-box p{ font-size: 0.267rem;     writing-mode: tb-rl; margin-left: 0.167rem;}
.top-box .right .meb{ display: flex; align-content: flex-end; margin-left: 0.6rem;}
.top-box .right .meb .zc{ padding: 0.1rem 0.3rem; color: #fff; display: flex; align-items: center; justify-content: center;  font-size: 0.267rem; border-radius: 0.267rem; background: #193883;}
.top-box .right .meb .zc img{ margin-right: 0.083rem;}



.top-tel{ margin-right: 0.583rem; margin-left: 0.333rem; }


.x-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.x-menu > li {

    margin: 0;
    text-align: center;
    float: none;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;

}

.x-menu > li > a {
    font-size: 0.3rem;
    color: #333;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    padding: 0.35rem  0.1rem;

}

.x-menu > li > a:hover {
    color: #193883;
}

.x-menu > li.active > a {
    color: #193883;
    border-bottom: 4px solid #193883;

}
.x-menu > li.active{

}
.x-menu {
    width: 100%;
    float: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}


.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 180px;
    left: -45px;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 0.267rem;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;
}

.x-sub-menu > li > a:hover {
    color: #fff;
    background: #193883;
}

.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.active > a::after{ }



.about-page{ padding: 1.8rem 0;}
.about-box1>.mxw-box{ display: flex; align-items: flex-start; justify-content: space-between;}
.about-box1 .left-box{ width: 35%; flex-shrink: 0; margin-right: 8.125%;}
.about-box1 .left-box .en{ font-size: 0.35rem; color: #193883; font-weight: bold;}
.about-box1 .left-box .cn{ font-size: 0.633rem; color: #193883; font-weight: bold; margin-top: 0.233rem;}
.about-box1 .left-box .desc{ font-size: 0.4rem; line-height: 1.6; margin: 0.867rem auto 0.9rem; font-weight: bold;   background-image: linear-gradient(to right, #193883, #68b92f); background-clip: text; -webkit-background-clip: text; color: transparent; }
.about-box1 .right-box{ flex-grow: 1; min-width: 0;}
.about-box1 .right-box .desc{ font-size: 0.3rem; color: #333; text-indent: 2em; line-height: 2  }

.gd-box{ display:flex; align-items: stretch;  justify-content: space-between; margin-top: 0.917rem;}
.gd-box .item{ text-align: center;}
.gd-box .item .num{ font-size: 0;}
.gd-box .item .num .scrolling-numbers{ font-size: 0.967rem; background-image: linear-gradient(to right, #0094d8, #68b92f); background-clip: text; -webkit-background-clip: text; color: transparent;  font-weight: bold; line-height: 1;}
.gd-box .item .num sup:nth-child(2){ color: #68b92f; font-size: 0.667rem; line-height: 1;vertical-align: top; }
.gd-box .item .num sup:last-child{ 	width: 26px;
    height: 26px;
    background-color: #68b92f; border-radius: 50%;  font-size: 0.3rem; color: #fff; display: inline-flex; align-items: center; justify-content: center; vertical-align: top}

.about-box2{ position: relative;  display: flex; align-items: center; justify-content: center; align-content: center;}
.about-box2 .text{ position: absolute; top: 50%; transform: translateY(-50%); text-align: center;}
.about-box2 .text .en{	font-size: 1.2rem; font-weight: bold; color: #fff;}
.about-box2 .text .cn{		font-size: 0.7rem; font-weight: bold; color: #fff;}
.about-box1{ background: url("../images/about-box1-bg.png") center no-repeat; background-size: cover; padding-bottom: 1.917rem;}

.about-box2-flx{ display: flex; align-items: center; justify-content: space-between; background: url("../images/aboot-box2-flx-bg.png") center no-repeat;background-size: cover; margin-top: -2.667rem; position: relative;z-index: 1;}
.about-box2-flx .item{width: calc(100% / 3); text-align: center; padding: 0.917rem 0  1.25rem; position: relative;}
.about-box2-flx .item .icon{ width: 0.8rem; margin: 0 auto;}
.about-box2-flx .item .st{	font-size: 0.5rem; color: #fff; margin: 0.583rem auto 0.417rem;}
.about-box2-flx .item .desc{ font-size: 0.333rem; color: #fff;}
.about-box2-flx .item::after{ position: absolute; right: 0; width: 1px;
    height: 1.017rem;
    background-color: #ffffff;
    opacity: 0.25; content: ""; top: 50%; margin-top: -0.533rem;}
.about-box3{ padding: 1.583rem 0 5.667rem; background: url("../images/about-box3-bg.png") center bottom no-repeat; background-size: cover;}
.mxw-title2{ text-align: center;}
.mxw-title2 .en{ 	font-size: 0.35rem; font-weight: bold; color: #193883}
.mxw-title2 .cn{ font-size: 0.7rem; font-weight: bold; color: #193883; margin-top: 0.25rem;}

.fz-swiper{ overflow: hidden; width: 100%; margin-top: 2.083rem; position: relative;}
.fz-swiper .swiper-wrapper{     align-items: stretch;}
.fz-swiper .swiper-slide .text1,.fz-swiper .swiper-slide .text2{ display: none;}
.fz-swiper .swiper-slide .num{ text-align: center;font-size: 32px; color: #000;}
.fz-swiper .swiper-slide{ display: flex; align-items: center; justify-content: space-between;}
.fz-swiper .swiper-slide::after,.fz-swiper .swiper-slide::before{	height: 3px;background-color: #cccccc; content: ""; flex-grow: 1;}
.fz-swiper .swiper-slide .con{ flex-shrink: 0; margin: 0 2rem;}
.fz-swiper .swiper-slide.swiper-slide-active{ display: block; }
.fz-swiper .swiper-slide.swiper-slide-active .con{margin: 0; text-align: center;}
.fz-swiper .swiper-slide.swiper-slide-active .num{font-size: 3.333rem;	color: #193883; font-weight: bold;}
.fz-swiper .swiper-slide.swiper-slide-active .num span:nth-child(2){	color: #68b92f; line-height: 1;}
.fz-swiper .swiper-slide.swiper-slide-active .text1,.fz-swiper .swiper-slide.swiper-slide-active .text2{ display:block; text-align: center; 	font-size: 0.333rem; color: #000}
.fz-swiper .swiper-slide.swiper-slide-active .text2{ font-weight: bold; margin-top: 0.1rem;}
.fz-swiper .swiper-slide.swiper-slide-active::after,.fz-swiper .swiper-slide.swiper-slide-active::before{ display: none}
.fz-swiper .swiper-button-prev{ left: 20%;	width: 0.85rem;height: 0.85rem;border: solid 2px #999999; border-radius: 50%;color: #999999;}
.fz-swiper .swiper-button-next{ right: 20%;	width: 0.85rem;height: 0.85rem;border: solid 2px #999999;border-radius: 50%;color: #999999;}
.fz-swiper .swiper-button-next::after,.fz-swiper .swiper-button-prev::after{ font-size: 0.4rem; }
.fz-swiper .swiper-button-next:hover,.fz-swiper .swiper-button-prev:hover{	background-color: #193883; color: #fff; border-color: #193883}

.honor-swiper{ overflow: hidden; }
.about-box4{ padding-top: 1.5rem;}
.about-box4 .honor-body{ position: relative; padding: 0 1.417rem; margin-top: 1.25rem}
.honor-body .swiper-button-prev{ left: 0;	width: 0.85rem;height: 0.85rem;border: solid 2px #999999; border-radius: 50%;color: #999999;}
.honor-body .swiper-button-next{ right: 0;	width: 0.85rem;height: 0.85rem;border: solid 2px #999999;border-radius: 50%;color: #999999;}
.honor-body .swiper-button-next::after,.honor-body .swiper-button-prev::after{ font-size: 0.4rem; }
.honor-body .swiper-button-next:hover,.honor-body .swiper-button-prev:hover{	background-color: #193883; color: #fff; border-color: #193883}

.about2-box1{ padding-top: 1.5rem; background: url("../images/about2-box1-bg.jpg") center bottom no-repeat; background-size: cover; padding-bottom: 2.083rem; }
.about2-box1 .en{	font-size: 0.8rem;background-image: linear-gradient(to right, #193883 , #68b92f ); background-clip: text; -webkit-background-clip: text; color: transparent;  font-weight: bold; text-align: center; width: max-content; margin: 0 auto;}
.about2-box1 .cn{ font-size: 0.65rem; margin-top: 0.1rem; text-align: center;}
.about2-box1 .cn::after{	width: 2.483rem;
    height: 0.083rem;
    background-image: linear-gradient(90deg,
    #193883 0%,
    #68b92f 100%),
    linear-gradient(
            #000000,
            #000000);
    background-blend-mode: normal,
    normal;
    border-radius: 0.05rem; content: ""; margin: 0.333rem auto 0; display: block;}
.about2-box1 .list{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 0.967rem;}
.about2-box1 .list .item{ background: #fff;
    border-radius: 0.717rem; width: 31.125%; text-align: center; padding:  0.9rem 0.5rem 1rem;     box-shadow: 0px -4px 8px 1px #f4f9fd;}
.about2-box1 .list .item .st{font-size: 0.433rem;color: #000;font-weight: bold; margin-top: -0.333rem;}
.about2-box1 .list .item .desc{ font-size: 0.3rem; margin-top: 0.333rem; line-height: 1.8}

.about2-box2{ background: url("../images/about2-box2-bg.png") center no-repeat; background-size: cover; display: flex; align-items: stretch; justify-content: space-between;}
.about2-box2 .left-box{ width: 36.5%; flex-shrink: 0; color: #fff; border-right: 1px solid #767676; display: flex; justify-content: center; flex-direction: column;  padding-left: 2.4rem;  }
.about2-box2 .left-box .en{ font-size: 0.85rem; font-weight: bold;}
.about2-box2 .left-box .cn{ font-size: 0.65rem; margin-top: 1rem;}
.about2-box2 .left-box .cn::after{	width: 2.483rem;
    height: 0.083rem;
    background-image: linear-gradient(90deg,
    #193883 0%,
    #68b92f 100%),
    linear-gradient(
            #000000,
            #000000);
    background-blend-mode: normal,
    normal;
  content: ""; margin: 1rem auto 0 0; display: block;}

.about2-box2 .right-box{ flex-grow: 1; min-width: 0; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.about2-box2 .right-box .item{ width: 50%; color: #fff; }
.about2-box2 .right-box .item:nth-child(odd){border-right: 1px solid #767676;}
.about2-box2 .right-box .item:nth-child(2n)~.item{border-top: 1px solid #767676;}
.about2-box2 .right-box .item .icon{width: 1.733rem;text-align: center;margin: 0 auto 0.867rem;}
.about2-box2 .right-box .item .st{	font-size: 0.5rem; margin-bottom: 0.617rem; text-align: center;}
.about2-box2 .right-box .item .desc{	font-size: 0.3rem; line-height: 1.8; text-align: center;}
.about2-box2 .right-box .item .con{padding: 1.25rem 2rem 0.917rem; height: 100%; }
.about2-box2 .right-box .item:hover .con{	background-image: linear-gradient(90deg,
#193883 0%,
#68b92f 100%),
linear-gradient(
        #000000,
        #000000);
    background-blend-mode: normal,
    normal;
    border-radius: 1.65rem 0rem 1.65rem 0rem;}
.about2-box2 .right-box .item:hover .icon img{filter: grayscale(100%) brightness(600%)}
.about3-box1{ padding: 1.583rem 0 1.667rem;}
.about3-box1 .list .item{ border: 2px solid #e8e8e8;}


.job-page{ padding: 1.5rem 0 0;}
.job-box1{ padding-bottom: 1.5rem; background: url("../images/job-box1-bg.jpg") bottom repeat-x;}
.job-box1>.mxw-box .item{ display: flex; align-items: center; justify-content: space-between;}
.job-box1>.mxw-box .right-box{ width: 47%; flex-shrink: 0; margin-left: 2rem;}
.job-box1>.mxw-box .left-box{ flex-grow: 1; min-width: 0;}
.job-box1>.mxw-box .left-box .en{font-size: 1.05rem;background-image: linear-gradient(to right, #193883, #68b92f); background-clip: text; -webkit-background-clip: text; color: transparent; font-weight: bold; width: max-content;line-height: 1;}
.job-box1>.mxw-box .left-box .cn{ margin-top: 0.4rem;	font-size: 0.833rem;}
.job-box1>.mxw-box .left-box .desc{font-size: 0.333rem; margin-top: 0.8rem; line-height: 1.9}
.job-box1>.mxw-box .item:nth-child(1)~.item{ margin-top: 1.417rem; }
.job-box1>.mxw-box .item:nth-child(2n) .right-box{ order: -1; margin-left: 0; margin-right: 2rem;}
.job-box1>.mxw-box .item:nth-child(2n) .left-box .desc span{ color: #193883;font-weight: bold;}

.job-box2 .en{ width: max-content;font-size: 1.05rem;background-image: linear-gradient(to right, #193883, #68b92f); background-clip: text; -webkit-background-clip: text; color: transparent; font-weight: bold; margin: 0 auto; line-height: 1;}
.job-box2 .cn{ font-size: 0.833rem; color: #333; margin-top: 0.6rem; text-align: center;}
.job-box2{ padding-top: 1.333rem;}
.job-box2 .list{ margin-top: 1.1rem;}
.job-box2 .list .title{ padding: 0.333rem 0.583rem 0.333rem 1rem;background-image: linear-gradient(to right, #193883, #68b92f); color: #fff; display: flex; align-items: center; justify-content: space-between; font-size: 0.433rem; font-weight: bold;}
.job-box2 .list .title .c1{ width: 18%;}
.job-box2 .list .title .c2{ width: 6%;}
.job-box2 .list .title .c1:first-child{ width: 40%;}
.job-box2 .list .item{ cursor: pointer;}
.job-box2 .list .item .st{ padding: 0.417rem 0.583rem 0.417rem 1rem; font-size: 0.367rem;	color: #333333;background-color: #f7f8fa; display: flex;}
.job-box2 .list .item .c1{ width: 18%;}
.job-box2 .list .item .c2{ width: 6%;  }
.job-box2 .list .item .c1:first-child{ width: 40%;}
.job-box2 .list .item .c2::after{ margin-left: auto; display: block; content: ""; width: 0.35rem; height: 0.35rem; background: url("../images/job-ico2.png") right no-repeat; background-size: cover; }
.job-box2 .list .item .con{ border: 0.017rem solid #e9e9e9; padding: 0.8rem 1rem 0.833rem 0.8rem; font-size: 0.333rem; line-height: 2;	color: #767676;display: none}

.job-box2 .list .item .con .email{  font-size: 0.333rem; padding: 0.267rem  0.633rem;background-image: linear-gradient(90deg,
#193883 0%,
#68b92f 100%),
linear-gradient(
        #193883,
        #193883);
    background-blend-mode: normal,
    normal; width: max-content; color: #fff; margin-top: 0.75rem; }
.job-box2 .list .item.open .con{ display: block}
.job-box2{ background: url("../images/job-box2-bg.jpg.png") center bottom no-repeat; padding-bottom: 1.5rem; background-size: 100% auto;}
.job-box2 .job-ewm{ margin-top: 1.833rem;  text-align: center;}
.job-box2 .job-ewm p{ margin-bottom: 0.533rem; font-size: 0.367rem;}




.top-tel{ position: relative;  height: 100%; display: flex; align-items: center;}
.top_ser{position: relative;}
.pro_serh{position: absolute;top: 100%;right: 0;width: 380px;background: rgba(255,255,255,.9);border: 1px solid #e1e1e1;padding: 20px;z-index: 999;display: none;}
.pro_serh form{height: 40px;}
.pro_serh p{color: #15499a;font-size: 16px;float: none;top: 0;margin-bottom: 10px;line-height: 35px;}
.pro_serh input{background: #f6f6f6;height: 40px;width: 80%;padding-left: 5px;border: 1px solid #CCCCCC;border-radius: 5px;vertical-align: top;}
.pro_serh button{border:none;background: transparent;margin-left: 5px;height: 40px;vertical-align: top;}
.pro_serh button img{vertical-align: top;}
.pro_serh ul li{display: inline-block;color: #888888;margin-right: 5px;}
.pro_serh ul li a{color: #888888;}
.nav_lx_mod{width: max-content;position: absolute;top: 100%;right: 0;background: rgba(232,1,11,0.8);z-index: 99;padding: 15px 20px;text-align: center;color: white;border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;display: none;transition: 0.3s;}
.nav_lx_mod p{color: white !important;font-size: 16px !important;margin-top: 0 !important;font-weight:bold;}
.top-tel:hover .nav_lx_mod{display: block;transition: 0.3s;}
.nav_lx_mod img{width:130px;}
.top-ss{ position: relative; height: 100%; display: flex; align-items: center;}
.top-ss:hover .pro_serh{ display: block;}

.news-page{ padding: 1.417rem 0 1.417rem;}
.news-top{ display: flex; align-items: center; justify-content: space-between; padding: 0.733rem 0.667rem; background: #f9f9f9;}
.news-top .left-box{ width: 40.625%; flex-shrink: 0; margin-right: 1.133rem;}
.news-top .right-box .time{ font-size: 0.367rem; color: #193883; font-weight: bold;}
.news-top .right-box .st{ font-size: 0.433rem; margin: 0.417rem auto 0.7rem 0;}
.news-top .right-box .desc{ font-size: 0.3rem; color: #939393; line-height: 2;}
.news-top .right-box .icon{ margin-top: 0.967rem; width: 0.85rem;}
.news-top:hover .st{ color: #193883}

.news-page .list{ margin-top: 1.167rem;}
.news-page .list .item .info{ padding: 0.583rem 0.5rem 0.75rem;  background: #f9f9f9;}
.news-page .list .item .info .time{ font-size: 0.267rem; color: #193883; font-weight: bold;}
.news-page .list .item .info .st{ font-size: 0.333rem; margin-top: 0.333rem;}
.news-page .list .item:hover .st{ color: #193883}

.ya-box1{ padding: 2rem 0 1.583rem; background: url("../images/ya-box1-bg.jpg") center no-repeat; background-size: cover; }
.ya-box1 .mxw-box{ display: flex; justify-content: flex-start; align-items: stretch; margin-top: 1.75rem;}
.ya-box1 .mxw-box .item{background: #fff;	box-shadow: 0px 5px 57px 0px rgba(0, 0, 0, 0.05); position: relative; transition: all 0.3s; display: flex; flex-direction: column;}
.ya-box1 .mxw-box .item .image{ margin: 0.533rem auto; width: max-content; border: 2px solid #ebebeb; border-radius: 50%;}
.ya-box1 .mxw-box .item .st1{ font-size: 0.467rem; color: #193883; font-weight: bold; text-align: center;}
.ya-box1 .mxw-box .item .st2{ font-size: 0.3rem; color: #193883; text-align: center; margin-top: 0.2rem;}
.ya-box1 .mxw-box .item .desc{	font-size: 0.3rem; color: #444; padding: 0.467rem 0.867rem 0.833rem; text-align: center; line-height: 1.6; flex-grow: 1;  }
.ya-box1 .mxw-box .item .st2::after{ content: ""; 	width: 1.867rem;height: 0.017rem;background-color: #000000; display: block; margin: 0.467rem auto 0;}
.ya-box1 .mxw-box .item::after{	width: 100%; height: 13px;background-image: linear-gradient(90deg, #193883 0%, #68b92f 100%), linear-gradient(#ffffff, #ffffff);background-blend-mode: normal, normal; content: ""; display: block;position: absolute; bottom: 0}
.ya-box1 .mxw-box .item:hover{ transform: translateY(-0.5rem); 	background-color: #193883;}
.ya-box1 .mxw-box .item:hover .st1{ color: #fff;}
.ya-box1 .mxw-box .item:hover .st2{ color: #fff;}
.ya-box1 .mxw-box .item:hover .st2::after{ visibility: hidden}
.ya-box1 .mxw-box .item:hover .desc{	background-color: #ffffff;	border-radius: 1.567rem 0rem 0rem 0rem;}

.n-title{ text-align: center;}
.n-title .en{ font-size: 0.35rem; color: #193883; font-weight: bold;}
.n-title .cn{ font-size: 0.7rem; color: #193883; font-weight: bold; margin-top: 0.167rem;}
.n-title .desc{ color: #444444; font-size: 0.367rem; line-height: 1.9; margin-top: 0.467rem; }

.ya-box2{ padding: 1.833rem 0 2.417rem; background: url("../images/ya-box2-bg.png") center no-repeat; background-size: cover;}
.ya-box2>.mxw-box{ display: flex; align-items: flex-start; justify-content: space-between;}
.ya-box2>.mxw-box .left-box{ flex-shrink: 0; width: 23.5%;}
.ya-box2>.mxw-box .left-box .en{font-size: 0.583rem;	color: #193883; font-weight: bold;}
.ya-box2>.mxw-box .left-box .cn{	font-size: 0.7rem; color: #193883; font-weight: bold; margin-top: 0.333rem;}
.ya-box2>.mxw-box .left-box .desc{	font-size: 0.3rem; color: #444; line-height: 1.8; margin: 0.7rem auto 1.333rem 0;}
.ya-box2>.mxw-box .right-box{ margin-left: 0.75rem; flex-grow: 1; min-width: 0; display: flex; align-items: stretch; justify-content: flex-start;}
.ya-box2>.mxw-box .right-box .item{ margin-right: 2%; width: 32%;background-color: #ffffff;
    border: solid 0.017rem #e1e1e1;box-shadow: 0rem 0.083rem 0.267rem 0rem rgba(0, 0, 0, 0.05); padding: 0.917rem 0.333rem 0.4rem;}
.ya-box2>.mxw-box .right-box .item:last-child{ margin-right: 0;}
.ya-box2>.mxw-box .right-box .item .st{	font-size: 0.4rem; color: #000; font-weight: bold; margin-bottom: 0.417rem;}
.ya-box2>.mxw-box .right-box .item .desc{ margin-bottom: 0.917rem;	color: #444444; 	font-size: 0.3rem; line-height: 2.1}

.ya-box3{ background: url(" ../images/ya-box3-bg.png") no-repeat; background-size: cover; padding-top: 2.167rem }
.ya-box3 .con-bg{width: 45.5%;    margin: 0 0 0 auto;background: url("../images/con-bg.png") #fff bottom no-repeat; background-size: 100% auto; position: relative; bottom: -2.617rem; }
.ya-box3 .con{
    padding:  1.033rem 1.5rem 1.25rem;
}
.ya-box3 .con .title{ border-left: 0.083rem solid #0054a7; padding-left: 0.5rem; margin-left: -0.583rem;}
.ya-box3 .con .title .en{	font-size: 0.583rem;color: #193883; font-weight: bold; line-height: 1;}
.ya-box3 .con .title .cn{ font-size: 0.7rem; font-weight: bold; margin-top: 0.2rem; color: #193883;}
.ya-box3 .con .desc{ margin-top: 1.033rem;	font-size: 0.367rem; line-height: 1.6; color: #444;}
.ya-box3 .con .mxw-image{ margin-top: 0.867rem;}
.ya-box3.ya1103 .con-bg{ bottom:0;       background: url(../images/con-bg.png) rgba(255,255,255,.6) bottom no-repeat; background-size: 100% 1%;}
.ya-box3.ya1103{     background: url(../images/ya1103.jpg) no-repeat;
    background-size: cover;min-height: 12rem;
    padding-top: 2.167rem;  position: relative;}
.ya-box3.ya1103 .mxw-box{   /* position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;*/}


.ya-box4{ padding: 4.333rem 0 1.583rem;}
.ya-box-body{ margin-top: 1.167rem; position: relative;}
.ya-swiper{ overflow: hidden;}
.ya-swiper .swiper-slide{ position: relative;}
.ya-swiper .swiper-slide p{ position: absolute; max-width: 100%; width: max-content; padding: 22px 40px;	background-color: #193883;
    border-radius: 0rem 0.533rem 0rem 0rem; font-size: 0.333rem; color: #fff; position: absolute; left: 0; bottom: 0;}

.ya-box-body .swiper-button-prev{ left: -1.167rem;	width: 0.85rem;height: 0.85rem;border: solid 0.033rem #999999; border-radius: 50%;color: #999999;}
.ya-box-body .swiper-button-next{ right: -1.167rem;	width: 0.85rem;height: 0.85rem;border: solid 0.033rem #999999;border-radius: 50%;color: #999999;}
.ya-box-body .swiper-button-next::after,.ya-box-body .swiper-button-prev::after{ font-size: 0.4rem; }
.ya-box-body .swiper-button-next:hover,.ya-box-body .swiper-button-prev:hover{	background-color: #193883; color: #fff; border-color: #193883}

.ya-box5{ background: url("../images/ya-box5-bg.png") no-repeat; background-size: cover; padding-top: 1.333rem;}
.ya-box5 .n-title .desc{ color: #444; font-size: 0.367rem;}
.ya-box5-body{ margin-top: 0.533rem; display: flex; align-items: center; justify-content: space-between;}
.ya-box5-body .center{ width: 60%; flex-shrink: 0; }
.ya-box5-body .left-box{ flex-grow: 1; min-width: 0;}
.ya-box5-body .right-box{ flex-grow: 1; min-width: 0;}
.ya-box5-body .left-box p,.ya-box5-body .right-box p { font-size: 0.4rem; font-weight: bold; color: #193883;  display: flex; align-items: center; justify-content: flex-start; }
.ya-box5-body .left-box p:nth-child(1)~p,.ya-box5-body .right-box p:nth-child(1)~p{ margin-top: 0.833rem;}
.ya-box5-body .left-box p::before,.ya-box5-body .right-box p::before{ content: "";	width: 12px;
    height: 12px;
    background-image: linear-gradient(90deg,
    #193883 0%,
    #68b92f 100%),
    linear-gradient(
            #193883,
            #193883);
    background-blend-mode: normal,
    normal; border-radius: 50%; margin-right: 0.417rem}
.ya-box5-body .right-box{ padding-left: 0.2rem}


.conn-cate .mxw-box{ display: flex; align-items: center; justify-content: center;}
.conn-cate .mxw-box .item{ font-size: 0.333rem; color: #000; display: flex; align-items: center; padding: 0.75rem 0;}
.conn-cate .mxw-box .item:nth-child(1)~.item{ margin-left: 1rem;}
.conn-cate .mxw-box .item::before{ content: ""; 	width: 0.2rem;
    height: 0.2rem;
    background-image: linear-gradient(90deg,
    #193883 0%,
    #68b92f 100%),
    linear-gradient(
            #193883,
            #193883);
    background-blend-mode: normal,
    normal; margin-right: 0.167rem; border-radius: 50%}

.conn-cate .mxw-box .item.active,.conn-cate .mxw-box .item:hover{ color: #193883}

.pro-page{ background: #f5f5f5; padding: 1.25rem 0 2rem;}
.pro-page .pro-item{ display: flex; align-items:stretch; justify-content: space-between; background: #fff; }
.pro-page .pro-item .right-box{ width: 50%; flex-shrink: 0}
.pro-page .pro-item .left-box{ flex-grow: 1; min-width: 0; padding: 0.5rem 1.167rem 0.5rem 1.333rem; display: flex; flex-direction: column; justify-content: center; position: relative;}
.pro-page .pro-item:nth-child(1)~.pro-item{ margin-top: 0.8rem;}
.pro-page .pro-item .left-box .cn{ font-size: 0.667rem; font-weight: bold; color: #000;}
.pro-page .pro-item .left-box .en{ font-size: 0.3rem; color: #000; margin-top: 0.25rem;}
.pro-page .pro-item .left-box .desc{ margin: 0.867rem auto 0.933rem; font-size: 0.3rem; color: #444; line-height: 1.8}
.pro-page .pro-item .left-box .icon{ width: 0.85rem;}
.pro-page .pro-item:nth-child(2n) .right-box{ order: -1; }
.pro-page .pro-item .left-box::after{    content: "";
		background-image: linear-gradient(90deg, 
		#019fe8 0%, 
		#1e46c8 46%, 
		#17bf27 100%), 
	linear-gradient(
		#ffffff, 
		#ffffff);
	background-blend-mode: normal, 
		normal;    height: 10px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    left: 0;}

.poj-page{ background: url("../images/poj-bg.png") center no-repeat; background-size: cover;}
.poj-page .mxw-box{ display: flex;justify-content: space-between;    align-items: flex-start; }
.poj-page .mxw-box .left-box{ flex-shrink: 0; width: 11%;  background: url("../images/poj-lbg.png") left repeat-y; background-size: auto 100%;background-position-x: 1.333rem; position: sticky;top: 0; height:100vh;    display: flex;
    flex-direction: column;
    justify-content: center;}
.poj-page .mxw-box .right-box{ margin-left: 2.583rem; flex-grow: 1; min-width: 0; padding-bottom: 1.667rem;}
.poj-page .mxw-box .left-box .item{width: 2.683rem;
    height: 2.683rem;
    background-color: #f5f5f5; display: flex; align-items: center; justify-content: center; flex-direction: column; border-radius: 50%;}
.poj-page .mxw-box .left-box .item:nth-child(1)~.item{ margin-top: 0.667rem;}
.poj-page .mxw-box .left-box .item p{ margin-top: 0.25rem}
.poj-page .mxw-box .left-box .item.active,.poj-page .mxw-box .left-box .item:hover{ background: #193883;}
.poj-page .mxw-box .left-box .item.active p,.poj-page .mxw-box .left-box .item:hover p{color: #fff}
.poj-page .mxw-box .left-box .item.active .icon,.poj-page .mxw-box .left-box .item:hover .icon{filter: grayscale(100%) brightness(600%) }


.poj-page .mxw-box .right-box .sou-top{ display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem}
.poj-page .mxw-box .right-box .sou-top .right{ width: 52%; flex-shrink: 0;}
.poj-page .mxw-box .right-box .sou-top .right .mxw-image{ border-radius: 50%;}
.poj-page .mxw-box .right-box .sou-top .left{ margin-right: 1.667rem; flex-grow: 1;}
.poj-page .mxw-box .right-box .sou-top .left .cn{	font-size: 0.7rem; color: #000}
.poj-page .mxw-box .right-box .sou-top .left .en{	font-size: 0.267rem; margin-top: 0.267rem;}
.poj-page .mxw-box .right-box .sou-top .left .desc{	font-size: 0.3rem;
    line-height: 1.9;
    color: #444444; margin: 0.933rem auto 1.3rem 0;}
.poj-page .mxw-box .right-box .sou-top .left .sou-more{	width: 3.317rem;
    height: 1.05rem;
    background-color: #ffffff;
    border-radius: 0.533rem; display: flex; align-items: center; justify-content: center; 	font-size: 0.3rem; color: #444;}
.poj-page .mxw-box .right-box .sou-top .left .sou-more img{ margin-left: 0.2rem;}
.poj-page .mxw-box .right-box .list{ margin-top: 1.917rem;}

.poj-page .mxw-box .right-box .list .sou-item{ position: relative;}
.poj-page .mxw-box .right-box .list .sou-item p{ position: absolute; max-width: 100%; width: max-content; padding: 22px 40px;	background-color: #193883;
    border-radius: 0rem 0.533rem 0rem 0rem; font-size: 0.333rem; color: #fff; left: 0; bottom: 0;}

.zc-box1{ padding: 1.833rem 0 2.083rem; background: url("../images/tx-bg.jpg") center no-repeat; background-size: cover;}
.zc-box1 .mxw-box{ display: flex; align-items: stretch;justify-content: space-between; flex-wrap: wrap;}
.zc-box1 .mxw-box .item{ width: 48.375%;	background-color: #ffffff;
    box-shadow: 0px 2px 29px 0px
    rgba(99, 99, 99, 0.08); padding: 1rem 0; display: flex; align-items: center; justify-content: space-between; overflow: hidden;}
.zc-box1 .mxw-box .item:nth-child(2n)~.item{ margin-top: 0.783rem;}
.zc-box1 .mxw-box .item .c1{ font-size: 3.2rem; font-weight: bold;    background-image: linear-gradient(to right, #0094d8, #68b92f);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; line-height: 1;}
.zc-box1 .mxw-box .item .c1{ margin-left: -0.4rem; flex-shrink: 0;}
.zc-box1 .mxw-box .item .c2{ flex-grow: 1; min-width: 0; padding-left: 0.5rem; padding-right: 1.25rem;}
.zc-box1 .mxw-box .item .c2 .st{font-size: 0.6rem; color: #000}
.zc-box1 .mxw-box .item .c2 .desc{	font-size: 0.3rem; color: #444; line-height: 1.8; margin-top: 0.6rem;}


.zc-box2{ padding: 2.667rem 0 2.5rem; background: url("../images/fwzc-bg.jpg") center; no-repeat; background-size: cover;}

.zc-box2 .mxw-box{ padding-right: 45%;}
.zc-box2 .mxw-box .en p{  background-image: linear-gradient(to right, #193883, #68b92f);
    background-clip: text;
    -webkit-background-clip: text; width: max-content;
    color: transparent; line-height: 1; font-size: 1.05rem; font-weight: bold;}
.zc-box2 .mxw-box .cn{ font-size: 0.833rem; color: #000; margin: 0.7rem auto 0.633rem 0;}
.zc-box2 .mxw-box .desc {font-size: 0.367rem; color: #000; }
.zc-box2 .mxw-box .list{ margin-top: 1rem; display: flex; align-items: stretch; flex-wrap: wrap; justify-content: flex-start;}
.zc-box2 .mxw-box .list .item{ padding: 0.467rem 0.533rem; background: #fff; border-radius: 0.667rem; vertical-align: middle}
.zc-box2 .mxw-box .list .item:nth-child(odd){ margin-right: 1rem;}
.zc-box2 .mxw-box .list .item::before{ content: ""; display:inline-block; width: 0.317rem; height: 0.317rem; border-radius: 50%; background: #193883; margin-right: 0.4rem;}
.zc-box2 .mxw-box .list .item:nth-child(2n)~.item{ margin-top: 0.75rem;}

.news-page .list.video,.news-page .list.comm{ margin-top: 0;}
.news-page .list.video .mxw-image{ position: relative;}
.news-page .list.video .mxw-image::after{ position: absolute; width: 0.933rem; height: 0.933rem; left: 0; right: 0;
    top: 50%;
    margin: -0.467rem auto 0; background: url("../images/play.png") no-repeat; background-size: cover;display: block;content: "";
}

.color1-box{ padding-top: 2rem; background: url("../images/color1-bg.png") center no-repeat; background-size: cover; margin-top: -2rem;}
.color1-box .mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.color1-box .mxw-box .left-box{ width: 18.2%; flex-shrink: 0; background: url("../images/color1-left-bg.png") top center no-repeat; background-size: 100% auto; padding: 0.7rem;}
.lc2-swiper{ height: 11.5rem; overflow: hidden; margin: 0.333rem auto;}
.color1-box .mxw-box .left-box .swiper-button-prev,.color1-box .mxw-box .left-box .swiper-button-next{ position: initial; margin: 0 auto; width: 0.65rem; height: 0.65rem;background-color: #193883; color: #fff; border-radius: 50%}
.color1-box .mxw-box .left-box .swiper-button-next::after,.color1-box .mxw-box .left-box .swiper-button-prev::after{ font-size: 0.3rem; transform: rotate3d(0,0,1,90deg) }
.color1-box .mxw-box .left-box .swiper-button-next:hover,.color1-box .mxw-box .left-box .swiper-button-prev:hover{	 border-color: #193883}
.color1-box .mxw-box .right-box{ flex-grow: 1; min-width: 0; margin-left: 1.667rem;}
.lc1-swiper{ width: 100%; overflow: hidden; position: relative;}
.lc1-swiper .swiper-slide{ display: flex; align-items: center; justify-content: space-between;}
.lc1-swiper .swiper-slide .right{ width: 54%; flex-shrink: 0; margin-left: 1.083rem;}
.lc1-swiper .swiper-slide .right .mxw-image{ border-radius: 50%;}
.lc1-swiper .swiper-slide .left{ flex-grow: 1; min-width: 0;    position: relative;
    z-index: 99;}
.lc1-swiper .swiper-slide .left .st1{ font-size: 0.7rem; color: #000;}
.lc1-swiper .swiper-slide .left .st2{ font-size: 0.267rem; color: #000; margin-top: 0.333rem;}
.lc1-swiper .swiper-slide .left .desc{ margin: 0.8rem auto;  font-size: 0.3rem; color: #444; line-height: 1.9;}
.lc1-swiper .swiper-slide .left .c-more{ width: 3.333rem; display: flex; height: 1.067rem; align-items: center; justify-content: center; background: #fff; border-radius: 0.533rem;}
.lc1-swiper .swiper-slide .left .c-more img{ margin-left: 0.2rem;}
.lc1-swiper .swiper-pagination{ text-align: right; bottom: -0.2rem; font-size: 1.833rem;    z-index: 1;    width: max-content;
    right: 0;
    margin-left: auto;
    font-family: 宋体, Sans-Serif, serif; color: #fff; letter-spacing: 0 }
.lc1-swiper .swiper-pagination>span{font-family: 宋体, Sans-Serif, serif; line-height: 1; font-weight: bold;}

.color2-box1{ background: url("../images/color2-box1-bg.jpg") center no-repeat; background-size: cover; padding: 2.25rem 0 0.667rem; }
.color2-box1>.mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.color2-box1>.mxw-box .right-box{ width: 42.9375%; flex-shrink: 0; margin-left: 1rem; }
.color2-box1>.mxw-box .right-box .mxw-image{ border-radius: 50%;}
.color2-box1>.mxw-box .left-box{ flex-grow: 1; min-width: 0;}
.color2-box1>.mxw-box .left-box .en p{ font-size: 1.067rem;background-image: linear-gradient(to right, #193883, #68b92f);
    background-clip: text;
    -webkit-background-clip: text; width: max-content;
    color: transparent; line-height: 1;  font-weight: bold;}
.color2-box1>.mxw-box .left-box .cn{ margin: 0.7rem auto; font-size: 0.833rem; }
.color2-box1>.mxw-box .left-box .desc{ font-size: 0.367rem; color: #444; line-height: 1.6}
.color2-box2{ padding: 7.417rem 0 4.583rem; background: url("../images/color2-box2-bg.png") center no-repeat; background-size: auto 100%; position: relative;z-index: 1;}
.color2-box2 .mxw-box .con{ margin-left: auto;width: 32.2%}
.color2-box2 .mxw-box .con .en{ font-size: 1.067rem; color: #fff; text-align: right; font-weight: bold;}
.color2-box2 .mxw-box .con .cn{ font-size: 0.833rem; color: #fff; text-align: right; margin: 0.8rem auto 0.75rem;}
.color2-box2 .mxw-box .con .desc{ font-size: 0.367rem; line-height:  1.6; color: #fff; }

.color2-box3{ background: url("../images/color2-box3-bg.png") center no-repeat; background-size: cover; padding-top: 5.167rem; margin-top: -4rem; padding-bottom: 1.917rem;}
.color2-box3 .top{ display: flex; align-items: flex-start; justify-content: space-between;}
.color2-box3 .top .right-box{ width: 49.5%; flex-shrink: 0; margin-right: -2.5rem; margin-left: 2.667rem;}
.color2-box3 .top .left-box{
    flex-grow: 1; min-width: 0;}

.color2-box3 .top .left-box .en{ font-size: 1.067rem;background-image: linear-gradient(to right, #193883, #68b92f);
    background-clip: text;
    -webkit-background-clip: text; width: max-content;
    color: transparent; line-height: 1; font-weight: bold;}
.color2-box3 .top .left-box .cn{ margin: 0.75rem auto 0.667rem; font-size: 0.833rem;}
.color2-box3 .top .left-box .desc{ font-size: 0.367rem; color: #444; line-height: 1.6 }
.color2-box3 .bot{  margin-top: -1.7rem; }
.color2-box3 .bot .title{ font-size: 0.5rem; font-weight: bold; color: #444444; }
.color2-box3 .bot .list{ display: flex; align-items: flex-start; justify-content: space-between;}
.color2-box3 .bot .list .item{ margin-top: 0.8rem; text-align: center;}
.color2-box3 .bot .list .item .icon{	box-shadow: 0px 4px 24px 0px
rgba(25, 56, 131, 0.14);
    border-radius: 0.333rem; width: max-content; margin: 0 auto 0.467rem;}
.color2-box3 .bot .list .item p{ text-align: center;font-size: 0.3rem; line-height: 1.6}

.contact-box1{ padding-top: 1.25rem; }
.contact-box1 .c-title{ text-align: center;}
.contact-box1 .c-title .en{font-size: 0.75rem;background-image: linear-gradient(to right, #193883, #68b92f);
    background-clip: text;
    -webkit-background-clip: text; width: max-content;
    color: transparent;  font-weight: bold; margin: 0 auto;}
.contact-box1 .c-title .cn{ font-size: 0.65rem; color: #000; margin: 0.333rem auto 0.467rem; }
.contact-box1 .c-title .desc{ font-size: 0.3rem; color: #666;}
.contact-box1 .list{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 1.167rem;}
.contact-box1 .list .item{	border: solid 1px #eeeeee; width: 24%; padding: 0.867rem 0.333rem;
text-align: center;}
.contact-box1 .list .item .icon{ margin-bottom: 0.333rem}
.contact-box1 .list .item .st{	font-size: 0.4rem;color: #101010; margin-bottom: 0.367rem}
.contact-box1 .list .item .desc{ font-size: 0.3rem; color: #666; line-height: 1.5}
.contact-box1 .list .item .st2{ font-size: 0.3rem;	color: #101010; font-weight: bold;}
.contact-box1 .list .item .st3{ font-size: 0.3rem; color: #666; line-height: 1.5}
.contact-box1 .list .item .st4{ font-size: 0.3rem;	color: #101010; font-weight: bold; cursor: pointer;}
.contact-box1 .list .item:hover{	border-style: solid;
    border-width: 1px;
    border-image-source: linear-gradient(180deg,
    #193883 0%,
    #68b92f 100%);
    border-image-slice: 1;}

.cont-map{ height: 10rem; margin: 1.067rem auto 1.583rem; font-size: 14px}

.msg-box{ margin-top: 0.833rem; margin-bottom: 1.917rem}
.msg-box .inp{ display: flex; align-items: stretch; justify-content: space-between;  margin-bottom: 0.633rem}
.msg-box .inp .item{ width: 48.125%;}
.msg-box .inp .item p{	font-size: 0.3rem; font-weight: bold; }
.msg-box .inp .item p span{color: #c20000; font-weight: inherit;}
.msg-box .inp .item input{	border: solid 1px #eaeaea;
    padding: 0.333rem;font-size: 0.267rem;	color: #a8a8a8; width: 100%; margin-top: 0.233rem;}

.msg-box .tx-box p{font-size: 0.3rem; font-weight: bold;}
.msg-box .tx-box textarea{ width: 100%;border: solid 0.017rem #eaeaea; resize: none;padding: 0.333rem;    margin-top: 0.233rem; height: 2.667rem;color: #a8a8a8; font-size: 0.267rem;}
.msg-box .tx-box textarea::placeholder{	color: #a8a8a8; font-size: 0.267rem;}
.subx{width: 3.267rem;
    height: 1.067rem;
    background-color: #193883;
    border-radius: 0.533rem; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.367rem; margin: 0.917rem auto 0; cursor: pointer}

.index-main .index-main-swiper {
    height: 100vh;
}
.index-main .index-main-swiper>.swiper-wrapper>.swiper-slide {
      height: 100vh;
}


header.fixed{position: fixed; top: 0; width: 100%; z-index: 99; background: #fff;}
.index-section2{ margin-top:  2.033rem; background: url("../images/in-box2-bg.jpg") center no-repeat; display: flex; align-items: stretch; justify-content: flex-start; height: calc(100vh - 2.033rem) !important;  background-size: cover;}
.index-section2 .item1{ width: 25%; display: flex; flex-direction: column; justify-content: center;}
.index-section2 .item1 .big-title{    opacity: 0;
    transform: translateY(-0.5rem);
    transition: all 0.1s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.6s;}
.ind_active .index-section2 .item1 .big-title{    opacity: 1;
    transform: none;
    transition: all 1s cubic-bezier(0.25, 0.74, 0.22, 0.99) 1s;
    margin-left: -0.04em;}

.index-section2 .item1 .big-title img{ max-width: initial; height: 1.583rem; margin-left: 2.45rem;}
.g-box{ margin-left: 2.45rem; margin-top: 1rem;}
.g-box .g-item{ font-size: 0; padding-bottom: 0.833rem; border-bottom: 1px solid rgba(255,255,255,.14)}
.g-box .scrolling-numbers{ font-size: 0.967rem;background-image: linear-gradient(to right, #0094d8, #68b92f);
    background-clip: text;
    -webkit-background-clip: text; width: max-content;
    color: transparent;  font-weight: bold;}
.g-box .g-item sup{ color:#68b92f; font-size: 0.6rem; font-weight: bold; vertical-align: top; }
.g-box .g-item .dw{width: 0.433rem;
    height: 0.433rem;
    background-color: #68b92f; border-radius: 50%; color: #fff; font-size: 0.3rem; display: inline-flex; align-items: center; justify-content: center; vertical-align: top;}
.g-box .g-item sub{ font-size: 0.267rem;color: #fff;}
.g-box .g-item:nth-child(1)~.g-item{ margin-top: 0.833rem;}
.index-section2 .item2{ width: 45%; display: flex; flex-direction: column; justify-content: center;
    padding: 1rem 1.083rem 0;
}
.index-section2 .item2 .xx p{background-image: linear-gradient(to right, #193883, #68b92f);
    background-clip: text;
    -webkit-background-clip: text; width: max-content;
    color: transparent;  font-weight: bold; font-size: 0.367rem; line-height: 2.2}
.index-section2 .item2 .desc{ font-size: 0.3rem; color: #333; margin: 0.8rem auto 0.917rem 0; line-height: 2.1}
.in-more1{	width: 3.633rem;
    height: 1.35rem;
    background-image: linear-gradient(90deg,
    #68b92f 0%,
    #2ebdff 100%),
    linear-gradient(
            #193883,
            #193883);
    background-blend-mode: normal,
    normal;
    border-radius: 40px;
    opacity: 0.8; line-height: 1.35rem;font-size: 0.333rem; color: #fff; text-indent: 0.5rem;}
.in-more1 img{ height: 1.083rem; margin-left: 0.12rem}

.index-section3{ background: url("../images/in-box3-bg.jpg") center no-repeat; background-size: cover; margin-top:  2.033rem; height: calc(100vh - 2.033rem) !important; }

.index-section3 .mxw-box{ display: flex; flex-direction: column; justify-content: center; height: 100%}
.index-section3 .mxw-box .en{	font-size: 0.35rem; font-weight: bold; color: #193883;}
.index-section3 .mxw-box .cn{	font-size: 0.7rem; color: #193883; font-weight: bold; margin-top: 0.2rem;}
.index-section3 .mxw-box .info{	font-size: 0.3rem; color: #333; margin-top: 0.3rem;}
.index-section3 .mxw-box .list{ margin-top: 1.25rem; display: flex; align-items: flex-end; justify-content: flex-start; height: 6.533rem;}
.index-section3 .mxw-box .list .item{ margin-right: 0.833rem; flex-shrink: 0}
.index-section3 .mxw-box .list .item .c2{
    background-color: rgba(255,255,255,.8);
    border-radius: 0.767rem 0.767rem 2.433rem 2.433rem;
     text-align: center;
    padding: 0.667rem 0.7rem 0.833rem 0.7rem;margin-top: -0.85rem
}
.index-section3 .mxw-box .list .item .c2 .st{ font-size: 0.433rem;}
.index-section3 .mxw-box .list .item .c2 .icon{ margin-bottom: 0.583rem;}
.index-section3 .mxw-box .list .item .c2 .desc{ font-size: 0.267rem;color: #878787; margin-bottom: 0.7rem; margin-top: 0.367rem;}
.index-section3 .mxw-box .list .item .c2 .hx{ visibility: hidden; font-size: 0;}
.index-section3 .mxw-box .list .item .c1{ text-align: center; padding: 0.9rem 0 1.167rem; background: url("../images/index_03.png") top center no-repeat; background-size: cover; visibility: hidden; display: none}
.index-section3 .mxw-box .list .item:hover .hx{ visibility: visible; margin: 20px auto;  }
.index-section3 .mxw-box .list .item:hover .c2 .icon{ display: none;}
.index-section3 .mxw-box .list .item:hover .c1{ visibility: visible;display: block}
.index-section3 .mxw-box .list .item:hover .desc{ margin: 0 auto 0.7rem}
.index-section3 .mxw-box .list .item:hover .c2{ background: #fff; }
.index-section3 .mxw-box .list .item:hover .c1 img{ filter: grayscale(100%) brightness(600%)}

.index-section4{background: url("../images/index-box4-bg.png") center no-repeat; background-size: cover;  height: calc(100vh - 2.033rem) !important;  display: flex;flex-direction: column; justify-content: space-between; margin-top:2.033rem}
.mxw-title{ text-align: left;}
.mxw-title .en{font-size: 0.35rem; font-weight: bold; color: #193883;}
.mxw-title .cn{	font-size: 0.7rem; color: #193883; font-weight: bold; margin-top: 0.2rem;}
.index-section4 .mxw-title{ margin-top: 0;        position: absolute;}

.index-swiper-pro{ overflow: hidden; margin-top: 1rem;  }
.index-swiper-pro .swiper-slide{ display: flex; align-items: center; justify-content: space-between;}
.index-swiper-pro .swiper-slide .right-box{ width: 60%; flex-shrink: 0;    display: flex;
    align-items: center;
    justify-content: center;}
.index-swiper-pro .swiper-slide .right-box img{ max-height:400px}
.index-swiper-pro .swiper-slide .left-box{ flex-grow: 1; min-width: 0; margin-right: 2rem;    padding-top: 3rem;}
.index-swiper-pro .swiper-slide .left-box .st{	font-size: 0.767rem;}
.index-swiper-pro .swiper-slide .left-box .desc{ margin-top: 0.633rem; font-size: 0.3rem; color: #444444; line-height: 1.8}
.index-swiper-pro .swiper-slide .left-box .in-more1{ display: flex; justify-content: space-between; align-items: center; margin-top: 0.9rem;}
.index-swiper-pro .swiper-slide .left-box .in-more1 img{ margin-right: 0.15rem}

.index-section4 .list-bg{position: relative;}
.index-section4 .list-pro-cate{ display: flex; justify-content: space-between; margin-bottom: 1.083rem; }
.index-section4 .list-pro-cate .item{ flex-grow: 1;  font-size: 0.367rem; color: #000; text-align: center; cursor: pointer;}
.index-section4 .list-pro-cate .item .icon{   width: 0.767rem; height: 0.767rem; border-radius: 50%; background: transparent; margin: 0 auto 0.2rem; display: flex; align-items: center; justify-content: center; }
.index-section4 .list-pro-cate .item .icon::after{ content: ""; width: 0.183rem; height: 0.183rem; border-radius: 50%; background: #193883;}
.index-section4 .list-bg::before{ display: block; content: ""; position: absolute; background: #193883;  top: 0.4rem; width: 100%; height: 1px;	opacity: 0.3;}
.index-section4 .list-pro-cate .item.active .icon,.index-section4 .list-pro-cate .item:hover .icon{background: #193883;}
.index-section4 .list-pro-cate .item.active .icon::after,.index-section4 .list-pro-cate .item:hover .icon::after{background: #fff;}

.index-section5{background: url("../images/in-box5-bg.jpg") center no-repeat; background-size: cover;  height: calc(100vh - 2.033rem) !important;margin-top:2.033rem }
.index-section5 .mxw-title>div{background-image: linear-gradient(to right, #193883, #68b92f);
    background-clip: text;
    -webkit-background-clip: text; width: max-content;
    color: transparent; }
.index-section5 .mxw-title{ padding-top: 1rem;}
.index-section5 .list{ margin-top: 1rem; display: flex; flex-direction: column;}
.index-section5 .list .item{ background: #fff;
    border-radius: 0rem 0.65rem 0.65rem 0rem; padding: 0.317rem 0.633rem 0.317rem 0.6rem; font-size: 0.4rem; display: flex; align-items: center; width: max-content; transition: all 0.3s;}
.index-section5 .list .item .icon{ margin-right: 0.4rem;}
.index-section5 .list .item::after{ content: ">"; display: block; margin-left: 0.917rem; color: #b8b8b8}
.index-section5 .list .item:nth-child(1)~.item{ margin-top: 0.55rem;}
.index-section5 .list .item.active .icon,.index-section5 .list .item:hover .icon{filter: grayscale(100%) brightness(600%) }
.index-section5 .list .item.active,.index-section5 .list .item:hover {	background-image: linear-gradient(270deg,
#68b92f 9%,
#193883 100%),
linear-gradient(
        #68b92f,
        #68b92f);
    background-blend-mode: normal,
    normal;}
.index-section5 .list .item.active,.index-section5 .list .item:hover{color: #fff;}
.index-section5 .list .item.active::after,.index-section5 .list .item:hover::after{filter: grayscale(100%) brightness(600%); margin-left: 2.333rem; }

#foot-slide{ height: auto;}
.index-section6{ background: url("../images/in-box6-bg.png") top center no-repeat; background-size: 100% auto;

height: calc(100vh - 2.033rem) !important;  margin-top:2.033rem}
.index-section6 .top{ display: flex; align-items: center; justify-content: space-between; padding-top: 1rem;}

.index-section6 .news-list{ overflow: hidden; margin-top: 1rem;}
.index-section6  .in-more1{display: flex; justify-content: space-between; align-items: center;  }
.index-section6  .in-more1 img{ margin-right: 0.15rem }
.index-section6 .news-list .swiper-wrapper{    align-items: stretch;}
.index-section6 .news-list .swiper-slide{ background: #fff;     display: flex;
    flex-direction: column;}
.index-section6 .news-list .swiper-slide .time{ margin:  0.583rem  0.467rem  0.3rem;}
.index-section6 .news-list .swiper-slide .st{ margin: 0 0.467rem 0.7rem; 	color: #333333; font-size: 0.333rem;flex-grow: 1;    min-width: 0;}
.index-section6 .news-list .swiper-slide:hover .st{ color: #193883}


.index-section6 .hz-swiper{ margin-top: 2.667rem; overflow: hidden; margin-bottom: 1.667rem;}
.index-section6 .hz-swiper .swiper-slide{ text-align: center;}

.index-section7{margin-top:  2.033rem;min-height: calc(100vh - 2.033rem) !important;     display: flex;
    flex-direction: column;
    justify-content: space-between;   }

.index-section7 .top {
    display: flex;
    justify-content: space-between;
    zoom: 0.95;
}
.hz-box{    background: url(/skin/images/in-box6-bg.png) top center no-repeat;
    background-size: 100% auto;    padding: 1rem 0;}

.hz-box .cn {
    font-size: 0.7rem;
    color: #193883;
    font-weight: bold;
    margin-top: 0.2rem;
}
.hz-box  .info {
    font-size: 0.3rem;
    color: #333;
    margin-top: 0.3rem;
}
.hz-swiper{margin-top: 0.75rem;    overflow: hidden;}
.hz-box  .in-more1 {
 zoom: 0.9;
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding-right: 0.2rem;
}


footer{  padding-top: 0.8rem;  background: #193883;}
.d-top{ display: flex; align-items: flex-start; justify-content: space-between; color: #fff; padding-bottom: 0.75rem; }
.d-top>.left-box{ width: 23%; flex-shrink: 0}
.d-top>.left-box .d-tel{ display: flex; align-items: center; justify-content: space-between; margin-right: 0.833rem; padding-bottom: 0.3rem; border-bottom: 2px solid rgba(255,255,255,.4)}
.d-top>.left-box .d-tel .c1 .st1{font-size: 0.267rem; opacity: 0.4; }
.d-top>.left-box .d-tel .c1 .desc{font-size: 0.5rem; font-weight: bold;}

.cont-info{ margin: 0.367rem auto 0.967rem; font-size: 0.267rem; line-height: 1.8}
.d-top .ewm-box{	font-size: 0.233rem; color: #fff;  width: max-content;     margin-left: 1.2rem;
    flex-shrink: 0;
    max-width: 150px;}
.d-top .ewm-box p{ text-align: center;margin-top: 0.167rem; }

.d-top>.right-box{  flex-grow: 1; min-width: 0; margin-left: 1.2rem; }
.d-top>.right-box .list{ display: flex; align-items: flex-start; justify-content: space-between;}
.d-top>.right-box .list .st{	font-size: 0.3rem; font-weight: bold; color: #fff; padding-bottom: 0.3rem; border-bottom: 0.017rem solid rgba(255,255,255,.5); width: max-content; margin-bottom: 0.467rem;}
.d-top>.right-box .list a{	font-size: 0.267rem; color: #fff; opacity: 0.5; display: block; margin-bottom: 0.2rem;}

.mxw-copy .mxw-box{ display: flex; align-items: center; justify-content: space-between; padding: 0.333rem 0; 	font-size: 0.233rem; color: #fff; border-top: 2px solid rgba(255,255,255,.2)}
.mxw-copy .mxw-box .right-box{text-align: right;}
.mxw-copy .mxw-box .left-box{ display: flex; align-items: center; justify-content: flex-start; }

.mxw-copy .mxw-box .left-box .item{ margin-right: 0.333rem;}
.mxw-copy .mxw-box .left-box .item img{ margin-right: 0.1rem;}




.bott{
    position: absolute;
    z-index: 99;
    bottom: 40px;left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;    font-size: 0.333rem;
    color: #fff;
}

.bott .mouse{    margin-right: 0.25rem;
    flex-shrink: 0;
}
.bott .mouse img{margin-right: 0.25rem;}
.bott .swiper-pagination{    width: max-content;
    position: initial;
    margin-left: 0.25rem;
    flex-shrink: 0;}
.bott  .center{    height: 1px;
    background: #fff;
    opacity: 0.5;
    flex-grow: 1;}






.n_banner,.n-banner{    text-align: center;}
.pro-show2{}
.pro-show2{ padding: 1.417rem 0 1.833rem;}
    .show-title{text-align: center;}
    .show-title .en{    background-image: linear-gradient(to right, #193883, #68b92f);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;font-size: 0.833rem; font-weight: bold; width: max-content; margin: 0 auto;}
    .show-title .cn{font-size: 0.667rem;color: #000}
    .pro-show3{    background: #f5f5f5; padding: 1.417rem 0 1.833rem;}
    .pro-show2 .list{ display: flex; justify-content: space-between; margin-top: 1rem; padding: 0 5%}
    .pro-show2 .list .item{ text-align: center}
    .pro-show2 .list .item .icon{	box-shadow: 0px 4px 24px 0px
    rgba(25, 56, 131, 0.14);
        border-radius: 0.333rem; margin: 0  auto 0.417rem; width: max-content;}
    .pro-show2 .list .item p{ line-height: 1.6}


.mxw-banner .swiper-slide{    height: calc(100vh - 2.033rem) !important;}
.mxw-banner .swiper-slide img{width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    object-fit: cover;
    transition: all .5s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;}

 @keyframes upDown {
      to {
        transform: translate3d(0, 100%, 0);
      }
    }


.bott .mouse{    display: flex;
    align-items: center;}
.bott .mouse > div {
    width: 23px;
    margin-right: 0.27rem;
    height: 32px;

   
    position: relative;
background: url(../images/shubiao.png) no-repeat;
}
.bott .mouse > div span {
    left: 10px;
    position: absolute;
    top: 7px;
    width: 3px;
    height: 7px;
    background-color: #fff;
    border-radius: 1px;
    animation: upDown 1s ease-out infinite;
}


.mxw-banner .swiper-pagination{    
z-index: 100;
    left: 2rem;width: max-content;
    display: flex;
    flex-direction: column;
    position: absolute;
    height: 100%;
    justify-content: center;}



.mxw-banner .swiper-pagination div{
    width: 40px;
    height: 40px;    
margin: 0.2rem 0 !important;
    position: relative;
    background-color: transparent;
    opacity: 1;
}
.mxw-banner .swiper-pagination div::before{

content: '';
          display: block;
          width: 100%;
          height: 100%;
          border: 2px solid rgba(255, 255, 255, .3);
          position: absolute;
          left: 0;
          top: 0;
          border-radius: 100%;
          opacity: 0;
transition: opacity 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;
}
.mxw-banner .swiper-pagination div::after{

content: '';
          content: '';
          display: block;
          width: 10px;
          height: 10px;
          border-radius: 100%;
          background-color: rgba(255, 255, 255, .5);
          position: absolute;
          left: 50%;
          top: 50%;
          margin-top: -5px;
          margin-left: -5px;
transition: background-color 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;
}

.mxw-banner .swiper-pagination div svg {
          display: block;
          width: 100%;
}

 .mxw-banner .swiper-pagination div svg         circle {
            stroke: rgba(255, 255, 255, 1);
            stroke-width: 2px;
            fill: transparent;
            r: 48;
            cx: 51;
            cy: 51;
            stroke-dasharray: 300;
            stroke-dashoffset: 300;
          }
 .mxw-banner .swiper-pagination .swiper-pagination-bullet-active::before {
            opacity: 1;
   
          }


 .mxw-banner .swiper-pagination .swiper-pagination-bullet-active circle {
              transition: stroke-dashoffset ease 5s;
              stroke-dashoffset: 0;
            }


.contact-box1 .list .item .flx{      display: none;
    position: absolute;
    bottom: 1.4rem;
    left: 0;
    right: 0;
}
.contact-box1 .list .item:last-child{    position: relative;}
.contact-box1 .list .item:last-child:hover .flx{ display:block;}



.index-section2 .item2 {opacity: 0; transform: translateY(-0.5rem);  transition: all 0.1s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.6s;}

.ind_active .index-section2 .item2 {opacity: 1; transform: none;  transition: all 1s cubic-bezier(0.25, 0.74, 0.22, 0.99) 1.4s;}



.index-section2 .item1{    transition: opacity 0.1s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0.6s;
    opacity: 0;}

.ind_active .index-section2 .item1{    opacity: 1;
    transition: opacity 1s cubic-bezier(0.25, 0.74, 0.22, 0.99) 1.2s;}

.in-more1{    transition: color 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99);}
.in-more1:hover{    background: #fff;
    color: #333;}





@keyframes newF {
    0% {
        opacity: 0;
        transform: translateY(.5rem) scaleX(1.2);
    }
    100% {
        opacity: 1;
        transform: none;

    }
}

.newF {
    -webkit-animation-name: newF;
    animation-name: newF;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.d-top>.right-box .list .item{}
/*
.ind_banner_case{    -webkit-transform: scale(0.68);
    transform: scale(0.68);
    border-radius: 40px;
    overflow: hidden;
    position: absolute;
    -webkit-transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);}
.mxw-banner .swiper-slide-active ..ind_banner_case{
 -webkit-transform: scale(1);
        transform: scale(1);
        border-radius: 0;
        -webkit-transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
        -webkit-transition-delay: 0.6s;
        transition-delay: 0.6s;
}
*/



.pro-show3 .list{margin-top: 1.917rem;}
.pro-show3 .list .item{ position: relative;}
.pro-show3 .list .item p{ position: absolute; max-width: 100%; width: max-content; padding: 22px 40px;	background-color: #193883;
    border-radius: 0rem 0.533rem 0rem 0rem; font-size: 0.333rem; color: #fff; left: 0; bottom: 0;}


.conn-cate.zc{    background: #fafafa;}






    /* ==================== 页面具体样式 end ==================== */



/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll {
    overflow: hidden;
}
.mxw-scroll .scroll-wrap {
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.mxw-scroll .scroll-item {
    flex-shrink: 0;
}

@media screen and (max-width: 500px) {
    .mxw-scroll .scroll-item {
        width: 48%;
        margin-right: 4%;

    }

}
/* ==================== 通用 - 无缝滚动 end ==================== */



/* ==================== 产品详情页 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: #172a88;
}
.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;
    height:107px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ny-product-desc .small-image .swiper-slide-thumb-active .mxw-image {
    border-color: #f37b1d;
}
.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 #c10d1a;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #c10d1a;
}
.ny-product-desc .big-swiper .swiper-slide{
    height:auto
}
.ny-product-desc .big-swiper .mxw-image{
    height:100%;    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 1400px;
    }
    .ny-product-desc .top {
        align-items: stretch;
    }
}
@media screen and (max-width: 1480px) {
    .ny-product-desc .mxw-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 1200px) {
    .ny-product-desc .mxw-box {
        max-width: 100%;
    }
    .ny-product-desc .top {
        flex-wrap: wrap;
    }
    .ny-product-desc .ny-product-image {
        width: 100%;
        margin-right: 0;
    }
    .ny-product-desc .right {
        width: 100%;
    }
    .ny-product-desc .info {
        order: 2;
    }
    .ny-product-desc .small-image {
        padding: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .ny-product-desc .small-image .swiper-slide {
        max-width: 120px;
    }
    .ny-product-desc .swiper-button-next,
    .ny-product-desc .swiper-button-prev {
        display: none;
    }
    .ny-product-desc .info .head {
        margin-bottom: 15px;
    }
    .ny-product-desc .info .head .text1 {
        font-size: 22px;
    }
    .ny-product-desc .info .head .text2 {
        font-size: 14px;
    }
    .ny-product-desc .info .detail {
        font-size: 14px;
    }
    .ny-product-desc .info .mxw-more {
        margin-top: 20px;
    }
    .ny-product-desc .bottom {
        margin-top: 30px;
    }
    .ny-product-desc .bottom .head {
        margin-bottom: 10px;
    }
    .ny-product-desc .bottom .head .text1 {
        font-size: 16px;
        border-bottom-width: 3px;
        height: 40px;
        line-height: 40px;
    }
}
/* ==================== 内页 - 产品详情 end ==================== */


/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 44px 64px;

}
.ny-news-desc > .mxw-box {
    padding-top: 60px;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;    position: relative;
}
.ny-news-desc .info .back{
    position: absolute;
    right: 0;
    font-size: 14px;
    padding: 8px 15px;
    background: #7f7f7f;
    color: #fff;
    top: -5px;}
.ny-news-desc .info .back:hover{   background: #15499a}
.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 {

    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;
    font-size: 15px;
}
.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: 17px;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */

.yq-link .mxw-box{     color: #fff;
    display: flex;
    align-items: center;
    font-size: 0.267rem;
    margin-bottom: 0.2rem;
    opacity: 0.4;}

.show-swiper{    overflow: hidden;    position: relative;}
.show-swiper .swiper-pagination-bullet{    background: #fff;
    opacity: 1;}
.show-swiper .swiper-pagination-bullet-active{    background: #1c4cca;
   }


.pro-show2 table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.pro-show2 table th,
.pro-show2 table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.pro-show2 table td p{line-height:1.8;}
.pro-show2 table tr:hover{background-color:#f2f2f2!important;}
.pro-show2 table tr:nth-child(2n-1){background-color:#fff ;}
.pro-show2 table tr:nth-child(2n){background-color:#fdfdfd ;}

@media screen and (max-width: 1800px) {
    .index-section2 .item1,.index-section2 .item2{ zoom: 0.9}
    .index-section3 .mxw-box{ zoom: 0.9}
    .index-section4 .mxw-title{ margin-top: 0;}
    .index-swiper-pro{ zoom: 0.9; margin-top: 0.85rem }
    .index-section4 .list-bg{ margin-top: 1rem; zoom: 0.85}
    .index-section6 .mxw-box{ zoom: 0.9}
    .index-section5 .mxw-box{ zoom: 0.9}

}



/* 各分部联系方式 begin */

.box_lxfs1 .m-tab1 {margin: 4px 0;}
.box_lxfs2 ul{margin: 0 -10px; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.box_lxfs2 ul li{width: 48%;    background: #f6f6f6;
    padding: 0 0.5rem;}
.box_lxfs2 .con{
    height: auto;
    margin: 20px 10px 0;
    padding: 0 12px 30px 0;
       line-height: 1.6;
    background-size: cover;
    cursor: pointer
}
.box_lxfs2 ul li:nth-child(2n)~li{ margin-top:0.6rem}
.box_lxfs2 .con .tit{font-size: 20px;margin-bottom: 22px;font-weight: bold;}
.box_lxfs2 .con .txt{font-size: 18px;color: #666;margin-top: 12px; width: 100%; height: auto; overflow: hidden; }
.box_lxfs2 .con .txt span:nth-child(1){display: block;float:left;margin-right: 25px;}
.box_lxfs2 .con .txt span:nth-child(2){display: block;overflow: hidden}
/*
.box_lxfs2 .con:hover{background-size: cover;}
.box_lxfs2 .con:hover .tit{color: #fff;}
.box_lxfs2 .con:hover .txt{color: #fff;}*/
.box_lxfs3{display: none}
.box_lxfs3 .m-tab1 {margin: 60px 0 0;}
.box_lxfs3 .m-tab1 li a {width: 165px;}
.g-t1 {
    font-size: 36px;
    color: #222;

    padding-bottom: 12px;
  
}

.global_pd {
    padding: 1.2rem 0; height: auto; overflow: hidden;
}

@media screen and (max-width:900px){
    .box_lxfs2 ul li {width: 100%;float: none;
 padding: 0 15px;
    }
.box_lxfs2 ul li:nth-child(1)~li {
    margin-top: 15px;
}

}
@media screen and (max-width:768px){
    .row_lxfs1 .m-list4 .txt {height: auto;}

    .box_lxfs2 .con {padding: 0 0 20px;height: auto;}
    .box_lxfs2 .con .tit {font-size: 16px;margin-bottom: 16px;}
    .box_lxfs2 .con .txt {font-size: 14px;margin-top: 8px;}
    .box_lxfs2 .con .txt span:nth-child(1) {margin-right: 16px;}
    .box_lxfs3 .m-tab1 {margin: 10px 0 0;}
    .g-t1{ font-size: 22px;}
    .global_pd{ padding: 40px 0;}
}
/* 各分部联系方式 end */




@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    .index-main .index-main-swiper{ height: auto;}

    .index-main .index-main-swiper section{ height: auto !important;}
    #index-main-swiper>.swiper-wrapper{ display: block; height: auto;}
    .index-section2,.index-section3,.index-section4,.index-section5,.index-section6{ margin-top: 0}
    .index-section2{ flex-wrap: wrap; padding: 0 2.5%}
    .index-section2 .item1{ width: 100%;}
    .index-section2 .item1 .big-title img{ margin: 40px 0 0; width: 100%; height: auto;}
    .g-box{ margin: 25px 0 0; display: flex; align-items: center;}
    .g-box .scrolling-numbers{ font-size: 22px;}
    .g-box .g-item .dw{ zoom: 0.9}
    .g-box .g-item{ width: 33%; padding-bottom: 0; border-bottom: 0; text-align: center;}
    .g-box .g-item sub{ display: block; color: #222}
    .g-box .g-item sup{ font-size: 16px}
    .g-box .g-item:nth-child(1)~.g-item{ margin-top: 0}
    .index-section2 .item2{ width: 100%; padding: 0; margin: 25px auto 45px;}
    .index-section2 .item2 .xx p{ font-size: 18px; line-height: 1.5; word-break: break-all; width: initial}
    .index-section2 .item2 .desc{ margin: 15px auto 15px;}
    .in-more1{ zoom: 0.7; font-size: 22px; width: max-content; padding-right: 5px}
    .index-section3{ padding: 45px 0;}
    .index-section3 .mxw-box .en{ font-size: 18px;}
    .index-section3 .mxw-box .cn{ font-size: 21px}
    .index-section3 .mxw-box .info{ font-size: 14px; line-height: 1.6}
    .index-section3 .mxw-box .list .item .c1{ display: none !important;}
    .index-section3 .mxw-box .list{ height: auto; flex-wrap: wrap; justify-content: space-between;}
    .index-section3 .mxw-box .list .item{ width: 48.5%; margin: initial;}
    .index-section3 .mxw-box .list .item .c2{ padding: 15px; margin-top: 0; background: #fff;}
    .index-section3 .mxw-box .list .item .c2 .icon{ margin-bottom: 15px}
    .index-section3 .mxw-box .list .item .c2 .icon img{ height: 35px;}
    .index-section3 .mxw-box .list .item .c2 .st{ font-size: 16px;}
    .index-section3 .mxw-box .list .item .c2 .desc{ margin: 10px auto 15px;}
    .index-section3 .mxw-box .list .item .c2 .ico{ zoom: 0.9}
    .index-section3 .mxw-box .list .item:nth-child(3){  margin-top: 25px;}
    .index-section4{ padding: 45px 0;}
    .index-section4 .mxw-title{ margin-top: 0}
    .mxw-title .en{ font-size: 18px;}
    .mxw-title .cn{ font-size: 22px; margin-top: 5px}
    .index-swiper-pro{ margin-top: 30px;}
    .index-swiper-pro .swiper-slide{ flex-wrap: wrap;}
    .index-swiper-pro .swiper-slide .left-box{ margin-right: 0;}
    .index-swiper-pro .swiper-slide .left-box .st{ font-size: 20px;}
    .index-swiper-pro .swiper-slide .left-box .desc{ margin-top: 15px; font-size: 14px;}
    .index-swiper-pro .swiper-slide .left-box .in-more1{ margin: 15px auto 0 0;}
    .index-swiper-pro .swiper-slide .right-box{ margin-top: 40px; width: 100%;}
    .index-section4 .list-bg::before{ display: none;}
    .index-section4 .list-pro-cate{ flex-wrap: wrap; margin: 15px auto 0; justify-content: space-between;}
    .index-section4 .list-pro-cate .item .icon{display: none}
    .index-section4 .list-pro-cate .item.active{ color: #193883}
    .index-section4 .list-pro-cate .item{ font-size: 16px; width: 48%; flex-grow: initial; padding: 8px 15px; border: 1px solid #666}
    .index-section4 .list-pro-cate .item:nth-child(2n)~.item{ margin-top: 12px;}
    .index-section5 .list{ zoom: 0.85}
    .index-section6 .hz-swiper{ margin-top: 25px;}
    .d-top>.right-box{ display: none}
    .d-top>.left-box{ width: 100%}
    .d-top{ padding-bottom: 30px;}
    footer{ padding-top: 40px}
    .mxw-copy .mxw-box{ flex-wrap: wrap;}
    .mxw-copy .mxw-box .left-box{ margin-bottom: 10px; width: 100%; text-align: center; justify-content: center;}
    .mxw-copy .mxw-box .right-box{ width: 100%; text-align: center;}

    .about-page{ padding: 45px 0;}
    .about-box1>.mxw-box{ flex-wrap: wrap;}
    .about-box1 .left-box{ width: 100%; margin-right: 0}
    .about-box1 .left-box .en{ font-size: 18px;}
    .about-box1 .left-box .cn{ font-size: 20px; margin-top: 5px}
    .about-box1 .left-box .desc{ margin: 25px auto; font-size: 18px;}
    .gd-box{ margin-top: 25px;}
    .gd-box .item{ text-align: center; flex-grow: 1;}
    .gd-box .item .num .scrolling-numbers{ font-size: 22px;}
    .gd-box .item .num sup:last-child{ zoom: 0.8}
    .gd-box .item .num sup:nth-child(2){ font-size: 20px}
    .about-box1{ padding-bottom: 45px;}
    .about-box2-flx{ margin-top: 0; width: 100%; max-width: 100%; padding-bottom: 25px;}
    .about-box2 .text .en{ font-size: 22px;}
    .about-box2 .text .cn{ font-size: 20px;}
    .about-box2-flx{ flex-wrap: wrap;}
    .about-box2-flx .item .st{ font-size: 16px;}
    .about-box2-flx .item{ padding: 15px 0; width: 100%;}
    .about-box2-flx .item .desc{ font-size: 14px;}

    .about-box3{ padding: 45px 0;}
    .mxw-title2 .en{ font-size: 16px;}
    .mxw-title2 .cn{ font-size: 20px; margin-top: 10px;}
    .fz-swiper{ margin: 30px auto; width: 95%; }
    .fz-swiper .swiper-slide{}
    .fz-swiper .swiper-slide.swiper-slide-active .text1, .fz-swiper .swiper-slide.swiper-slide-active .text2{ font-size: 14px;}
    .fz-swiper .swiper-slide.swiper-slide-active .num{ font-size: 30px;}
    .fz-swiper .swiper-button-prev{ left: 0; zoom: 0.6}
    .fz-swiper .swiper-button-next{ right: 0; zoom: 0.6}

    footer{ margin-top: 0;}
    .about-box4{ padding-top: 45px;}
    .honor-body .swiper-button-prev,.honor-body .swiper-button-next{ zoom: 0.6}
    .about-box4 .honor-body{ margin-top: 25px; padding: 0 30px;}
    .about2-box1{ padding-top: 40px;}
    .about2-box1 .en{ font-size: 18px;}
    .about2-box1 .cn{ font-size: 20px;}
    .about2-box1 .cn::after{ margin-top: 10px; zoom: 0.8}
    .about2-box1 .list{ margin-top: 25px; flex-wrap: wrap;}
    .about2-box1 .list .item{ width: 100%; padding: 15px;}
    .about2-box1 .list .item .icon{ zoom: 0.6}
    .about2-box1 .list .item .st{ font-size: 20px;}
    .about2-box1 .list .item:nth-child(1)~.item{ margin-top: 25px;}

    .about2-box2{ flex-wrap: wrap;}
    .about2-box2 .left-box{ width: 100%; padding: 45px 2.5% 0;}
    .about2-box2 .left-box .en{ font-size: 22px;}
    .about2-box2 .left-box .en br{ display: none}
    .about2-box2 .left-box .cn{ margin-top: 10px; font-size: 20px;}
    .about2-box2 .left-box .cn::after{ height: 2px; margin-top: 10px;}
    .about2-box2 .right-box .item{ border: 0 !important; width: 100%; padding: 20px 0}
    .about2-box2 .right-box .item .con{ padding: 0}
    .about2-box2 .right-box{ padding-bottom: 45px; margin-top: 30px; padding-left: 2.5%; padding-right: 2.5%;}
    .about2-box2 .right-box .item .st{ font-size: 18px; margin-bottom: 15px;}
    .about2-box2 .right-box .item .icon{ width: 60px; margin-bottom: 15px;}
    .about2-box2 .right-box .item:nth-child(1)~.item{ margin-top: 25px;    border-top: 1px solid #767676 !important;}
    .about3-box1{ padding: 45px 0 25px}

    .job-page{ padding-top: 45px}
    .job-box1{ padding-bottom: 45px;}
    .job-box1>.mxw-box .left-box .en{ font-size: 18px;}
    .job-box1>.mxw-box .left-box .cn{ font-size: 22px; margin-top: 10px;}
    .job-box1>.mxw-box .item{ flex-wrap: wrap;}
    .job-box1>.mxw-box .left-box .desc{ font-size: 14px; margin-top: 25px; }
    .job-box1>.mxw-box .right-box{ margin-left: 0; width: 100%;}
    .job-box1>.mxw-box .item:nth-child(1)~.item{ margin-top: 25px;}
    .job-box1>.mxw-box .item:nth-child(2) .left-box{ padding-top: 12px;}


    .job-box2 .en{ font-size: 18px;}
    .job-box2 .cn{ font-size: 22px; margin-top: 10px;}
    .job-box2{ padding-top: 45px; padding-bottom: 40px;}
    .job-box2 .list{ margin-top: 25px;}
    .job-box2 .list .title{ font-size: 18px; padding: 8px 15px}
    .job-box2 .list .title .c1:nth-child(1)~.c1{ display: none}
    .job-box2 .list .item .st{ padding: 8px 15px;}
    .job-box2 .list .item .c1:nth-child(1)~.c1{ display: none}
    .job-box2 .list .item .c1{ flex-grow: 1; font-size: 16px;}
    .job-box2 .list .item .c2::after{ zoom: 0.8}
    .job-box2 .list .item.open .con{ padding: 15px; font-size: 14px}
    .job-box2 .list .item .con .email{ margin-top: 20px; zoom: 0.8}
    .job-box2 .job-ewm{ width: 95%; margin: 25px auto 0; font-size: 14px;}
    .job-box2 .job-ewm p{ font-size: 14px;}

    .news-page{ padding: 45px 0}
    .news-top{ padding: 15px; flex-wrap: wrap;}
    .news-top .left-box{ margin-right: 0; width: 100%;}
    .news-top .right-box .time{ font-size: 16px; margin-top: 10px;}
    .news-top .right-box .st{ margin: 10px auto 15px; font-size: 16px;}
    .news-top .right-box .desc{ font-size: 14px;}
    .news-top .right-box .icon{ zoom: 0.6; margin-top: 10px;}
    .news-page .list{ margin-top: 25px;}
    .news-page .list .item .info{ padding: 10px;}
    .news-page .list .item .info .time{ font-size: 12px;}
    .news-page .list .item .info .st{font-size: 14px; margin-top: 5px; }


    .ya-box1{ padding: 45px 0;}
    .n-title .en{ font-size: 18px;}
    .n-title .cn{ font-size: 20px; margin-top: 10px;}
    .n-title .desc{ font-size: 14px; padding: 0 2.5%}
    .ya-box1 .mxw-box{ margin-top: 30px;}
    .ya-box1 .mxw-box .item{ width: 100%; margin: initial}
    .ya-box1 .mxw-box .item .image{ width: 100px; height: 100px; margin: 20px auto 15px; }
    .ya-box1 .mxw-box .item .st1{ font-size: 18px;}
    .ya-box1 .mxw-box .item .st2{ font-size: 14px;}
    .ya-box1 .mxw-box .item .st2::after{ margin-top: 12px;}
    .ya-box1 .mxw-box .item .desc{ font-size: 14px; padding: 15px  15px 30px;}
    .ya-box1 .mxw-box .item:nth-child(1)~.item{ margin-top: 20px; }

    .ya-box2{ padding: 45px 0}
    .ya-box2>.mxw-box{ flex-wrap: wrap;}
    .ya-box2>.mxw-box .left-box{ width: 100%;}
    .ya-box2>.mxw-box .left-box .en{ font-size: 18px;}
    .ya-box2>.mxw-box .left-box .cn{ font-size: 20px; margin-top: 10px;}
    .ya-box2>.mxw-box .left-box .desc{ margin: 10px auto 15px; font-size: 14px;}
    .ya-box2>.mxw-box .left-box .icon img{ zoom: 0.6}

    .ya-box2>.mxw-box .right-box{ margin-left: 0; margin-top: 30px; flex-wrap: wrap;}

    .ya-box2>.mxw-box .right-box .item{ width: 100%; padding: 15px;}
    .ya-box2>.mxw-box .right-box .item~.item{ margin-top: 20px;}
    .ya-box2>.mxw-box .right-box .item .desc{ margin-bottom: 15px;}
    .ya-box3{ padding-top: 45px;}
    .ya-box3 .con-bg{ position: initial; width: 100%; padding: 20px 15px;}
    .ya-box3 .con{ padding: 0}
    .ya-box3 .con .title .en{ font-size: 18px;}
    .ya-box3 .con .title .cn{ font-size: 20px;}
    .ya-box3 .con .desc{ font-size: 14px; margin-top: 15px;}
    .ya-box3 .con .mxw-image{ margin-top: 15px;}
    .ya-box4{ padding: 45px 0}
    .ya-box-body{ margin-top: 25px;}
    .ya-swiper .swiper-slide p{ padding: 8px 25px; font-size: 14px;}

    .ya-box5{ padding-top: 45px;}
    .ya-box5 .n-title .desc{ font-size: 14px;}

    .ya-box5-body{ flex-wrap: wrap;}
    .ya-box5-body .left-box p, .ya-box5-body .right-box p{font-size: 16px;}
    .ya-box5-body .left-box p:nth-child(1)~p, .ya-box5-body .right-box p:nth-child(1)~p{ margin-top: 15px;}
    .ya-box5-body .center{ display: none}
    .ya-box5-body .right-box{ padding-bottom: 45px; padding-left: 0; margin-top: 10px;}
    .conn-cate .mxw-box{ flex-wrap: wrap; justify-content: space-between}
    .conn-cate .mxw-box .item{ width: 48.5%; padding: 8px 15px; font-size: 16px; margin: initial}
    .conn-cate .mxw-box .item::before{ display: none;}
    .conn-cate .mxw-box .item:nth-child(1)~.item{ margin-left: initial}
    .pro-page{ padding: 45px 0;}
    .pro-page .pro-item{ flex-wrap: wrap;}
    .pro-page .pro-item .left-box{ padding: 15px;}
    .pro-page .pro-item .left-box .cn{ font-size: 20px;}
    .pro-page .pro-item .left-box .en{ font-size: 16px; margin-top: 10px;}
    .pro-page .pro-item .left-box .desc{ margin: 25px auto; font-size: 14px;}
    .pro-page .pro-item .left-box .icon{ zoom: 0.6}
    .pro-page .pro-item .right-box{ width: 100%}
    .poj-page .mxw-box{flex-wrap: wrap;}
    .poj-page .mxw-box .left-box{ width: 100%; padding-top: 45px; background: none; display: flex; flex-wrap: wrap; justify-content: space-between}
    .poj-page .mxw-box .left-box .item{ width: 48.5%; border-radius: 0}
    .poj-page .mxw-box .left-box .item:nth-child(1)~.item{margin-top: 0}
    .poj-page .mxw-box .left-box .item:nth-child(2n)~.item{ margin-top: 20px}
    .poj-page .mxw-box .right-box{ margin-left: 0; width: 100%;}
    .poj-page .mxw-box .right-box .sou-top{ flex-wrap: wrap;}

    .poj-page .mxw-box .right-box .sou-top .left{ margin-right: 0}
    .poj-page .mxw-box .right-box .sou-top .left .cn{ font-size: 20px;}
    .poj-page .mxw-box .right-box .sou-top .left .en{ font-size: 14px;}
    .poj-page .mxw-box .right-box .sou-top .left .desc{ margin: 25px auto; font-size: 14px;}
    .poj-page .mxw-box .right-box .sou-top .left .sou-more{ zoom: 0.8}
    .poj-page .mxw-box .right-box .sou-top .right{ width: 100%; margin-top: 25px;}
    .poj-page .mxw-box .right-box .list{ margin-top: 25px;}
    .poj-page .mxw-box .right-box .list .sou-item p{ padding: 8px 25px; font-size: 14px;}

    .contact-box1{ padding-top: 45px;}
    .contact-box1 .c-title .en{ font-size: 18px;}
    .contact-box1 .c-title .cn{ font-size: 20px; margin-top: 3px; margin-bottom: 15px;}
    .contact-box1 .c-title .desc{ font-size: 14px;}
    .contact-box1 .list .item{ width: 100%; zoom: 0.9}
    .contact-box1 .list{ margin-top: 25px; flex-wrap: wrap;}
    .contact-box1 .list .item:nth-child(1)~.item{ margin-top: 20px}
    .contact-box1 .list .item .desc br{ display: none}
    .cont-map{ height: 400px; margin: 35px auto;}
    .msg-box .inp{ flex-wrap: wrap; margin-bottom: 15px}
    .msg-box .inp .item{ width: 100%;}
    .msg-box .inp .item:last-child{ margin-top: 15px;}
    .subx{ zoom: 0.8; margin-top: 25px}

    .color1-box .mxw-box{ flex-wrap: wrap;}
    .color1-box .mxw-box .left-box{ width: 100%; background: #fff; height: auto;}
    .color1-box .mxw-box .right-box{ margin-left: 0;}
    .lc1-swiper .swiper-slide{ flex-wrap: wrap; padding: 35px 0;}
    .lc1-swiper .swiper-slide .left .st1{ font-size: 22px;}
    .lc1-swiper .swiper-slide .left .st2{ font-size: 14px; margin-top: 5px;}
    .lc1-swiper .swiper-slide .left .desc{ margin: 20px auto;}
    .lc1-swiper .swiper-slide .left .c-more{ zoom: 0.85}

    .lc1-swiper .swiper-slide .right{ margin-left: 0; margin-top: 25px; width: 100%}

    .lc2-swiper{ height: auto;}
    .color2-box1{ padding: 45px 0;}
    .color2-box1>.mxw-box .left-box .en p{ font-size: 20px;}
    .color2-box1>.mxw-box{ flex-wrap: wrap;}
    .color2-box1>.mxw-box .left-box .cn{ font-size: 18px; margin: 10px auto 20px}
    .color2-box1>.mxw-box .left-box .desc{ font-size: 14px;}
    .color2-box1>.mxw-box .right-box{ margin-left: 0; margin-top: 20px; width: 100%}
    .color2-box2{  padding: 50px 0 45px;}
    .color2-box2 .mxw-box .con{ width: 100%;}
    .color2-box2 .mxw-box .con .en{ font-size: 20px;}
    .color2-box2 .mxw-box .con .cn{ font-size: 20px; margin-top: 10px;}
    .color2-box2 .mxw-box .con .desc{ font-size: 14px; margin-top: 25px;}
    .color2-box3 .top{ flex-wrap: wrap;}
    .color2-box3 .top .left-box .en{ font-size: 22px;}
    .color2-box3 .top .left-box .cn{ font-size: 20px; margin: 10px auto 20px 0;}
    .color2-box3 .top .left-box .desc{ font-size: 14px;}
    .color2-box3 .top .right-box{ width: 100%; margin-left: 0; padding-left: 20%}
    .color2-box3 .bot{ margin-top: -30px;}
    .color2-box3 .bot .title{ font-size: 18px;}
    .color2-box3 .bot .list{ flex-wrap: wrap;}
    .color2-box3 .bot .list .item{ width: 50%; margin-top: 25px}
    .zc-box1{ padding: 45px 0;}
    .zc-box1 .mxw-box{ flex-wrap: wrap;}
    .zc-box1 .mxw-box .item{ width: 100%; padding: 15px;}
    .zc-box1 .mxw-box .item .c1{ font-size: 40px}
    .zc-box1 .mxw-box .item .c2 .st{ font-size: 16px;}
    .zc-box1 .mxw-box .item .c2 .desc{ font-size: 14px; margin-top: 10px;}
    .zc-box1 .mxw-box .item .c2{ padding: 0 0 0 15px;}
    .zc-box1 .mxw-box .item:nth-child(2n)~.item{ margin-top: 20px;}
    .zc-box1 .mxw-box .item:nth-child(1n)~.item{ margin-top: 20px;}
    .zc-box2{ padding: 45px 0;}
    .zc-box2 .mxw-box .en p{ font-size: 20px;}
    .zc-box2 .mxw-box .cn{ font-size: 20px; margin: 10px auto 15px 0;}
    .zc-box2 .mxw-box .desc{ font-size: 14px;}
    .zc-box2 .mxw-box{ padding-right: 0}
    .zc-box2 .mxw-box .list .item{ padding: 10px 25px; font-size: 16px;}
    .zc-box2 .mxw-box .list .item:nth-child(2n)~.item{ margin-top: 20px;}
    .zc-box2 .mxw-box .list .item:nth-child(1n)~.item{ margin-top: 20px;}




.mxw-banner{     margin-top: 0;}
.mxw-banner .swiper-slide{height:auto}

.mxw-banner .swiper-slide img{position: initial;}
.mxw-banner .swiper-slide{    height: auto !important;}
.index-swiper-pro .swiper-slide .left-box{    padding-top: 25px;}
.index-section4 .mxw-title{    position: initial;}
.index-section4 .list-bg{    margin-top: 0;    padding: 0 2.5%;}

.index-section2 .item1{opacity: 1;}
.index-section2 .item2,.index-section2 .item1 .big-title{    opacity: 1;
    transform: none;}

.index-section2{    background-size: auto;}

.pro-show2{    padding: 45px 0;}
.show-title .en{font-size: 22px;}
.show-title .cn{font-size: 20px;}
.pro-show2 .list{    margin-top: 25px;    flex-wrap: wrap;}
.pro-show2 .list .item .icon{    width: 80%;}
.pro-show2 .list .item  p{font-size: 14px;
    margin-top: -10px;
    line-height: 1.5;}
.pro-show2 .list .item:nth-child(3n)~.item{ margin-top:25px;}

.pro-show3{  padding: 45px 0;}
.pro-show3 .list{margin-top: 25px; }

.pro-show3 .list .item p{font-size: 14px;    font-size: 14px;
    padding: 8px 20px;
    border-radius: 0rem 15px 0rem 0rem;}


.index-main .index-main-swiper>.swiper-wrapper>.swiper-slide{ height:auto}



    body{ margin-bottom: 0}

}












