@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
    image-rendering: -moz-crisp-edges; /* Firefox */
   image-rendering: -o-crisp-edges; /* Opera */
   image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
   -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.Pagination {
    margin-top: 40px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.Pagination  a,.Pagination  span {
    padding: 6px 12px;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    border: 1px solid #fff;
    display: block;
    margin: 4px;
}
.Pagination  a.active,
.Pagination  a:hover {
    background-color: #fff;
    color: #333 !important;
}
.Pagination  a:first-child {
    margin-left: 0;
}
.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 ==================== */
.ne .Pagination {
    margin-top: 40px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.ne .Pagination  a,.ne .Pagination  span {
    padding: 6px 12px;
    font-size: 14px;
    color: #333;
    line-height: 1.2;
    border: 1px solid #333;
    display: block;
    margin: 4px;
}
.ne .Pagination  a.active,
.ne .Pagination  a:hover {
    background-color: #444;
    color: #fff !important;
}
.ne .Pagination  a:first-child {
    margin-left: 0;
}
.ne .Pagination  a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .ne .mxw-pagination {
        margin-top: 30px;
    }
    .ne .mxw-pagination  a {
        font-size: 12px;
        margin: 2px;
        padding: 8px 10px;
    }
}

/* ==================== 通用标签页 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: #0748b2;
    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%;
    font-size: 0;
    border-bottom: 1px solid #e5e5e5;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: stretch;
    font-size: 0;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    padding-left: 0.333rem;

    padding-top: 32px;
    padding-bottom: 32px;
}
.mxw-keywords .left strong {
    vertical-align: inherit; color: #444444;
}
.mxw-keywords .left span {
    color: #000;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #0748b2;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right{
    display: flex;
    align-items: center;
}
.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: 394px;
    border-radius: 24px;
    height: 48px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    height: 48px;
margin-left: -18px;
    border-radius: 24px;
cursor: pointer;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;
    background-size: cover;
}
.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: #000;
    }
    .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: #fff;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;z-index: 0;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
    height: 100%; text-align: center;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    margin-left: 5px;
    margin-right: 5px;
    outline: none;
    opacity: 1;
    border-radius: 6px;
}
.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: #0089e1;
    border-color: #0089e1;

}
.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: #245eb5;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 84.1%;
}
.mxw-box2 {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}





/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    html {

    }
    .mxw-box {
        max-width: 89%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }

}
@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:#0748b2;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 240%;
        width:240%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
	.footer3 ul li .iconfont{ width:initial; height:initial}
    .product-detail-tab .product-detail-tabcon iframe,.product-detail-tab .product-detail-tabcon video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content  iframe, .xypg-right-content  video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content img{ max-width: 100%; height: auto !important;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}
.top-box .logo-box{  font-size: 0;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start; padding: 0.633rem 0 }
.top-box .logo-box .t-logo>img{ max-height: 0.65rem;}

.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: #0748b2; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; opacity: 0.4 }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;overflow:visible;}
.mxw-link .mxw-link-list{color:#333;position:absolute;top:0;left:0;width:100%;transform:translateY(-100%);padding:10px 0;display:none; background: #fff;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:0.3rem;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:0.267rem;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{
    position: absolute; top: 0; width: 100%;
     z-index: 11;
    background: #000;
}
header .welcome {
    line-height: 34px;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;
}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}

@keyframes todown {
    0% {
        bottom: 30px;
    }
    50% {
        bottom: 10px;
    }
    100% {
        bottom: 30px;
    }
}


.top-box{ align-items: stretch; max-width: 1600px; width: 84.1%;}
.top-box .right{ display: flex; flex-grow:1; min-width: 0;  padding-left: 2.5rem; justify-content: flex-end; align-items: center;  color: #fff; }
.top-tel{ display: flex; align-items: center}


.top-tel .num{		font-size: 0.5rem; color: #333; line-height: 1; font-weight: bold;}
.top-tel .icon{ width: 0.9rem; flex-shrink: 0; margin-left: 0.25rem;}
.lang{ flex-shrink: 0; margin-right: 0.8rem;}

.ban-panel{ position: absolute; bottom: 0.967rem; width: 100%; font-size: 0}
.ban-panel>.mxw-box{ position: relative; display: flex; align-items: center; justify-content: flex-start;}
.ban-panel>.mxw-box .swiper-button-prev{ font-size: 0.3rem; color: #fff; position: initial; margin: initial; width: initial; height: initial}
.ban-panel>.mxw-box .swiper-button-next{ font-size: 0.3rem; color: #fff;position: initial; margin: initial;width: initial; height: initial}
.ban-panel>.mxw-box .swiper-pagination{ position: initial; padding: 0;transform: initial; max-width: initial; width: max-content; width: -moz-max-content; font-size: 0.233rem; margin: 0 0.5rem; color: #fff; letter-spacing: 1px}
.ban-panel>.mxw-box .swiper-button-prev::after,.ban-panel>.mxw-box .swiper-button-next::after{ color: #fff; font-size: 18px;}
.ban-panel>.mxw-box .swiper-button-prev:hover::after,.ban-panel>.mxw-box .swiper-button-next:hover::after{ color: #cf000d}
.mouse{ position: absolute; bottom: 0.833rem; z-index: 1; width: max-content; width: -moz-max-content; margin: 0 auto; left: 0; right: 0; -webkit-animation: todown 2s infinite linear;
    animation: todown 2s infinite linear;}



.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;

}
.x-menu > li {
    margin: 0;
    text-align: center;
    float: none;
    position: relative;

    z-index: 1;
}

.x-menu > li > a {
    font-size: 0.3rem;
    color: #fff;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding:0 0.667rem;
    line-height: 1.2;
    position: relative;z-index: 2;

}

.x-menu > li > a:hover {
    color: #fff;
}
.x-menu > li > a::after{ content: ""; display: block; width: 100%; height: 2px;  margin-top: 5px; }
.x-menu>li.active>a::after{ background: #fff; 		}
.x-menu > li.active > a {
    color: #fff;
}

.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 200px;
    left:50%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,20px);
    transform: translate(-50%,20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;

}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#3553e9;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}
.x-menu > li.tel{ align-items: center; display: flex;}
.x-menu > li.tel>span{ padding: 0.167rem 0.5rem 0.167rem;border-radius: 0.383rem;
    border: solid 0.017rem #1a87d2;	font-size: 0.4rem;color: #1a87d2; display: flex; align-items: center; line-height: 1; font-weight: bold;}
.x-menu > li.tel>span img{ height: 0.367rem; margin-right: 0.3rem}


.tc-pro{ padding: 1.417rem 0 1.2rem; background: url("../images/pro-bg.jpg") center no-repeat;}
.tc-pro .top{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.6rem; border-bottom: 2px solid #d3d2d2;}
.tc-pro .top .pro-more{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.167rem; background: url("../images/xt1.png") bottom center no-repeat;	font-size: 0.267rem;}
.tc-pro .top .pro-more img{ margin-left: 0.8rem; }
.tc-pro .top .top-t1{	font-size: 0.6rem; font-weight: bold;}
.pro-body{ padding-top: 1.1rem;  position: relative;}
.pro-swiper{ overflow: hidden;}
.pro-swiper>.swiper-wrapper{ align-items: center;}

.pro-swiper .swiper-slide.swiper-slide-active{ width: 27.25%;}
.pro-swiper .swiper-slide{   width: 22.25%;  }
.pro-body .swiper-button-next{ width: 0.883rem;height: 0.867rem;background-color: #cf000d; right: -1.2rem; border-radius: 50%;}
.pro-body .swiper-button-prev{ width: 0.883rem;height: 0.867rem;background-color: #cf000d; left: -1.2rem; border-radius: 50%;}
.pro-body .swiper-button-prev::after{ font-size: 0.283rem; color: #fff;}
.pro-body .swiper-button-next::after{font-size: 0.283rem; color: #fff;}
.pro-swiper .swiper-slide .flx{ position: absolute;  width: 100%; left: 0; padding: 0 0.617rem 0.75rem; background:rgba(0,0,0,.4); bottom: 0;height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;}
.pro-swiper .swiper-slide .flx .cn{	font-size: 0.5rem;	color: #fffefe;}
.pro-swiper .swiper-slide .flx .pb-more{	font-size: 0.233rem;color: #d3d2d2; display: flex;align-items: center; justify-content: flex-start;padding-bottom: 0.3rem;background: url("../images/xt2.png") left bottom  no-repeat; margin-top: 0.7rem;}
.pro-swiper .swiper-slide .flx .pb-more img{ margin-left: 1rem; }

.tc-case{ position: relative;}
.tc-case .case-top{ position: absolute; top: 2.25rem; margin: 0 auto; color: #fff; width: 100%; z-index: 100;  }
.tc-case .case-top .mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.tc-case .case-top .mxw-box .title{font-size: 0.6rem; font-weight: bold;	color: #ffffff; flex-shrink: 0;}
.tc-case .case-top .mxw-box .case-more{	font-size: 0.233rem; color: #fff; display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.333rem;background: url("../images/xt2.png") left bottom  no-repeat; flex-shrink: 0}
.tc-case .case-top .mxw-box .case-more img{ margin-left: 1rem;}
.tc-case .case-top .mxw-box .case-cate{ margin:0 2.25rem;  display: flex; align-items: center; justify-content: flex-start; flex-grow: 1; min-width: 0;}
.tc-case .case-top .mxw-box .case-cate a{	font-size: 0.3rem; color: #fff; padding: 0.1rem 0.333rem; margin-right: 0.333rem;}
.tc-case .case-top .mxw-box .case-cate a:last-child{ margin-right: 0;}
.tc-case .case-top .mxw-box .case-cate a.active{background-color: #cf000d;border-radius: 0.3rem;}
.case-panel{ position: absolute; top: 50%; left: 0; right: 0}

.case-panel .swiper-button-prev{ width: 0.883rem;height: 0.867rem;background-color:transparent; left: -1.2rem; border-radius: 50%; border: 1px solid #fff;}
.case-panel .swiper-button-next{ width: 0.883rem;height: 0.867rem;background-color: #cf000d; right: -1.2rem; border-radius: 50%; border: 1px solid #cf000d}
.case-panel .swiper-button-prev::after{ font-size: 0.283rem; color: #fff;}
.case-panel .swiper-button-next::after{font-size: 0.283rem; color: #fff;}
.case-swiper{ width: 100%}
.case-swiper .swiper-slide>img{ width: 100%;}

.tc-brand{ background: url("../images/brand-bg.jpg") center top no-repeat; background-size: cover; padding-top: 1.833rem;}
.tc-brand .top{ display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 1.333rem;}
.tc-brand .top .tc-left{ margin-right: 2rem; flex-shrink: 0;}
.tc-brand .top .tc-left .bt{font-size: 0.6rem; font-weight: bold; }
.tc-brand .top .tc-left .ico{ margin-top: 1.5rem; width: 1.067rem;}
.tc-brand .top .tc-right{ flex-grow: 1; min-width: 0;}
.tc-brand .top .tc-right .title{	font-size: 0.6rem;}
.tc-brand .top .tc-right .desc{	font-size: 0.333rem; color: #666666; margin: 1.1rem auto; line-height: 1.8}
.tc-brand .top .tc-right .b-more{	font-size: 0.233rem; color: #000;  padding-bottom: 0.333rem;background: url("../images/xt1.png") left bottom  no-repeat;}
.tc-brand .top .tc-right .b-more img{ margin-left: 1rem;}

.tc-news{ padding: 1.583rem 0 1.75rem; 	background-color: #f9faf7;}
.tc-news .top{ display: flex; align-items: flex-start; justify-content: space-between; border-bottom: 1px solid #dbdcd9;}
.tc-news .top .nt{	font-size: 0.6rem; font-weight: bold; color: #000;}
.tc-news .top .news-cate{  margin-bottom: -1px;display: flex; align-items: center; justify-content: flex-end;}
.tc-news .top .news-cate .item{	font-size: 0.333rem;		color: #333333; padding-bottom: 0.933rem; margin-left: 1.417rem; }
.tc-news .top .news-cate .item.active{ border-bottom:2px solid #ce010d;}
.news-body{ padding-top: 1.583rem;}
.news-swiper{ overflow: hidden;}
.news-swiper .swiper-slide{ display: flex; align-items: stretch; justify-content: flex-start;}
.news-swiper .swiper-slide .item{ width: 24%; margin-right: 0.617rem; padding-bottom: 0.3rem; position: relative; overflow: hidden;}
.news-swiper .swiper-slide .item:last-child{ margin-right: 0;}
.news-swiper .swiper-slide .item .date{ display: flex; align-items: flex-end; justify-content: flex-start;	font-size: 0.267rem;color: #666666; margin-bottom: 0.733rem;	}
.news-swiper .swiper-slide .item .date p{font-size: 0.767rem; color: #000; line-height: 1; margin-right: 0.133rem;}
.news-swiper .swiper-slide .item .st{ margin: 0.467rem auto 0.567rem;	font-size: 0.3rem; font-weight: bold;}
.news-swiper .swiper-slide .item .desc{ font-size: 0.267rem; line-height: 1.5; height: 1.6rem;}
.news-swiper .swiper-slide .item .n-more{	font-size: 0.233rem; color: #000;  padding-bottom: 0.333rem;background: url("../images/xt1.png") left bottom  no-repeat; margin-top: 0.917rem;}
.news-swiper .swiper-slide .item .n-more img{ margin-left: 1rem;}
.news-swiper .swiper-slide .item:hover .c1{ visibility: hidden;  }
.news-swiper .swiper-slide .item:hover .c2{ left: 0; transition: all 0.3s;  }
.news-swiper .swiper-slide .item  .c2{ padding: 0.55rem; position: absolute; left: -100%;transition: all 0.3s; background: url("../images/news-bg2.jpg") center no-repeat; background-size: cover; z-index: 1;top: 0; width: 100%; height: 100%; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; line-height: 1.6 }

.tc-msg{ margin: 1.167rem auto 0;	background-color: #fafafa;}
.tc-msg>.mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.tc-msg>.mxw-box .tc-right{ margin-right: -2.5rem; width: 64%; flex-shrink: 0; }
.tc-msg>.mxw-box .tc-left{ flex-grow: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; flex-wrap: wrap; padding-right: 2.083rem;}
.tc-msg>.mxw-box .tc-left .cn{font-size: 0.6rem;font-weight: bold;color: #000;}
.tc-msg>.mxw-box .tc-left .desc{	font-size: 0.3rem;color: #9c9c9c;line-height: 1.8; margin-top: 0.6rem;}
.tc-msg>.mxw-box .tc-left form{ margin-top: 1.083rem; width: 100%;}
.tc-msg>.mxw-box .tc-left input{ width: 100%; padding: 0.233rem 0; border-bottom: 0.017rem solid #9b9b9b;	font-size: 0.267rem; color: #444;}
.tc-msg>.mxw-box .tc-left .nq1{ width: 100%; margin-bottom: 0.5rem;}
.tc-msg>.mxw-box .tc-left input::placeholder{color: #444}
.tc-msg>.mxw-box .tc-left input::-moz-placeholder{color: #444}
.tc-msg>.mxw-box .tc-left input::placeholder{color: #444}
.tc-msg>.mxw-box .tc-left input::-webkit-input-placeholder{color: #444}
.tc-msg>.mxw-box .tc-left button{border: solid 1px #9b9b9b;
    font-size: 0.267rem; padding: 0.233rem 1rem; cursor: pointer; margin-top: 1.333rem;}

footer{ margin-top: 0.6rem; 	background-color: #222222;}
footer .ft-top{ display: flex; align-items: stretch; justify-content: space-between;}
footer .ft-top .tc-left{ flex-grow: 1; min-width: 0; padding-right: 2.25rem}
footer .ft-top .tc-right{ flex-shrink: 0; width: 31.6%; padding-top: 0.8rem; padding-left: 0.417rem; color: rgba(255,255,255,.5);font-size: 0.333rem; border-left: 0.017rem solid #313131; padding-bottom: 0.75rem;}
footer .ft-top .tc-right .txt{ margin-left: 1.367rem; line-height: 2.5;}
footer .ft-top .tc-right .ewm-list{ margin-top: 1rem; display: flex; align-items: stretch; justify-content: flex-start;}
footer .ft-top .tc-right .ewm-list .item{ width: 28.8%; text-align: center; margin-right: 0.467rem;}
footer .ft-top .tc-right .ewm-list .item:last-child{ margin-right: 0}
footer .ft-top .tc-right .ewm-list .item p{ font-size: 0.233rem; margin-top: 0.467rem;}
footer .ft-top .tc-left .ltp{ padding: 0.75rem 0 0.567rem; border-bottom: 1px solid #313131}
footer .ft-top .tc-left .ltp img{ height: 0.817rem;}
footer .ft-top .tc-left .d-menu{ color: #fff; padding-top: 0.7rem; display: flex; align-items: flex-start; justify-content: space-between;}
footer .ft-top .tc-left .d-menu .item>a::after{ display: block;width: 24px;
    height: 2px;
    background-color: #ffffff; margin-top: 0.267rem; content: "";}
footer .ft-top .tc-left .d-menu .item ul{ position: initial; margin-top: 0.333rem;}
footer .ft-top .tc-left .d-menu .item ul li a{	font-size: 0.233rem; color: rgba(255,255,255,.5); line-height: 2}


.oth-main{ padding: 1.333rem 0; background: #000;color: #fff;}
.oth-main>.mxw-box{ color: #fff;}
.oth-main>.mxw-box .top{ display: flex; align-items: center; justify-content: space-between;padding-bottom: 0.583rem; border-bottom: 2px solid #d3d2d2;}
.oth-main>.mxw-box .top .title{	font-size: 0.6rem; font-weight: bold;}
.oth-main>.mxw-box .top .poz{	font-size: 0.267rem; color: #fff;}
.oth-main>.mxw-box .list-pro{ margin-top: 1.133rem;}
.oth-main>.mxw-box .list-pro .item p{	font-size: 0.367rem;	color: #fffefe; margin-top: 0.767rem; padding: 0 0.6rem;	}

.n-banner img{ width: 100%}
.news-main{ padding: 1.333rem 0 1.5rem;}
.news-main .mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.news-main .mxw-box .list-news{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;  width: 100%;}
.news-main .mxw-box .list-news .item{ width: 50%; padding-right: 1.467rem; padding-bottom: 1.333rem; border-right: 1px solid #d3d2d2;border-bottom: 1px solid #d3d2d2  }
.news-main .mxw-box .list-news .item:nth-child(2n){ padding-right: 0; padding-left: 1.467rem; border-right: 0 }
.news-main .mxw-box .list-news .item:nth-child(2n)~.item{ padding-top: 1.333rem; }
.news-main .mxw-box .list-news .item .st{font-size: 0.333rem;color: #313131; margin-top: 0.4rem;}
.news-main .mxw-box .list-news .item .date{color: #555151; font-size: 0.267rem; margin-top: 0.267rem}

.cont-top{ display: flex; align-items: stretch; justify-content: space-between; background: #fff; }
.cont-top .tc-left{ width: 58%; flex-shrink: 0;}
.cont-top .tc-right{ flex-grow: 1; min-width: 0; color: #333; padding: 1.667rem 1.25rem 2.167rem 1.5rem; }
.cont-top .tc-right .title{	font-size: 0.5rem; font-weight: bold; margin-bottom: 0.5rem;}
.cont-top .tc-right .desc{	font-size: 0.267rem; color: #666; line-height: 2.2}
.cont-top .tc-right .ewm-list{ padding-top: 0.717rem; margin-top: 0.917rem; border-top: 1px solid rgba(0,0,0,.1); display: flex; align-items: stretch; justify-content: flex-start }
.cont-top .tc-right .ewm-list .item{ width: 27%; text-align: center; margin-right: 2%;}
.cont-top .tc-right .ewm-list .item .img{ border: 1px solid #ccc;}
.cont-top .tc-right .ewm-list .item p{ font-size: 14px; margin-top: 12px;}
.cont-top .tc-right .ewm-list .item:last-child{ margin-right: 0}

.msg-xt{margin-top: 1.333rem; margin-bottom: 1.333rem; width: 100%; height: 2px; background: #d3d2d2}
.msg-box{ padding: 2.167rem 1rem 1.583rem; background: #fff; text-align: center; }
.msg-box .title{	font-size: 0.5rem; color: #333; font-weight: bold; text-align: center;}
.msg-top{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 1.133rem;}
.msg-top .in1{ width: 31%;position: relative; padding: 0.333rem 0.367rem; font-size: 0.267rem;	border: solid 2px #e1e1e1; text-align: left }
.msg-top .in1 input::placeholder{	color: #bababa;}
.msg-top .in1 input::-webkit-input-placeholder{	color: #bababa;}
.msg-top .in1 input::-moz-placeholder{	color: #bababa;}
.msg-top .in1 .yz{ position: absolute; right: 10px; margin-top: -5px }
.msg-tc{ margin-top: 1.1rem; width: 100%;	border: solid 2px #e1e1e1;
    padding: 0.333rem;}
.msg-tc textarea{ width: 100%; height: 2.133rem; resize: none; border: 0;}
.msg-tc textarea::placeholder{	color: #bababa;}
.msg-tc textarea::-webkit-input-placeholder{	color: #bababa;}
.msg-tc textarea::-moz-placeholder{	color: #bababa;}
.msg-box form button{	background-color: #032a72;
    border-radius: 0.083rem;	font-size: 0.333rem; color: #fff; padding: 0.333rem 1.4rem; display: inline-block; margin: 1.167rem auto 0; cursor: pointer}

.about-s1{ margin: 1.1rem auto 0; display: flex; align-items: stretch; justify-content: space-between; padding-bottom: 2.083rem; 	border-bottom: solid 1px #8e8f8f;}
.about-s1 .tc-right{ width: 56.12%; flex-shrink: 0;}
.about-s1 .tc-left{ padding:0.333rem 1.467rem 0.333rem 0; color: #fff;  }
.about-s1 .tc-left .title{	font-size: 0.5rem; font-weight: bold;	color: #fffefe; margin-bottom: 1.5rem;}
.about-s1 .tc-left .desc{	font-size: 0.4rem; line-height: 2;}

.about-s2{ margin-top: 1.75rem; position: relative;}
.about-s2 .flx{ position: absolute; background: rgba(0,0,0,.59); padding: 1.1rem 1.25rem; color: #fff; max-width: 8.583rem; right: 2.5rem; top: 20%; font-size: 0.4rem; line-height: 2;}
.about-page{ padding-bottom: 0;}
.about-s3{ padding: 2.083rem 0 1.833rem; }
.about-s3 .mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.about-s3 .mxw-box .item{  width: 49.1%; display: flex; align-items: center; justify-content: flex-start; flex-direction: column;}
.about-s3 .mxw-box .item p{ flex-grow: 1; min-width: 0; width: 100%; text-align: center;	font-size: 0.4rem;	color: #333333; line-height: 1.6; padding: 0.5rem 2.25rem 0.567rem; display: flex; align-items: center;background: #f4f4f4;}
.about-s3 .mxw-box .item .img{ flex-shrink: 0;}
.about-s3 .mxw-box .item::after{ display: block; width: 100%;	height: 4px;
    background-color: #f4f4f4; margin-top: 0.75rem; content: "";}
.about-s3 .mxw-box .item:hover::after{ background: #000}

.oth-main.news-show{ background: #fff;}
.oth-main.news-show>.mxw-box .top{ color: #333}
.oth-main.news-show>.mxw-box .top .poz{ color: #333;}
.oth-main.news-show>.mxw-box  .ny-news-desc .title{color: #333}
.oth-main.news-show>.mxw-box .ny-news-desc .article{color: #333}









    /* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 44px 0;

}
.ny-news-desc > .mxw-box {
    padding-top: 0;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 0.45rem;
    color: #fff;
    padding-bottom: 19px;
    text-align: center;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    color: #fff;
    font-size: 15px;
}
.ny-news-desc .pg{ font-size: 0.267rem; line-height: 1.8; margin-top: 1rem;}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 20px 0;
    }
    .ny-news-desc .article {
        font-size: 14px;
        line-height: 1.5;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */



body{ overflow-x: hidden}

.tc-link{ padding-bottom: 0.5rem; border-bottom: 1px solid #484848;
    margin: 0 1rem;}
.tc-link>.mxw-box{display: flex; align-items: center; justify-content: space-between;	}
.tc-link .title{ flex-shrink: 0;		font-size: 0.233rem; color: #fff; margin-right: 0.5rem;}
.tc-link .title img{ margin-right: 0.167rem;}
.tc-link .list{ flex-grow: 1; min-width: 0; font-size: 0; line-height: 1;}
.tc-link .list a{ 	font-size: 14px;  margin-right: 0.5rem;	color: #888888; }
.tc-link .list a:hover{ color:#fff; }


.mxw-copy{ }
.mxw-copy .mxw-box{ display: flex; align-items: center; justify-content: space-between; padding: 0.333rem 0; 	font-size: 0.233rem; color: #fff;  text-align: center; opacity: 0.6;border-top: 1px solid #313131;}
.mxw-copy .mxw-box a{font-size: 0.233rem; color: #fff; }
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; color: #fff;}
.mxw-copy .mxw-box .tc-left{ text-align: left}

.product-detail-tabcon table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.product-detail-tabcon table th,
.product-detail-tabcon table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.product-detail-tabcon table td p{line-height:1.8!important;}
.product-detail-tabcon table tr:hover{background-color:#f2f2f2!important;}
.product-detail-tabcon table tr:nth-child(2n-1){background-color:#fff ;}
.product-detail-tabcon table tr:nth-child(2n){background-color:#fdfdfd ;}

.xypg-detail-con table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.xypg-detail-con table th,
.xypg-detail-con table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.xypg-detail-con table td p{line-height:1.8!important;}
.xypg-detail-con table tr:hover{background-color:#f2f2f2!important;}
.xypg-detail-con table tr:nth-child(2n-1){background-color:#fff ;}
.xypg-detail-con table tr:nth-child(2n){background-color:#fdfdfd ;}



@media screen and (max-width: 1440px) {
    .top-box{ width: 95%; max-width: 95%;}






}

/* ==================== 页面具体样式 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 ==================== */


@media screen and (max-width: 1780px) {

.x-menu > li > a{    padding: 0 0.5rem;}
.tc-msg>.mxw-box .tc-left .cn{    font-size: 0.5rem;}
.tc-msg>.mxw-box .tc-left{padding:0.5rem 2rem 0.5rem 0;}
.tc-msg>.mxw-box .tc-left .desc{    font-size: 0.267rem;    margin-top: 0.4rem;}
.tc-msg>.mxw-box .tc-left form{    margin-top: 0.7rem;}
.tc-msg>.mxw-box .tc-left button{margin-top: 0.7rem;}
.tc-msg>.mxw-box .tc-left .nq1{    margin-bottom: 0.3rem;}
.news-swiper .swiper-slide .item .date p{font-size: 0.567rem;}

}

@media screen and (max-width: 1680px) {

.tc-case .case-top .mxw-box .case-cate{margin: 0 1rem;}







}

@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}
    .mouse img{ width: 16px;}
    .tc-pro{ padding: 45px 0}
    .tc-pro .top .top-t1{ font-size: 20px;}
    .tc-pro .top{ padding-bottom: 10px;}
    .tc-pro .top .pro-more{ font-size: 14px; padding-bottom: 6px;}
    .tc-pro .top .pro-more img{ height: 8px; margin-left: 25px}
    .pro-body{ padding-top: 20px;}
    .pro-swiper .swiper-slide .flx{padding: 0 15px 30px;}
    .pro-swiper .swiper-slide .flx .cn{ font-size: 18px;}
    .pro-swiper .swiper-slide .flx .pb-more{ font-size: 14px; margin-top: 20px; padding-bottom: 5px}
    .pro-swiper .swiper-slide .flx .pb-more img{ margin-left: 25px; height: 8px;}

    .tc-case{ padding: 45px 0;}
    .tc-case .case-top{ position: initial;}
    .tc-case .case-top .mxw-box .title{ font-size: 22px; color: #333;}
    .tc-case .case-top .mxw-box{ flex-wrap: wrap;}
    .tc-case .case-top .mxw-box .case-cate{ width: 100%; margin: 20px auto 15px; flex-wrap: wrap; justify-content: space-between;}
    .tc-case .case-top .mxw-box .case-cate a{ color: #333; width: 48.5%; padding: 8px 15px; text-align: center; margin: initial; font-size: 14px;}
    .tc-case .case-top .mxw-box .case-cate a.active{ color: #fff;}
    .tc-case .case-top .mxw-box .case-more{ font-size: 14px; color: #333;
        padding-bottom: 5px;
        margin: -40px 0 20px auto;
    }
    .tc-brand{ padding-top: 45px;}
    .tc-brand .top{ flex-wrap: wrap;}
    .tc-brand .top .tc-left{ margin-right: 0; width: 100%; display: flex; align-items: center; font-size: 0; line-height: 1;}
    .tc-brand .top .tc-left .bt{ font-size: 22px;}
    .tc-brand .top .tc-left .ico{ margin: 0 0 0 auto; width: 40px;}
    .tc-brand .top .tc-right{ margin-top: 20px;}
    .tc-brand .top .tc-right .title{ font-size: 18px;}
    .tc-brand .top .tc-right .desc{ margin: 15px auto 20px; font-size: 14px;}
    .tc-brand .top .tc-right .b-more{ font-size: 14px; padding-bottom: 5px;}
    .tc-brand .top .tc-right .b-more img{ margin-left: 25px;}
    .tc-brand .top{ padding-bottom: 30px;}
    .tc-news{ padding: 45px 0}
    .tc-news .top .nt{ font-size: 22px;}
    .tc-news .top .news-cate .item{ font-size: 14px; padding-bottom: 10px; margin-left: 15px;}

    .news-body{ padding-top: 25px;}
    .news-swiper .swiper-slide{ flex-wrap: wrap; justify-content: space-between;}
    .news-swiper .swiper-slide .item{ width: 48.5%; margin: initial; padding-bottom: 0}
    .news-swiper .swiper-slide .item .date{ font-size: 12px; margin-bottom: 5px}
    .news-swiper .swiper-slide .item .date p{ font-size: 18px;}
    .news-swiper .swiper-slide .item .st{ font-size: 16px; margin: 5px auto 10px;}

    .news-swiper .swiper-slide .item .c2{ display: none}
    .news-swiper .swiper-slide .item .desc{ font-size: 14px; height: 88px;}
    .news-swiper .swiper-slide .item .n-more{margin-top: 15px; font-size: 14px; padding-bottom: 5px; width: max-content; width: -moz-max-content}
    .news-swiper .swiper-slide .item .n-more img{ margin-left: 25px; height: 8px;}
    .news-swiper .swiper-slide .item:nth-child(2n)~.item{ margin-top: 25px;}
    .tc-msg{ margin-top: 30px;}
    .tc-msg>.mxw-box{ flex-wrap: wrap;}
    .tc-msg>.mxw-box .tc-right{margin-right: 0; width: 100%;}
    .tc-msg>.mxw-box .tc-left{ padding: 45px 0 30px;}
    .tc-msg>.mxw-box .tc-left .cn{ font-size: 22px;}
    .tc-msg>.mxw-box .tc-left .desc{ font-size: 14px; margin-top: 10px;}
    .tc-msg>.mxw-box .tc-left form{ margin-top: 25px;}
    .tc-msg>.mxw-box .tc-left input{ font-size: 14px; padding: 6px 10px 5px 0;}
    .tc-msg>.mxw-box .tc-left .nq1{ margin-bottom: 15px;}
    .tc-msg>.mxw-box .tc-left button{ font-size: 14px; padding: 10px 50px; margin-top: 10px;}
    footer .ft-top{ flex-wrap: wrap;}
    footer .ft-top .tc-left .d-menu{ display: none}
    footer .ft-top .tc-left{ padding: 0}
    footer .ft-top .tc-left .ltp{ padding: 40px 0 15px;}
    footer .ft-top .tc-left .ltp img{ height: auto; width: 80%;}
    footer .ft-top .tc-right{ width: 100%; padding: 20px 0;}

    footer .ft-top .tc-right .txt{ font-size: 14px; line-height: 1.6; margin-left: 0}
    footer .ft-top .tc-right .ewm-list{ margin-top: 20px;}
    body{ margin-bottom: 0}
    .mxw-copy .mxw-box{ flex-wrap: wrap; text-align: left;}
    .mxw-copy .mxw-box>div{ width: 100%; text-align: center;}
    .oth-main{ padding: 45px 0}
    .oth-main>.mxw-box .top{ padding-bottom: 10px;}
    .oth-main>.mxw-box .top .title{ font-size: 20px;}
    .oth-main>.mxw-box .top .poz{ font-size: 12px;}
    .oth-main>.mxw-box .list-pro{ margin-top: 25px;}
    .oth-main>.mxw-box .list-pro .item p{ font-size: 14px; margin-top: 10px;}

    .ny-news-desc .title{ padding-bottom: 0; font-size: 16px;}
    .about-s1{ margin: 25px auto 0; flex-wrap: wrap; padding-bottom: 15px;}
    .about-s1 .tc-left{ padding: 0 0 15px;}
    .about-s1 .tc-left .title{ font-size: 16px; margin-bottom: 15px;}
    .about-s1 .tc-left .desc{ font-size: 14px;}
    .about-s1 .tc-right{ width: 100%;}
    .about-s2{ margin-top: 15px;}
    .about-s2 .flx{ position:initial; padding: 15px 2.5% 0; font-size: 14px;}
    .about-s3{ padding: 45px 0}
    .about-s3 .mxw-box{ flex-wrap: wrap;}
    .about-s3 .mxw-box .item{ width: 100%;}
    .about-s3 .mxw-box .item p{ padding: 10px; font-size: 14px;}
    .about-s3 .mxw-box .item:nth-child(2){ margin-top: 25px;}
    .about-s3 .mxw-box .item::after{ margin-top: 10px;}

    .news-main{ padding: 25px 0 45px;}
    .news-main .mxw-box .list-news .item{ padding-right: 15px; padding-bottom: 15px;}
    .news-main .mxw-box .list-news .item:nth-child(2n){ padding-left: 15px;}
    .news-main .mxw-box .list-news{ width: 100%; }
    .news-main .mxw-box .list-news .item .st{ font-size: 16px; margin-top: 5px;}
    .news-main .mxw-box .list-news .item .date{ font-size: 12px; margin-top: 5px;}
    .news-main .mxw-box .list-news .item:nth-child(2n)~.item{padding-top: 15px;}

    .mxw-ny-box{ padding: 25px 0}
    .cont-top{ margin: 25px auto 0; flex-wrap: wrap;}
    .cont-top .tc-left{ width: 100%; height: 420px;}
    .cont-top .tc-right{ padding:25px 15px;}
    .cont-top .tc-right .title{ font-size: 18px; margin-bottom: 15px;}
    .cont-top .tc-right .desc{ font-size: 14px; line-height: 1.8; margin: 0 auto;}
    .cont-top .tc-right .ewm-list{ padding-top: 15px; margin-top: 20px;}
    .cont-top .tc-right .ewm-list .item{ width: 30%}
    .msg-xt{ margin: 30px auto;}
    .msg-box{ padding: 30px 20px;}
    .msg-box .title{ font-size: 18px;}
    .msg-top{ flex-wrap: wrap; margin-top: 25px;}
    .msg-top .in1{ width: 100%; padding: 8px 10px; font-size: 14px; margin-bottom: 12px;}
    .msg-tc{ margin-top: 0; padding: 8px 10px; font-size: 14px; height: 120px;}
    .msg-tc textarea{ height: 100%}
    .msg-box form button{ font-size: 14px; padding: 8px 25px; margin: 15px auto 0}

}












