@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: #032a75;
    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: #00a2ea;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #00a2ea;
}
.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: #00a2ea;
    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: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 0.7;
    margin-left: 9px;
    margin-right: 9px;
    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: #fff;
    border-color: #fff;
}
.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: 1420px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
    width: 80%;
}

/* 内页 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: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#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: 18px;}
.mxw-box2{ width: 86%; max-width: 1650px; margin: 0 auto; font-size: 18px; color: #333;}
.top-box .logo-box{ margin:0.167rem auto;}
.top-box .logo-box>img{ max-height:1.167rem;}
.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: #ee1d23; 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; font-weight: bold}
.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{
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.10);
    position: absolute;
    z-index: 99;
}
header .welcome {
    background-color: #fff;
    height: 44px;
    line-height: 44px;
    border-bottom: 1px dashed #e5e5e5;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
}
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{ align-items: stretch; }
.top-box .right{ display: flex; flex-grow: 1; min-width: 0; align-items: center; justify-content: flex-end;}
.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;    flex-shrink: 0; color:#663399;    font-weight: bold;}
.top-tel>img{margin-right: 10px;}
.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; }



.mxw-banner .swiper-pagination .swiper-pagination-bullet{ width: 0.667rem; height: 0.067rem; background: #fff; border-radius: 0.033rem; border: 0}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{ width: 1.333rem; background: #fff; opacity: 1;}
.x-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 0 1.5rem;
    height: 100%;
}
.x-menu > li {
    width: calc(100% / 7);
    margin: 0;
    text-align: center;
    float: none;

    height: 100%;
}

.x-menu > li > a {
    font-size: 0.333rem;
    color: #696969;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 100%;
    margin: 0 auto;
}

.x-menu > li > a:hover {
    color: #663399;
}

.x-menu > li.active > a {
    border-bottom: 3px solid #663399;
    font-weight: bold;  color: #663399;
}

.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: 150%;
    left: -25%;
    top: 75px;
    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: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
}

.x-sub-menu > li > a:hover {
    background: #e9eaeb;
}

.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;
}

.n_banner{ padding-top: 1.5rem;}


.mxw-banner{ padding-top: 1.5rem;}

.cont-cate{box-shadow: -2px 6px 11px 0px rgba(0, 0, 0, 0.05);}
.cont-cate .mxw-box{  display: flex; align-items: stretch; justify-content: center; height: 100%;}
.cont-cate .mxw-box .item{ padding: 0.417rem 0; margin: 0 0.5rem }
.cont-cate .mxw-box .item.active{ color: #663399; border-bottom: 3px solid #663399; font-weight: bold;}


.about-page{ padding: 0 0 1.083rem 0;}
.about-page .about-bg{ background: url("../images/about-bg.png") bottom no-repeat; background-size: 100%; padding-top: 1.583rem; padding-bottom: 1.167rem;}
.about-page .about-bg .about-con{ display: flex; align-items: stretch; justify-content:space-between;}
.about-page .about-bg .about-con .right{ flex-shrink: 0; width: 48.9%; margin-left: 1rem;}
.about-page .about-bg .about-con .left{ flex-grow: 1; min-width: 0;}
.about-page .about-bg .about-con .left .st{ font-size: 0.6rem; color: #663399; margin-bottom: 0.4rem;}
.about-page .about-bg .about-con .left .desc{ font-size: 0.367rem; color: #696969; line-height: 2; text-indent: 2em;}


@media screen and (max-width: 1780px) {
    .about-page .about-bg .about-con .left .desc{ font-size: 0.383rem;  line-height: 2; }
}
@media screen and (max-width: 1680px) {
    .about-page .about-bg .about-con .left .desc{ font-size: 0.367rem;  line-height: 2; }
}

.about-page .about-bg .about-list{ margin-top: 1.083rem; display: flex; align-items: flex-start; justify-content: space-between; text-align: center;}
.about-page .about-bg .about-list .item{ max-width: 5rem;}
.about-page .about-bg .about-list .item .icon img{ transition: all 0.3s;}
.about-page .about-bg .about-list .item .icon:hover img{    transform: rotate3d(0, 1, 0, 180deg);}
.about-page .about-bg .about-list .item .title{ color: #636363; font-size: 0.4rem; margin-top: 0.2rem; line-height: 1; margin-bottom: 0.333rem;}
.about-page .about-bg .about-list .item .title::after{ display: block; content: "";width: 51px; height: 1px; background: #000; margin: 10px auto 0}
.about-page .about-bg .about-list .item .sc{ font-size: 0.267rem; color: #6C6C6C; line-height: 1.6}

.about-page .about-zz{ padding: 1.583rem 0;}
.about-tt{ font-size: 0.6rem; color: #663399; font-weight: bold;}
.about-page .about-zz .about-con{ margin-top: 0.833rem; text-align: center;}
.about-page .about-md .md-list{ margin-top: 0.5rem; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap; font-size: 0}
.about-page .about-md .md-list .item:nth-child(3n){ margin-right: 0}
.about-page .about-md .md-list .item{ width: 31%; margin-right: 3.5%; margin-bottom: 0.5rem; position: relative;}
.about-page .about-md .md-list .item p{ position: absolute; bottom: 0; width: 100%; text-align: center;background: rgba(0, 0, 0, 0.50);
 padding: 0.167rem 0.25rem; color: #fff; font-size: 0.333rem; }


.about-page2{ padding: 0 0 1.583rem; background: #F9F9F9;}
.about-page2 .about2-bg{ background: url("../images/about2-bg.png") no-repeat; background-size: cover; padding-top: 1rem; padding-bottom: 1.167rem;}
.about-page2 .about2-bg .story{ text-align: center;}
.about-page2 .about2-bg .story .st1{ font-size: 0.6rem; color: #663399; margin: 0.333rem auto 0.4rem; font-weight: bold;}
.about-page2 .about2-bg .story .desc{ color: #494949; font-size: 0.4rem; line-height: 1.6}
.about-page2 .about2-bg .story .desc p{ margin-bottom: 0.333rem;}

.story-box{ background: #fff; margin: 1rem 0.167rem 0;box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.05);  display: flex; align-items: stretch; justify-content: space-between;padding: 0 1rem 0 1.5rem}
.story-box .right{ flex-shrink: 0; height: 100%;}
.story-box .left{
    padding: 1.133rem 0.6rem 1.25rem 0;
}
.story-box .left .st1{ font-size: 0.667rem; color: #663399; font-weight: bold; margin: 0.2rem auto 0 0; padding-bottom: 0.3rem; border-bottom: 1px solid #E3E3E3}
.story-box .left .st2{ margin: 0.833rem auto 0.383rem 0; font-weight: bold; font-size: 0.533rem; color: #545454}
.story-box .left .desc{ font-size: 0.4rem; color: #595959; line-height: 1.8}

.gab-title{ color: #663399; font-weight: bold; font-size: 0.8rem; text-align: center;}
.tj-list{ margin-top: 0.5rem; display: flex; align-items: stretch; justify-content: flex-start; padding: 0 5px;}
.tj-list .item{ width: 23.275%; margin-right: 2.3%;}
.tj-list .item:nth-child(4n){ margin-right: 0}

.p-box1{ padding: 1.583rem 0; background: url("../images/p-box1-bg.png") no-repeat; background-size: cover;}
.p-box1 .mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.p-box1 .left{ flex-shrink: 0; width: 50%;}
.p-box1 .right{ padding-left: 0.5rem; flex-grow: 1; min-width: 0}
.p-box1 .right .logo-box{ text-align:center; margin-bottom: 0.5rem;}
.p-box1 .right .desc{ font-size: 0.333rem; color: #696969; line-height: 2; text-indent: 2em}
.p-box2{padding: 0.967rem 0 1.25rem; }
.p-box2 .gab-title{ font-size: 0.6rem; text-align: left}
.p-box2 .mxw-box{ display: flex; align-items: flex-start;}
.p-box2 .mxw-box .con{ margin-left: 2.833rem;}

.p-box3{ background:url("../images/p-box3-bg.png") no-repeat; padding: 0.833rem 0 0.333rem;}
.p-box3 .mxw-box{ padding: 0 0.083rem; display: flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap;}
.p-box3 .mxw-box .item{filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.10) );
background: #fff; margin-bottom: 0.5rem; width: 24.25%; margin-right: 1%; text-align: center; border-radius: 0.2rem;}
.p-box3 .mxw-box .item .mxw-image{ margin-top: 0.2rem;}
.p-box3 .mxw-box .item:nth-child(4n){ margin-right: 0}
.p-box3 .mxw-box .item p{ font-size: 0.4rem; color: #626262; text-align: center; margin-bottom: 0.3rem;}

.pro-tj{ padding: 1.583rem 0;}
.p-cont-bg{  background: url("../images/p-cont-bg.png") no-repeat; padding: 0.7rem 0 1.067rem; margin-top: 0.5rem; margin-bottom: 1.583rem}
.p-cont-bg .mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.p-cont-bg .mxw-box .right{ border: 0.017rem solid #fff; border-radius: 0.133rem; background: rgba(255,255,255,.3); width: 26%; flex-shrink: 0; min-width: 0; display: flex; align-content: center; flex-wrap: wrap; justify-content: center; padding: 0.633rem 0.333rem 0.833rem;}
.p-cont-bg .mxw-box .right .icon{ text-align: center; width: 100%; margin-bottom: 0.333rem;}
.p-cont-bg .mxw-box .right .st1{ font-size: 0.4rem; color: #fff; margin-bottom: 0.133rem;}
.p-cont-bg .mxw-box .right .st2{ font-size: 0.667rem; font-weight: bold; margin-bottom: 0.583rem; color: #fff; width: 100%; text-align: center;}
.to-el{
    width: 3.117rem;
    height: 0.767rem; color: #000; font-weight: bold; font-size: 0.267rem; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 0.383rem;}
.p-cont-bg .mxw-box .left{ flex-grow: 1; min-width: 0; margin-right: 1.667rem; color: #fff;}
.p-cont-bg .mxw-box .left .st1{ font-size: 0.6rem;}
.p-cont-bg .mxw-box .left .st2{ font-size: 0.4rem; text-transform: uppercase; margin-top: 0.083rem; margin-bottom: 0.25rem;}
.p-cont-bg .mxw-box .left .form .s1{ display: flex; align-items: center; justify-content: space-between; margin-top: 0.267rem;}
.p-cont-bg .mxw-box .left .form .s1 input{border: 0.017rem solid #fff; border-radius: 0.133rem; background: rgba(255,255,255,.3); width: 49%; color: #fff; padding: 0.133rem 0.267rem;font-size: 0.333rem}
.p-cont-bg .mxw-box .left .form .s1 input::placeholder{ color: #C8C8C8; font-size: 0.333rem}
.p-cont-bg .mxw-box .left .form textarea{border: 0.017rem solid #fff; border-radius: 0.133rem; background: rgba(255,255,255,.3);  margin-top: 0.267rem; width: 100%; resize: none; height: 1.333rem; color: #fff; font-size: 0.333rem}
.p-cont-bg .mxw-box .left .form textarea::placeholder{ color: #C8C8C8; font-size: 0.333rem;padding: 0.133rem 0.267rem;}

.p-cont-bg .mxw-box .left .form .sub{
    width: 3.117rem;
    height: 0.767rem; color: #000; font-weight: bold; font-size: 0.267rem; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 0.383rem; margin: 0.25rem auto 0; cursor:pointer}

.p2-box1{ background: none; padding-bottom: 0; margin-bottom: 0.633rem;}
.p2-box1 .left{ width: 48%}
.p2-box1 .right{ padding-left: 0.833rem;}
.p2-box1 .mxw-box{ align-items: center;}
.p2-box1 .right .st{ font-size: 0.533rem; text-align: center; margin: 0.667rem auto 0.333rem;}
.p2-box1 .right .desc{ font-size: 0.333rem; color: #555555; text-align: center;text-indent: 0}

.p2-box2{ background: none; padding-bottom: 0;  padding-top: 0}
.p2-box2 .left{ order: 1; width: 48%;}
.p2-box2 .right{ padding-right: 0.833rem;}
.p2-box2 .mxw-box{ align-items: center;}
.p2-box2 .right .st{ font-size: 0.533rem; text-align: center; margin: 0.667rem auto 0.333rem;}
.p2-box2 .right .desc{ font-size: 0.333rem; color: #555555; text-align: center; text-indent: 0}



.cont-page{ padding: 1rem 0 1.417rem;}
.cont-info .right{ width: 42%; flex-shrink: 0; padding: 0.7rem 0.7rem 0.833rem; background: url("../images/msg-bg.png") no-repeat; background-size: cover; color: #fff; }
.cont-info .left{ flex-grow: 1; min-width: 0;}
.cont-info{ display: flex; align-items: flex-start; justify-content: space-between;}
.cont-info .right .st1{ font-size: 0.6rem;}
.cont-info .right .st2{ font-size: 0.4rem;text-transform: uppercase}

.map-st{ font-size: 0.6rem; color: #000}
.cont-info{ margin-bottom: 1.583rem;}

.cont-info .right .s1 input{border: 0.017rem solid #fff; border-radius: 0.133rem; background: rgba(255,255,255,.3); width: 100%; color: #fff; padding: 0.133rem 0.267rem;font-size: 0.333rem; margin-top: 0.633rem;}
.cont-info .right .s1 input::placeholder{ color: #fff; font-size: 0.333rem}
.cont-info .right textarea{border: 0.017rem solid #fff; border-radius: 0.133rem; background: rgba(255,255,255,.3);  margin-top:0.633rem; width: 100%; resize: none; height: 3.3rem; color: #fff; font-size: 0.333rem}
.cont-info .right textarea::placeholder{ color: #fff; font-size: 0.333rem;padding: 0.133rem 0.267rem;}

.cont-info .right .sub{
    width: 3.117rem;
    height: 0.767rem; color: #000; font-weight: bold; font-size: 0.267rem; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 0.383rem; margin: 0.667rem auto 0; cursor:pointer}

.cont-info .left .st1{ font-size: 0.6rem;color: #000}
.cont-info .left .st2{ font-size: 0.6rem;color: #000; margin-top: 0.2rem; text-transform: uppercase}

.cont-info .left { font-size: 0.4rem; color: #000;}
.cont-info .left .tel{ display: flex; align-items: flex-start; margin-top: 0.667rem; line-height: 1.8}
.cont-info .left .add{ display: flex; align-items: flex-start; margin-top: 0.667rem;}
.cont-info .left .ewm{ display: flex; align-items: flex-start; margin-top: 0.667rem;}


.news-page{ padding: 0.667rem 0 1.583rem;}
.news-page .list .item{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.5rem; border-bottom: 1px solid #DDD; margin-bottom: 0.5rem;}
.news-page .list .item .left{ width: 21.13%; max-width: 5rem; flex-shrink: 0; margin-right: 0.917rem;}

.news-page .list .item .right .desc{ margin-top: 0.333rem;font-size: 0.267rem;color: #777; line-height: 1.8}
.news-page .list .item .right .st{font-size: 0.4rem; display: flex; align-items: flex-end; justify-content: space-between;}
.news-page .list .item .right .st p{color: #767676; font-size: 0.233rem}
.news-page .list .item .right .n-more{ font-weight: bold; font-size: 0.267rem; color: #555555; margin-top: 0.4rem}

.page-page{ padding: 1rem 0;}
.page-page .content-con{ font-size: 0.267rem; line-height: 1.8; }
.page-page .content-con img{ max-width: 100%; height: auto !important;}


#map{ height: 450px; margin-top: 0.5rem; font-size: 14px;}


.mxw-seibei{  background: #F9F9F9; padding: 1.583rem 0 0.833rem;}
.mxw-title{ text-align: center;}
.mxw-title .cn{ font-size: 0.8rem; color: #000}
.mxw-title .en{ font-size: 0.4rem; color: #663399; margin-bottom: 0.083rem;text-transform: uppercase}

.mxw-seibei .list{ margin-top: 0.5rem;}
.mxw-seibei .list .item{ background: #fff;filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.10));   text-align: center; border-radius: 0.2rem;}
.mxw-seibei .list .item  .mxw-image{ margin-top: 0.2rem;}
.mxw-seibei .list .item:nth-child(4n){ margin-right: 0}
.mxw-seibei .list .item p{ font-size: 0.4rem; color: #626262; text-align: center; margin-bottom: 0.3rem;}
.p-box3 .mxw-box .item .mxw-image{ margin-top: 0.2rem;}


.mxw-cate{ padding: 1rem 0 1.583rem; background: url("../images/cate-bg.png") no-repeat; background-size: cover;}
.mxw-cate .cate-box{ display: flex; align-items: center; justify-content:center;}
.mxw-cate .cate-box .item{ font-size: 0.4rem; padding: 0.25rem 2rem; color: #737373; border-radius: 4px;
text-align: center; background: #fff; margin: 0 0.583rem;}
.mxw-cate .cate-box .item.active{ color: #fff; background: #663399;}

.cate-swiper{ overflow: hidden; margin-top: 1rem;}
.cate-swiper .swiper-slide{ display: flex; align-items: stretch; justify-content: space-between;  background: #fff; border-radius: 0.2rem;    overflow: hidden;}
.cate-swiper .swiper-slide .right{ width: 50%; flex-shrink: 0;    text-align: right;}
.cate-swiper .swiper-slide .left{display: flex; align-items: center; padding: 0.5rem 0.633rem 0.5rem 2.333rem;}
.cate-swiper .swiper-slide .left .logo-box{ padding-bottom: 0.733rem; border-bottom: 1px solid rgba(102, 51, 153, 0.40);}
.cate-swiper .swiper-slide .left .st{ font-size: 0.533rem; margin: 0.667rem auto 0.333rem;}
.cate-swiper .swiper-slide .left .desc{ font-size: 0.333rem; color: #555; line-height: 2;}
.cate-swiper .swiper-slide .left .cate-more{
width: 2.667rem;
    height: 0.667rem; border-radius: 0.067rem;font-size: 0.267rem; display: flex; align-items: center; justify-content: center; background: #663399;  margin-top: 0.733rem; color: #fff}


.mxw-about{ padding: 1.583rem 0;    background: #F9F9F9; }
.mxw-about .about-body{
    background: url("../images/about-bgs1.png") no-repeat; background-size: cover; margin-top: 0.367rem;
    padding: 1.5rem 0 1.333rem;
}
.mxw-about .about-body .mxw-box{ background: #fff; display: flex;}
.mxw-about .about-body .mxw-box .left{
    box-shadow: 1px 3px 34px 6px rgba(102, 51, 153, 0.10);
    align-items: center;
    display: flex;
    padding: 0.5rem 1.083rem 0.5rem 0.9rem;
}
.mxw-about .about-body .mxw-box .left .desc{ font-size: 0.333rem; margin: 0.25rem auto 0.75rem;color: #663399; font-weight: bold; line-height: 2}
.mxw-about .about-body .mxw-box .right{ width: 49%; flex-shrink: 0;}




.mxw-adv{ padding: 1.583rem 0;  background: #F9F9F9;}
.mxw-adv .adv-cate{ background: #fff; display: flex; align-items: stretch; justify-content: space-between }
.mxw-adv .adv-cate .item{ text-align: center; width: 20%;padding: 0.2rem 0 0.3rem; cursor: pointer;}
.mxw-adv .adv-cate .item .icon{ width: 1rem; height: 1rem; overflow: hidden; margin: 0 auto; }
.mxw-adv .adv-cate .item .icon img{ margin-top: -100%;}
.mxw-adv .adv-cate .item.active .icon img{ margin-top: 0;}
.mxw-adv .adv-cate .item.active{ background: #663399}
.mxw-adv .adv-cate .item.active p{ color: #fff;}

.adv-swiper{ overflow: hidden;}
.adv-swiper .swiper-slide{ position: relative;}
.adv-swiper .swiper-slide .flx{ position: absolute; bottom: 0; width: 100%; color: #fff; background: rgba(0,0,0,.6); padding: 0.367rem 2.333rem 0.25rem;}
.adv-swiper .swiper-slide .flx .st{ font-size: 0.4rem; color: #fff; font-weight: bold; margin-bottom: 0.2rem;}
.adv-swiper .swiper-slide .flx .desc{ color: #D6D6D6; font-size: 0.333rem;}


.mxw-md{background: #F9F9F9; padding-bottom: 1.583rem;}
.mxw-md .md-swiper{  margin-top: 0.5rem;}
.mxw-md .md-swiper .swiper-slide{ position: relative;}
.mxw-md .md-swiper .swiper-slide p{ position: absolute; bottom: 0; width: 100%; padding: 0.167rem 0.25rem; font-size: 0.333rem; color: #E4E4E4; background: rgba(0,0,0,.5); text-align: center;}

.md-swiper .swiper-button-next,.md-swiper .swiper-button-prev{
    width: 0.533rem; height: 0.533rem; opacity: 1; position: initial; cursor: pointer;
    margin: 0 0.2rem;
}
.md-swiper .swiper-button-next::after,.md-swiper .swiper-button-prev::after{
    display: none;
}
.md-swiper .q-box{ margin-top: 25px; display: flex; align-items: center; justify-content: center;}
.md-swiper .swiper-button-next{  background: url("../images/q-ico.png") no-repeat; background-size: cover; transform: rotate(180deg)}
.md-swiper .swiper-button-prev{  background: url("../images/q-ico.png") no-repeat; background-size: cover;}
.md-swiper .swiper-button-prev:hover{ background-image: url("../images/q-ico2.png");transform: rotate(180deg) }
.md-swiper .swiper-button-next:hover{ background-image: url("../images/q-ico2.png"); transform: none}
.md-swiper{ overflow: hidden}



.mxw-zs{background: #F9F9F9; padding-bottom: 1.583rem;}
.zs-swiper{ margin-top: 0.5rem; overflow: hidden;}

.mxw-news{ padding: 0.667rem 0 1.583rem; background: url("../images/news-bgs1.png") no-repeat; background-size: cover;}

.news-swiper{ overflow: hidden}
.mxw-news .mxw-box2{ margin-top: 0.5rem; display: flex; align-items: stretch; justify-content: space-between;}

.mxw-news .mxw-box2 .right{ width: 2.317rem; flex-shrink: 0; margin-left: 0.333rem;box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25); background: #fff;}
.mxw-news .mxw-box2 .left{ flex-grow: 1; min-width: 0; padding: 5px}
.mxw-news .mxw-box2 .left .news-swiper .swiper-slide{ background: #fff; padding: 0.333rem 0.4rem;box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
}
.mxw-news .mxw-box2 .left .news-swiper .swiper-slide .title{ margin-top: 0.25rem; font-size: 0.267rem; color: #555}
.mxw-news .mxw-box2 .left .news-swiper .swiper-slide .n-more{ text-align: center;  padding-top: 0.25rem; margin-top: 0.25rem; border-top: 0.017rem solid #E9E9E9; font-size: 0.267rem; color: #555;}
.mxw-news .mxw-box2 .left .news-swiper .swiper-slide:hover .title{ color: #663399;}
.mxw-news .mxw-box2 .left .news-swiper .swiper-slide:hover .n-more{ color: #663399;}

.mxw-news .mxw-box2 .right .swiper-pagination{ position: initial; margin-top: 0.783rem; font-size: 0.5rem; color: #777; }
.mxw-news .mxw-box2 .right .swiper-pagination span{ font-size: 0.333rem; color: #663399}
.mxw-news .mxw-box2 .right .swiper-pagination .swiper-pagination-total{ color: #555;}
.mxw-news .mxw-box2 .right .swiper-pagination .swiper-pagination-current{ vertical-align: text-top}

.mxw-news .mxw-box2 .right .qie{ margin-bottom: 0.8rem;}
.mxw-news .mxw-box2 .right{ display: flex; align-content: space-between; justify-content: center; flex-wrap: wrap;}
.mxw-news .mxw-box2 .right .qie .swiper-button-next{  background: url("../images/a1c.png") no-repeat; background-size: cover; transform: rotate(180deg); position: initial}
.mxw-news .mxw-box2 .right .qie .swiper-button-prev{  background: url("../images/a1c.png") no-repeat; background-size: cover;  position: initial}
.mxw-news .mxw-box2 .right .qie .swiper-button-prev:hover{ background-image: url("../images/a2c.png");transform: rotate(180deg) }
.mxw-news .mxw-box2 .right .qie .swiper-button-next:hover{ background-image: url("../images/a2c.png"); transform: none}
.mxw-news .mxw-box2 .right .qie .swiper-button-next,.mxw-news .mxw-box2 .right .qie .swiper-button-prev{
    width: 0.533rem; height: 0.533rem; opacity: 1; position: initial; cursor: pointer;
    margin: 5px 0.2rem;
}
.mxw-news .mxw-box2 .right .qie .swiper-button-next::after,.mxw-news .mxw-box2 .right .qie .swiper-button-prev::after{
    display: none;
}

footer{ background: #A74FFF; padding-top: 0.333rem;}

footer .d-menu{ display: flex; align-items: center; justify-content: center;}
footer .d-menu a{ color: #fff; margin: 0 0.833rem; font-size: 0.333rem;}

footer .d-box{ display: flex; align-items: center; justify-content: space-between; margin-top: 0.583rem;}

footer .d-box .d-lx{ font-size: 0.4rem; color: #fff;}
footer .d-box .d-lx img{ margin-right: 0.2rem;}
footer .d-box .d-lx .item:first-child{ margin-bottom: 0.333rem;}

.copy{ text-align: center; margin-top: 0.583rem; font-size: 12px; color: #fff;padding-bottom: 0.3rem;}
.copy a{ color: #fff; line-height: 2; }






    /* ==================== 页面具体样式 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: #172a88;
}
.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;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    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 ==================== */


.lx-info .item img{ margin-right: 10px;}
.pro-page .left .menu-list .item .icon{ background-size: 100%; width: 20px; height: 20px; flex-shrink: 0;}
.pro-page .left .menu-list .item:hover .icon, .pro-page .left .menu-list .item.active .icon{background-size: 100%;}

.n_banner img{ width: 100%;}

.news-page .list .item .right{ flex-grow: 1; min-width: 0;}
 .honnor .tj-list{ flex-wrap: wrap; }
 .honnor .tj-list .item{margin-bottom: 0.5rem;}
 .honnor .tj-list .item p{    text-align: center;
    margin-top: 10px;}

@media screen and (max-width: 751px) {

    .mxw-box,.mxw-box2{ padding: 0; margin: 0 auto; width: 95%;}
    body{ margin-bottom: 0}
    .mxw-banner{ padding-top: 0;}
    .mxw-seibei{ padding: 40px 0;}
    .mxw-title .en{ font-size: 16px;}
    .mxw-title .cn{ font-size: 20px;}
    .mxw-seibei .list .item p{ font-size: 14px;}
    .mxw-cate{ padding: 40px 0;}
    .mxw-cate .cate-box .item{ padding: 0; margin: 0 auto;}
    .mxw-cate .cate-box{ width: 95%; margin: 0 auto; justify-content: space-between;}
    .mxw-cate .cate-box .item{ font-size: 16px; width: 48%;  padding: 10px 0}
    .cate-swiper{ margin-top: 0.417rem;}
    .cate-swiper .swiper-slide{ flex-wrap: wrap;}
    .cate-swiper .swiper-slide .left{ padding:15px;}
    .cate-swiper .swiper-slide .left .logo-box{ padding-bottom: 10px;}
    .cate-swiper .swiper-slide .left .logo-box img{ height: 60px;}
    .cate-swiper .swiper-slide .left .st{ font-size: 22px; margin: 15px auto 10px 0;}
    .cate-swiper .swiper-slide .left .desc{ font-size: 16px;}
    .cate-swiper .swiper-slide .left .cate-more{ zoom: 0.7; margin-top: 15px;}
    .cate-swiper .swiper-slide .right{ width: 100%;}
    .mxw-about{ padding: 40px 0;}
    .mxw-about .about-body .mxw-box{ flex-wrap: wrap;}
    .mxw-about .about-body .mxw-box .left{  padding: 15px;}
    .ab-list .item{ width: 32%;}
    .mxw-about .about-body .mxw-box .right{ width: 100%;}
    .mxw-about .about-body{ padding: 40px 0;}
    .mxw-adv{ padding: 0 0 40px;}
    .mxw-adv .adv-cate{ flex-wrap: wrap;    justify-content: flex-start;}
    .mxw-adv .adv-cate .item{ width: calc(100%/3)}
    .mxw-adv .adv-cate .item.active p{ font-size: 16px; margin-top: 5px;}
    .mxw-adv .adv-cate .item .icon{ width: 45px; height: 45px;}
    .adv-swiper .swiper-slide>img{ width: 300%; margin-left: -100%; max-width: 300%;}

    .adv-swiper .swiper-slide .flx{ left: 0; padding: 20px 25px;    z-index: 9;}
    .adv-swiper .swiper-slide .flx .st{ font-size: 16px; padding: 0;}
    .adv-swiper .swiper-slide .flx .desc{ font-size: 14px; padding: 0}
    .mxw-md .md-swiper .swiper-slide p{ font-size: 14px;}
    .md-swiper .q-box{ margin-top: 15px; zoom: 0.8}
    .mxw-md{ padding-bottom: 40px;}
    .mxw-zs{ padding-bottom: 40px;}
    .mxw-news .mxw-box2 .right{ display: none}
    .mxw-news .mxw-box2 .left .news-swiper .swiper-slide{ padding: 15px;}
    .mxw-news{ padding: 40px 0;}
    footer .d-menu{ display: none}
    footer .d-box{ margin-top: 15px; flex-wrap: wrap;}
    .d-logo{ width: 100%; text-align: center;}
    .d-logo img{ height: 120px}
    footer .d-box .d-lx{ width: 100%; text-align: center; font-size: 16px; margin: 15px auto;}
    footer .d-box .d-lx img{ zoom: 0.8}
    footer .d-box .d-lx .item:first-child{ margin-bottom: 10px;}
    .d-ewm{ text-align: center; width: 100%;}
    .n_banner{ padding-top: 0;}

    .cont-cate .mxw-box .item{ font-size: 16px; padding: 15px 12px; margin:0}
    .about-page .about-bg{ padding: 40px 0 30px;}
    .about-page .about-bg .about-con{ flex-wrap: wrap;}
    .about-page .about-bg .about-con .left .st{ font-size: 18px;}
    .about-page .about-bg .about-con .left .desc{ font-size: 14px;}
    .about-page .about-bg .about-con .right{ margin: 15px 0 0; width: 100%;}
    .about-page .about-bg .about-list{ margin-top: 20px; flex-wrap: wrap;}
    .about-page .about-bg .about-list .item{ width: 48%; margin-bottom: 15px;}
    .about-page .about-bg .about-list .item .icon img{ width: 60px;}
    .about-page .about-bg .about-list .item .title{ font-size: 16px;}
    .about-page .about-bg .about-list .item .sc{ font-size: 14px;}
    .about-page .about-zz{  padding: 40px 0;}
    .about-tt{ font-size: 20px;}
    .about-page .about-md .md-list .item{ width: 49%; margin-right: 2%; margin-bottom: 15px;}
    .about-page .about-md .md-list .item p{ font-size: 14px;}
    .about-page .about-md .md-list .item:nth-child(3n){ margin-right: 2%;}
    .about-page .about-md .md-list .item:nth-child(2n){ margin-right: 0;}
    .about-page{ padding-bottom: 30px;}
    .about-page2 .about2-bg{ padding: 40px 0;}
    .about-page2 .about2-bg .story .logo img{ height: 65px;}
    .about-page2 .about2-bg .story .st1{ font-size: 20px;}
    .about-page2 .about2-bg .story .desc{ font-size: 16px;}
    .story-box{ margin-top: 25px; flex-wrap: wrap; padding: 15px;}
    .story-box .left{ padding: 0;}
    .story-box .left .icon img{ height: 20px;}
    .story-box .left .st1{ font-size: 20px;}
    .story-box .left .st2{ margin: 15px auto 15px 0; font-size: 16px;}
    .story-box .left .desc{ font-size: 14px;}
    .story-box .right{ height: auto; width: 100%;}
    .story-box .right img{ width: 100%;}

    .gab-title{ font-size: 22px;}
    .tj-list{ margin-top: 25px; flex-wrap: wrap;}
    .tj-list .item{ width: 49%; margin-right: 2%; margin-bottom: 15px;}
    .tj-list .item:nth-child(2n){ margin-right: 0;}
    .about-page2{ padding-bottom: 40px;}
    .p-box1{ padding: 40px 0;}
    .p-box1 .mxw-box{ flex-wrap: wrap;}
    .p-box1 .left{ width: 100%;}
    .p-box1 .right{ padding: 0}
    .p-box1 .right .logo-box{ padding: 0; margin-top: 15px; margin-bottom: 15px}
    .p-box1 .right .logo-box img{ height: 60px;}
    .p-box1 .right .desc{ font-size: 14px;}
    .p-box2{ padding: 15px; display: block;}
    .p-box2 .mxw-box{ display: block;}
    .p-box2 .gab-title{ font-size: 20px;}
    .p-box2 .mxw-box .con{ margin-left: 0; margin-top: 15px;}
    .p-box3{ padding: 40px 0 30px; background-size: cover;}
    .p-box3 .mxw-box .item{ width: 48.5%; margin-right: 3%; margin-bottom: 15px;}
    .p-box3 .mxw-box .item:nth-child(2n){ margin-right: 0}
    .p-box3 .mxw-box .item p{ font-size: 14px;}
    .pro-tj{ padding: 40px 0 35px;}
    .p-cont-bg{ margin-bottom: 0; padding: 40px 0; margin-top: 20px;}
    .p-cont-bg .mxw-box .right{ display: none}
    .p-cont-bg .mxw-box .left{width: 100%; margin: 0 auto;}
    .p-cont-bg .mxw-box .left .st1{ font-size: 18px;}
    .p-cont-bg .mxw-box .left .st2{ font-size: 16px; margin-bottom: 15px;}
    .p-cont-bg .mxw-box .left .form .s1 input{ font-size: 14px;}
    .p-cont-bg .mxw-box .left .form .s1 input::placeholder{ font-size: 14px;}
    .p-cont-bg .mxw-box .left .form  textarea{ font-size: 14px;}
    .p-cont-bg .mxw-box .left .form  textarea::placeholder{ font-size: 14px;}
    .p2-box1 .right .st,.p2-box2 .right .st{ font-size: 18px; margin: 15px auto 15px;}
    .p2-box1{ margin-bottom: 0}
    .p2-box2{ padding-top: 0; padding-bottom: 0}
    .p2-box2 .right{ order: 1;}
    .news-page .list .item .left{ margin-right: 10px; width: 30%;}
    .news-page .list .item .right .st{ font-size: 14px;}
    .news-page .list .item .right .desc{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 12px;
        margin-top: 5px;
    }
    .news-page .list .item .right .n-more{ font-size: 12px; margin-top: 5px;}
    .news-page .list .item{ margin-bottom: 15px; padding-bottom: 15px;}
    .news-page,.page-page{ padding: 40px 0}
    .cont-info{ margin-bottom: 40px; flex-wrap: wrap;}
    .cont-page{ padding: 40px 0;}
    .cont-info .left .st1{ font-size: 20px;}
    .cont-info .left .st2{ font-size: 18px; margin-top: 0}
    .cont-info .left .tel,.cont-info .left .add{ margin-top: 20px; font-size: 14px;}
    .cont-info .left .ewm{ margin-top: 20px;}
    .cont-info .left .ewm img{ width: 120px;}
    .cont-info .left{ width: 100%;}
    .cont-info .right{ margin-top: 20px; width: 100%; padding: 25px 20px;}
    .cont-info .right .st1{ font-size: 20px;}
    .cont-info .right .st2{ font-size: 18px;}
    .cont-info .right .s1 input,.cont-info .right textarea{ margin-top: 15px; font-size: 14px;}
    .cont-info .right .s1 input::placeholder,.cont-info .right textarea::placeholder{ font-size: 14px;}
    .cont-info .right .sub{ margin-top: 15px;}
    .map-st{ font-size: 20px;}
    #map{ margin-top: 15px;}


.adv-swiper2{ overflow: hidden;}
.adv-swiper2 .swiper-slide{ position: relative;}
.adv-swiper2 .swiper-slide .flx{ position: absolute; bottom: 0; width: 100%; color: #fff; background: rgba(0,0,0,.6); padding: 0.367rem 2.333rem 0.25rem;}
.adv-swiper2 .swiper-slide .flx .st{ font-size: 0.4rem; color: #fff; font-weight: bold; margin-bottom: 0.2rem;}
.adv-swiper2 .swiper-slide .flx .desc{ color: #D6D6D6; font-size: 0.333rem;}

  .adv-swiper2 .swiper-slide .flx{ left: 0; padding: 20px 25px;    z-index: 9;}
    .adv-swiper2 .swiper-slide .flx .st{ font-size: 16px; padding: 0;}
    .adv-swiper2 .swiper-slide .flx .desc{ font-size: 14px; padding: 0}

.mxw-cate .cate-box{    flex-wrap: wrap;}
.mxw-cate .cate-box .item:nth-child(3){ width:100%; margin-top:10px;}

}








