@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-crisp-edges; /* 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: 0.3rem;
    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.333rem;
    bottom: 10%;
    width: 0.667rem;
    height: 0.667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.033rem;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 0.017rem solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.233rem;
    height: 0.233rem;
    border-top: 0.033rem solid #fff;
    border-right: 0.033rem solid #fff;
    transform: rotate(-45deg);
    margin-top: 0.1rem;
}
@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: 0.833rem;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination > a,.mxw-pagination > span {
    padding: 0.1rem 0.2rem;
    font-size: 0.233rem;
    color: #666;
    line-height: 1.2;
    border: 0.017rem solid #ccc;
    display: block;
    margin: 0.067rem;
}
.mxw-pagination > a.active,
.mxw-pagination > a:hover {
    background-color: #0748b2;
    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: 0 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: 12.517rem) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 0.333rem;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 0.233rem;
        padding: 0 0.333rem;
        margin-right: 0.167rem;
    }
    .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: 0.017rem 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: 0.267rem;
    line-height: 1.2;
    color: #666;
    padding-left: 0.333rem;
    display: flex; align-items: center;
    padding-top: 0.533rem;
    padding-bottom: 0.533rem;
}
.mxw-keywords .left strong {
    vertical-align: inherit; color: #444444;
}
.mxw-keywords .left span {
    color: #000;
    vertical-align: middle;
    /*font-weight: bold;*/
    display: flex; align-items: center;
}
.mxw-keywords .left span img{ margin-right: 0.167rem;}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 0.083rem;
    padding-right: 0.083rem;
}
.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: 0.033rem;
     height: 0.267rem;
     background-color: #d9d9d9;
     position: absolute;
     left: 0.167rem;
     top: 50%;
     transform: translateY(-50%);*/
}
.mxw-keywords .right input {
    width: 6.567rem;
    border-radius: 0.4rem;
    height: 0.8rem;
    padding: 0 0.333rem;
    font-size: 0.233rem;
    color: #333;
    border: 0.017rem solid #e5e5e5;
    background-color: #fff;
    margin-right: -0.333rem;
}
.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: 0.8rem;
    margin-left: -0.3rem;
    border-radius: 0.4rem;
    cursor: pointer;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 0.233rem;
    height: 0.233rem;
    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: 0.233rem;
    padding-left: 0.083rem;
}
/* ==================== 关键词 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%;

        position: fixed;
        top: 0;
        left: 0;
        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: 0 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: 1px solid #eee;
        font-size: 16px;
        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: 14px;
    height: 14px;
    background-color: #30cb35;
    margin-left: 5px;
    margin-right: 5px;
    outline: none;
    opacity: 0.4;
    border-radius: 0;
}
.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: #30cb35;
    border-color: #30cb35;
    opacity: 1;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 83px;
    height: 60px;
    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: 40px;
    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: 0.4rem;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}
.mxw-box2 {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}





/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px)  and (max-width: 1920px) {
    /* 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;
    }
    .mxw-ny-box {
        max-width: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#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{
    border:1px solid #eaeaea;
    padding: 10px 10px 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:0;}
    .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;
    margin: 0.167rem auto 0.183rem 0;
}
.top-box .logo-box .t-logo>img{ max-height:1.333rem;}

.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: fixed; top: 0; width: 100%; 	background-color: rgba(0, 0, 0, 0.6); z-index: 10;
}
header .welcome {
    line-height: 34px;
    border-bottom: 1px solid #e5e5e5; display: none;
}
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;
}


.top-box{ align-items: stretch; justify-content: space-between;}





.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;
    flex-grow: 1;
    min-width: 0;
    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.5rem;
    line-height: 1.2;
    width: 100%;
    position: relative;z-index: 2;
}
.x-menu > li:last-child>a{ background: none}
.x-menu > li > a:hover {
    color: #fff;
}
.x-menu>li.active{ 	 	}
.x-menu > li.active > a {
    color: #fff; background: none;font-weight: bold;
}

.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.se{ margin-right: -2.65rem; margin-left: 1rem}
.x-menu > li.se>a{	background-color: #294688; padding: 0 1.083rem;}


@keyframes upDown {
    to {
        transform: translate3d(0, 100%, 0);
    }
}

.mxw-banner .flx{ position: absolute; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between; z-index: 1; bottom: 0.75rem; width: 100%; font-size: 0; line-height: 1;}
.mxw-banner .flx .t{ flex-grow: 1; min-width: 0; height: 2px;
    background-color: rgba(255, 255, 255, 0.8);}
.mxw-banner .flx .swiper-pagination{ position: initial; width: initial; max-width:initial; transform: none; padding: 0 0.467rem;}
.mxw-banner .swiper-pagination .swiper-pagination-bullet{	width: 0.483rem;height: 0.483rem; opacity: 1; background: none;
    border: solid 1px transparent;
    margin: 0 0.1rem; font-size: 0; line-height: 1; display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center;  justify-content: center; border-radius: 50%;}
.mxw-banner .swiper-pagination .swiper-pagination-bullet::before{ content: ""; display: block; width: 0.15rem;
    height: 0.15rem;border-radius: 50%;
    background-color: #ffffff;}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{ background: none; border-color: #fff;}
.mxw-banner .flx .mouse{	font-size: 0.267rem; font-weight: bold;	color: #fefefe; padding: 0 0.467rem; cursor: pointer}
/*.mxw-banner .flx .mouse::before{	width: 0.05rem;
    height: 0.4rem; content:"";
    display: block; margin: -0.533rem auto 0.533rem;
    background-color: #ffffff;    animation: upDown 1s ease-out infinite;
}*/


.mouse > div {
    width: 23px;
    height: 32px;
    margin: 0 auto 0.233rem;
    position: relative;
    background: url(../images/shubiao.png) no-repeat;
}
.mouse > div span {
    left: 10px;
    position: absolute;
    top: 7px;
    width: 3px;
    height: 7px;
    background-color: #fff;
    border-radius: 1px;
    animation: upDown 1s ease-out infinite;
}


.mxw-banner .flx .swiper-button-prev,.mxw-banner .flx .swiper-button-next{ position: initial; font-size: 0; line-height: 1;width: initial; height: initial;margin-top: initial;}
.mxw-banner .flx .swiper-button-prev::after,.mxw-banner .flx .swiper-button-next::after{ color: #fff; font-size: 0.3rem; }
.mxw-banner .flx .swiper-button-prev{ margin: 0 0.233rem 0 0.4rem;}
.mxw-banner .flx .swiper-button-next{ margin: 0 0.4rem 0 0.233rem ;}
.mxw-banner .flx .con{display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: center;  justify-content: space-between; width: 74.5%; max-width: 1385px;}

.tc-pro{ padding: 2.867rem 0 1.917rem; background: url("../images/pro-bg.jpg") center no-repeat; background-size: cover;}
.tc-pro .mxw-box{ display: -webkit-flex; display: flex; display: -ms-flex; display: -moz-flex; justify-content: space-between; align-items: flex-end; position: relative}
.tc-pro .mxw-box .tc-left{ width: 37.8%; flex-shrink: 0; margin-right: 1.65rem;}
.tc-pro .mxw-box .tc-left .pro-swiper{ overflow: hidden;}
.tc-pro .mxw-box .tc-right{ flex-grow: 1; min-width: 0; color: #fff;}
.tc-pro .mxw-box .tc-right .up{display: -webkit-flex; display: flex; display: -ms-flex; display: -moz-flex; justify-content: space-between; align-items: flex-end;}
.tc-pro .mxw-box .tc-right .up .xl{font-size: 0.4rem; line-height: 1; font-weight: bold;display: -webkit-flex; display: flex; display: -ms-flex; display: -moz-flex;  align-items: center;}
.tc-pro .mxw-box .tc-right .up .xl::before{ content: ""; display: block;	width: 1.117rem; margin-right: 0.3rem;
    height: 1px;
    background-color: #ffffff;}
.tc-pro .mxw-box .tc-right .up .en{	font-size: 0.6rem;line-height: 1; text-transform: uppercase; margin-top: 0.5rem;}
.tc-pro .mxw-box .tc-right .up .desc{	font-size: 0.333rem; margin-top: 0.2rem; font-weight: bold;}
.more-c{	font-size: 0.267rem; display: -webkit-flex; display: flex; display: -ms-flex; display: -moz-flex; align-items: center; color: #fff}
.more-c img{ height: 0.833rem; margin-left: 0.267rem;}
.tc-pro .mxw-box .tc-right .list{ margin-top: 1.067rem;display: -webkit-flex; display: flex; display: -ms-flex; display: -moz-flex; align-items: stretch; flex-wrap: wrap;}
.tc-pro .mxw-box .tc-right .list .item{ background: #fff;	font-size: 0.3rem; color: #333; font-weight: 600; width: 31.3%; margin-right: 3.05%; padding: 0.633rem 0.3rem 0 0.467rem; border-bottom: 0.1rem solid #294688; transition: all 0.3s}
.tc-pro .mxw-box .tc-right .list .item .text{}
.tc-pro .mxw-box .tc-right .list .item .text span{ font-weight: bold}
.tc-pro .mxw-box .tc-right .list .item:nth-child(3n){ margin-right: 0}
.tc-pro .mxw-box .tc-right .list .item:nth-child(3n)~.item{ margin-top: 0.5rem;}
.tc-pro .mxw-box .tc-right .list .item .icon{ text-align: right;}
.tc-pro .mxw-box .tc-right .list .item .ico{ margin-top: 0.367rem;}
.tc-pro .mxw-box .tc-right .list .item:hover,.tc-pro .mxw-box .tc-right .list .item.active{ background: #294688; border-color: #fff ; color: #fff;transition: all 0.3s}
.tc-pro .mxw-box .tc-right .list .item:hover img,.tc-pro .mxw-box .tc-right .list .item.active img{filter:brightness(100)}
.tc-pro .mxw-box>.swiper-button-prev{ left: -0.5rem; width: initial; height: initial; }
.tc-pro .mxw-box>.swiper-button-next{ right: -0.5rem;width: initial; height: initial; }
.tc-pro .mxw-box>.swiper-button-prev::after,.tc-pro .mxw-box>.swiper-button-next::after{ color: #fff; font-size: 0.3rem;line-height: 1;}


.tc-adv{ padding: 2.917rem 0 2.967rem; background: url("../images/adv-bg.jpg") center no-repeat; background-size: cover;}
.mx-tt{ color: #fff;}
.mx-tt .cn{ 	font-size: 0.4rem; font-weight: bold; line-height: 1;}
.mx-tt .cn::before{ content: ""; width: 1.117rem;
    height: 1px;
    background-color: #ffffff; display: inline-block; margin-right: 0.3rem;}
.mx-tt .en{	font-size: 0.6rem; line-height: 1; margin-top: 0.5rem; text-transform: uppercase;}

.tc-adv .body{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between; margin-top: 1.8rem;}
.tc-adv .body .tc-right{ width: 62.5%; flex-shrink: 0;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: flex-start; flex-wrap: wrap; padding-top: 0.4rem;}
.tc-adv .body .tc-left{ flex-grow: 1; min-width: 0;}
.tc-adv .body .tc-right .item{ width: 24.7%; margin-right: 0.4%; background: url("../images/b1.png") center no-repeat; background-size: cover; padding: 0.3rem 0.333rem 1.1rem 0.333rem;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between; }
.tc-adv .body .tc-right .item:nth-child(4n){ margin-right: 0}
.tc-adv .body .tc-right .item:nth-child(4n)~.item{ margin-top: 4px;}
.tc-adv .body .tc-right .item .num{	font-size: 0.333rem; color: #333}
.tc-adv .body .tc-right .item .cn{	font-size: 0.333rem; font-weight: 500; margin-top: 0.467rem;}
.tc-adv .body .tc-right .item .en{	font-size: 0.233rem; color: #555; white-space: nowrap}
.tc-adv .body .tc-right .item .ico{ margin-top: 0.5rem; max-width: 0.667rem;}

.adv-swiper{ overflow: hidden;}
.tc-adv .body .tc-right .item:hover{ background: url("../images/b2.png") center no-repeat; background-size: cover;}
.tc-adv .body .tc-right .item:hover .ico img{filter:brightness(100) }
.tc-adv .body .tc-right .item:hover .cn{ color: #fff}
.tc-adv .body .tc-right .item:hover .en{ color: #fff}
.tc-adv .body .tc-right .item:hover .num{ color: #fff}
.tc-adv .body .tc-right .item:first-child,.tc-adv .body .tc-right .item:last-child{ background: none}
.adv-swiper .swiper-slide{	color: #ffffff;}
.adv-swiper .swiper-slide .num img{ height: 0.95rem;}
.adv-swiper .swiper-slide .st1{	font-size: 0.6rem; line-height: 1; margin-top: 1.267rem; font-weight: bold;}
.adv-swiper .swiper-slide .st2{	font-size: 0.3rem; opacity: 0.5; margin-top: 0.233rem; margin-bottom: 0.5rem;}
.adv-swiper .swiper-slide .desc{	font-size: 0.333rem;}
.tc-case{ padding: 2.3rem 0 1rem; background: url("../images/case-bg.jpg") center no-repeat; background-size: cover;}
.tc-case .up{ display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; align-items: flex-end; justify-content: space-between;}
.tc-case .body{ display: -webkit-flex; display: flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between; margin-top: 1rem;}
.tc-case .body .tc-left{ width:55.6%; flex-shrink: 0; }
.tc-case .body .tc-right{ flex-grow: 1; min-width: 0; padding-left: 1.5rem;}
.case-swiper{ overflow: hidden;}
.case-swiper .swiper-slide .tit{	font-size: 0.3rem; padding: 0.25rem; background: #fff; line-height: 1;}
.case-swiper .swiper-button-next,.case-swiper .swiper-button-prev{ position: initial; margin-top: 0.5rem; height: initial; width: initial; display: inline-block;opacity: 1; margin-right: 0.333rem;}
.case-swiper .swiper-button-next::after,.case-swiper .swiper-button-prev::after{ color: #fff; opacity: 1; font-size: 0.3rem; }
.case-swiper .image{ max-height: 7.5rem;}

.case2-swiper{ overflow: hidden;}
.tc-case .body .tc-right .top{display: -webkit-flex; display: flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between; color: #fff; }
.tc-case .body .tc-right .top .cn{	font-size: 0.4rem; font-weight: bold;}
.tc-case .body .tc-right .top .en{	font-size: 0.333rem; margin-right: 0.12rem}
.tc-case .body .tc-right .top .c2{position: relative}
.case2-swiper{ overflow: hidden; margin-top: 0.4rem;}
.case2-swiper .swiper-slide p{text-align: center; margin-top: 0.5rem;	font-size: 0.333rem; color: #fff;}
.tc-about{ padding: 2.483rem 0 1.333rem; background: url("../images/abou-bg.jpg") center no-repeat; background-size: cover;}
.tc-about .up{display: -webkit-flex; display: flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between; color: #fff;}
.tc-about .up .tc-left{	border: solid 2px #ffffff; width: 42%; flex-shrink: 0;
}
.tc-about .up .tc-left img{ width: 100%}
.tc-about .up .tc-right{ flex-grow: 1; min-width: 0; padding-left: 1.1rem;}
.tc-about .up .tc-right .st1{ font-size: 0.4rem; font-weight: bold; }
.tc-about .up .tc-right .st1::before{ content: ""; display: inline-block;	width: 67px;
    height: 1px;
    background-color: #ffffff; margin-right: 0.3rem; }
.tc-about .up .tc-right .st2{ font-size: 0.6rem; margin-top: 0.5rem; line-height: 1;}
.tc-about .up .tc-right .desc{	font-size: 0.267rem; margin: 0.5rem auto 1rem; line-height: 2}
.tc-about .bot{ margin-top: 0.933rem; display: -webkit-flex; display: flex; display: -moz-flex; display: -ms-flex; align-items: stretch; justify-content: space-between; }
.tc-about .bot .bot-cat{ width: 4.2rem;	background-color: #ffffff; text-align: center; flex-shrink: 0}
.tc-about .bot .bot-cat .item{ padding: 0.467rem 0.3rem 0.35rem;}
.tc-about .bot .bot-cat .item .cn{	font-size: 0.4rem;	color: #333333;}
.tc-about .bot .bot-cat .item .en{	font-size: 0.233rem;color: #999999; text-transform: uppercase; margin-top: 0.1rem;}
.tc-about .bot .bot-swiper{flex-grow: 1; min-width: 0; margin-left: 0.267rem; overflow: hidden;}
.tc-about .bot .bot-cat .item.active{ background: url("../images/sj.png") center right #294688 no-repeat;}
.tc-about .bot .bot-cat .item.active .cn{ color: #fff;}
.tc-about .bot .bot-cat .item.active .en{ color: #fff; opacity: 0.5}
.bot-con{ overflow: hidden;}
.bot-con .swiper-slide{ width: 16%; max-height: 3.5rem;}

.tc-js{ background: url("../images/js-bg.jpg") center no-repeat; background-size: cover; padding: 2.367rem 0 1.367rem;}

.js-swiper{ overflow: hidden; margin: 1.567rem 1.45rem 0;}
.js-swiper .swiper-wrapper{ align-items: stretch}
.js-swiper .swiper-slide{ width: 29%;background-color: #ffffff;overflow: hidden; padding: 0.267rem;
    border-radius: 0.333rem; text-align: center; }
.js-swiper .swiper-slide .title {	font-size: 0.333rem; font-weight: bold; margin: 0.533rem auto 0.3rem;}
.js-swiper .swiper-slide p{	font-size: 0.267rem; margin-bottom: 0.4rem;}
.js-swiper .swiper-slide .image{	border: solid 2px #ffffff;}
.js-swiper .swiper-slide:hover{	background-color: #294688;}
.js-swiper .swiper-slide:hover div{ color: #fff;}
.js-swiper .swiper-slide:hover p{ color: #fff;}

.tc-news{ padding: 2.033rem 0 1.533rem; background: url("../images/news-bg.jpg") center no-repeat; background-size: cover; }
.tc-news .body{ margin-top: 1.333rem;}
.tc-news .body{display: -webkit-flex; display: flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between; }
.tc-news .body .tc-left{ width: 49.7%; flex-shrink: 0;}
.tc-news .body .title{display: -webkit-flex; display: flex; display: -moz-flex; display: -ms-flex; align-items: flex-start; justify-content: space-between; color: #fff;	font-size: 0.4rem;}
.tc-news .body .title .t1 span{	font-size: 0.267rem;  margin-left: 0.417rem; margin-bottom: 0.333rem; text-transform: uppercase}
.tc-news .body .title{ padding-bottom: 0.3rem; border-bottom: 1px solid #fff;}
.tc-news .body .tc-right{ margin-left: 1.167rem; flex-grow: 1; min-width: 0}
.tc-news .body .tc-left .fn1{display: -webkit-flex; display: flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between; margin-top: 0.533rem; }
.tc-news .body .tc-left .fn1 .image{ width: 42.14%; flex-shrink: 0;	border: solid 2px #ffffff;
    max-height: 3.533rem;}
.tc-news .body .tc-left .fn1 .con{ flex-grow: 1; min-width: 0; margin-left: 0.567rem; color: #fff;}
.tc-news .body .tc-left .fn1 .con .st1{font-size: 0.3rem; font-weight: bold;}
.tc-news .body .tc-left .fn1 .con .desc{	font-size: 0.267rem; line-height: 1.8; margin-top: 0.433rem;}
.tc-news .body .tc-left .fn1 .con .more-d{ margin-top: 0.3rem}
.tc-news .body .tc-left .n-list{ background: #fff; margin-top: 0.533rem; padding: 0.333rem 0.417rem;}
.tc-news .body .tc-left .n-list .item{display: -webkit-flex; display: flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between; 	color: #666666; font-size: 0.267rem}
.tc-news .body .tc-left .n-list .item:nth-child(1)~.item{ margin-top: 0.267rem;}
.tc-news .body .tc-left .n-list .item::before{	width: 0.15rem; margin-right: 0.25rem;
    height: 0.15rem;
    background-color: #ffffff; flex-shrink: 0;
    border: solid 1px #05236b; content: ""}
.tc-news .body .tc-left .n-list .item P{flex-grow: 1; min-width: 0}
.tc-news .body .tc-left .n-list .item span{font-size: 0.233rem;color: #999999; margin-left: 0.333rem;}
.tc-news .body .tc-left .n-list .item:hover p{	color: #1a3454; font-weight: bold}
.tc-news .body .tc-left .n-list .item:hover::before{	background: #1a3454;}

.tc-news .body .tc-right .nr-list{ margin-top: 0.533rem;}
.tc-news .body .tc-right .nr-list .item{display: -webkit-flex; display: flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: space-between; }
.tc-news .body .tc-right .nr-list .item .image{border: solid 2px #ffffff; width: 26%; flex-shrink: 0;
    max-height: 2rem;}
.tc-news .body .tc-right .nr-list .item .con{ margin-left: 0.5rem; color: #fff; flex-grow: 1; min-width:0}
.tc-news .body .tc-right .nr-list .item .con .st{	font-size: 0.3rem; font-weight: bold;}
.tc-news .body .tc-right .nr-list .item .con .desc{	font-size: 0.267rem;	color: #e4e4e4; margin-top: 0.3rem; line-height: 1.8}
.tc-news .body .tc-right .nr-list .item:nth-child(1)~.item{ margin-top: 0.383rem; padding-top: 0.383rem; border-top: 1px dashed #fff;}


#index-main-swiper {
    height: 100vh;
}

#index-main-swiper>.swiper-wrapper>.swiper-slide{
    height: 100vh;
}
.tc-pro,.tc-adv,.tc-case,.tc-about,.tc-js,.tc-news {
    display: -webkit-flex; display: flex; display: -moz-flex; display: -ms-flex; align-items: center; justify-content: center; flex-direction: column;height: 100vh;
}
.tc-news{ }
#foot-slide{ height: auto !important;}


.mxw-banner .swiper-slide{ height: 100%;}
.banner-swiper{ height: 100%;}
.tc-case .body .tc-right .top .c2{ flex-shrink: 0}
.tc-case .body .tc-right .top .c2 .swiper-button-next,.tc-case .body .tc-right .top .c2 .swiper-button-prev{ margin: 0 0.1rem; position: initial;display: inline-block; height: initial; width: initial}
.tc-case .body .tc-right .top .c2 .swiper-button-next::after,.tc-case .body .tc-right .top .c2 .swiper-button-prev::after{font-size: 0.3rem; color: #fff; }


body{ overflow-x: hidden}

/* #region ==================== 底部 start ==================== */
.firend-link {
    position: relative;
    width: 2.5667rem;
    flex-shrink: 0;
}

.firend-link .link-head {
    background-color: #252526;
    border: solid 1px #414141;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    height: 0.6rem;
    line-height: 0.6rem;
    padding-left: 0.1667rem;
    padding-right: 0.1667rem;
}

.firend-link .link-head:hover+.link-list {
    opacity: 1;
    visibility: visible;
    transform: perspective(20rem) rotateX(0deg);
    -webkit-transform: perspective(20rem) rotateX(0deg);
    -moz-transform: perspective(20rem) rotateX(0deg);
    -ms-transform: perspective(20rem) rotateX(0deg);
    -o-transform: perspective(20rem) rotateX(0deg);
}

.firend-link .link-head .text {
    font-size: 0.2rem;
    color: #bdbdbd;
}

.firend-link .link-head:after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(-45deg) translateY(50%);
    background: none;
    margin-right: 0.4rem;
}

.firend-link .link-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 3.3333rem;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
    -webkit-transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
    transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: perspective(20rem) rotateX(-90deg);
    transform: perspective(20rem) rotateX(-90deg);
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}

.firend-link .link-list::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 0.0667rem;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 0.0167rem;
}

.firend-link .link-list::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 0.0667rem;
    box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
    background: #535353;
}

.firend-link .link-list::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
    border-radius: 0.0667rem;
    background: #ededed;
}

.firend-link .link-list:hover {
    opacity: 1;
    visibility: visible;
    transform: perspective(20rem) rotateX(0deg);
    -webkit-transform: perspective(20rem) rotateX(0deg);
    -moz-transform: perspective(20rem) rotateX(0deg);
    -ms-transform: perspective(20rem) rotateX(0deg);
    -o-transform: perspective(20rem) rotateX(0deg);
}

.firend-link .link-list>li {
    width: 100%;
    font-size: 0.2333rem;
    line-height: 1.2;
    padding: 0.1667rem 0.3333rem;
    border-bottom: 0.0167rem solid #f5f5f5;
}

.firend-link .link-list>li a {
    display: block;
    width: 100%;
}

.firend-link .mxw-online-list {
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    width: 100%;
    left: 0;
    border: 1px solid #ddd;
    display: none;
    z-index: 9;
}

.firend-link .mxw-online-list>.mxw-box {
    padding: 0 0.3333rem;
    width: 100%;
    max-width: 100%;
    text-align: left;
    background: #fff;
    overflow: auto;
    min-width: 0;
    max-height: 3.3333rem;
}

.firend-link .mxw-online-list>.mxw-box::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 0.0667rem;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 0.0167rem;
}

.firend-link .mxw-online-list>.mxw-box::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 0.0667rem;
    box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
    background: #535353;
}

.firend-link .mxw-online-list>.mxw-box::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 0.0833rem rgba(0, 0, 0, 0.2);
    border-radius: 0.0667rem;
    background: #ededed;
}

.firend-link .mxw-online-list a {
    display: block;
    padding-right: 0.3333rem;
    color: #000;
    font-size: 0.2rem;
    padding: 10px 0;
    line-height: 1.6;
    border-bottom: 1px solid #ddd;
}

.firend-link .mxw-online-list a:hover {
    color: #1d2088;
}

.firend-link .mxw-online-list a:last-child {
    border-bottom: 0;
}

footer {
    background: #252526;
    border-top: 17px solid #fff;
}

footer .foot-top>.mxw-box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-top: .6667rem;
    padding-bottom: .7667rem;
    padding-right: 0.6rem;
}

footer .foot-top .left {
    width: 2.5667rem;
    flex-shrink: 0;
}

footer .foot-logo {
    width: 2.5667rem;
    margin-bottom: 0.6667rem;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

footer .head {
    font-size: 0.3333rem;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    margin-top: -2px;
    display: flex;
    align-items: center;
}

footer .head:before {
    content: "";
    display: block;
    width: 0.1333rem;
    height: 0.3333rem;
    background: #294688;
    margin-right: 0.25rem;
}

footer .foot-nav {
    width: 3.6rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

footer .foot-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .foot-nav ul li {
    font-size: 0.2333rem;
    color: #ffffff;
    display: flex;
    align-items: center;
}

footer .foot-nav ul li:nth-child(odd) {
    margin-right: 0.1rem;
}

footer .foot-nav li:before {
    content: "·";
    font-size: 0.4rem;
    margin-right: 0.2333rem;
}

footer .foot-nav ul li:nth-child(2n) {
    text-align: right;
}

footer .foot-nav ul a:hover {
    color: #fff;
}

footer .foot-contact {
    width: 7.5167rem;
}

footer .foot-contact .desc {
    font-size: 0.25rem;
    color: #ffffff;
    line-height: 2em;
}

footer .foot-contact .desc p {
    display: flex;
    align-items: center;
    font-size: .2333rem;
}

footer .foot-contact .desc p:before {
    content: "·";
    font-size: 0.5rem;
    margin-right: 0.1667rem;
    flex-shrink: 0;
    line-height: 0;
}

footer .mxw-qr {
    width: 1.85rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

footer .mxw-qr .image {
    display: block;
}

footer .mxw-qr .title {
    width: 100%;
    height: 0.6167rem;
    line-height: 0.6167rem;
    color: #fff;
    text-align: center;
    font-size: .2333rem;
    display: block;
}

footer .mxw-copyright {
    background-color: #fff;
}

footer .mxw-copyright .mxw-box {
    text-align: center;
    color: #666666;
    padding: .25rem 0;
    font-size: 0.216rem;
    line-height: 2;
}

footer .mxw-copyright .mxw-box a {
    color: inherit;
}

@media screen and (min-width: 1200px) {
    footer .mxw-copyright {
        height: 1rem;
    }

    footer .mxw-copyright .mxw-box {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0.3rem 0;
    }
}

@media screen and (max-width: 1200px) {
    footer .foot-top>.mxw-box {
        padding: 30px 20px;
        flex-wrap: wrap;
    }

    footer .foot-top .left {
        padding: 0;
        margin-right: 0;
        width: 100%;
        text-align: center;
        border-right: 0;
    }

    footer .head {
        font-size: 16px;
        text-align: center;
        margin-bottom: 20px;
    }

    footer .foot-nav,
    footer .mxw-qr {
        display: none;
    }

    footer .foot-logo {
        padding: 0;
        margin-bottom: 20px;
        display: none;
    }

    footer .foot-logo img {
        width: 150px;
    }

    footer .foot-contact {
        padding: 0;
        border-left: 0;
    }

    footer .foot-contact .desc {
        font-size: 13px;
    }

    footer .mxw-copyright .mxw-box {
        padding: 15px;
        line-height: 2;
        font-size: 12px;
    }
}

/* ==================== 底部 end ==================== */


.mxw-copy{	background-color: #1a1a1a;}
.mxw-copy .mxw-box{ padding: 18px 0; line-height: 1.6;	font-size: 14px; color: #626262;  text-align: left; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.mxw-copy .mxw-box a{font-size: 14px; color: #626262; }
.mxw-copy .mxw-box a:hover{font-size: 14px; color: #626262;}


.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 ==================== */
.adv-swiper .swiper-slide .num img{ height: 0.883rem;}
.tc-news .body .tc-left .n-list .item span{ flex-shrink: 0}
.tc-news{ width: 100%}
footer{ width: 100%}

@media screen and (min-width: 2000px)  {
    html{ font-size: 63px !important; }
    .mxw-box{ max-width: 86%}
    .tc-about .bot{ align-items: stretch; height: auto; }
    .case-swiper .image{ max-height: 8.2rem}
    .bot-con .swiper-slide{ max-height: 3.8rem}
    .tc-about .bot .bot-cat{ width: 5.5rem;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; flex-direction: column;}
    .tc-about .bot .bot-cat .item{ height: 50%}
    .tc-news .body .tc-left .fn1 .image{ max-height: 3.6rem}
    .tc-news .body .tc-right .nr-list .item .image{ max-height: 2.1rem}
}

@media screen and (min-width: 2480px)  {
    html{ font-size: 66px !important; }
    .mxw-box{ max-width: 86%}
    .tc-about .bot{ align-items: stretch; height: auto; }
    .case-swiper .image{ max-height: 8.2rem}
    .bot-con .swiper-slide{ text-align: center }
    .bot-con .swiper-slide img{ max-height: 4.2rem; }
    .tc-about .bot .bot-cat{ width: 6rem;display: flex; display: -webkit-flex; display: -moz-flex; display: -ms-flex; flex-direction: column;}
}


@media screen and (max-width: 1880px) and (max-height: 920px) {
    .tc-about .up .tc-left{ width: 39%;}
    .tc-about .up .tc-right .desc{ margin: 0.4rem auto 0.8rem}
    .tc-about{ padding-top: 2.3rem}
    .tc-news .body{ margin-top: 1rem}
    .tc-about .bot .bot-cat{ width: 4.4rem}
}




@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}

    .mxw-banner .flx .t,.mxw-banner .flx .mouse{ display: none}
    .mxw-banner .flx .con{ width: 100%; max-width: 100%; justify-content: center}
    .mxw-banner .flx{ bottom: 20px}
    .mxw-banner .swiper-pagination .swiper-pagination-bullet::before{ width: 5px; height: 5px;}
    .mxw-banner .swiper-pagination .swiper-pagination-bullet{ width: 15px; height: 15px; line-height: 13px;}

    .index-main-swiper>.swiper-wrapper>.swiper-slide{ height: auto !important;}
    .mxw-banner{ height: auto !important; margin-top: 0;}
    .index-main-swiper{ height: auto;}
    .index-main-swiper>.swiper-wrapper{ display: block; height: auto;}
    #index-main-swiper{ height: auto}
    .tc-pro{ padding: 45px 0}
    .tc-pro .mxw-box{ flex-wrap: wrap}
    .tc-pro .mxw-box .tc-left{ order: 1; width: 100%; padding: 0 45px }
    .tc-pro .mxw-box .tc-right .up .xl{ font-size: 17px;}
    .tc-pro .mxw-box .tc-right .up .xl::before{ width: 30px; margin-right: 15px;}
    .tc-pro .mxw-box .tc-right .up .en{ font-size: 22px; margin-top: 10px;}
    .tc-pro .mxw-box .tc-right .up .desc{ font-size: 14px; margin-top: 10px;}
    .more-c{ flex-shrink: 0; font-size: 14px;}
    .more-c img{ height: 26px; margin-left: 5px}
    .tc-pro .mxw-box .tc-right .up{ align-items: center}
    .tc-pro .mxw-box .tc-right .list{ margin-top: 25px; justify-content: space-between; margin-bottom: 25px;}
    .tc-pro .mxw-box .tc-right .list .item{ width: 48.5%; margin: 0}
    .tc-pro .mxw-box .tc-right .list .item:nth-child(2n)~.item{ margin-top: 2.5%}
    .tc-pro .mxw-box .tc-right .list .item{ padding: 15px 20px}
    .tc-pro .mxw-box .tc-right .list .item .text{font-size: 14px}
    .tc-pro .mxw-box .tc-right .list .item .ico{ margin-top: 15px;}

    .tc-adv{ padding: 45px 0}
    .mx-tt .en{ font-size: 16px; margin-top: 10px;}
    .mx-tt .cn{ font-size: 17px}
    .tc-adv .body{ margin-top: 25px; flex-wrap: wrap}
    .adv-swiper .swiper-slide .num img{ height: 45px; margin-top: 25px}
    .tc-adv .body .tc-left{ text-align: center; order: 1;}
    .tc-adv .body .tc-right{ width: 100%; padding-top: 0px; justify-content: space-between}
    .tc-adv .body .tc-right .item:first-child,.tc-adv .body .tc-right .item:last-child{ display: none}
    .tc-adv .body .tc-right .item{ width: 48.5%; margin: 0; padding: 15px 15px 40px 15px;}
    .tc-adv .body .tc-right .item:nth-child(2n+1)~.item{ margin-top: 2.5%}
    .adv-swiper .swiper-slide .st1{ font-size: 20px; margin-top: 15px;}
    .adv-swiper .swiper-slide .st2{ font-size: 14px; margin-top: 10px; margin-bottom: 15px;}
    .adv-swiper .swiper-slide .desc{ font-size: 14px;}
    .tc-adv .body .tc-right .item .ico{flex-shrink: 0; margin-top: 12px; max-width: 20px; margin-left: -10px; margin-right: 0;}
    .tc-adv .body .tc-right .item .num{ font-size: 18px;}
    .tc-adv .body .tc-right .item .cn{ font-size: 16px; margin-top: 18px}
    .tc-adv .body .tc-right .item .en{ font-size: 12px;}
    .tc-case{ padding: 45px 0}
    .tc-case .body{ flex-wrap: wrap; margin-top: 25px;}
    .tc-case .body .tc-left{ width: 100%}
    .case-swiper .swiper-button-next, .case-swiper .swiper-button-prev{ margin-top: 15px;}
    .case-swiper .swiper-button-next::after, .case-swiper .swiper-button-prev::after{font-size: 18px}

    .tc-case .body .tc-right{ padding: 0; margin-top: 35px;}
    .tc-case .body .tc-right .top .cn{font-size: 18px;}
    .tc-case .body .tc-right .top .en{font-size: 14px; margin-top: 10px;}

    .case2-swiper{ margin-top: 25px}
    .case2-swiper .swiper-slide p{ font-size: 14px; margin-top: 10px;}

    .tc-about{ padding: 45px 0}
    .tc-about .up{ flex-wrap: wrap}
    .tc-about .up .tc-left{ width: 100%}
    .tc-about .up .tc-right{ padding: 0; margin-top: 15px;}
    .tc-about .up .tc-right .st1{ font-size: 18px;}

    .tc-about .up .tc-right .st2{ margin-top: 10px; font-size: 20px;}
    .tc-about .up .tc-right .st1::before{ width: 45px; margin-right: 15px;}
    .tc-about .up .tc-right .desc{ margin: 15px auto 25px; font-size: 14px; line-height: 1.8}

    .tc-about .bot{ flex-wrap: wrap; margin-top: 25px; width: 100%}
    .tc-about .bot .bot-cat .item{ padding: 14px 10px;}
    .tc-about .bot .bot-cat{ width: 100%; display: flex; align-items: stretch; }
    .tc-about .bot .bot-cat .item{ width: 50%;}
    .tc-about .bot .bot-cat .item .cn{ font-size: 18px;}
    .tc-about .bot .bot-cat .item .en{ font-size: 12px;}
    .tc-about .bot .bot-swiper{ margin: 15px auto 0;}

    .tc-js{ padding: 45px 0}
    .js-swiper{ margin: 35px auto 0}
    .js-swiper .swiper-slide .title{ font-size: 18px; margin: 10px auto 15px}
    .js-swiper .swiper-slide{ padding: 20px;}
    .js-swiper .swiper-slide p{ font-size: 14px; margin-bottom: 15px}
    .tc-news{ padding: 45px 0}
    .tc-news .body{ margin-top: 30px; flex-wrap: wrap;}

    .tc-news .body .tc-left{ width: 100%;}
    .tc-news .body .title{ font-size: 18px; padding-bottom: 8px}
    .tc-news .body .title .t1 span{ font-size: 12px; margin-left: 10px}
    .more-z img{ height: 20px;}
    .tc-news .body .tc-left .fn1{ margin-top:15px; }
    .tc-news .body .tc-left .fn1 .image{}
    .tc-news .body .tc-left .fn1 .con{ margin-left: 10px;}
    .tc-news .body .tc-left .fn1 .con .st1{ font-size: 16px;}
    .tc-news .body .tc-left .fn1 .con .desc{ margin-top: 10px; font-size: 12px;}
    .tc-news .body .tc-left .fn1 .con .more-d{ width: 18px; margin-top: 10px;}
    .tc-news .body .tc-left .n-list{ margin-top: 20px; padding: 15px}
    .tc-news .body .tc-left .n-list .item::before{ width: 8px; height: 8px; margin-right: 10px;}
    .tc-news .body .tc-left .n-list .item P{ font-size: 14px;}
    .tc-news .body .tc-left .n-list .item span{ font-size: 12px; margin-left: 20px;}
    .tc-news .body .tc-left .n-list .item{ line-height: 1}
    .tc-news .body .tc-left .n-list .item:nth-child(1)~.item{ margin-top: 12px;}
    .tc-news .body .tc-right{ margin: 25px auto 0; width: 100%}
    .tc-news .body .tc-right .nr-list{ margin-top: 15px;}
    .tc-news .body .tc-right .nr-list .item .image{ width: 30%;}
    .tc-news .body .tc-right .nr-list .item .con{ margin-left: 12px;}
    .tc-news .body .tc-right .nr-list .item .con .st{ font-size: 16px;}
    .tc-news .body .tc-right .nr-list .item .con .desc{ font-size: 12px; margin-top: 10px;}

    /* 手机页脚 */
    .footer3 {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #222;
        width: 100%;
    }

    .footer3 ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .footer3 ul li {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: center;
        color: #ffffff;
        line-height: 50px;
        font-size: 0;
    }

    .footer3 ul li a {
        display: block;
        color: #ffffff;
    }

    .footer3 ul li .iconfont {
        font-size: 14px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;
    }

    .footer3 ul li span {
        display: inline-block;
        vertical-align: middle;
        font-size: 14px;
        color: #ffffff;
    }

    #index-main-swiper>.swiper-wrapper>.swiper-slide:nth-child(1)~.swiper-slide{ }
    .bot-con .swiper-slide,.case-swiper .image{ max-height: initial}
    .tc-pro,.tc-adv,.tc-case,.tc-about,.tc-js,.tc-news { height: auto }
}












