@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
/*

@font-face {
  font-family: 'Source Han Sans';
  src: url('path/to/sourcehansans-regular.woff2') format('woff2'),
       url('path/to/sourcehansans-regular.woff') format('woff'),
       url('path/to/sourcehansans-regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



 */
.n-banner img{ width: 100%}

* {
    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 ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination > a,.mxw-pagination > span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: block;
    margin: 4px;
}
.mxw-pagination > a.active,
.mxw-pagination > a:hover {
    background-color: #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: 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;
    display: flex; align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}
.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: 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: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;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: #f58321;
    border-color: #f58321;

}
.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;
    }
    .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{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;  padding: 0.333rem 0 0.333rem 0;  flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start;}
.top-box .logo-box .t-logo>img{ max-height:1.267rem;}

.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{

}
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;}
.top-box .right{ display: flex; flex-grow:1; min-width: 0;  padding-left: 5rem; justify-content: flex-end; align-items: center;  color: #333; }










.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;
    display: flex;
    align-items: center; justify-content: center;
}

.x-menu > li > a {
    font-size: 0.3333rem;
    color: #333;
    display: flex;

    align-items: center;
    position: relative;
    align-content: center;
    justify-content: center;
    padding:0 ;
    line-height: 1.2;
    width: max-content;
    width: -moz-max-content;

}
.x-menu > li > a::after{ position: absolute; content: ""; display: block;	width: 0.333rem; bottom: -0.2rem; left: 0;
    height: 1px;
    background: none;}
.x-menu > li:last-child>a{ }
.x-menu > li > a:hover {
    color: #009d8d;
}
.x-menu>li.active{ 	 	}
.x-menu > li.active > a {
    color: #009d8d;
}
.x-menu > li.active > a::after{ background: #009d8d; transition: all 0.3s}
.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:#009d8d;
}

.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.shop > a img{ height: 0.817rem;}
.x-menu > li.shop > a::before{ display: none;}
.x-menu > li.danhao{ flex-grow: initial; margin-right: 0; margin-left: auto; padding-left: 0.2rem;}

.x-menu > li.danhao a{ padding: 0.083rem 0.467rem 0.083rem 0.367rem;	background-color: #009d8d;
    border-radius: 0.333rem; line-height: 1; color: #fff; font-size: 0.3rem;}
.x-menu > li.danhao a img{ height: 0.5rem; margin-right: 0.25rem;}


.ab-box{ padding: 1.25rem 0 0.733rem;}
.ab-box>.mxw-box{ padding: 0 0.5rem;}
.ab-box .st{ font-size: 0.7rem;}
.ab-box .st img{ height: 0.533rem; margin-right: 0.333rem;}
.ab-box .desc{ margin: 0.867rem auto 0;color: #666; line-height: 1.5}

.ab-box2{ padding: 1.1rem 0 2rem; background: url("../images/ab2-bg.jpg") center no-repeat; background-size: cover;}
.tc2-title{ text-align: center; }
.tc2-title .cn{	font-size: 0.7rem;color: #333333; line-height: 1;}
.tc2-title .en{ margin-top: 0.2rem;line-height: 1;	font-size: 0.233rem; text-transform: uppercase;}
.ab2-body{ margin: 0.833rem auto 0; position: relative;}
.ab2-swiper{ overflow: hidden;}
.ab2-swiper .swiper-slide{ text-align: center; }
.ab2-swiper .swiper-slide-visible:nth-child(1){ background: #000;}
.ab2-swiper .swiper-slide .img{ text-align: center;}
.ab2-swiper .swiper-slide .img img{ max-width: 3.417rem;}
.ab2-swiper .swiper-slide .date{ margin: 0.167rem auto 0.233rem;	font-size: 0.433rem; line-height: 1; font-weight: bold;}
.ab2-swiper .swiper-slide .st{	font-size: 0.433rem;	color: #008f89; font-weight: bold;}
.ab2-swiper .swiper-slide .desc{font-size: 0.367rem; color: #555; margin: 0.3rem auto 0; width:80%; max-width: 200px; line-height: 1.6; }
.ab2-body .swiper-button-prev{ color: #008f89; left: -1rem;}
.ab2-body .swiper-button-next{color: #008f89; right: -1rem;}
.ab-box3{ padding: 1.633rem 0; background: url("../images/hn-bg.jpg") center no-repeat; background-size: cover;}
.ab3-body{ display: flex; align-items: center; justify-content: space-between; margin: 1.5rem auto 0;}
.ab3-body .tc-right{ width: 42.5%; flex-shrink: 0;}
.ab3-gd-swiper{ overflow: hidden;}
.ab3-body .tc-left{ flex-grow: 1; min-width: 0; padding-right: 2rem; display: flex; align-items: center; justify-content: space-between;}
.ab3-swiper{ flex-grow: 1; min-width: 0; margin-right: 1.3rem; position: relative; overflow: hidden;}
.ab3-swiper .swiper-slide{ overflow: hidden;}
.ab3-swiper .swiper-slide .st1{ 	font-size: 1.3rem; font-weight: bold;color: #00a895; line-height: 1; display: flex; align-items: flex-end;}
.ab3-swiper .swiper-slide .st1 img{ height: 1.4rem; margin-right: 0.583rem; margin-top: -3px}
.ab3-swiper .swiper-slide .st2{	font-size: 0.433rem; font-weight: bold; margin-top: 1.333rem; width: max-content; width: -moz-max-content; border-bottom: 2px solid #00a895; max-width: 100%;
    padding-bottom: 0.433rem;}
.ab3-body .tc-left .ab3-cate{ width: 1.5rem; flex-shrink: 0}
.ab3-swiper .swiper-slide .st3{	font-size: 0.367rem; margin: 0.467rem auto 1.5rem; line-height: 2;}
.ab3-body .tc-left .ab3-cate .item{ display: flex; align-items: center; justify-content: flex-end; font-size: 0.433rem; color: #888; margin: 0.45rem auto; cursor: pointer;}
.ab3-body .tc-left .ab3-cate .item::before{ content: ""; flex-grow: 1; min-width: 0; height: 2px; margin-right: 5px; }
.ab3-body .tc-left .ab3-cate .item.active::before{background: #00a895;}
.ab3-body .tc-left .ab3-cate .item.active{ color: #00a895;}

.ab-box4{ padding: 1.4rem 0 1.917rem;}
.ab4-body{ margin: 1rem auto 0; display: flex; align-items: stretch; justify-content: space-between;}
.ab4-body .item{ width: 28%;	background-color: #f8f8f8; text-align: center; padding: 0.917rem 0.6rem 1rem;}
.ab4-body .item .icon{ text-align: center;}
.ab4-body .item .icon img{ height: 0.967rem;}
.ab4-body .item .st{	font-size: 0.433rem; margin: 0.6rem auto 0.3rem;}
.ab4-body .item .desc{	font-size: 0.3rem; color: #666; line-height: 1.6}
.ab4-body .item:hover{	background-color: #009d8d;}
.ab4-body .item:hover .icon img{ filter: brightness(0) invert(1);
-webkit-filter: brightness(0) invert(1)}
.ab4-body .item:hover .st{ color: #fff}
.ab4-body .item:hover .desc{ color: #fff}

.ct{ display: flex; align-items: center; justify-content: flex-start;}
.ct .swiper-button-prev,.ct .swiper-button-next{ position: initial; margin-top: 0; margin-left: 0.417rem; font-size: 0.233rem; width: 0.8rem; height: 0.8rem; background: #00a895; border-radius: 50%; color: #fff;}
.ct .swiper-button-prev::after,.ct .swiper-button-next::after{color: #fff;font-size: 0.233rem; }

.n-cate{ padding: 0.467rem 0;}
.n-cate .mxw-box{ display: flex; justify-content: center; align-items: center;	font-size: 0.367rem;}
.n-cate .mxw-box .item{ padding: 0.3rem; margin: 0 0.167rem; line-height: 1;}
.n-cate .mxw-box .item:hover{ color: #009d8d;}
.n-cate .mxw-box .item.active{ color: #fff;background-color: #009d8d;
    border-radius: 0.167rem;}

.yw0-box{ padding: 2.3rem 0 1.967rem; background: url("../images/yw0-bg.jpg") center no-repeat; background-size: cover;}
.yw0-box .mxw-box{ display: flex; align-items: stretch; justify-content: space-between;

    }
.yw0-box .mxw-box .tc-left{ width: 35.25%; flex-shrink: 0;	border-radius: 19px 0px 0px 19px; overflow: hidden;}
.yw0-box .mxw-box .tc-right{ flex-grow: 1; min-width: 0;border-radius: 0px 19px 19px 0px; box-shadow: 0px 0px 20px 0px
rgba(0, 0, 0, 0.16); overflow: hidden;background-color: #ffffff; padding: 0.917rem 0.5rem 0.667rem 0.583rem;  display: flex; flex-direction: column }

.yw-cate{ position: relative; padding: 0 0.833rem; }
.yw-cate .yw-cate-swiper{overflow: hidden; }
.yw-cate .swiper-button-prev::after,.yw-cate .swiper-button-next::after{ font-size: 0.3rem; color: #009d8d;}
.yw-cate .swiper-slide{ text-align: center; font-weight: bold; padding: 0.15rem 0.2rem; line-height: 1; cursor: pointer; color: #009d8d}
.yw-cate .swiper-slide.swiper-slide-thumb-active{	background-color: #009d8d;
    border-radius: 0.083rem; color: #fff}
.yw-swiper{ margin: 0.833rem auto 0; overflow: hidden; flex-grow: 1; min-width: 0;width: 100%;}
.yw-swiper .swiper-slide{ max-height: 5.4rem; overflow-y: scroll}
.yw-swiper .swiper-slide .st{	font-size: 0.333rem; font-weight: bold; padding-bottom: 0.3rem;	border-bottom:1px solid rgba(102, 102, 102, 0.1); margin-right: 1.083rem;}
.yw-swiper .swiper-slide .st img{ height: 0.75rem; margin-right: 0.25rem;}
.yw-swiper .swiper-slide .desc{ margin-top: 0.6rem;	font-size: 0.333rem; color: #666; line-height: 1.6; margin-right: 0.75rem; }
/* 滚动条样式 */
.yw-swiper .swiper-slide::-webkit-scrollbar {
    width: 6px; /* 宽度 */
}

.yw-swiper .swiper-slide::-webkit-scrollbar-track {
    background-color: rgba(171, 171, 171, 0.2);
    border-radius: 4px;
}

.yw-swiper .swiper-slide::-webkit-scrollbar-thumb {
    background-color: rgba(0, 157, 141, 0.2);border-radius: 4px;
}

.yw-swiper .swiper-slide::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 157, 141, 0.2);border-radius: 4px;
}


body::-webkit-scrollbar {
    width: 6px; /* 宽度 */
}

body::-webkit-scrollbar-track {
    background-color: rgba(171, 171, 171, 0.2);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 157, 141, 0.8);border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 157, 141, 1);border-radius: 4px;
}

.sl-box1{ padding: 1.15rem 0 1.083rem; background: url("../images/sl-bg.jpg") center no-repeat; background-size: cover; background: none;}
.sl-box1 .tc-title{ text-align: center; color: #333 line-height: 1;}
.sl-box1 .tc-title .cn{	font-size: 0.7rem; color: #333;}
.sl-box1 .tc-title .en{	font-size: 0.233rem; margin-top: 0.18rem; text-transform: uppercase;}
.sl-box1 .tc-title .en::after{	width: 25px;
    height: 3px;
   display: block;content: ""; background: #333; margin: 0.233rem auto 0;}

.sl-cate{ margin: 1rem auto 0; display: flex; align-items: center; justify-content: space-between; color: #333;}
.sl-cate .item{ text-align: center; width: 20%; opacity: 0.6;}
.sl-cate .item p{	font-size: 0.4rem;  margin-top: 0.367rem;}
.sl-cate .item.active{ opacity: 1;}
.sl-cate .item.active p{font-weight: bold;}
.sl-cate .item img{filter:brightness(0)}
.sl-swiper{ overflow: hidden; margin: 1.167rem auto 0;}
.sl-swiper .swiper-slide{	font-size: 0.3rem; line-height: 2.2;	}

.f2-box{ padding-bottom: 1.583rem;}
.f2-box>.mxw-box{ padding: 0 0.417rem;}
.f2-box .item{ display: flex; align-items: stretch; justify-content: space-between;}
.f2-box .item .tc-right{ width: 50%; flex-shrink: 0;	background-color: #ffffff;
    box-shadow: 0px 4px 27px 0px
    rgba(0, 0, 0, 0.13);}
.f2-box .item .tc-left{background-color: #009d8d; color: #fff;display: flex; align-items: flex-start; justify-content: center; flex-direction: column;padding: 0.333rem 0.75rem 0.333rem 0.667rem; }
.f2-box .item .tc-left .cn{ 	font-size: 0.5rem;}
.f2-box .item .tc-left .en{	font-size: 0.233rem; margin-top: 0.1rem;}
.f2-box .item .tc-left .desc{ font-size: 0.3rem; margin-top: 0.467rem; line-height: 1.8}
.f2-box .item:nth-child(2n) .tc-left{ order: 2;}

.cnt-top{ padding: 0.75rem 0 1.5rem;}
.cnt-top .desc{	color: #666666; line-height: 2; font-size: 0.3rem;}
.cnt-body{ display: flex;  align-items:center; justify-content: space-between; margin: 0.867rem auto 0;}
.cnt-body .tc-left{ width: 57.5%; flex-shrink: 0; min-height: 6rem;}
.cnt-body .tc-left #map{border: solid 1px #cacaca;}
.cnt-body .tc-right{ flex-grow: 1; min-width: 0; padding-left: 1.067rem;}
.cnt-body .tc-right .title{	font-size: 0.5rem; font-weight: bold; margin-bottom: 0.5rem;}

.cnt-body .tc-right .desc{	font-size: 0.3rem; color: #666}
.cnt-body .tc-right .ewm-box{ margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px solid #e5e5e5;}
.cnt-body .tc-right .ewm-box{ display: flex; align-items: flex-start; justify-content: flex-start;}
.cnt-body .tc-right .ewm-box .item{ max-width: 2.833rem; text-align: center;	font-size: 0.333rem;	color: rgba(47, 51, 52, 0.6); margin-right: 0.417rem }
.cnt-body .tc-right .ewm-box .item p{ margin-top: 0.15rem;}


.cnt-list{ margin: 0.917rem auto 0; display: flex; align-items: stretch; justify-content: space-around;}
.cnt-list .item{ width: 15%; text-align: center;}
.cnt-list .item p{	color: #666666; font-size: 0.333rem; margin-top: 0.333rem;}

.cnt-msg{ padding:1.1rem 0;background: #f3f3f3;}
.cnt-msg .title{ text-align: center;	font-size: 0.5rem; font-weight: bold;}

.cnt-msg form{ margin: 1rem auto 0; display: block; font-size: 0}
.cnt-msg form .up{ display: flex; align-items: stretch; justify-content: space-between;}
.cnt-msg form .up .up1{ width: 31.5%; position: relative;border: solid 2px #e1e1e1;
    font-size: 0.267rem;color: #bababa;}
.cnt-msg form .up .up1 input{    padding: 0.3rem 0.417rem;font-size: 0.267rem; background: #ffffff; width: 100%;	}
.cnt-msg form  textarea{ padding: 0.3rem 0.417rem;border: solid 2px #e1e1e1;
    margin: 0.5rem auto 0; resize: none; height: 2.167rem; width: 100%; font-size: 0.267rem;}
.cnt-msg button{width: 4.3rem;
    height: 1.067rem;
    background-color: #009d8d;
    border-radius: 0.083rem;	font-size: 0.3rem; color: #fff; margin: 0.917rem auto 0; display: block;}


footer{ padding-top: 0.7rem; background: url("../images/ft-bg.jpg") center no-repeat; background-size: cover;}
footer .up{ display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 0.3rem;}
footer .up .tc-left{ width: 54.1%; flex-shrink: 0; margin-right: 1.5rem;}
footer .up .tc-right{ flex-grow: 1; min-width: 0;}
footer .up .tc-left .d-logo img{ height: 1.9rem;}
footer .up .tc-left .d-c1{ display: flex; align-items: center; justify-content: space-between; margin-top: 1.367rem;}
footer .up .tc-left .d-c1 .tc1{  width: 34.5%; flex-shrink: 0; margin-right: 1.417rem; display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 0.3rem; border-bottom: 2px solid  rgba(48, 51, 52, 0.4); }
footer .up .tc-left .d-c1 .tc1 .icon{ width: 0.85rem; flex-shrink: 0}
footer .up .tc-left .d-c1 .tc1 .txt{ flex-grow: 1; min-width: 0; }
footer .up .tc-left .d-c1 .tc1 .txt .num{	font-size: 0.5rem;	color: #303334; font-weight: bold; flex-shrink: 0}
footer .up .tc-left .d-c1 .tc1 .txt .st{	font-size: 0.333rem;color: rgba(47, 50, 51, 0.6); margin-bottom: 0.4rem;	}
footer .up .tc-left .d-c1 .tc2{	font-size: 0.3rem; line-height: 1.9;	color: rgba(47, 51, 52, 0.6); flex-grow: 1; min-width: 0}
footer .up .tc-left .msg{ margin-top: 1.133rem;}
footer .up .tc-left .msg .put-box{ display: flex; align-items: stretch; justify-content: space-between;}
footer .up .tc-left .msg .put-box .tc-r{ width: 31.2%; flex-shrink: 0; margin-left: 10px;}
footer .up .tc-left .msg .put-box .tc-l{ flex-grow: 1; min-width: 0;}
footer .up .tc-left .msg .put-box input{ width: 100%;	font-size: 0.233rem;
    color: rgba(49, 53, 54, 0.6); padding: 0.2rem 0.333rem;	border: solid 1px rgba(47, 51, 52, 0.36);}
footer .up .tc-left .msg .put-box .u{ display: flex; align-items: stretch; justify-content: space-between;}
footer .up .tc-left .msg .put-box .u input{ width: 48%;}
footer .up .tc-left .msg .put-box .tc-l>input{  margin-top: 0.233rem;}
footer .up .tc-left .msg .put-box .tc-r textarea{border: solid 1px rgba(47, 51, 52, 0.36); color: rgba(49, 53, 54, 0.6);padding: 0.2rem 0.333rem; resize: none; width: 100%; height: 100%; background: transparent;}
footer .up .tc-left .msg button{ margin-top: 0.233rem;	color: #ffffff; font-size: 0.267rem;	background-color: #00a895; width: 100%; padding: 0.2rem; cursor: pointer;}
footer .up .tc-right{ flex-grow: 1; min-width: 0;}
footer .up .tc-right .d-menu{ display: flex; align-items: flex-start; justify-content: space-between; margin-top: 1.333rem;}
footer .up .tc-right .d-menu .item .title{	font-size: 0.4rem;	color: #353839; padding-bottom: 0.3rem; border-bottom: 0.017rem solid rgba(53, 56, 57, 0.3); width: max-content; width: -moz-max-content; margin-bottom: 0.5rem; line-height: 1; }
footer .up .tc-right .d-menu .item a{font-size: 0.333rem;color: rgba(52, 56, 57, 0.8); }
footer .up .tc-right .d-menu .item p{line-height: 2.4;}
footer .up .tc-right .ewm-box{ display: flex; align-items: flex-start; justify-content: flex-end;}
footer .up .tc-right .ewm-box .item{ max-width: 2.833rem; text-align: center;	font-size: 0.333rem;	color: rgba(47, 51, 52, 0.6); }
footer .up .tc-right .ewm-box .item p{ margin-top: 0.15rem;}

.tc-link .mxw-box{ display: flex; align-items: center; justify-content: flex-start;}
.tc-link .mxw-box .title{	font-size: 0.267rem;	color: rgba(51, 54, 55, 0.4); flex-shrink: 0}
.tc-link .mxw-box .list{ flex-grow: 1; min-width: 0;}
.tc-link .mxw-box .list a{color: rgba(51, 54, 55, 0.4); font-size: 0.267rem;}

.tc-yw{ padding: 1.533rem 0 1.7rem; background: url("../images/yw0-bg.jpg") center no-repeat; background-size:cover;}
.tc-top{ display: flex; align-items: center; justify-content: space-between;}
.tc-top .tc-right{ flex-shrink: 0; margin-left: 2.5rem;}
.tc-top .tc-left{ flex-grow: 1; min-width: 0; padding-left: 0.75rem; border-left: 2px solid rgba(0, 168, 149, 0.4);}
.tc-top .tc-left .cn{	font-size: 0.5rem; font-weight: bold; line-height: 1;}
.tc-top .tc-left .en{ font-size: 0.333rem; font-weight: bold; text-transform: uppercase; margin-top: 0.2rem;line-height: 1;}
.tc-top .tc-left .desc{	font-size: 0.3rem; margin-top: 0.4rem; line-height: 1.8;}
.tc-top .tc-right .tc-more{	background-color: rgba(0, 168, 149, 0.2); padding: 0 0.4rem 0 0; line-height: 1; display: flex; align-items: center;
    border-radius: 0.45rem; color: #00a895;font-size: 0.267rem; transition: all 0.3s; }
.tc-top .tc-right .tc-more img{ height: 0.8rem; margin-right: 0.3rem;}
.tc-top .tc-right .tc-more:hover{ background: #00a895; color: #fff;}

.yw-body{ margin: 1.467rem auto 0; position: relative;}
.yws-swiper{ overflow: hidden; width: 86.9%; margin: 0 auto;}
.yws-swiper .swiper-slide{ width: 31%; position: relative;	border-radius: 0.333rem; overflow: hidden;}
.yw-body .swiper-button-prev{ left: 0;	width: 1.033rem;height: 1.033rem; opacity: 1;}
.yw-body .swiper-button-next{ right: 0;	width: 1.033rem;height: 1.033rem; opacity: 1;}
.yw-body .swiper-button-next::after,.yw-body .swiper-button-prev::after{ display: none;}
.yws-swiper .swiper-slide p{	font-size: 0.4rem; font-weight: bold; bottom: 0.333rem; text-align: center; color: #fff; position: absolute; width: 100%; padding: 0 0.25rem;}

.tc-ys{ padding: 1.333rem 0; background: url("../images/ys-bg.jpg") center no-repeat; background-size: cover;}
.tc-ys .tc-top{ color: #fff;}
.tc-ys .tc-top .tc-left{ border-color: rgba(255, 255, 255, 0.4);}
.tc-ys .tc-top .tc-right a{	background-color: rgba(255, 255, 255, 0.2);	color: #ffffff;transition: all 0.3s}
.tc-ys .tc-top .tc-right a:hover{ background: #038475; color: #fff; transition: all 0.3s}
.ys-body{ margin: 0.66rem auto 0;  padding: 0 1.75rem; display: flex; align-items: stretch; justify-content: space-between;}
.ys-body .tc-right{ width: 33.5%; background: url("../images/ysr-bg.png") center no-repeat; background-size: cover; text-align: center; display: flex; padding: 0.8rem 0.333rem 1.3rem;flex-direction: column; justify-content: center; align-items: center;  flex-shrink: 0;}
.ys-body .tc-left{ margin-right: 1px; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; flex-grow: 1; min-width: 0;}
.ys-body .tc-left .item{ width: calc((100% - 1px)/2); text-align: center; background: url("../images/ys0bg.png") center no-repeat; background-size: cover; padding: 0.6rem 0.333rem 0.8rem; transition: all 0.3s}
.ys-body .tc-left .item .icon img{  height: 1.4rem;}
.ys-body .tc-left .item:nth-child(2)~.item{ margin-top: 1px;}
.ys-body .tc-left .item p{	font-size: 0.417rem; font-weight: bold;	color: #038475; margin-top: 0.5rem;transition: all 0.3s}
.ys-body .tc-right p{	font-size: 0.417rem; font-weight: bold;	color: #038475; margin-top: 0.5rem;}
.ys-body .tc-left .item:hover{ background: url("../images/ys1bg.png") center no-repeat;transition: all 0.3s}
.ys-body .tc-left .item:hover p{ color: #fff;transition: all 0.3s}
.ys-body .tc-left .item:hover .icon{filter:grayscale(100%)brightness(200%)}
.ys-body .tc-right img{ height: 1.4rem;}
.ys-body .tc-right:hover{ background: url("../images/ys2bg.png") center no-repeat;transition: all 0.3s}
.ys-body .tc-right:hover p{ color: #fff;transition: all 0.3s}
.ys-body .tc-right:hover .icon{filter:grayscale(100%)brightness(200%)}

.tc-bj{ padding: 1.967rem 0 2.633rem; background: url("../images/map-bg.jpg") center no-repeat; background-size: cover;}
.tc-bj>.mxw-box{ display: flex; align-items: center; justify-content: space-between;}
.tc-bj>.mxw-box .tc-left{ width: 58.5%; flex-shrink: 0;}
.tc-bj>.mxw-box .tc-right{ flex-grow: 1; min-width: 0; margin-left: 0.5rem;}
.tc-bj>.mxw-box .tc-right .cn{font-size: 0.65rem; font-weight: bold; line-height: 1;}
.tc-bj>.mxw-box .tc-right .en{	font-size: 0.55rem; font-weight: bold; margin-top: 0.267rem;line-height: 1; text-transform: uppercase;}
.tc-bj>.mxw-box .tc-right .desc{ margin-top: 0.5rem;	font-size: 0.267rem; line-height: 1.6; margin-bottom: 0.8rem;}
.tc-bj>.mxw-box .tc-right .tag{}
.tc-bj>.mxw-box .tc-right .tag span{	font-size: 0.3rem; padding: 0.15rem 0.2rem;	background-color: #00a895;
    border-radius: 0.133rem; display: inline-block; color: #fff; margin-bottom: 0.333rem;}
.tc-bj>.mxw-box .tc-right .st{	font-size: 0.5rem; margin: 0.5rem auto 0.4rem;}

.tc-wl .wl-up{ padding-top: 1.967rem; background: url("../images/wl-bg.jpg") center no-repeat; background-size: cover; padding-bottom: 1.833rem;}
.tc-wl .wl-up .mxw-box{ border-left: 2px solid rgba(0, 168, 149, 0.4);
    padding-left: 0.75rem;}
.tc-wl .wl-up .mxw-box .st{	font-size: 0.5rem; font-weight: bold; 	color: #212121; line-height: 1;}
.tc-wl .wl-up .mxw-box .desc{	font-size: 0.267rem;color: #666666; margin-top: 0.367rem; line-height: 1.6}
.tc-wl .list{ display: flex; align-items: stretch;justify-content: space-between;}
.tc-wl .list .item{ width: calc(100% / 3); position: relative;}
.tc-wl .list .item .flx{ position: absolute; z-index: 10; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; flex-direction: column; padding: 0.333rem; bottom: 0; left: 0; color: #fff;}
.tc-wl .list .item .flx .ico img{ max-height: 0.55rem;}
.tc-wl .list .item .flx .desc{ width: 65%; margin: 0.6rem auto 0.667rem;font-size: 0.333rem; line-height: 2; text-align: center;}
.tc-wl .list .item .flx  .w-more{	background-color: rgba(255, 255, 255, 0.2);	color: #ffffff;transition: all 0.3s; padding-right: 0.3rem; border-radius: 0.5rem;}
.tc-wl .list .item .flx  .w-more:hover{ background: #00a895; color: #fff; transition: all 0.3s}
.tc-wl .list .item .flx  .w-more img{ margin-right: 0.3rem;}



header.fixed{ position: fixed; top: 0; width: 100%; background: #fff; z-index: 99;}
 .index-main-swiper {
    height: 100vh;
}
.index-main-swiper>.swiper-wrapper>.swiper-slide {
    height: 100vh;
}

.mxw-banner {
    font-size: 0;
    height: calc(100vh - 1.933rem) !important;
    margin-top: 1.933rem;
}
.mxw-banner .swiper-container{ height: 100%}
.tc-yw{  height: 100vh;  padding-top: 2.6rem; padding-bottom: 0.5rem;    display: flex;
    align-items: flex-end; }
.tc-yw>.mxw-box{ }
.tc-top{ margin-top: auto}
.yw-body{  margin-bottom: 0}
.tc-ys,.tc-bj{height: 100vh;  padding-top: 2.4rem; padding-bottom: 0.6rem}
.tc-wl{   margin-top: 1.933rem; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; height: calc(100vh - 1.933rem) !important;}
.tc-wl .wl-up{ padding-top: 0.9rem; padding-bottom: 1rem; flex-grow: 1; min-width: 0;}
.tc-wl .list{ flex-shrink: 0;}

#foot-slide{ height: auto !important;}

body{ overflow-x: hidden}


.yw-box2{ padding: 1.583rem 0 1.917rem;}
.yw-box2 .content{ margin-top: 1rem;}
.yw-box2 .content img{ max-width: 100%; height: auto !important;}


.mxw-copy{ margin-top: 0.25rem;}
.mxw-copy .mxw-box{ padding: 0.2rem 0; 	font-size: 0.233rem; 	color: rgba(51, 54, 55, 0.6); text-align: center; border-top: 1px solid rgba(47, 51, 52, 0.2); }
.mxw-copy .mxw-box .tc-left{ text-align: left}
.mxw-copy .mxw-box .tc-right{ text-align: right}
.mxw-copy .mxw-box a{font-size: 0.233rem; 	color: rgba(51, 54, 55, 0.6);}
.mxw-copy .mxw-box a:hover{font-size: 0.233rem; 	color: rgba(51, 54, 55, 0.6);}

.bott{ position: absolute; z-index: 98; bottom: 30px; display: flex; align-items: center; justify-content: flex-start; left: 0; right: 0;}
.bott>.swiper-button-next,.bott>.swiper-button-prev{ position: initial; margin-top: initial; width: initial;height: initial;}
.bott>.swiper-button-next::after,.bott>.swiper-button-prev::after{ font-size: 16px; color: #fff;}
.mxw-banner .bott .center{ font-size: 0.333rem; height: 0.4rem; line-height: 1; margin: 0 0.4rem;}
.mxw-banner .bott .center span{ width: 0.5rem; color: #fff; margin: 0 0.1rem}
.mxw-banner .bott .center span.active{ color: #01f3d8; font-size: 0.4rem;}

.mxw-banner .swiper-pagination{ left: 38%; width: 5rem; background: url("../images/bnb.png") left center no-repeat; height: 100%; top: 0; z-index: 97; flex-direction: column; background-size: 100%;}
.mxw-banner .swiper-pagination .swiper-pagination-bullet{ display: block; width: 40px; height: 40px; background: none; margin-bottom: 1rem !important;}

.mxw-banner .swiper-pagination div{
    width: 40px;
    height: 40px;
    margin: 0.2rem 0 !important;
    position: relative;
    background-color: transparent;
    opacity: 1;
}
.mxw-banner .swiper-pagination div::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, .2);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s;
}
.mxw-banner .swiper-pagination div::after{

    content: '';

    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 1);
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -5px;
    margin-left: -5px;
    transition: background-color 0.5s cubic-bezier(0.25, 0.74, 0.22, 1) 0s;
}

.mxw-banner .swiper-pagination div svg {
    display: block;
    width: 100%;
}

.mxw-banner .swiper-pagination div svg circle {
    stroke: rgba(255, 255, 255, 1);
    stroke-width: 2px;
    fill: transparent;
    r: 48;
    cx: 51;
    cy: 51;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet-active::before {
    opacity: 1;

}


.mxw-banner .swiper-pagination .swiper-pagination-bullet-active circle {
    transition: stroke-dashoffset ease 5s;
    stroke-dashoffset: 0;
}

.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{  background: transparent;}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:nth-child(1){ margin-left: 4.3rem !important;}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:nth-child(2){ margin-left: 5.3rem !important;}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:nth-child(3){ margin-left: 5.6rem !important;}



.yw-item{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 1rem;}
.yw-item .tc-right{ width: 40%; flex-shrink: 0;	background-color: #ffffff;
    box-shadow: 0px 4px 27px 0px
    rgba(0, 0, 0, 0.13);}
.yw-item .tc-left{background-color: #009d8d; color: #fff;display: flex; align-items: flex-start; justify-content: center; flex-direction: column;padding: 0.333rem 0.75rem 0.333rem 0.667rem; flex-grow: 1; min-width: 0; line-height: 2}
.yw-item .tc-left .cn{ 	font-size: 0.5rem;}
.yw-item .tc-left .en{	font-size: 0.233rem; margin-top: 0.1rem;}
.yw-item .tc-left .desc{ font-size: 0.3rem; margin-top: 0.467rem; line-height: 1.8}

.se-box{ position: relative; margin-top: 0.75rem;}
.se-box .swiper-button-prev{ left: -1rem;}
.se-box .swiper-button-next{ right: -1rem;}
.se-swiper{ overflow: hidden;}

.tc-news{   margin-top: 1.933rem; height: calc(100vh - 1.933rem) !important;}
.tc-news .tc-top{ padding-top: 0.3rem;}
.tc-ntop{ margin: 0.583rem auto 0; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eaeaea; }
.tc-ntop .news-cate{ display: flex; align-items: center; justify-content: flex-start; margin-bottom: -1px;}
.tc-ntop .news-cate .item{font-size: 0.3rem; margin-right: 0.667rem; padding: 0 0.333rem;}
.tc-ntop .news-cate .item{ padding-bottom: 0.417rem; border-bottom: 2px solid transparent;}
.tc-ntop .news-cate .item.active{ color: #009d8d; border-color: #009d8d}
.tc-ntop .n-more{ margin-bottom: 0.4rem; color: #009d8d}
.news-swiper{ margin: 0.7rem auto 0; overflow: hidden; padding: 0.15rem 0.15rem 0.15rem 0}
.news-swiper .swiper-slide{ display: flex; align-items: stretch; justify-content: space-between;}
.news-swiper .swiper-slide .tc-left{ flex-grow: 1; min-width: 0;}
.news-swiper .swiper-slide .tc-right{background-color: #ffffff;
    box-shadow: 0rem 0rem 0.133rem 0rem rgba(0, 0, 0, 0.15); padding: 0.5rem 0.667rem 0.4rem; width: 38%; margin-left: 1.583rem; flex-shrink: 0;}
.news-swiper .swiper-slide .tc-left .item{ display: flex; align-items: center; justify-content: flex-start;}
.news-swiper .swiper-slide .tc-left .item .mxw-image{ width: 21.5%; flex-shrink: 0; margin-right: 0.5rem;}
.news-swiper .swiper-slide .tc-left .item .con{ flex-grow: 1; min-width: 0;}
.news-swiper .swiper-slide .tc-left .item .con .st{	font-size: 0.333rem; color: #333;}
.news-swiper .swiper-slide .tc-left .item .con .desc{ font-size: 0.233rem; color: #666; margin: 0.3rem auto 0.267rem; line-height: 1.6 }
.news-swiper .swiper-slide .tc-left .item .con .dat{ display: flex; align-items: center; justify-content: space-between;	font-size: 0.267rem; color: #555;}
.news-swiper .swiper-slide .tc-left .item .con .dat .mo{ font-size: 0.233rem;}
.news-swiper .swiper-slide .tc-left .item:nth-child(1)~.item{ margin-top: 0.5rem;}
.news-swiper .swiper-slide .tc-left .item:hover .st{ color: #009d8d;}
.news-swiper .swiper-slide .tc-right .st{	font-size: 0.333rem;}
.news-swiper .swiper-slide .tc-right .st::after{width: 114px;
    height: 2px;
    background-color: #022842; margin: 0.1rem auto 0.267rem 0;}
.news-swiper .swiper-slide .tc-right .desc{	font-size: 0.267rem; line-height: 2; color: #555; margin: 0.25rem auto 0.333rem;}
.news-swiper .swiper-slide .tc-right .dat{ display: flex; align-items: center; justify-content: space-between;	font-size: 0.267rem; color: #555;padding-top: 0.3rem;border-top: 1px solid rgba(85, 85, 85, 0.4);  margin-top: 0.3rem;}
.news-swiper .swiper-slide .tc-right .dat .mo{ font-size: 0.233rem;  padding-top: 0.2rem }





.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 ;}



/* ==================== 内页 - 新闻列表2 start ==================== */
.ny-news .item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    transition: all 0.4s;
    border: 0.0167rem solid #dedede;
    box-shadow: 0rem 0rem 0rem 0rem rgba(0, 0, 0, 0.14);
    margin-bottom: 0.6667rem;
}
.ny-news .item:hover {
    box-shadow: 0rem 0rem 0.1667rem 0rem rgba(0, 0, 0, 0.14);
}
.ny-news .item:hover .title {
    color: #0065fe;
}
.ny-news .item .image {
    flex-shrink: 0;
    width: 4.6667rem;
    margin-right: 0.5rem;
}
.ny-news .item .info {
    min-width: 0;
    flex-grow: 1;
}
.ny-news .item .head {
    display: flex;
    align-items: center;
    color: #888;
    padding-bottom: 0.1667rem;
    border-bottom: 0.0167rem solid #888;
    margin-bottom: 0.3333rem;
}
.ny-news .item .title {
    flex-grow: 1;
    font-size: 0.3rem;
    line-height: 1.2;
    color:#333
}
.ny-news .item .time {
    font-size: 0.233rem;
    line-height: 1.2;
    flex-shrink: 0;
    color: #666;
    margin-bottom: 0.15rem;
}
.ny-news .item .desc {
    font-size: 0.2667rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.ny-news .item .more {
    width: 2.0833rem;
    height: 0.6rem;
    line-height: 0.6rem;
    background-color: #fff;
    border: solid 0.0167rem #dedede;
    display: block;
    text-align: center;
    font-size: 0.2rem;
    color: #888888;
}
@media screen and (max-width: 1200px) {
    .ny-news .item {
        padding: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .ny-news .item .image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .ny-news .item .info {
        width: 100%;
    }
    .ny-news .item .head {
        margin-bottom: 10px;
    }
    .ny-news .item .title {
        font-size: 16px;
    }
    .ny-news .item .time {
        font-size: 12px;
    }
    .ny-news .item .desc {
        font-size: 12px;
        line-height: 1.8em;
        height: 3.6em;
        margin-bottom: 10px;
        overflow: hidden;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: inherit;
    }
    .ny-news .item .more {
        width: 100%;
        padding: 8px 20px;
        font-size: 12px;
        height: auto;
        line-height: inherit;
    }
}
/* ==================== 内页 - 新闻列表2 end ==================== */


@media screen and (max-width: 1920px) and (max-height: 1200px){
    .tc-yw{ align-items: center;}
    .tc-ys, .tc-bj{ display: flex; align-items: center;}
    .tc-bj>.mxw-box .tc-right .st{ font-size: 0.45rem}
    .tc-wl .wl-up,.tc-news{ display: flex; align-items: center;}
}


@media screen and (max-width: 1600px) {

    .mxw-banner .swiper-pagination .swiper-pagination-bullet:nth-child(2){ margin-left: 5.4rem !important;}
    .mxw-banner .swiper-pagination .swiper-pagination-bullet:nth-child(3){ margin-left: 5.7rem !important;}


}
@media screen and (max-width: 1770px) {
    .yw0-box .mxw-box .tc-left{ width: 37.25%;}
    .yw-cate .swiper-slide,.yw-swiper .swiper-slide .desc{ font-size: 0.3rem}
    .ab3-swiper .swiper-slide .st1{ zoom: 0.95}
    .ab3-swiper .swiper-slide .st2{ margin-top: 1.2rem}
    footer .up{ zoom: 0.95}
}
@media screen and (max-width: 1680px) {
    .yw-swiper .swiper-slide{ min-height: 4rem; max-height: 4.2rem}
    .yw0-box .mxw-box .tc-left{ width: 35.25%;}
    .yw0-box .mxw-box .tc-right{padding: 0.617rem 0.4rem 0.467rem 0.483rem;}
    .yw-swiper .swiper-slide .st img{ height: 0.7rem}
    .yw-swiper .swiper-slide .desc{ margin-top: 0.5rem}
    .ab2-swiper .swiper-slide .desc{ font-size: 0.3rem}
    .ab3-swiper .swiper-slide .st3{ font-size: 0.3rem}
    .ab3-swiper .swiper-slide .st1{ zoom: 0.9}
    .ab3-swiper .swiper-slide .st2{margin-top: 1rem}
    footer .up .tc-left .d-c1 .tc1{ width: 37%; margin-right: 1.2rem}
    .top-box .right{ padding-left: 2rem;}
    .mxw-banner {
        font-size: 0;
        height: 100vh !important;
        margin-top: 0;
    }
    .tc-yw{ align-items: center;}
    .tc-ys, .tc-bj{ display: flex; align-items: center;}
    .tc-bj>.mxw-box .tc-right .st{ font-size: 0.45rem}
    .tc-wl .wl-up,.tc-news{ display: flex; align-items: center;}
}




@media screen and (max-width: 1680px) and (max-height: 850px) {
    header.fixed{ zoom: 0.9}
    .tc-yw>.mxw-box,.tc-bj>.mxw-box{ zoom: 0.9}
    .tc-top{ zoom: 0.9}
    .top-box .logo-box{ margin: 0.2rem auto 0.2rem 0; padding: 0}
    .yw-body{ margin-top: 1rem}
    .ys-body{ padding: 0 2.2rem; zoom: 0.9}
    .ys-body .tc-left .item p{ font-size: 0.33rem}
    .ys-body .tc-right .item p{ font-size: 0.33rem}
    .tc-news>.mxw-box{ zoom: 0.9}
    .news-swiper .swiper-slide .tc-left .item .mxw-image{ width: 18.5%;}
    footer{ zoom: 0.9}


}
@media screen and (max-width: 1600px) and (min-height: 900px) {
    header.fixed{ zoom: 1;}    .tc-yw{ align-items: center;}
    .tc-ys, .tc-bj{display: flex; align-items: center}
    .tc-wl .wl-up{ display: flex; align-items: center}
    .tc-news{ display: flex; align-items: center;}
}

@media screen and (max-width: 1400px) and (max-height: 800px) {
    .top-box{ width: 95%; max-width: 95%;}
    .tc-wl .list .item .flx .w-more img{ height: 40px}
    .tc-wl .list{   height: 5.5rem;}
    .tc-wl .list .item .flx .desc{ font-size: 14px; width: 85%; line-height: 1.6;margin: 0.4rem auto 0.5rem;}
    .tc-wl .list .item .flx .ico img{ height: 0.5rem;}
    .tc-wl .wl-up{ padding-top: 0.7rem; padding-bottom: 0.85rem}
}


/* ==================== 页面具体样式 end ==================== */

/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 0 0 1.067rem;

}
.ny-news-desc > .mxw-box {
    padding-top: 60px;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;

}
.ny-news-desc .article p {
    line-height: 1.8;
}
.ny-news-desc .article a{ text-decoration: none}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 45px 0;
    }
    .ny-news-desc .article {

    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 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 ==================== */
.pg{ margin-top: 40px; font-size: 14px; line-height: 1.8}
.tc-news .tc-title{ display: none}
.x-menu>li.xd{ }
.x-menu>li.xd:hover .xdb{ display: block;}
.x-menu>li.xd .xdb{ display: none; position: absolute; top: 100%; right: 0; max-width: 180px;}

@media screen and (max-width: 768px) {
    *{ zoom: 1 !important; }

    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}

    .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;}
    .tc-yw{ height: auto; padding: 45px 0;}
    .tc-top{ flex-wrap: wrap;}
    .tc-top .tc-left{ padding-left: 20px;}
    .tc-top .tc-left .cn{ font-size: 22px;}
    .tc-top .tc-left .en{font-size: 16px; margin-top: 6px;}
    .tc-top .tc-left .desc{ font-size: 14px; margin-top: 15px;}
    .tc-top .tc-right{ margin-left: 0; margin-top: 10px;}
    .tc-top .tc-right .tc-more{ margin: 0 auto 0 0; font-size: 14px; padding: 0 15px 0 0;}
    .tc-top .tc-right .tc-more img{ height: 35px; margin-right: 14px;}
    .yw-body{ margin-top: 25px;}
    .yw-body .swiper-button-prev{ width: 35px; height: 35px;}
    .yw-body .swiper-button-next{width: 35px; height: 35px;}
    .yws-swiper .swiper-slide p{ font-size: 16px;}

    .tc-ys{ padding: 45px 0; height: auto;}
    .ys-body{ padding: 0; flex-wrap: wrap;}
    .ys-body .tc-left .item .icon img,.ys-body .tc-right img{ height: 40px;}
    .ys-body .tc-left .item{ padding: 25px 15px;}
    .ys-body .tc-left .item p,.ys-body .tc-right p{font-size: 16px; margin-top: 10px;}
    .ys-body .tc-right{ width: 100%; padding: 30px 15px; margin-top: 1px;}

    .tc-bj{ padding: 45px 0; height: auto;}
    .tc-bj>.mxw-box{ flex-wrap: wrap;}
    .tc-bj>.mxw-box .tc-left{ width: 100%;}
    .tc-bj>.mxw-box .tc-right{ margin-top: 25px;}
    .tc-bj>.mxw-box .tc-right .cn{ font-size: 22px;}
    .tc-bj>.mxw-box .tc-right .en{ font-size: 16px; margin-top: 10px;}
    .tc-bj>.mxw-box .tc-right .desc{ font-size: 14px; margin: 10px auto 15px;}
    .tc-bj>.mxw-box .tc-right .tag span{ font-size: 14px; padding: 6px 12px; margin-bottom: 12px;}
    .tc-bj>.mxw-box .tc-right .st{ margin: 5px auto 15px; font-size: 18px;}


    .tc-wl{ margin-top: 0; height: auto !important;}
    .tc-wl .wl-up{ padding: 45px 0 35px;}
    .tc-wl .wl-up .mxw-box{ padding-left: 20px;}
    .tc-wl .wl-up .mxw-box .st{font-size: 20px;}
    .tc-wl .wl-up .mxw-box .desc{ font-size: 14px; margin-top: 10px;}


    .tc-wl .list{ flex-wrap: wrap;}
    .tc-wl .list .item{ width: 100%;}
    .tc-wl .list .item .flx .ico img{ max-height: 20px; }
    .tc-wl .list .item .flx .desc{ margin: 15px auto 20px; font-size: 14px; width: 100%;}
    .tc-wl .list .item .flx .w-more img{ height: 35px;margin-right: 12px;}
    .tc-wl .list .item .flx .w-more{ font-size: 14px; padding-right: 18px;}

    footer .up{ flex-wrap: wrap;}
    footer .up .tc-left{ width: 100%; margin-right: 0}
    footer{ padding-top: 45px;}
    footer .up .tc-right .d-menu{ display: none;}
    footer .up .tc-left .d-c1 .tc1 .icon{ width: 35px;}
    footer .up .tc-left .d-c1 .tc1 .txt .num{ font-size: 24px;}
    footer .up .tc-left .d-c1 .tc1{ padding-bottom: 5px;}
    footer .up .tc-left .d-c1 .tc2{ font-size: 14px; margin-top: 10px;}
    footer .up .tc-left .msg{ margin-top: 20px;}
    footer .up .tc-left .msg .put-box{ flex-wrap: wrap;}
    footer .up .tc-left .msg .put-box input{ padding: 8px 10px; font-size: 14px;}
    footer .up .tc-left .msg .put-box .tc-r{ margin-left: 0; width: 100%;}
    footer .up .tc-left .msg .put-box .tc-l>input{ margin-top: 12px;}
    footer .up .tc-left .msg .put-box .tc-r{ margin-top: 12px;}
    footer .up .tc-left .msg button{ font-size: 16px; padding: 10px;}
    footer .up .tc-right .ewm-box{ width: 100%; margin-top: 20px; justify-content: flex-start;}
    footer .up .tc-right .ewm-box .item p{ font-size: 14px; margin-top: 5px;}
    .tc-link{ display: none;}
    body{ margin-bottom: 0}
    .ab-box{ padding: 45px 0;}

    footer .up .tc-left .d-logo img{ height: 85px;}
    footer .up .tc-left .d-c1{ margin-top: 30px; flex-wrap: wrap;}
    footer .up .tc-left .d-c1 .tc1{ margin-right: 0; width: 100%;}
    footer .up .tc-left .d-c1 .tc1 .txt .st{ font-size: 14px; margin-bottom: 10px}

    .ab-box>.mxw-box{ padding: 0}
    .ab-box .st{ font-size: 20px;}
    .ab-box .st img{ height: 22px; margin-right: 10px;}
    .ab-box .desc{ margin: 15px auto 0; font-size: 14px;}
    .ab-box2{ padding: 45px 0;}
    .tc2-title .cn{ font-size: 22px;}
    .tc2-title .en{font-size: 12px; margin-top: 5px;}
    .ab2-body{ margin: 30px auto 0;}

    .ab2-swiper .swiper-slide .img img{ width: 50%;}
    .ab2-swiper .swiper-slide .date{ margin: 10px auto 15px; font-size: 16px;}
    .ab2-swiper .swiper-slide .st{font-size: 18px;}
    .ab2-swiper .swiper-slide .desc{ font-size: 14px; margin: 10px auto 0; max-width: initial; width: 95%;}

    .ab-box3{ padding: 45px 0;}
    .ab3-body{ margin: 25px auto 0; flex-wrap: wrap;}
    .ab3-body .tc-left{ width: 100%; padding: 0; flex-wrap: wrap;}
    .ab3-swiper{ width: 100%; order: 1; padding: 0; margin-top: 15px;}
    .ab3-body .tc-left .ab3-cate{ display: flex; align-items: center; justify-content: flex-start;}
    .ab3-body .tc-left .ab3-cate .item{ margin: 0 15px 0 0; font-size: 18px;}
    .ab3-swiper .swiper-slide .st1{ font-size: 22px; line-height: 1;}
    .ab3-swiper .swiper-slide .st1 img{ height: 40px;margin-right: 15px; margin-top: 0;}
    .ab3-swiper .swiper-slide .st2{ font-size: 18px; margin: 15px auto 0 0; padding-bottom: 5px}
    .ab3-swiper .swiper-slide .st3{ margin-top: 10px; font-size: 14px; line-height: 1.8; margin-bottom: 25px;}
    .ct .swiper-button-prev, .ct .swiper-button-next{ width: 30px; height: 30px;}
    .ab3-body .tc-right{ margin-top: 25px; width: 100%;}
    .ab-box4{ padding: 45px 0;}

    .ab4-body{ margin: 25px auto 0; flex-wrap: wrap;}
    .ab4-body .item{ width: 100%; margin-bottom: 20px; padding: 30px 20px;}
    .ab4-body .item .icon img{ height: 40px;}
    .ab4-body .item .st{ font-size: 18px; margin: 10px auto 15px;}
    .ab4-body .item .desc{ font-size: 14px;}
    .ab4-body .item:last-child{ margin-bottom: 0}


    .n-cate{ padding: 20px 0;}
    .n-cate .mxw-box{ flex-wrap: wrap; justify-content: space-between;}
    .n-cate .mxw-box .item{ padding: 8px 10px; text-align: center; font-size: 16px; width: 48.5%;  margin: initial;}
    .n-cate .mxw-box .item:nth-child(2n)~.item{ margin-top: 10px;}
    .yw0-box{ padding: 45px 0;}
    .yw0-box .mxw-box { flex-wrap: wrap;}
    .yw0-box .mxw-box .tc-left{ width: 100%; border-radius: 15px 15px 0   0 ;}
    .yw0-box .mxw-box .tc-right{ padding: 20px; border-radius: 0;}
    .yw-cate{ padding: 0 30px; display: flex; align-items: center;}
    .yw-cate .swiper-button-prev{ left: 0; }
    .yw-cate .swiper-button-next{ right: 0; }
    .yw-cate .swiper-slide{ padding: 6px; font-size: 15px;}
    .yw-swiper{ margin-top: 25px;}
    .yw-swiper .swiper-slide .st{ font-size: 18px; margin-right: 0; padding-bottom: 6px;}
    .yw-swiper .swiper-slide .st img{ height: 35px; margin-right: 10px;}
    .yw-swiper .swiper-slide .desc{ margin-top: 10px; font-size: 14px;}
    .sl-box1{ padding: 45px 0;}
    .sl-box1 .tc-title .cn{ font-size: 22px;}
    .sl-box1 .tc-title .en{ font-size: 12px;margin-top: 6px;}
    .sl-cate{ margin: 25px auto 0; flex-wrap: wrap;}
    .sl-cate .item{ width: 48.5%;}
    .sl-cate .item p{ font-size: 14px; margin-top: 10px;}
    .sl-cate .item:nth-child(2n)~.item{ margin-top: 25px;}
    .sl-swiper{ margin-top: 25px;}
    .sl-swiper .swiper-slide{ font-size: 14px; line-height: 1.8}
    .f2-box>.mxw-box{ padding: 0;}
    .f2-box .item{ flex-wrap: wrap;}
    .f2-box .item .tc-right{ width: 100%; order: 1;}
    .f2-box .item .tc-left{ padding: 30px 20px; order: 0;}
    .f2-box .item .tc-left .cn{font-size: 16px;}
    .f2-box .item .tc-left .en{ font-size: 12px; margin-top: 5px;}
    .f2-box .item .tc-left .desc{ font-size: 14px; line-height: 1.8; margin-top: 12px;}
    .f2-box .item:nth-child(2n) .tc-left{ order: 2;}
    .f2-box .item .tc-left{ order: 2;}
    .f2-box{ padding-bottom: 45px;}

    .cnt-top{ padding: 0 0 45px}
    .cnt-top .desc{ font-size: 15px; line-height: 1.5}
    .cnt-body{ margin: 20px auto 0; flex-wrap: wrap}
    .cnt-body .tc-left{ width: 100%; height: 320px;}
    .cnt-body .tc-left #map{ height: 100% !important;}
    .cnt-body .tc-right{ padding: 20px 0 0 0 }
    .cnt-body .tc-right .title{ font-size: 20px;}
    .cnt-body .tc-right .title::after{ margin: 10px auto 15px 0; height: 2px;}
    .cnt-body .tc-right .desc{ font-size: 14px;}
    .cnt-list{ margin: 25px auto; flex-wrap: wrap; justify-content: flex-start;}
    .cnt-list .item{ width: 32%; margin-right: 2%;}
    .cnt-list .item:nth-child(3n){ margin-right: 0;}
    .cnt-list .item p{ font-size: 14px; margin-top: 5px;}
    .cnt-list .item:nth-child(3)~.item{ margin-top: 15px;}
    .cnt-msg .title{ font-size: 22px;}
    .cnt-msg form{ margin: 25px auto 0;}
    .cnt-msg form .up{ flex-wrap: wrap;}
    .cnt-msg form .up .up1{ width: 100%;}
    .cnt-msg form .up .up1 input{ width: 100%; font-size: 14px; padding: 8px 10px;}
    .cnt-msg form .up .up1:nth-child(1)~.up1{ margin-top: 10px;}
    .cnt-msg form textarea{ margin-top: 10px; padding: 6px 10px; font-size: 14px;}
    .cnt-msg{ padding-bottom: 45px}
    .cnt-msg button{ font-size: 16px; margin: 20px auto 0; padding: 10px 35px; width: initial; height: initial}
    .ny-contact>.mxw-box{ margin: 45px auto 0}
    .yw-box2{ padding: 45px 0 50px;}
    .yw-box2 .content{ margin-top: 25px;}
    .yw-item{ flex-wrap: wrap}
    .yw-item .tc-right{ width: 100%}
    .yw-item .tc-left{ padding: 30px 20px; font-size: 14px;}

    .tc-news{ padding: 45px 0; height: auto !important; margin-top: 0}
    .tc-news .tc-title{ display: block; font-size: 22px; text-align: center;}

    .tc-ntop{ margin: 20px auto 0; flex-wrap: wrap; display: none}
    .tc-ntop .news-cate .item{ font-size: 15px;
        padding: 0 0 5px;
        margin: 0 15px 0 0;
    }
    .tc-ntop .n-more{ font-size: 12px; margin-bottom: 0; display: none}
    .news-swiper{ margin: 10px auto 0;}
    .news-swiper .swiper-slide{ flex-wrap: wrap;}
    .news-swiper .swiper-slide .tc-left .item{ flex-wrap: wrap;}
    .news-swiper .swiper-slide .tc-left .item .mxw-image{ width: 100%; margin-right: 0; margin-bottom: 10px}
    .news-swiper .swiper-slide .tc-left .item .con .st{ font-size: 16px;}
    .news-swiper .swiper-slide .tc-left .item .con .desc{ font-size: 12px; margin: 5px auto 15px; height: 38px;}
    .news-swiper .swiper-slide .tc-left .item .con .dat{ font-size: 12px;}
    .news-swiper .swiper-slide .tc-left .item:nth-child(1)~.item{ margin-top: 25px;}
    .news-swiper .swiper-slide .tc-right{margin:20px auto 0; width: 100%; padding: 20px; }
    .news-swiper .swiper-slide .tc-right .st{font-size: 16px;}
    .news-swiper .swiper-slide .tc-right .desc{ font-size: 14px; margin: 5px auto 10px; line-height: 1.6}
    .news-swiper .swiper-slide .tc-right .dat{ font-size: 12px; margin: 10px auto 0; padding-top: 10px;}
    .tc-wl .list{ height: auto;}
    .tc-bj>.mxw-box .tc-right{ margin-left: 0}
}












