@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: #f9f9f9;
    border-bottom: 1px solid #e1e1e1;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    max-width: 1200px;
}
.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: #333;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a{
    color: #333;
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #333;
}
.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;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    border: 1px solid #c4c4c4;
    border-left: 0;
    background: #fff;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(../images/se-ico.jpg) 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%; transform: scale(1.2);
    transition: all 12s;
}
.mxw-banner  .swiper-slide.swiper-slide-active img {
    transform: scale(1);
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1680px;
    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: 1;
    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: #00a2ea;
    border-color: #00a2ea;
}
.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: #00a2ea;
}
.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 {
    margin: 0 auto;
    font-size: 16px;
    color: #333;
    width: 1200px;
}

/* 内页 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: 1200px;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1200px;
        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:#000;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;}
.product-detail-tab .product-detail-tabcon video,.product-detail-tab .product-detail-tabcon iframe,.xypg-detail-con video,.xypg-detail-con iframe{
    max-width: 100%;
}
@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%;}
    .product-detail-tab .product-detail-tabcon video,.product-detail-tab .product-detail-tabcon iframe,.xypg-detail-con video,.xypg-detail-con iframe{
        max-width: 100%; height: 220px;
    }
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
.body{ font-size: 18px;}

.top-box .logo-box{ margin:0.2rem auto 0.2rem 0;}
.top-box .logo-box>img{ max-height:1.85rem;}
.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{background:#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 .welcome {
    background-color: #F0F4F9;
    height: 44px;
    line-height: 44px;
}
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: 13px;
}
header .welcome .right >a {
    padding-left:10px;padding-right:10px;

}

header .pc-menu {
    display: flex;
    align-items: center;
    border-top: 1px solid #f9f9f9;
}
header .pc-menu > li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-right: 26px;
}
header .pc-menu > li:before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #e60012;
    transition: width 0.4s;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}
header .pc-menu > li:last-child {
    margin-right: 0;
}
 header .pc-menu > li:hover:before,header .pc-menu > li.active:before{
    width: 100%;
}
header .pc-menu > li:hover > a,header .pc-menu > li.active>a {
    color: #e60012 !important;
}
header .pc-menu > li:hover > ul {
    visibility: visible;
    opacity: 1;
}
header .pc-menu > li ul {
    background-color: #fff;
    width: 3.3333rem;
    position: relative;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s, visibility 0s;
    z-index: 9;
}
header .pc-menu > li ul:hover {
    opacity: 1;
    visibility: visible;
}
header .pc-menu > li ul li.active > ul,
header .pc-menu > li ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    z-index: 9;
}
header .pc-menu > li ul li a {
    position: relative;
}
header .pc-menu > li ul li a:after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: #eee;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
header .pc-menu > li ul a {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    font-size: 0.2333rem;
    color: #333;
    line-height: 1.2;
    padding: 0.2333rem;
}
header .pc-menu > li > a {
    font-size: 17px;
    color: #333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    position: relative;
    padding: 10px 10px 20px;
    line-height: 1.2;
    width: 100%;
}
header .pc-menu > li > ul {
    border-top: 1px solid #ddd;
    box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.14);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
header .pc-menu > li > ul > li > a.active,
header .pc-menu > li > ul > li > a:hover {
    background-color: rgba(0, 0, 0, 0.04);
}
header .pc-menu > li > ul > li > a.active:after,
header .pc-menu > li > ul > li > a:hover:after {
    display: none;
}
header .pc-menu > li > ul > li > a:last-child:after {
    display: none;
}
header .pc-menu > li > ul > li > ul {
    position: absolute;
    left: 3.3333rem;
    top: 0;
    border-left: 1px solid #ddd;
}
header .pc-menu > li > ul > li > ul > li > ul {
    position: absolute;
    left: 3.3333rem;
    top: 0;
    border-left: 1px solid #ddd;
}
.top-box{ align-items: stretch;}
.top-box .right .top{ display: flex; align-items: flex-end; justify-content: flex-end; margin-top: 24px; margin-bottom: 15px; font-size: 16px;}
.top-box .right{ height: 100%; }
.top-box .right .top>img{ margin-right: 5px;}
.top-box .right .top span{ font-size: 20px; color: #e70012; font-weight: bold; line-height: 1}













/* ==================== 页面具体样式 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 ==================== */

.mxw-pro{ padding: 1rem 0 0.833rem;}
.mxw-title{ text-align: center; font-size: 36px;color: #e60012; font-weight: bold; display: flex; align-items: center; justify-content: center;}
.mxw-title::after{display: block; width: 60px; height: 3px; background: #1d2088; content: ""; margin-left: 18px; }
.mxw-title::before{display: block; width: 60px; height: 3px; background: #1d2088; content: ""; margin-right: 18px;}

.pro-cate{ margin: 30px auto; display: flex; justify-content: center; align-items: center; }
.pro-cate .item{font-size: 16px; color: #666666; display: flex; align-items: center; justify-content: center; width: 180px; height: 50px; border:1px solid  #eeeeee;}
.pro-cate .item.active{ background: #e60012; border-color: #e60012; color: #fff}

.pro-swiper{ overflow: hidden; width: 100%;}
.pro-swiper .swiper-slide .mxw-image{ border: 1px solid #eeeeee}
.pro-swiper .swiper-slide p{ text-align: center; margin-top: 0.25rem; font-size: 0.3rem; color: #333}
.pro-swiper .swiper-slide .item:hover .mxw-image{ border: 1px solid #e60012}
.pro-swiper .swiper-slide .item:hover p{ color: #e60012; font-weight: bold}
.pro-swiper .swiper-slide .item:hover .mxw-image img{  transform: scale(1.1);}

.more-box{ display: flex; align-items: stretch; justify-content: center; margin-top: 35px; height: auto; overflow: hidden;}
.more-box .swiper-button-prev{  width: 48px; height: 48px; border: 1px solid #e60012; font-size: 18px; position: initial;opacity: 1; color: #eb303f; cursor: pointer; margin-top: 0; margin-right: 20px;}
.more-box .swiper-button-prev::after,.more-box .swiper-button-next::after{ display: none; }
.pro-more{width: 150px;
    height: 49px; border: 1px solid #ee1d23; transition: all 0.3s;
    background-color: #e60012; color: #fff; display: flex; align-items: center; justify-content: center;}
.pro-more:hover{ color: #333; background: none; border: 1px solid #ee1d23}
.more-box .swiper-button-next{  width: 48px; height: 48px; border: 1px solid #e60012; font-size: 18px; position: initial;opacity: 1; color: #eb303f; cursor: pointer; margin-top: 0; margin-left: 20px; transform: rotate(180deg)}

.mxw-about{ padding: 1.167rem 0 1.25rem; background: url("../images/about-bg.jpg") center no-repeat; background-size: cover;}
.mxw-about .top{ display: flex; align-items: stretch;justify-content: space-between;}
.mxw-about .top .right-box{ width: 515px;}
.mxw-about .top  .left-box{ width: 625px;}
.mxw-about .top  .left-box .st{ font-size: 0.667rem; color: #fff; font-weight: bold;}
.mxw-about .top  .left-box .st::after{	width: 78px;
    height: 4px;
    margin: 0.583rem auto 0.583rem 0; display: block; content: ""; background: #fff }
.mxw-about .top  .left-box .desc{ font-size: 0.267rem; color: #fff; line-height: 2.4}

.ab-more{width: 180px;
    height: 54px;
    border: solid 1px #ffffff; display: flex; align-items: center; justify-content: center; color: #fff; margin-top: 0.5rem; transition: all 0.3s;}
.ab-more:hover{ background: #fff; color: #333;}
.mxw-about .bottom{ background: #fff; display: flex; align-items: stretch; justify-content: space-between; margin-top: 0.833rem}

.mxw-about .bottom .item{ width: 25%; display: flex; align-items: stretch; justify-content: center;border-right: solid 1px #eeeeee;
padding: 0.8rem 0.25rem}
.mxw-about .bottom .item:last-child{ border: none;}
.mxw-about .bottom .item img{ margin-right: 0.333rem;}
.mxw-about .bottom .item  .text{ font-size: 0.267rem; color: #666}
.mxw-about .bottom .item  .text p{ color: #1d2088; font-size: 0.3rem; margin-bottom: 0.167rem; font-weight: bold;}
.mxw-about .bottom .item:last-child .text {font-size: 0.3rem; color: #e60012;font-weight: bold;}
.mxw-about .bottom .item:last-child .text p{color: #222222}

.gc{ padding: 0.633rem 0 0.583rem; 	background-color: #f9f9f9;}
.gc .st{ font-size: 28px; color: #333694; font-weight: bold; }
.gc .st span{ font-size: 16px; color: #666; font-weight: initial}
.gc-swiper{ margin-top: 30px; overflow: hidden;}
.gc-swiper .swiper-slide .mxw-image{ border: 3px solid #fff;}
.gc-swiper .swiper-slide p{ font-size: 0.267rem; text-align: center;
    margin-top: 0.333rem}

.project-swiper{ overflow: hidden; margin-top: 0.583rem;}
.project{ padding-top: 1rem; padding-bottom: 1rem;}
.project-swiper .swiper-slide{ position: relative;}
.project-swiper .swiper-slide .flx{ position: absolute; width: 100%; height: 100%; border: 1px solid  #e60012; bottom: 0; left: 0; display: flex; align-items: flex-end; text-align: center; opacity: 0; transition: all 0.3s;}
.project-swiper .swiper-slide .flx p{ background: #e60012; text-align: center; width: 100%; padding: 15px; color: #fff }
.project-swiper .swiper-slide:hover .flx{ opacity: 1;}
.project-swiper .swiper-slide:hover .mxw-image img{ transform: scale(1.1)}

.mxw-news{ padding: 0.833rem 0 1rem; background: url("../images/news-bg.jpg") center no-repeat; background-size: cover}
.news-body{ margin-top: 0.667rem; display: flex; align-items: stretch; justify-content: space-between;}
.news-body .left-box{ width: 50%; }
.news-body .right-box{ width: 50%; padding-left: 30px;}
.news-body .left-box .st{ font-size: 18px; color: #222; font-weight: bold; margin: 20px auto 20px 0;transition: all 0.3s; display: flex; align-items: center; justify-content: flex-start}
.news-body .left-box .desc{ font-size: 14px; color: #666; line-height: 1.8}
.news-body .right-box .item{ display: flex; align-items: stretch; justify-content: space-between; margin-bottom: 18px;}
.news-body .right-box .item .date{ background: #cccccc; color: #fff; font-size: 20px; text-align: center;padding: 18px 12px; margin-right: 20px; flex-shrink: 0; transition: all 0.3s;}
.news-body .right-box .item .date p{ font-size: 34px; font-weight: bold; }
.news-body .right-box .item:last-child{ margin-bottom: 0}
.news-body .right-box .item .title{ font-size: 18px; color: #333; font-weight: bold;transition: all 0.3s;}
.news-body .right-box .item  .desc{ font-size: 16px; color: #666;margin-top: 20px; line-height: 1.7}
.news-body .left-box>a:hover .st{ color: #e60012;}
.news-body .right-box .item:hover .title{color: #e60012;}
.news-body .right-box .item:hover .date{ background: #e60012 }
.news-body .left-box>a .st::before{
    width: 5px;
    height: 20px;
    background-color: #e60012;
    display: block; margin-right: 15px;
    content: "";
}


footer{ padding: 0.917rem 0 0.833rem; background: #222222}
footer .mxw-box .left-box .name{ margin-top: 25px; color: #ee1d23; font-size: 24px; font-weight: bold  }
footer .mxw-box .left-box .lx-info{ font-size: 16px; color: #fff; line-height: 2; margin-top: 35px;}
footer .right-box{ text-align: right;}
footer .right-box h1{ font-size: 0.533rem; color: #fff;}
footer .right-box .d-menu{ margin-top: 0.5rem; display: flex; align-items: center; justify-content: flex-end; color: #fff}
footer .right-box .d-menu a{ color: #fff; font-size: 18px; font-weight: bold;
    margin-left: 0.633rem}
.an-list{ margin-top: 0.583rem;}
.copy{ font-size: 12px; color: #fff; margin-top: 30px; line-height: 1.7}
.copy a{ color: #fff;}
.copy a:hover{ color: #fff}
.an-list{ display: flex; align-items: center; justify-content: flex-end;}
.an-list .zxly{width: 185px;
    height: 50px;
    background-color: #1d2088;
    border-radius: 25px; display: flex; align-items: center; justify-content: center; color: #fff; margin-left: 40px}
.an-list .zxly img{ margin-right: 15px}
.an-list .wx.item{ margin-left: 30px}



.page-position a {
    font-size: 14px;
}

.page-wrap{ height: auto; overflow: hidden}
.news-body .right-box .info{ flex-grow: 1; min-width: 0}

@keyframes animate1 {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

@keyframes animate2 {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

@keyframes animate3 {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

@keyframes animate4 {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}
/* 在线留言页面 */
#message-form {
    font-size: 0;
}

#message-form .red-star {
    color: red;
}

#message-form label {
    font-size: 14px;
}

#message-form textarea {
    resize: none;
}

#message-form #checkcode {
    display: inline-block;
    width: 30%;
}

#message-form #checkCodeImg {
    vertical-align: top;
    margin-left: 10px;
}

#message-form #change_code {
    line-height: 34px;
    padding: 0 10px;
    color: #132b83;
    font-size: 14px;
}

#message-form .error-info {
    padding-top: 4px;
    display: inline-block;
    vertical-align: top;
    position: absolute;
}

#job-detail-form .error-info {
    padding-top: 4px;
    display: inline-block;
    vertical-align: top;
    position: absolute;
}

@media (max-width: 768px) {
    #message-form .form-group {
        margin-bottom: 25px;
    }

    #message-form .error-info {
        display: block;
        padding-top: 0;
        float: none !important;
        padding-left: 10px;
    }

    #message-form #change_code + .error-info {
        padding-left: 0px;
        margin-left: -7px;
    }

    #job-detail-form .error-info {
        display: block;
        padding-top: 0;
        float: none !important;
        padding-left: 10px;
    }

    #job-detail-form #change_code + .error-info {
        padding-left: 0px;
        margin-left: -7px;
    }
}

#message-form.n-default .msg-wrap {
    position: static;
}


@media screen and (max-width: 751px) {

    body{ padding-top: 0}
    .mxw-title{ font-size: 24px}
    .mxw-pro{ padding: 40px 0 40px;}
    .mxw-box{ padding: 0; width: 95%;}
    .pro-cate{ flex-wrap: wrap; justify-content: space-between; margin: 25px auto 0;}
    .pro-cate .item{ width: 50%; font-size: 14px; height: 40px}
    .pro-swiper .swiper-slide p{ font-size: 14px; margin-top: 5px}
    .pro-swiper .swiper-slide .item{ margin-top: 20px}
    .more-box{zoom: 0.7;}
    .mxw-about{ padding: 40px 0;}
    .mxw-about .top{ flex-wrap: wrap;}
    .mxw-about .top .left-box{ width: 100%;}
    .mxw-about .top .left-box .st{ font-size: 20px}
    .mxw-about .top .left-box .st::after{ height: 2px; margin: 10px auto 15px 0 }
    .mxw-about .top .left-box .desc{ font-size: 14px; line-height: 1.8}
    .ab-more{ zoom: 0.9; margin: 20px auto 20px 0; width: 150px; height: 45px;}
    .mxw-about .top .right-box{ width: 100%}
    .mxw-about .bottom{ margin-top: 25px; flex-wrap: wrap; background: none}
    .mxw-about .bottom .item{ width: 100%; padding: 20px; margin-bottom: 15px; background: #fff; justify-content: flex-start}
    .mxw-about .bottom .item img{ margin-right: 15px; width: 50px}
    .mxw-about .bottom .item .text{ font-size: 14px;}
    .mxw-about .bottom .item .text p{ font-size: 16px; margin-bottom: 5px}
    .gc-swiper .swiper-slide p{ font-size: 14px; margin-top: 5px;}
    .gc .st{ font-size: 22px}
    .gc .st span{ font-size: 14px;}
    .gc-swiper{ margin-top: 20px}
    .gc,.project,.mxw-news{ padding: 40px 0}
    .news-body{ flex-wrap: wrap;}
    .news-body .left-box{ width: 100%; margin-bottom: 20px}
    .news-body{ margin-top: 20px}
    .news-body .left-box .st{ font-size: 16px; margin: 10px auto;}
    .news-body .right-box{ width: 100%; padding: 0}
    .news-body .right-box .item .date p{ font-size: 20px;}
    .news-body .right-box .item .date{ font-size: 14px; padding: 12px; margin-right: 15px}
    .news-body .right-box .item .title{ font-size: 15px;}
    .news-body .right-box .item .desc{ font-size: 13px; margin-top: 5px;    height: 44px;}
    footer{ padding: 40px 0}
    footer .mxw-box{ flex-wrap: wrap;}
    footer .mxw-box .left-box{ width: 100%;}
    .d-logo img{ height: 45px}
    footer .mxw-box .left-box .name{ margin-top: 15px; font-size: 18px}
    footer .mxw-box .left-box .lx-info{ font-size: 14px; margin-top: 20px}
    footer .right-box{ width: 100%; text-align: center;}
    footer .right-box h1,footer .right-box .d-menu,.an-list{ display: none;}
    .copy{ margin-top: 20px}





}















