@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;
    display: block;
    margin: 4px;
}
.mxw-pagination > a.active,
.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: #e86b88;
    vertical-align: inherit;
    font-weight: bold;
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #e86b88;
}
.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: #e86b88;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
}
.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: 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: 50px;
    height: 2px;
    border-radius: 0;
    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: #da251d;
    border-color: #da251d;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 1.383rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #da251d;
    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 {

    margin: 0 auto;
    font-size: 0.267rem;
    color: #333;
    width: 86%;
    max-width:26.667rem;
    min-width: 20rem;
}

/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
}

/* 内页 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: 86%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1400px;

        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:#e86b88;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 ==================== */

header .welcom{ background: #f2f2f2; padding: 0.16rem 0; }
header .welcom .mxw-box{ justify-content: space-between}
header .welcom .l-box{ color: #6f6f6f; font-size: 0.267rem;}
header .welcom .r-box{ font-size: 0.267rem; color: #6f6f6f; display: flex; align-items: center; }
header .welcom .r-box>a{ display: flex; align-items: center}
header .welcom .r-box img{ margin-right: 3px; max-height: 0.967rem }
header .top .logo{ margin: 0.333rem auto  0.333rem  0; }
header .right{ height: 100%}
.pc-menu{ height: 100%; margin-right: 0.75rem }
.pc-menu>li{ height: 1.65rem; padding: 0 0.583rem;}
.pc-menu>li>a{ display: flex; align-items: center; justify-content: center; height: 100%;}
.pc-menu>li.active,.pc-menu>li:hover{ background: #da251d;}
.pc-menu>li.active>a,.pc-menu>li:hover>a{color: #fff}
.top-tel{ font-size: 0.45rem; color: #da251d; font-weight: bold}
.pc-menu>li{ position: relative;}
header .pc-menu >li>ul {
    background-color: #fff;
    width: 3.3333rem;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s, visibility 0s;    z-index: 999;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);    border-top: 0.0167rem solid #ddd;
    text-align: center;
    padding:15px 0
}
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:hover  ul{
    opacity: 1;
    visibility: visible;
}
header .pc-menu > li > ul  li > a.active, header .pc-menu > li > ul  li > a:hover {
    background: #da251d;color: #fff;
}

.mxw-title{ text-align: center;}
.mxw-title .cn{ font-size: 0.7rem; font-weight: bold; color: #333}
.mxw-title .cn::after{ width: 1.267rem; height: 0.067rem; display: block; margin: 0.4rem auto 0.267rem; content: ""; background: #da251d}
.mxw-title .desc{ font-size: 0.283rem; color: #333;}

.pro-box{ padding: 1.533rem 0 1.167rem;}
.pro-cate{ margin: 0.75rem auto 0.833rem; justify-content: center }
.pro-cate .item{ display: flex; align-items: center; justify-content: center; padding: 0.233rem 0.417rem; font-size: 0.283rem; margin-right: 0.3rem; border: 0.017rem solid #e7e7e7; border-radius: 0.167rem}
.pro-cate .item:last-child{ margin-right: 0}
.pro-cate .item:hover ,.pro-cate .item.active{ background: #da251d; color: #fff; border-color:#da251d}
.pro-body {     overflow: hidden;}
.pro-body .swiper-slide .item{ border: 1px solid #e2e2e2; text-align: center;}
.pro-body .swiper-slide .item .mxw-image{ width: 100%; border-bottom: 1px solid #e2e2e2;}
.pro-body .swiper-slide .item .info{ padding: 0.5rem 0.75rem 0.167rem;}
.pro-body .swiper-slide .item .info .t1{ font-size: 0.333rem; font-weight: bold; margin-bottom: 0.167rem;}
.pro-body .swiper-slide .item .info .t1 span{ color: #da251d}
.pro-body .swiper-slide .item .info .t2{ font-size: 0.233rem; color: #666666; height: 0.65rem}

.ab-box .top-box{ position: relative; display: flex; align-items: center; justify-content: center;height: 11.9rem;}
.ab-box .top-box>img{ max-height: 100%;}
.ab-box .top-box .mxw-box{ position: absolute; left: 0; right: 0; bottom: 0; }
.ab-box .top-box .mxw-box .flx{ background: #fff; max-width: 10.417rem; width: 39.1%; padding: 1.083rem 0.75rem; }
.mxw-title2{text-align: left; display: flex; align-items: center; }
.mxw-title2::before{
    width: 0.167rem;
    height: 1.483rem;
    background-color: #da251d;
    margin-right: 0.467rem;
    display: inline-block; content: "";
}
.mxw-title2 .cn::after{ display: none}
.mxw-title2 .desc{ font-weight: bold; margin-top: 0.2rem}
.ab-box .mxw-box .flx .con{ font-size: 0.283rem; line-height: 2; color: #666; margin: 1rem 0 1.167rem;}
.a-more a{ width: 48%;	border: solid 0.017rem #da251d; display: flex; align-items: center; justify-content: space-between; padding: 0.2rem 0.917rem; border-radius: 0.4rem}
.a-more .a-more1{ background: #da251d; color: #fff}
.a-more .a-more2{ color: #da251d; }

.ab-down{ background: url("../images/ab_dowm-bg.jpg") right repeat-y;  }
.ab-down .mxw-box{}
.ab-down .mxw-box .left{ width: 39.1%; max-width: 10.417rem; background: #da251d; padding: 0.2rem 1.467rem 0.367rem;  font-size: 0.3rem; color: #fff; justify-content: space-between; align-items: stretch; flex-shrink: 0 }
.ab-down .mxw-box .left .item>img{

}
.ab-down .mxw-box .left .item p{text-align: center;}
.ab-down .mxw-box .right{ background: #f6f6f6; flex-grow: 1; min-width: 0 }
.ab-down .mxw-box .right .hb-swiper{ margin-left: 32px; overflow: hidden;}
.ab-down .mxw-box .right .hb-swiper .swiper-slide{ border: 1px solid #d8d8d8}


.hon-box{ padding: 1.75rem 0 2.583rem; background: url("../images/hon-bg.jpg") center no-repeat; background-size: cover; }
.hon-body{ width: 95%; margin: 1.083rem auto 0; position: relative;}
.hon-body .hon-swiper{ overflow: hidden; width: 88.52%; margin: 0 auto}
.hon-body .swiper-button-next::after,.hon-body .swiper-button-prev::after{ display: none}
.hon-body .swiper-button-next,.hon-body .swiper-button-prev{ width: 1.1rem; height: 1.1rem;}

.net-box{ background: url("../images/net-bg.jpg") no-repeat; padding: 1.667rem 0 1.833rem; }
.net-box .left{ color: #fff; width: 36.25%; margin-right: 0.167rem; flex-shrink: 0}
.net-box .left .h2{ font-size: 0.667rem; font-weight: bold;}
.net-box .left .h2::before{ width:0.167rem; height: 0.75rem; background: #da251d; display: inline-block; content: ""; margin-right: 0.417rem;transform:skewX(-15deg);}
.net-box .left .desc{ font-size: 0.3rem; margin-top: 0.667rem;  line-height: 1.8}
.net-box .right{ flex-grow: 1; min-width: 0}
.net-box .left .net-list .item{ margin-top: 1rem;}
.net-box .left .net-list .item .clt{ margin-right: 0.417rem; width: 1.283rem;}
.net-box .left .net-list .item .crt>div{ font-weight: bold; font-size: 0.417rem;}
.net-box .left .net-list .item .crt>p{font-size: 0.267rem; color: #c8c8c8; margin-top: 0.25rem}

.news-box{ padding: 1.417rem 0 1.667rem; background: url("../images/news-bg.jpg") center no-repeat; background-size: cover;}
.news-swiper{ margin-top: 0.833rem; overflow: hidden;}
.news-swiper .swiper-slide{ width: 31%;}
.news-swiper .swiper-slide .time{ margin: 0.4rem auto 0.4rem 0; font-size: 0.3rem; color: #666}
.news-swiper .swiper-slide .ctt{ font-size: 0.4rem; font-weight: bold; color: #333; margin-bottom: 0.367rem;}
.news-swiper .swiper-slide .desc{ font-size: 0.267rem; color: #666666;}
.news-swiper .swiper-slide .n-more{ font-size: 0.3rem; color: #666; display: flex; align-items: center; justify-content: flex-start;margin-top: 0.733rem }
.news-swiper .swiper-slide .n-more>img{ margin-left: 0.267rem; transition: all 0.3s;}
.news-swiper .swiper-slide .n-more p{	}
.news-swiper .swiper-slide .n-more p::after{ display: block; width: 100%; margin-top: 8px; height: 2px; background: #949494; content: "";}
.news-swiper .swiper-slide:hover .n-more>img{ margin-left: 0.333rem;}
.news-swiper .swiper-slide:hover .ctt{ color: #da251d}

footer{ background: #222222; padding: 1rem 0 1.167rem;}
footer .mxw-box{ justify-content: stretch; align-items: flex-start;}
footer .mxw-box .lbx{ width: 62.5%; color: #fff}
.d-menu{ display: flex; align-items: flex-start;}
.d-menu>li{ margin-left: 1.083rem;}
.d-menu>li>a{ font-size: 0.3rem; color: #fff; font-weight: bold; }
.d-menu>li>.pc-sub-menu{margin-top: 0.583rem;}
.d-menu>li>.pc-sub-menu>li{ font-size: 0.233rem; color: #999; margin-bottom: 0.2rem;}

footer .mxw-box .lbx .down{ margin-top: 0.917rem; padding-top: 0.633rem; border-top: 1px solid #4d4d4d}
footer .mxw-box .lbx .down h2{ font-size: 0.467rem; }
footer .mxw-box .lbx .down .copy{ font-size: 0.233rem; color: #888; margin: 0.5rem auto  0 0; line-height: 1.8}
footer .mxw-box .rbx{ margin-left: 3.167rem; flex-shrink: 0; }
footer .mxw-box .rbx .item{ margin-bottom: 0.667rem;}
footer .mxw-box .rbx .item .ibt{ font-size: 0.3rem; color: #fff; font-weight: bold;}
footer .mxw-box .rbx .item .ibc{ font-size: 0.233rem; color: #999; line-height: 1.8; margin-top: 0.367rem;}

.ewm-box{ display: flex; align-items: stretch; justify-content: flex-start}
.ewm-box .ewm-item{ text-align: center; color: #999999; font-size: 0.233rem;}
.ewm-box .ewm-item>img{ max-width: 1.733rem;}
.ewm-box .ewm-item p{text-align: center; color: #999999; font-size: 0.233rem; margin-top: 0.333rem}


/* ==================== 页面具体样式 end ==================== */

.oth-cate{ align-items: stretch }
.oth-cate .item{ width: 100%; padding: 0.633rem 0.25rem ; text-align: center; 	font-size: 0.333rem;box-shadow: 0px 4px 24px 0px
rgba(4, 37, 115, 0.04); display: flex;align-items: center; justify-content: center; font-weight: bold;transform: translateY(-50%); background: #fff;}
.oth-cate .item:hover,.oth-cate .item.active{box-shadow: 0px 4px 24px 0px
rgba(4, 37, 115, 0.04); background: #da251d; color: #fff}

.n-ab-list { margin: 0.45rem auto 1rem;}
.n-ab-list .item{ width: 100%; background: #fff; display: flex; align-items: stretch; justify-content: space-between; margin-bottom: 0.633rem;}
.n-ab-list .item .right{ width: 47.5%}
.n-ab-list .item .left{ width: 52.5%; padding: 0 1.083rem 0 0.833rem; display: flex; align-items: center}
.n-ab-list .item .left .ct{ font-size: 0.583rem; font-weight: bold; margin-bottom: 0.917rem}
.n-ab-list .item .left .ct::before{ display: inline-block; 	width: 0.117rem;
    height: 0.783rem;
    background-color: #da251d; content: ""; margin-right: 0.417rem}
.n-ab-list .item .left .ct span{ font-size: 0.567rem; color: rgba(0,0,0,.14); margin-left: 0.25rem; text-transform: uppercase;}
.n-ab-list .item .left .con{ font-size: 0.3rem; color: #666666; line-height: 2}
.n-ab-list .item:nth-child(even) .left{ order: 1 }

.oth-procate .item{padding: 0.367rem 0.25rem ;}
.oth-pro-list  .item{margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #e4e4e4;}
.oth-pro-list  .item .left{ width: 30%; border: 1px solid #e2e2e2;}
.oth-pro-list  .item .con{ padding: 0 2.333rem 0 1rem ; flex-grow: 1; min-width: 0}
.oth-pro-list  .item .con .cn{ font-size: 0.4rem; font-weight: bold; margin-bottom: 0.167rem;}
.oth-pro-list  .item .con .en{ font-size: 0.233rem; color: #666; margin-bottom: 0.667rem}
.oth-pro-list  .item .con .desc{ font-size: 0.3rem; color: #666666; line-height: 2;}
.oth-pro-list  .item .con .desc>P::before{ width: 12px; height: 13px; display: inline-block; content: "";background: url("../images/sanjiao.png") center no-repeat;  background-size: cover; margin-right: 18px;}
.oth-pro-list  .item .right{ flex-shrink: 0}
.oth-pro-list  .item .right .cont{ padding: 0.167rem 0.75rem; display: block; border: 1px solid #c7c7c7;}
.oth-pro-list  .item .right .cont.rd{background: #da251d; border-color: #da251d; color: #fff; margin-top: 0.667rem}
.oth-pro-list  .item .right .cont.rd:hover{ color: #da251d; background: none}
.oth-pro-list  .item .right .cont.rd:hover img{filter: invert(48%) sepia(85%) saturate(7172%) hue-rotate(348deg) brightness(85%) contrast(101%);}


/* ==================== 产品详情页 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: #d3ad68;
}
.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: 30%;
    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: #da251d;
}
.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 #da251d;
    font-size: 0.3rem;
    line-height: 0.8333rem;
    height: 0.8333rem;
    color: #da251d;
}
.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;
}

.in-pmore{    
    border: solid 0.017rem #da251d;
    display: flex;    width: max-content;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0.517rem;
    border-radius: 0.4rem;
	margin:1rem auto 0;     background: #da251d;
    color: #fff;
}
.in-pmore img{ margin-left:0.75rem}
.in-pmore .img2{display:none}
.in-pmore:hover{ background: none; color:#333}
.in-pmore:hover>.img2{display:block}
.in-pmore:hover>.img1{display:none}


@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 ==================== */


.oth-contact-box{ background: url("../images/contact-bg.jpg") center no-repeat; background-size: cover; padding:0 0 2.667rem; }
.oth-contact-box .oth-contact{box-shadow: 0px 7px 32px 0px
rgba(3, 0, 0, 0.11); background: #fff; margin-top:1rem}
.oth-contact-box .mxw-box .right{ padding: 1.167rem 2.133rem;}

.oth-contact-box .oth-contact .right .item{ margin-bottom: 0.833rem}
.oth-contact-box .oth-contact .right .item .ibt{ font-size: 0.583rem; font-weight: bold; margin-bottom: 0.5rem;}
.oth-contact-box .oth-contact .right .item .ibc{ line-height: 2; }
.oth-contact-box .mxw-boxoth-contact .right .item .ibc>P{ margin: 0.333rem auto 0.333rem 0 }
.oth-contact-box .oth-contact .right .ewm-box{ padding: 0.3rem; border:1px dashed #da251d;  }
.oth-contact-box .oth-contact .right .ewm-box .ewm-item{ display: flex; align-items: center; justify-content: flex-start;}
.oth-contact-box .oth-contact .right .ewm-box .ewm-item>p{ font-size: 0.3rem;  margin: 0 auto 0 0.3rem; color: #333}


.npro-list .lists{flex-wrap: wrap;}
.npro-list .lists .item{ border: 1px solid #dedede;text-align: center;}
.npro-list .lists .item .mxw-image{border-bottom: 1px solid #dedede;}
.npro-list .lists .item .info{ padding: 0.367rem 0.25rem 0.25rem}
.npro-list .lists .item .info>div{ font-size: 0.333rem; font-weight: bold; margin-bottom: 0.3rem}
.npro-list .lists .item .info>p {
    width: 1.633rem;
    padding: 0.083rem 0;
    background-color: #da251d;
    border-radius: 0.25rem;
    font-size: 0.267rem;
    color: #fff;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.pages{ padding: 0.583rem 0;}

/* ==================== 内页 - 新闻详情 start ==================== */
.ny-news-desc {
    padding: 0.7258rem 0.4032rem;
    padding-top: 0;
    margin-bottom: 0.5645rem;
}
.ny-news-desc > .mxw-box {
    padding-top: 1rem;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 0.4516rem;
    color: #333;
    padding-bottom: 0.3226rem;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 0.3226rem;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 0.3226rem;
}
.ny-news-desc .info .text {
    font-size: 0.2581rem;
    color: #999;
    display: inline-block;
    margin-right: 0.3226rem;
    border-left: 1px solid #ccc;
    padding-left: 0.3226rem;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 1.6129rem;
    padding: 0.0806rem 0.1613rem;
    line-height: 1;
    font-size: 0.2258rem;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;
    font-size: 0.2581rem;
}
.ny-news-desc .article p {
    line-height: 1.8;
}
@media screen and (max-width: 1200px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 30px 20px;
    }
    .ny-news-desc .article {
        font-size: 0.28rem;
    }
    .ny-news-desc .info .text {
        margin-right: 0.1rem;
        padding-left: 0.1rem;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 0.2rem;
    }
}
/* ==================== 内页 - 新闻详情 end ==================== */
/* ==================== 内页 - 新闻列表2 start ==================== */
.ny-news2 .item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    transition: all 0.4s;
    border: 0.0167rem solid #dedede;
    box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.14);
    margin-bottom: 0.6667rem;
}
.ny-news2 .item:hover {
    box-shadow: 0rem 0rem 0.1667rem 0rem rgba(0, 0, 0, 0.14);
}
.ny-news2 .item:hover .title {
    color: #c00000;
}
.ny-news2 .item .image {
    flex-shrink: 0;
    width: 4.6667rem;
    margin-right: 0.5rem;
}
.ny-news2 .item .info {
    min-width: 0;
    flex-grow: 1;
}
.ny-news2 .item .head {
    display: flex;
    align-items: center;
    color: #888;
    padding-bottom: 0.1667rem;
    border-bottom: 0.0167rem solid #888;
    margin-bottom: 0.3333rem;
}
.ny-news2 .item .title {
    flex-grow: 1;
    font-size: 0.4rem;
    line-height: 1.2;
}
.ny-news2 .item .time {
    font-size: 0.2667rem;
    line-height: 1.2;
    flex-shrink: 0;
}
.ny-news2 .item .desc {
    font-size: 0.2667rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.ny-news2 .item .more {
    width: 2.0833rem;
    height: 0.6rem;
    line-height: 0.6rem;
    background-color: #fff;
    border: solid 0.0167rem #dedede;
    display: block;
    text-align: center;
    font-size: 0.2rem;
    color: #888888;
}
@media screen and (max-width: 751px) {
    .ny-news2 .item {
        padding: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .ny-news2 .item .image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .ny-news2 .item .info {
        width: 100%;
    }
    .ny-news2 .item .head {
        margin-bottom: 10px;
    }
    .ny-news2 .item .title {
        font-size: 16px;
    }
    .ny-news2 .item .time {
        font-size: 12px;
    }
    .ny-news2 .item .desc {
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 1.8em;
        height: 3.6em;
        margin-bottom: 10px;
        overflow: hidden;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: inherit;
    }
    .ny-news2 .item .more {
        width: 100%;
        padding: 8px 20px;
        font-size: 12px;
        height: auto;
        line-height: inherit;
    }
}
/* ==================== 内页 - 新闻列表2 end ==================== */
.join_f {
    background: #f1f3f5;
    padding: 40px 45px;
}

.j_inp input,
.join_f select {
    width: 48%;
    height: 48px;
    border: 1px solid #e4e6e8;
    padding-left: 20px;
    font-size: 16px;    background: #fff;
    vertical-align: text-top;
}

.j_inp input:nth-child(even) {
    float: right;
}

.j_inp {
    margin-bottom: 20px;    font-size: 0;
}

.join_f textarea {
    width: 100%;
    height: 125px;
    border: 1px solid #e4e6e8;
    padding-left: 20px;
    padding-top: 15px;
}

.b_cent {
    text-align: center;
    margin-top: 30px;font-size: 0;
}

.b_cent input {
    width: 180px;
    height: 45px;
    border: none;
    background: #e6010d;
    color: white;
    font-size: 18px;
}
.ny-message{ margin-bottom: 1rem}
.ewm-item{ text-align: center; width: max-content}
.ewm-item p{    color: #999; margin-top: 0.333rem; font-size: 14px}
.d-menu>li:first-child{ margin-left: 0}

.oth-pro-list .item .left{    flex-shrink: 0;}

.ny-product-desc .bottom table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.ny-product-desc .bottom table th,
.ny-product-desc .bottom table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.ny-product-desc .bottom table td p{line-height:1.8!important;}
.ny-product-desc .bottom table tr:hover{background-color:#f2f2f2!important;}
.ny-product-desc .bottom table tr:nth-child(2n-1){background-color:#fff ;}
.ny-product-desc .bottom table tr:nth-child(2n){background-color:#fdfdfd ;}



@media screen and (max-width: 1700px) {
    .pc-menu>li{    height: 1.55rem;
        padding: 0 0.383rem;}
    header .top .logo{ margin: 0.28rem auto 0.28rem 0}



}


@media screen and (max-width: 1500px) {
    .pc-menu>li{    height: 1.45rem;
        padding: 0 0.283rem;}
    header .top .logo{ margin: 0.2rem auto 0.2rem 0}
    .pc-menu>li>a{ font-size: 17px;}


}
@media screen and (max-width: 1400px) {
    .pc-menu>li>a{ font-size: 16px;}


}


@media screen and (max-width: 751px) {
    .mxw-box{ padding: 0; min-width: initial; width: 95%}

    .pro-box{ padding: 40px 0}
    .mxw-title .cn{ font-size: 22px;}
    .mxw-title .cn::after{ height: 2px; margin: 5px auto 10px}
    .mxw-title .desc{ font-size: 14px;}
    .pro-cate{ margin: 15px auto;  flex-wrap: wrap; justify-content: space-between; align-items: stretch}
    .pro-cate .item{ font-size: 14px; margin: 5px 0; width: 48.5%; padding: 8px 5px;}
    .pro-cate .item:nth-child(6){ width: 100%; order: 1;}
    .pro-body .swiper-slide .item .info{ padding: 10px 5px;}
    .pro-body .swiper-slide .item .info .t1{ font-size: 14px; margin-bottom: 5px}
    .pro-body .swiper-slide .item .info .t2{ font-size: 12px;}
    .ab-box{ display: flex; flex-wrap: wrap; overflow: hidden}
    .ab-box .top-box{ height: auto;flex-wrap: wrap;}
    .ab-box .top-box .mxw-box{ width: 95%; position: initial;}
    .ab-box .top-box .mxw-box .flx{ width: 100%; padding: 10px 0 0 0}
    .mxw-title2::before{ width: 2px; margin-right: 10px; height: 53px }
    .mxw-title2 .desc{ margin-top: 5px;}
    .ab-box .mxw-box .flx .con{ margin: 20px auto;}
    .a-more a{ font-size: 14px; padding: 8px 20px; width: 48.5%;}
    .a-more a>img{ max-height: 18px;}
    .ab-down .mxw-box{ width: 100%; margin-top: 20px; flex-wrap: wrap;}
    .ab-down .mxw-box .left{ width: 100%;max-width: 100%; padding: 20px 10px; flex-shrink: initial;}
    .ab-down .mxw-box .right{ width: 100%; flex-grow: initial}
    .ab-down .mxw-box .right .hb-swiper{ width: 100%; margin: 0}
    .ab-box .ab-down{ max-width: 100%}
    .ab-down .mxw-box .left .item{ width: calc(100% / 3); text-align: center;}
    .ab-down .mxw-box .left .item>img{ width: 60px;}
    .ab-down .mxw-box .right .hb-swiper{ width: 95%; margin: 20px auto;}
    .hon-box{ padding: 40px 0}
    .hon-body .swiper-button-next, .hon-body .swiper-button-prev{ display: none}
    .hon-body .hon-swiper{ width: 100%}
    .net-box{ padding: 40px 0 }
    .net-box>.mxw-box{ flex-wrap: wrap}
    .net-box .left{ width: 100%}
    .net-box .left .h2{ font-size: 22px;}
    .net-box .left .h2::before{ height: 25px;}
    .net-box .left .desc{ font-size: 14px; margin-top: 10px;}
    .net-box .left .net-list .item{ margin-top: 20px;}
    .net-box .left .net-list .item .crt>div{ font-size: 16px;}
    .net-box .left .net-list .item .crt>p{ font-size: 14px; margin-top: 5px;}
    .net-box .right{ margin-top: 20px;}
    .mxw-title{ max-width: 95%;margin: 0 auto}
    .news-box{ padding: 40px 0}
    .news-swiper .swiper-slide .time{ font-size: 12px; margin: 10px auto 10px 0}
    .news-swiper .swiper-slide .ctt{ font-size: 16px; margin-bottom: 15px}
    .news-swiper .swiper-slide .desc{ font-size: 14px;}
    footer .mxw-box{ flex-wrap: wrap}
    .news-swiper .swiper-slide .n-more{ font-size: 14px; margin-top: 15px}
    footer .mxw-box .lbx{ width: 100%}
    footer .mxw-box .lbx .down{ border: none; padding: 0; margin-top: 0}
    footer .mxw-box .rbx{ width: 100%; margin: 20px auto}
    footer .mxw-box .lbx .down h2{ font-size: 18px}


    .mxw-tool {
        padding: 6px 10px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #333;
        color: #fff;
        font-size: 14px;
    }
    .mxw-tool .icon {
        text-align: center;
    }
    .mxw-tool .tool-item {
        width: 18%;
        height: 50px;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    .mxw-tool .tool-item:nth-child(5) ~ .tool-item {
        display: none;
    }
    .mxw-tool .tool-item .icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        margin-bottom: 5px;
    }
    .mxw-tool .tool-item .text {
        font-size: 13px;
        width: 100%;
        text-align: center;
        letter-spacing: 1px;
        text-indent: 1px;
    }
    .mxw-tool {
        position: fixed;
        z-index: 99;
    }


    footer{ padding: 40px 0 20px}
.ewm-item{color: #999999; font-size: 14px; text-align: center}
    .ewm-item p{margin-top: 5px;}
    .oth-cate{flex-wrap: wrap;}
    .oth-cate .item{font-size: 15px; padding: 12px 5px; width: calc(100% / 3);}

    .n-ab-list .item{ flex-wrap: wrap;}
    .n-ab-list .item .left{ width: 100%; padding: 20px 10px;}
    .n-ab-list .item .left .ct{ font-size: 18px;    margin-bottom: 20px;}
    .n-ab-list .item .left .ct span{ font-size: 14px;}
    .n-ab-list .item .left .con{ font-size: 14px;}
    .n-ab-list .item .right{ width: 100%}
    .n-ab-list .item:nth-child(even) .left{ order: 0}

    .oth-procate .item{    width: 50%;}
    .oth-procate .item:nth-child(6){ width: 100%; order: 1; }
    .oth-pro-list .item .left{ width: 100%}
    .oth-pro-list .item{ flex-wrap: wrap;}
    .oth-pro-list .item .con{ padding: 10px 0}
    .oth-pro-list .item .con .cn{ font-size: 16px;}
    .oth-pro-list .item .con .en{ font-size: 12px; margin-bottom: 15px}
    .oth-pro-list .item .con .desc{ font-size: 14px;}
    .oth-pro-list .item .con .desc>P::before{ margin-right: 10px}
    .oth-pro-list .item .right{ width: 100%}
    .oth-pro-list .item .right a{ width: 48.5%; padding: 8px 5px; font-size: 14px; margin-top: 10px}
    .oth-pro-list .item .right>div{ display: flex; justify-content: space-between}
    .oth-pro-list .item{ margin-bottom: 20px; padding-bottom: 20px;}
    .oth-pro-list .item .right .cont.rd{ margin-top: 10px;}
    .ny-product-desc .bottom{ margin-bottom: 40px;}
    .npro-list .lists .item .info{ padding: 10px 5px; }
    .npro-list .lists .item .info>div{ font-size: 14px; }
    .npro-list .lists .item .info>p{ font-size: 12px}
    .ny-news-desc .title{ font-size: 18px}
    .ny-news-desc > .mxw-box{ padding: 30px 0}
    .oth-contact-box .mxw-box .right{ padding: 20px}
    .oth-contact-box .oth-contact{flex-wrap: wrap; margin-top: 20px}
    .oth-contact-box{ padding-bottom: 40px}
    .oth-contact-box .oth-contact .right .item .ibt{ font-size: 18px; margin-bottom: 10px;}
    .oth-contact-box .oth-contact .right .item .ibc{ font-size: 14px; line-height: 1.7}
    .oth-contact-box .oth-contact .right .item{ margin-bottom: 20px}
    .j_inp input,
    .join_f select {
        width: 100%;
        height: 40px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .b_cent input {
        height: 40px;
        font-size: 14px;
        width: 120px;
    }

    .b_cent {
        margin-top: 0;
    }

    .join_f textarea {
        margin-bottom: 15px;
    }

    .join_f {
        padding: 25px;
    }


}























