@charset "UTF-8";
@-webkit-keyframes mapmove {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }

  50% {
    opacity: 1;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@-webkit-keyframes mapsan {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}
html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination   a,.mxw-pagination   span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;

    margin: 4px;
}
.mxw-pagination   a.active,
.mxw-pagination   a:hover {
    background-color: #032a75;
    color: #fff !important;
}
.mxw-pagination > a:first-child {
    margin-left: 0;
}
.mxw-pagination > a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .mxw-pagination {
        margin-top: 30px;
    }
    .mxw-pagination   a {
        font-size: 12px;
        margin: 2px;
        padding: 8px 10px;
    }
}
/* ==================== 分页样式 end ==================== */

/* ==================== 通用标签页 start ==================== */
/* 标签页 */
.mxw-tabs {
    padding-left: 0;
    padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.mxw-tabs .mxw-tabs-wrap {
    position: relative;
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
    align-items: center;
    justify-content: flex-start;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
    display: none;
}
.mxw-tabs .mxw-tabs-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    font-size: 0.3rem;
    white-space: nowrap;
    background: #eaeaea;
    color: #333;
    padding: 0rem 0.5rem;
    margin-right: 0.9rem;
    line-height: 0.6667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #032a75;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    max-width: 21.333rem;
}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #00a2ea;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #00a2ea;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    outline: none;
    border-width: 0;
    cursor: pointer;
    background: #00a2ea;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;

}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;
    margin-left: 12px;
}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 60px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1680px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 1;
    margin-left: 9px;
    margin-right: 9px;
    border: 1px solid #fff;
    outline: none;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #00a2ea;
    border-color: #00a2ea;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 1.383rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: none;
    outline: none;

}
.mxw-banner .swiper-button-next::after,
.mxw-banner .swiper-button-prev::after {
    font-size: 0.667rem;
    color: #00a2ea;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}
@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */

.mxw-box {

    margin: 0 auto;
    font-size: 0.267rem;
    color: #333;
    width: 86%;
    max-width:26.667rem;
    min-width: 20rem;
}

/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-box {
        max-width: 86%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1400px;
        padding-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:#00a2ea;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;/*margin-bottom:50px;*/}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 240%;
        width:240%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 18px;}

header .pc-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
header .pc-menu > li {

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-shrink: 0;
    margin: 0 1%;
}
header .pc-menu > li:last-child {
    margin-right: 0;
}
header .pc-menu > li:hover > a{
    color: #acce22;
}
header .pc-menu > li > a::after {
    content: "";
    display: block;
    width: 120%;
    margin-top: 5px;
    height: 2px;
    margin-left: -10%;
}
header .pc-menu > li.active > a::after {
    background: #acce22;
}
header .pc-menu > li:hover .icon,
header .pc-menu > li.active .icon {
    transform: translate(0, -50%);
    opacity: 1;
    visibility: visible;
}
header .pc-menu > li:hover .pc-sub-menu {
    opacity: 1;
    visibility: visible;
}
header .pc-menu > li:hover .pc-sub-menu .pc-nav-box {
    transform: perspective(1200px) rotateX(0deg);
    -webkit-transform: perspective(1200px) rotateX(0deg);
    -moz-transform: perspective(1200px) rotateX(0deg);
    -ms-transform: perspective(1200px) rotateX(0deg);
    -o-transform: perspective(1200px) rotateX(0deg);
}
header .pc-menu > li:hover .pc-sub-menu .pc-nav-box:before {
    width: 100%;
    visibility: visible;
}
header .pc-menu > li .icon {

}
header .pc-menu > li > a {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    display: block;
    width: 100%;

    align-items: center;
    justify-content: center;
    z-index: 9;
    transition: color 0.4s;
    text-align: center;
    height: 100%;

    padding-top: 60px;
    padding-bottom: 40px;
}
header .pc-menu > li .pc-sub-menu {
    width: 200px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    padding-top: 0px;
    color: #333;
}
header .pc-menu > li .pc-nav-box {
    border: 1px solid #ddd;
    position: relative;
    background: #fff;
    -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(1200px) rotateX(-90deg);
    transform: perspective(1200px) rotateX(-90deg);
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
header .pc-menu > li .pc-nav-box::before {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    visibility: hidden;
    left: 0;
    top: 0;
    position: absolute;
    transition: all 0.4s;
}
header .pc-menu > li .pc-nav-box > li:hover {
    background: rgba(0, 0, 0, 0.05);
}
header .pc-menu > li .pc-nav-box > li > a {
    display: block;
    text-align: center;
    font-size: 13px;
    height: 46px;
    line-height: 46px;
}
@media screen and (max-width: 1550px) {
    header .pc-nav {
        padding-left: 30px;
    }
    header .pc-nav .logo {
        width: 320px;
    }
    header .right {
        width: 73%;
    }
    header .pc-menu > li > a {
        font-size: 15px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    header .pc-menu {


    }
    header .search {
        margin-left: 20px;
    }
}
@media screen and (max-width: 1280px) {
    header .pc-nav .logo {
        width: 300px;
    }
}



header{ position: fixed; width: 100%; top:0; z-index: 99; background: rgba(0,0,0,.5)}
header .right{ flex-shrink: 0; width: max-content; flex-grow: 1; min-width: 0; margin-left: 2.2rem}
.top-box{ width: 88.55%; max-width: 1700px; display: flex; align-items: stretch; justify-content: space-between; font-size: 16px}
.logo-box{ display: flex; align-items: center;}
.logo-box img{ max-height: 1.5rem}

.mxw-about{ padding: 55px 0 0; background: url("../images/about-bg.jpg") right bottom no-repeat; background-size: 100%;}
.mxw-title{ text-align: center;}
.mxw-title .cn{ font-size: 0.567rem; display: flex; align-items: center; justify-content: center}
.mxw-title .en{ font-size: 0.267rem; color: #999999; text-transform: uppercase}
.mxw-title .cn::after,.mxw-title .cn::before{ display: block; margin: 0 0.333rem; content: ""; width: 1rem; height: 1px; background: #acce22}


.mxw-box2{width: 88.55%; max-width: 1700px;  margin: 0 auto}
.mxw-about .about-body{ font-size: 0.333rem; color: #666; line-height: 2.4; margin-top: 0.75rem; text-indent: 2em;  }
.mxw-about .about-body a{ color: #acce22;}

.mxw-about .us-box{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 1rem}
.mxw-about .us-box .item{ width: 25%; display: flex; align-items: center; justify-content: center; background: #8aac00; padding: 0.667rem 0.25rem 0.583rem 0.4rem; color: #fff; font-size: 0.3rem;}
.mxw-about .us-box .item:nth-child(even){ background: #a7d000}
.mxw-about .us-box .item p{ font-size: 0.333rem; margin-bottom: 0.1rem;}
.mxw-about .us-box .item .icon{ margin-right: 0.25rem; max-width: 0.833rem}



.mxw-four{ padding-top: 1.5rem;}
.four-body{ margin-top: 0.917rem; background: url("../images/four-img.jpg") center no-repeat; background-size: cover;}
.four-body>img{}
.four-body .left-box{ width: 55%; background: rgba(0,0,0,.3);padding: 1.3rem 0 0.583rem;position: relative;}
.four-body .right-box{ width: 45%; }
.four-body .four-con{ display: flex; align-items: stretch; justify-content: space-between;}
.four-body .left-box .item{ display: flex; align-items: center; justify-content: flex-start; padding: 0.5rem 0.667rem 0.5rem 0; margin-bottom: 0.667rem; color: #fff; font-size: 0.3rem; line-height: 1.8; cursor: pointer;transition: all 0.4s;}
.four-body .left-box .item .text{ margin: 0 2.5rem 0 1.667rem;width: 4rem;}
.four-body .left-box .item:hover{ background: rgba(172,205,34,0.7) }
.four-body .left-box .item::after{ content: "+"; font-size: 1rem; color: #fff; display: block; line-height: 1; font-weight: lighter;    visibility: hidden;}
.four-body .left-box .item>div:first-child{ display: flex; align-items: center; justify-content: flex-end; flex-grow: 1; min-width: 0}
.four-body .left-box .item:hover:after{ visibility: visible; }
.four-body .left-box .con{margin: 2rem auto auto 2rem;background: rgba(0,0,0,.5); color: #fff; padding: 0.5rem; min-height: 4.667rem;  max-width: 6.417rem;position: absolute;    right: -11.7667rem;    opacity: 0;    visibility: hidden;transition: all 0.4s ease-in-out;top: 0;}
.four-body .left-box .item .icon{width: 0.917rem;}

.four-body .left-box .item:hover .con,.four-body .left-box .item.active .con{    opacity: 1;
    visibility: visible;
   right: -8.7667rem; 
   }

.four-body .left-box .con .tt{ font-size: 0.4rem; padding-bottom: 0.25rem; border-bottom: 1px solid #fff}
.four-body .left-box .con .tt p{ font-size: 14px;}
.four-body .left-box .con .desc { font-size: 0.267rem; line-height: 1.8; margin-top: 5px}



.xn-body{ background: url("/skin/images/xn-bg.jpg") center no-repeat; background-size: cover; margin-top: 0.75rem; padding: 1.333rem 0;}
.xn-body .xn-body-con{ display: flex; align-items: stretch; justify-content: center;}
.mxw-xn{ padding-top: 55px;}
.xn-body .xn-body-con .item{ background: #fff; padding: 0.75rem 0.417rem 0.583rem;box-shadow: 0px 2px 10px 0px
rgba(0, 0, 0, 0.05);
    border-radius: 0.167rem; margin: 0 0.25rem; width: 16.3%; text-align: center;}
.xn-body .xn-body-con .item:hover{ color: #fff;	background-color: #8bbd2a;}
.xn-body .xn-body-con .item .st{ font-size: 0.367rem; font-weight: bold; margin: 0.533rem auto 0.25rem;}
.xn-body .xn-body-con .item .desc{ color: #666666; font-size: 14px; line-height: 1.8}
.xn-body .xn-body-con .item .img{width: 1.417rem;    margin: 0 auto;}
.xn-body .xn-body-con .item:hover .desc{ color: #fff;}
.xn-body .xn-body-con .item:hover .img img{ filter: grayscale(100%) brightness(200%);}

.mxw-fw{ margin-top: 1.667rem; display: flex; align-items: stretch; justify-content: space-between;}
.mxw-fw .right-box{ width: 40%; background: url("../images/fw-bg2.jpg") no-repeat; background-size: cover; padding: 0 2.25rem 0 2rem; display: flex; align-items: center; justify-content: center; flex-wrap: wrap;align-content: center;}
.mxw-fw .left-box{ width: 60%; background: url("/skin/images/fw-bg1.jpg") no-repeat; background-size: cover;}
.mxw-fw .right-box .cn{ width: 100%; color: #fff; font-size: 0.6rem; text-align: center;}
.mxw-fw .right-box .en{ margin-top: 0.333rem; font-weight: bold; color: #acce22; font-size: 0.667rem; text-align: center; text-transform: uppercase}
.mxw-fw .right-box .desc{ margin: 0.917rem auto 0.833rem; font-size: 0.233rem; color: #fff; line-height: 1.7}
.f-more{width: 2.917rem;
    height: 0.85rem;
    background-color: #acce22;
    border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff;}
.mxw-fw .left-box .top{ padding-left: 2.833rem; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; padding-top: 1.083rem; padding-right: 1.2rem}
.mxw-fw .left-box .top .item{ margin-bottom: 1.2rem}
.mxw-fw .left-box .top .item .st{font-weight: bold; font-size: 0.267rem; margin-top: 0.25rem}
.mxw-fw .left-box .top .item .st::after{ display: block; content: "";width: 24px;
    height: 3px;
    background-color: #acce22; margin: 0.3rem auto 0.25rem 0 }
.mxw-fw .left-box .top .item .desc{ font-size: 0.233rem; color: #666}
.mxw-fw .left-box .bottom{ background: #333; color: #fff; font-size: 0.5rem; padding: 0.5rem 0 0.5rem 2.8333rem;}
.mxw-fw .left-box .bottom span{ margin-right: 0.15rem}

.mxw-jr{ padding: 1.333rem 0 1.25rem;}
.mxw-jr .item{ position: relative; transition: all 0.3s;}
.mxw-jr .flx{ position: absolute; left: 0; top: 0; width: 100%; height: 100%; align-content: center; display: flex; justify-content: center; align-items: center; flex-wrap: wrap;}
.mxw-jr .flx p{ font-size: 0.333rem; color: #fff; line-height: 1.5; width: 100%; text-align: center;font-weight:bold;}
.mxw-jr .flx p::after{ width: 3.333rem;
    height: 1px; content: ""; display: block;
    background-color: #ffffff; margin: 0.25rem auto 0.3rem}
.mxw-jr .flx img{ filter: grayscale(100%) brightness(200%)}
.mxw-jr .item:hover .flx{ background: rgba(0,0,0,.4);}
.mxw-jr .item:hover .flx p{ color:#acce22; }
.mxw-jr .item:hover .flx p::after{background-color: #b0b0b0;}
.mxw-jr .item:hover .flx img{ filter: initial;}

.xf-swiper{ position: relative;}
.xf-swiper img{width:100%;}
.xf-swiper .swiper-button-next,.xf-swiper .swiper-button-prev{ bottom: 0; width: 6.667rem; height: 2.417rem; top: auto; background: rgba(0,0,0,.6); font-size: 0.3rem; color: #fff}
.xf-swiper .swiper-button-next::after,.xf-swiper .swiper-button-prev::after{ display: none}
.xf-swiper .swiper-button-next{ right: 0; padding-left: 1rem; justify-content: left;}
.xf-swiper .swiper-button-next img{ margin-left: 0.25rem; transform: rotate(180deg)}

.xf-swiper .swiper-button-prev{ left: 0; padding-right: 1rem; justify-content: right;}
.xf-swiper .swiper-button-prev img{ margin-right: 0.25rem; }
.xf-swiper .swiper-button-prev:hover,.xf-swiper .swiper-button-next:hover{ background: rgba(172,206,34,.6)}



    /* ==================== 内页通用分类 start ==================== */
.ny-cate {
    border-bottom: 1px solid #e9e9e9;
}
.ny-cate .mxw-box{
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;

}
.ny-cate .cate-item {
    font-size: 0.3rem;
    color: #333;
    line-height: 1.2;

    padding-bottom: 0.5rem;
    margin: 0 0.7rem;
    display: block;
    position: relative;
}
.ny-cate .cate-item:last-child {
    margin-right: 0;
}
.ny-cate .cate-item:after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    background-color: #81a101;
    line-height: 1.2;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s;
}
.ny-cate .cate-item:hover:after,
.ny-cate .cate-item.active:after {
    width: 100%;
}
@media screen and (min-width: 1200px) {
    .ny-cate {
        /* position: sticky;*/
        top: 0;
        z-index: 99;
    }
}
@media screen and (max-width: 1200px) {
    .ny-cate .mxw-ny-box {
        justify-content: flex-start;
    }
    .ny-cate .cate-item {
        width: 24%;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 13px;
        margin-right: 0;
        text-align: center;
    }
    .ny-cate .cate-item:nth-child(4n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .ny-cate .cate-item:nth-child(4) ~ .cate-item {
        margin-top: 2%;
    }
}
/* ==================== 内页通用分类 end ==================== */

.mxw-title2{ text-align: center; padding-bottom: 0.3rem; position: relative;}
.mxw-title2 .en{ font-family: 宋体,sans-serif;font-size: 1rem; font-weight: bold; color: #eaeaea;text-transform: uppercase;}
.mxw-title2 .cn{ font-size: 0.717rem; color: #333; font-weight: bold; position: absolute; top: 0.3rem; left: 0; right: 0;}

#c1{ padding-top: 0.7rem;}
#c1 .c1-body{ margin-top:1.25rem;  background: url("../images/zl.jpg") no-repeat; background-size: cover; }
#c1 .c1-body .mxw-box2{display: flex; align-items: center; justify-content: space-between; padding: 0.95rem 0 0.783rem;}
#c1 .c1-body .mxw-box2 .right-box{ width: 11.25rem; flex-shrink: 0; margin-left: 1.833rem}
#c1 .c1-body .mxw-box2 .left-box h2{ font-size: 0.633rem; font-weight: normal}
#c1 .c1-body .mxw-box2 .left-box .text{ margin-top: 0.583rem; font-size: 0.3rem; color: #555555; line-height: 2}

#c1 .c1-body2{ margin-top: 0.667rem; }
#c1 .c1-body2 .c1-swiper{ overflow: hidden;position: relative;}
#c1 .c1-body2 .c1-swiper .swiper-wrapper{ align-items: center; margin-left: -5.5%}
#c1 .c1-body2 .c1-swiper .swiper-slide{opacity: 0.5; width: 27.5%; padding-bottom: 0;}
#c1 .c1-body2 .c1-swiper .swiper-slide.swiper-slide-prev,#c1 .c1-body2 .c1-swiper .swiper-slide.swiper-slide-next{ opacity: 0.5; width: 27.5%; padding-bottom: 0;}
#c1 .c1-body2 .c1-swiper .swiper-slide-active{ opacity: 1; width: 38.5%; padding: 0 0.283rem 0.283rem 0; background: url("/skin/images/c1-b2img1-bg.jpg") right bottom no-repeat;}
.c1-swiper .swiper-button-prev{ left: 30.7%; width: 0.6rem; height: 0.65rem;background: #d9d9d9;}
.c1-swiper .swiper-button-next{ right: 31.7%; width: 0.6rem; height: 0.65rem; background: #d9d9d9;}
.c1-swiper .swiper-button-next::after,.c1-swiper .swiper-button-prev::after{ font-size: 0.367rem; color: #fff;}


#c2{ padding-top: 1.25rem;}
#c2 .c2-body{ margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between;}
#c2 .c2-body .right-box{ margin-left: 1.467rem;}
#c2 .c2-body .right-box .en{ font-size: 0.467rem; text-transform: uppercase; color: #333}
#c2 .c2-body .right-box .cn{ font-size: 0.5rem;color: #333}
#c2 .c2-body .right-box .txt{ margin-top: 0.667rem; font-size: 0.3rem; line-height: 2; color: #333}
#c2 .c2-body .right-box .txt hr{ width: 2.167rem; margin: 0.75rem auto 0.75rem 0; color: #2b3242}


#c3{ padding-top: 1.25rem;}
#c3 .c3-body{ margin-top: 1.25rem; background: url("../images/c3-img-bg.jpg") top center no-repeat; background-size: 100%;padding-top: 4.5rem;}
#c3 .c3-body .mxw-box{  display: flex; position: relative;}
#c3 .c3-body .mxw-box .c3-swiper{ overflow: hidden; width: 78.4%; margin: 0 auto;}
#c3 .c3-body .mxw-box .c3-swiper .swiper-slide{ background: #fbfbfb; padding: 0.1rem;}
#c3 .c3-body .mxw-box .c3-swiper .swiper-slide .text{ font-size: 0.267rem; color: #747474; padding: 0.333rem 0.417rem 0.8533rem; line-height: 1.8; text-align: justify}
#c3 .c3-body .swiper-button-prev{ left: 0; width: 0.6rem; height: 0.65rem;background: #d9d9d9;}
#c3 .c3-body .swiper-button-next{ right: 0; width: 0.6rem; height: 0.65rem; background: #d9d9d9;}
#c3 .c3-body .swiper-button-next::after,#c3 .c3-body .swiper-button-prev::after{ font-size: 0.367rem; color: #f7f7f7;}

#c4{ padding: 1.583rem  0 0.917rem;}
#c4 .c4-body{ margin-top: 1.25rem}
#c4 .c4-body .c4-swiper{ }
#c4 .c4-body .swiper-slide{ position: relative;}
#c4 .c4-body .swiper-slide>img{width: 100%;}
#c4 .c4-body .swiper-slide .flx{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: none; align-items: center; justify-content: center; padding: 0.167rem; background: rgba(0,0,0,.5); color: #fff; font-size: 0.3rem; text-transform: uppercase; flex-wrap: wrap; align-content: center}
#c4 .c4-body .swiper-slide .flx p{ font-size: 0.333rem; font-weight: bold; width: 100%; text-align: center; margin-bottom: 5px}
#c4 .c4-body .swiper-slide:hover .flx{ display: flex;}

#c4 .c4-swiper .swiper-pagination{ position: initial}


.app-page{ overflow: hidden; width: 100%}
.app-item{ margin-top: 1.333rem; display: flex; align-items: flex-end; justify-content: space-between; }
.app-item .right-box{box-shadow: 5px 1px 15px 1px
rgba(4, 0, 0, 0.2); background: #fff;
    border-radius: 0.833rem 0rem 0rem 0rem; padding: 0.417rem 1.2rem 0.467rem; width: 55.8%; }
.app-item .left-box{ width: 50.3%;}
.app-item .right-box .text{ font-size: 0.3rem; color: #333; margin-top: 0.333rem; line-height: 2.2; text-indent: 2em}
.app-item .right-box .st img{ width: 1.667rem; margin-right: 20px;}
.app-item .right-box .st{ font-size: 0.6rem;}
.app-item:nth-child(even) .left-box{
    order: 2;
}
.app-item:nth-child(even) .right-box{margin-right: -1.75rem;box-shadow: 5px 1px 15px 1px
rgba(4, 0, 0, 0.2);
    border-radius: 0rem 0rem 0.833rem 0rem; }

.news-page{ padding-top: 1.25rem;}
.news-top{ display: flex; align-items: center; justify-content: space-between;  margin: 0 auto 1rem}
.news-top .left-box{ width: 50.3%; flex-shrink: 0; margin-right: 1.167rem;}
.news-top .left-box .right-box{ flex-grow: 1; min-width: 0}
.news-top .right-box .st{ font-size: 24px; font-weight: bold; width: 100%;}
.news-top .right-box .tim{ font-size: 0.3rem; color: #666; margin: 0.417rem auto 0.333rem 0}
.news-top .right-box .tim img{ margin-top: -3px; margin-right: 0.25rem}
.news-top .right-box .text{ font-size: 0.267rem; color: #666; margin-bottom: 0.667rem; line-height: 2}
.news-top .right-box .c-more{ color: #acce22; font-size: 0.267rem;}

.news-item{ margin-bottom: 0.833rem; display: flex; align-items: center; justify-content: space-between; background: #f9f9f9}
.news-item .mxw-image{ width: 24.5%; flex-shrink: 0}
.news-item .right-box{ display: flex; align-items: center; justify-content: space-between; flex-grow: 1; min-width: 0;}
.news-item .date{ 	border: dashed 3px #cdcdcd; border-radius: 50%; text-align: center ;
    width: 2.267rem; height: 2.267rem;font-size: 20px;color: #363636; font-weight: lighter; flex-shrink: 0; display: flex; align-content: center; flex-wrap: wrap;
    justify-content: center; margin: 0 0.5rem;}
.news-item .date p{ width: 100%; text-align: center; font-size: 0.667rem;}
.news-item .text{ margin-right: 1rem; flex-grow: 1; width: 100%}
.news-item .text .st{ font-size: 0.4rem; color: #444444; width: 100%}
.news-item .text .desc{ color: #444444; font-size: 0.267rem; line-height: 1.8; margin-top: 0.25rem; width: 100% }

/*新闻详情*/
.news_de_box{
    background-color: white;
    padding: 25px 49px 60px 44px; height: auto; overflow: hidden;
}
.news_de_top{
    border-bottom: 1px solid #EEEEEE;
    margin-bottom: 35px;
    padding-bottom: 20px;
    height: auto;
    overflow: hidden;
}
.news_de_top h4{
    font-size: 24px;
    margin: 0 0 22px;
    line-height: 32px;min-height: 64px;
}
.news_de_top ul{
    float: left;
}
.news_de_top ul li{
    display: inline-block;
    color: #999;margin-right: 38px; font-size: 14px;
}
.news_de_top ul li span{
    width: 21px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    display: flex;align-items: center;
    justify-content: center;margin-right: 8px;float: left;
}
.news_de_top ul li span img{
    max-width: 100%;
    max-height: 100%;
}
.news_de_top p{
    float: right;margin: 0;color: #999;
}
.news_de_top p a{
    display: inline-block;
    margin-left: 6px;position: relative;
    bottom: 2px;
}
.news_de_main{text-align: center;}
.news_de_main img{
    max-width: 100%;
    margin: 15px auto;    height: auto !important;
}
.news_de_main p{
    padding: 18px 0;margin: 0;
    color: #666;text-align: justify;
}
.news_de_bot{
    border-top:1px solid #EEEEEE;
    padding: 20px 0;margin-top: 25px;
}
.news_de_bot ul{
    float: left; font-size: 14px;
}
.news_de_bot ul li{    margin-bottom: 25px;}
.news_de_bot ul li a{
    color: #333;display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;width: 920px;
}
.news_de_bot ul li a:hover{
    color: #00AFCA;
}
.news_de_bot a{
    float: right;
    display: block;
}
.news_de_bot a img{
    width: 135px;
    height: 40px;transition: all .3s;
}
.news_de_bot a:hover img{
    box-shadow: 0 0 10px 1px rgba(0,0,0,.3);
}

.contact-page { padding-top: 1.167rem; padding-bottom: 0.8rem;}
.contact-page .mxw-box2 .contact-item{ display: flex; align-items: stretch; justify-content: space-between; padding-bottom: 0.8rem; margin-bottom: 0.8rem; border-bottom: 1px solid #d4d4d4}
.contact-page .mxw-box2 .contact-item:last-child{ border: none; padding-bottom: 0}
.contact-page .mxw-box2 .contact-item .right-box{ width: 61.8%; margin-left: 1rem}
.contact-page .mxw-box2 .contact-item .left-box{ flex-grow: 1; min-width: 0}
.contact-page .mxw-box2 .contact-item .left-box .item:first-child{ padding-top: 0}
.contact-page .mxw-box2 .contact-item .left-box .item .st{ font-size: 0.233rem;  display: flex; align-items: flex-end }
.contact-page .mxw-box2 .contact-item .left-box .item .st img{ margin-right: 10px; }
.contact-page .mxw-box2 .contact-item .left-box .item .text{ font-size: 0.3rem; margin-top: 5px; color: #3d3d3d}
.contact-page .mxw-box2 .contact-item .left-box .item{ padding-bottom: 0.3rem; border-bottom: 0.017rem solid #eeeeee; padding-top: 0.3rem; }
.contact-page .mxw-box2 .contact-item .left-box .ewm{ margin-top: 0.3rem}

#a1{ padding-top: 1.417rem;}
.a1-body{ padding: 1.333rem 2rem 1.583rem; background: url("/skin/images/a1-bg.jpg") right bottom no-repeat; font-size: 0.3rem; color: #333; line-height: 2}

#a2{ padding: 1.5rem 0 1.167rem; background: #fcfcfc}
#a2 .a2-body{     padding: 1rem 0 1.667rem 0; margin: 0.667rem auto 0; background: url("/skin/images/a2-body-bg.png") center no-repeat; width: 1810px; }
#a2 .a2-body .a2-swiper{ background: url("/skin/images/a2-swiper-bg.png") left 20px center no-repeat; height: 500px; background-size: 1600px;     padding-top: 20px;}
#a2 .a2-body .a2-swiper .swiper-slide{ position: relative;}
#a2 .a2-body .a2-swiper .swiper-slide .con{ display: flex; align-items: flex-start; position: absolute;}
#a2 .a2-body .a2-swiper .swiper-slide .con .text{ margin-left: 0.333rem;}
#a2 .a2-body .a2-swiper .swiper-slide .con .text .txt{ font-size: 0.3rem; color: #444; line-height: 1.8}
#a2 .a2-body .a2-swiper .swiper-slide .con .text .st{ color: #99bc0b; font-size: 20px; font-weight: bold;}

#a2 .a2-body .a2-swiper .swiper-slide.item1 .con{    top:85px; left: 64px;  width: 360px}
#a2 .a2-body .a2-swiper .swiper-slide.item1 .con .text{ margin-top: -51px}

#a2 .a2-body .a2-swiper .swiper-slide.item2 .con{    bottom:120px;     left: 110px;  width: 360px}
#a2 .a2-body .a2-swiper .swiper-slide.item2 .con .text{     transform: translateY(1.5rem);}

#a2 .a2-body .a2-swiper .swiper-slide.item3 .con{    top:20px;     left: 55px;  width: 360px}
#a2 .a2-body .a2-swiper .swiper-slide.item3 .con .text{ margin-top: -12px}

#a2 .a2-body .a2-swiper .swiper-slide.item4 .con{    bottom: 35px;     left:45px;  width: 360px}
#a2 .a2-body .a2-swiper .swiper-slide.item4 .con .text{         margin-top: 0.667rem;}

#a2 .a2-body .a2-swiper .swiper-slide.item5 .con{    top: -20px;        left: -5px;  width: 360px}
#a2 .a2-body .a2-swiper .swiper-slide.item5 .con .text{ }


#a2 .a2-body .a2-swiper .swiper-slide.item6 .con{    bottom: 15px;     right:0;  width: 100%}
#a2 .a2-body .a2-swiper .swiper-slide.item6 .con .text{         margin-top: 45px;}


@media screen and (max-width: 1850px) {
#a2 .a2-body .a2-swiper{background-size: 1500px;}
    #a2 .a2-body{ width: 1700px;     }


    #a2 .a2-body .a2-swiper .swiper-slide.item1 .con{ left: 62px;}

    #a2 .a2-body .a2-swiper .swiper-slide.item2 .con{ left: 147px;bottom: 75px;}

    #a2 .a2-body .a2-swiper .swiper-slide.item3 .con{ top: -10px;left: 100px;}

    #a2 .a2-body .a2-swiper .swiper-slide.item4 .con{ bottom: 30px; left: 55px;}

    #a2 .a2-body .a2-swiper .swiper-slide.item5 .con{ top: -20px;    left: 15px;}

    #a2 .a2-body .a2-swiper .swiper-slide.item6 .con{ bottom: -15px;}
.mxw-about .about-body{ line-height:2}
#a2 .a2-body .a2-swiper .swiper-slide .con .text .txt {
    font-size: 16px;
}
}

@media screen and (max-width: 1680px) {
    #a2 .a2-body{ width: 1550px;}
    #a2 .a2-body .a2-swiper{background-size: 1360px; }
#a2 .a2-body .a2-swiper .swiper-slide.item4 .con {
    bottom: 35px;
}
#a2 .a2-body .a2-swiper .swiper-slide.item1 .con {
    bottom: 235px;
    top: auto;
}
#a2 .a2-body .a2-swiper .swiper-slide.item2 .con{    bottom: 60px;}
#a2 .a2-body .a2-swiper .swiper-slide.item3 .con {
    top:-10px;
    left: 95px;
}
#a2 .a2-body .a2-swiper .swiper-slide.item5 .con {
    top: -15px;
}
#a2 .a2-body .a2-swiper .swiper-slide.item6 .con {
    bottom: 15px;    right: 30px;
}

}

@media screen and (max-width: 1510px) {
    #a2 .a2-body{ width: 1300px;    padding-bottom: 0;
    background-size: cover;
}
    #a2 .a2-body .a2-swiper{ background-size: 1130px;}

#a2 .a2-body .a2-swiper .swiper-slide.item1 .con {
    bottom: 224px;    left: 20px;width:280px
}
#a2 .a2-body .a2-swiper .swiper-slide.item2 .con {
    bottom: 88px;    left: 90px;width:280px
}
#a2 .a2-body .a2-swiper .swiper-slide.item3 .con {
width:280px;top: 0px;
}
#a2 .a2-body .a2-swiper .swiper-slide.item4 .con {
    bottom: 50px;    left: 15px;
}
#a2 .a2-body .a2-swiper .swiper-slide.item4 .con{    width: 285px;    }
#a2 .a2-body .a2-swiper .swiper-slide.item5 .con{    width: 285px;     top: 0;left: 5px;}
#a2 .a2-body .a2-swiper .swiper-slide.item6 .con{    right: 0; width: 260px;     bottom: 48px;
}
#a2 .a2-body .a2-swiper .swiper-slide .con .text .txt {
    font-size: 14px;
}



}


#a3{ padding-top: 1.333rem; background: url("../images/adb-bg.jpg") center bottom no-repeat; background-size: 100%;    margin-bottom: -0.017rem;}
.a3-body{ margin-top: 1.417rem; display: flex; align-items: stretch; justify-content: space-between;}
.a3-body .box1{ width: 36.5%; }
.a3-body .box1 .certify{ width: 100%; overflow: hidden;margin-top: 0.417rem;    position: relative; }
.certify  .swiper-slide{ width: 6.5rem}
.certify .swiper-slide p{ margin-top: 0.417rem; text-align: center; font-size: 0.233rem;}
.a3-body .box2{ width: 29%; margin: 0 0.333rem;}
.a3-body .box3{ flex-grow: 1; min-width: 0}
.a3-body .box2 .zs-box2{ margin-top: 0.417rem;}


#a4{ padding-top: 2.667rem;}
.a4-body{  margin-top: 1.417rem; margin-bottom: 1.417rem; padding: 0 0.633rem 1.5rem; display: flex; align-items: stretch; justify-content: center;}
.a3-body  .mxw-title3 .cn{ font-size: 0.333rem; color: #333}
.a3-body .mxw-title3 .en{ font-size: 0.233rem; color: #bbb; margin-top: 0.25rem;}
.a4-body .item{ background: #fff; padding: 1.417rem 0.667rem 1rem 0.833rem; margin-right: 1px; width: 24%}
.a4-body .item:last-child{ margin-right: 0}
.a4-body .item .st{ font-size: 0.667rem; font-weight: bold; color: #d8d8d8; display: flex; align-items: center; transition: all 0.3s;}
.a4-body .item .st span{ font-family: Impact,"Microsoft YaHei",sans-serif; line-height: 1; margin-right: 0.433rem;}
.a4-body .item .desc{ font-size: 0.3rem; margin-top: 0.667rem; height: 0.95rem; overflow: hidden;
    line-height: 1.7;}
.a4-body .item .tim{ margin-top: 0.417rem;}
.a4-body .item .img{ text-align: right; margin-top: 0.75rem; opacity: 0.1;transition: all 0.3s;}
.a4-body .item .img img{ width: 1.733rem;}
.a4-body .item:hover .st{ color: #565656;}
.a4-body .item:hover .img{ opacity: 1}








footer{ background: url("/skin/images/foot-bg.jpg") center top #acce22 repeat-x; padding-top: 1.5rem;}
.footer-con{ width: 80%; max-width: 1400px; margin: 0 auto; font-size: 14px; color: #fff; }
.footer-up{display: flex;align-items:stretch; justify-content: space-between; font-size: 0.3rem; padding-bottom: 0.833rem}
.footer-up .d-menu{ line-height: 2.2; font-size: 0.267rem; width: 20%;}
.footer-up .d-logo{ text-align: center; flex-grow: 1; border-right: 1px solid #fff; border-left: 1px solid #fff}
.footer-up .d-ewm{ width: 26.4%; display: flex; align-items: flex-start; justify-content: flex-end}
.footer-up .d-logo .d-txt{ font-size: 0.3rem; margin: 0.417rem auto 0.583rem;}
.footer-up .d-logo .d-txt::after{ display: block; content: ""; width: 1px; height: 36px; background: #fff; margin: 0.25rem auto 0;}
.footer-up .d-logo .d-tel{ font-size: 0.6rem;}
.footer-up .d-ewm .con{ text-align: center; font-size: 16px;}
.footer-up .d-ewm .con .name{ margin-bottom: 0.417rem; font-size: 0.333rem;}
.footer-up .d-ewm .con img{ width: 2.2rem;}
.footer-up .d-ewm .con p{ margin-top: 0.25rem}
.copy{ border-top: 2px solid #d8e898; text-align: center;
    padding: 0.25rem 0}

.mxw-net{ padding-top:1.25rem; }
.net-body{ margin-top: 1.3rem; display: flex; align-items: stretch; justify-content: space-between;}
.net-body .left-box{ width: 31.25%; background: url("../images/n-bg1.jpg") no-repeat; background-size: cover; padding-left: 1.833rem; padding-top: 0.583rem; padding-right: 0.333rem; }
.net-body .right-box{ width: 68.75%; background: url("../images/bga.jpg") no-repeat; background-size: cover;    }
.net-body .right-box.on img{animation: mapsan 1s;
    animation-fill-mode: forwards;    transform-origin: 77.83% 50.57%;}
.net-body .left-box .t1{  font-size: 0.8rem; color: #5a5a5a; font-family: Tahoma,sans-serif; }
.net-body .left-box .t1::after{ display: block; width: 0.933rem; height: 0.033rem; background: #acce22; content: ""; margin: 1.083rem auto 0.417rem 0; }
.net-body .left-box .t2{ font-size: 0.8rem; color: #000}
.net-body .left-box .text{ font-size: 0.267rem; color: #646464;  font-weight: bold; line-height: 2; margin: 0.25rem auto 0.583rem 0;}
.n-more a{
    width: 103px;
    height: 29px; color: #333; font-size: 12px; border-radius: 5px;
    border: solid 1px #acce22; display: flex; align-items: center; justify-content: center;}
.n-more::before{ display: block; width: 2.333rem; height: 1px; background: #acce22; content: "";}
.n-more{ display: flex; align-items: center; justify-content: flex-start;}

.mxw-news{ padding-top: 1.25rem;}
.news-body{ margin-top: 1.25rem; overflow: hidden; }
.news-body .swiper-slide{ width: 30%;}
.news-body .swiper-slide .info{ padding: 0.667rem 0.417rem; 	border: solid 0.017rem #f5f5f5;}
.news-body .swiper-slide .info .st{ font-size: 20px; color: #4c4c4c}
.news-body .swiper-slide .info .desc{ color: #808080; font-size: 0.3rem; line-height: 2; margin-top: 0.333rem; margin-bottom: 0.833rem;}
.news-body .swiper-slide .info .news-more{ font-size: 0.233rem; color: #666; text-transform: uppercase; padding-top: 0.367rem; border-top:0.017rem solid #e5e5e5; display: flex; align-items: center; justify-content: space-between; }
.news-body .swiper-slide .info .news-more::after{ width: 41px;
    height: 11px;
    background: url("../images/nm-off.png") center no-repeat; background-size: 100%; content: ""}
.news-body .swiper-slide:hover .info .st{ color: #acce22 }
.news-body .swiper-slide:hover .news-more::after{ background: url("../images/nm-on.png") center no-repeat; background-size: 100%}
.news-body .swiper-pagination{ position: initial; justify-content: center; margin-top: 0.667rem; display: flex; align-items: center; justify-content: center;}
.news-body .swiper-pagination .swiper-pagination-bullet{width: 25px;
    height: 25px; background: none;
    border: solid 1px transparent;border-radius: 50%; margin: 0;
    opacity: 1; display: flex; align-items: center; justify-content: center;}
.news-body .swiper-pagination .swiper-pagination-bullet::after{ width: 7px;
    height: 7px;
    background-color: #acce22; border-radius: 50%; content: "";}
.news-body .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after{ 	background-color: #19ad4e;}
.news-body .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{ 	border: solid 1px #19ad4e;}


.mxw-dz{ padding-top: 1.233rem;}

.bgf5{    background: #f5f5f5; position: relative}
.zhuanshu{padding: 0.75rem 0 0;    width: 100%;}
.hua{position: absolute;width: 57.5%;height: 100%;top:0;right: 0;z-index: 1;}

.zhuanshu-l{position: relative;z-index: 9;}
.zhuanshu-l h2{font-size: 36px;color: #000;}
.zhuanshu-l h3{font-size: 24px;color: #000;margin: 10px 0 15px;}
.zhuanshu-l,.zhuanshu-list{display: inline-block;vertical-align: top;}
.zhuanshu-list{font-size: 0;margin-left: 52px;width: 460px;max-width: 100%;}
.zhuanshu-list a{display: inline-block;width: 208px;margin-right: 20px;margin-bottom: 25px; height: 43px;line-height: 43px;border:1px solid #b5b5b5;transition: all .4s;text-align: center;font-size: 16px;color: #797979;}
.zhuanshu-list a:last-child{margin-bottom: 0;}
.zhuanshu-list a:hover{background: #a40114;color: #fff;border-color: #a40114;}

.more{font-size: 12px;color: #fff;text-transform: uppercase;width: 90px;height: 30px;text-align: center;line-height: 30px;background: #a30114;display: inline-block;}
.more i{display: inline-block;width: 13px;height: 13px;background: url("../images/ms.png") no-repeat center;background-size: cover;vertical-align: middle;margin-top: -3px;margin-right: 8px;}

.mxw-dz .mxw-title{ margin: 1.167rem auto 1rem;}
.mxw-dz .mxw-box2{ display: flex; align-items: flex-start; justify-content: center; padding-bottom: 0.75rem;}
.mxw-dz .mxw-box2 .item{ margin: 0 0.633rem; text-align: center;}
.mxw-dz .mxw-box2 .item div{ font-size: 0.333rem; color: #333; font-weight: bold; margin-top: 0.3rem; margin-bottom: 0.25rem;}
.mxw-dz .mxw-box2 .item p{ font-size: 0.233rem; color: #666}






.hr-page{padding:1rem 0}
.hr_item{width: 100%; background: #f9f9f9;margin:0 auto 25px; }
.hr_item .hrt{font-weight: bold; font-size: 18px; color: #222; padding: 30px 28px; cursor: pointer; background: url("../images/hr_on.png") 1255px 38px  no-repeat;}
.hr_item .hrt.collapsed{ background: url("../images/hr_off.png") 1255px 38px  no-repeat;}
.hr_item .hrb{ padding: 0 35px;}

.box3-swiper{    margin-top: 0.417rem;}



.xf-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 1;
    margin-left: 9px;
    margin-right: 9px;
    border: 1px solid #fff;
    outline: none;
}
.xf-swiper .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.xf-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #00a2ea;
    border-color: #00a2ea;
}


.mxw-about .about-body{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mxw-about .us-box{       flex-wrap: wrap;
    text-indent: 0;
    margin-left: 0.7rem;
    flex-shrink: 0;    margin-top: 0;
    width: 7.5rem;    order:1;}
.mxw-about .us-box .item{width:100%;line-height: 1.5;    justify-content: flex-start;}

.net-body .right-box{     position: relative;}
.buju-svg svg{
      
    width: 100%;
    height: 100%;
}
.bg3{ width:100%;  position: absolute;
    left: 0;
    top: 0;}
.buju-svg path{stroke-width: 1px; fill-rule: evenodd;}
.buju-svg .solid path{stroke-dasharray: 1000;stroke-dashoffset: 1000;animation: dash 5s 0.3s linear both infinite;}
@keyframes dash{
    from{stroke-dashoffset: 1000;}
    to{stroke-dashoffset: 0;}
}
.buju-svg .dashed path{stroke: #999;stroke-dasharray: 1000;stroke-dashoffset: 1000;animation: dash2 5s 0.3s linear both infinite;}
@keyframes dash2{
    from{stroke-dashoffset: 1000;}
    to{stroke-dashoffset: 0;}
}

.cont_msg {

    margin-top: 1rem;
}
.job-itembox{ padding-bottom: 1.133rem;}

.job-itembox .job-item {
    margin-bottom: 0.6667rem;
}
.job-itembox .job-item:last-child {
    margin-bottom: 0;
}
.job-itembox .job-item .head {
    cursor: pointer;
    background-image: linear-gradient(90deg, #acce22 9%, rgb(172 205 34 / 70%) 100%);
    height: 1.05rem;
    line-height: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0.5rem;
    padding-right: 0.8333rem;
}
.job-itembox .job-item .head.active:after {
    transform: rotateX(-180deg);
}
.job-itembox .job-item .head:after {
    content: "";
    display: block;
    background: url(../images/job-btn.png) no-repeat center;
    background-size: 100%;
    width: 0.5rem;
    height: 0.5rem;
    transition: all 0.4s;
}
.job-itembox .job-item .head .text {
    font-size: 0.3333rem;
    color: #fff;
    font-weight: bold;
}
.job-itembox .job-item .body {
    display: none;
    border: 1px solid #d7d7d7;
}
.job-itembox .job-item .itembox {
    display: flex;
    align-items: flex-start;
    border-top: 0;
    padding: 0.6667rem 0.5833rem;
    background: #fff;
}
.job-itembox .job-item .item {
    position: relative;
}
.job-itembox .job-item .item:after {
    content: "";
    display: block;
    width: 1px;
    height: 3.1667rem;
    background: #d5d5d5;
    position: absolute;
    right: 0;
    top: 0;
}
.job-itembox .job-item .item:last-child:after {
    display: none;
}
.job-itembox .job-item .item p {
    font-size: 0.3rem;
}
.job-itembox .job-item .item.item1 {
    width: 4.3333rem;
    flex-shrink: 0;
}
.job-itembox .job-item .item.item1 .text {
    font-size: 0.3333rem;
    line-height: 1.2;
    margin-bottom: 0.6667rem;
}
.job-itembox .job-item .item.item1 .text02 {
    margin-bottom: 0.8333rem;
}
.job-itembox .job-item .item.item2 {
    width: 9.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.job-itembox .job-item .item.item3 {
    flex-grow: 1;
    min-width: 0;
    padding-left: 1rem;
}
.job-itembox .job-item .item .item-head {
    font-size: 0.3333rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.job-itembox .job-item .desc {
    font-size: 0.3333rem;
    color: #333;
    line-height: 2;
}
.job-itembox .job-item .mxw-btn {
    display: block;
    font-size: 0.3rem;
    width: 2.7333rem;
    text-align: center;
    height: 0.7333rem;
    line-height: 0.7333rem;
    background: #fff;
    color: #8d0505;
    border: solid 0.0167rem #8d0505;
}
@media screen and (max-width: 1200px) {
    .job-itembox .job-item {
        margin-bottom: 15px;
    }
    .job-itembox .job-item .head {
        padding: 0 15px;
        height: 40px;
        line-height: 40px;
    }
    .job-itembox .job-item .head .text {
        font-size: 15px;
    }
    .job-itembox .job-item .head:after {
        width: 15px;
        height: 15px;
    }
    .job-itembox .job-item .itembox {
        flex-wrap: wrap;
        padding: 20px;
    }
    .job-itembox .job-item .item {
        width: 100%!important;
    }
    .job-itembox .job-item .item::after {
        display: none;
    }
    .job-itembox .job-item .item.item1 .text {
        margin-bottom: 15px;
        font-size: 16px;
    }
    .job-itembox .job-item .item.item2 {
        padding: 0;
        margin-bottom: 30px;
    }
    .job-itembox .job-item .item.item3 {
        padding: 0;
    }
    .job-itembox .job-item .item .item-head {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .job-itembox .job-item .item p {
        font-size: 14px;
    }
    .job-itembox .job-item .mxw-btn {
        width: 90%;
        font-size: 14px;
        height: auto;
        line-height: inherit;
        padding: 8px 20px;
        margin: 0 auto 20px;
    }
    .ny-job .section03 {
        padding-bottom: 0;
    }
}

.n-banner img{width:100%;}
.box3-swiper,.zs-box2{overflow: hidden;}


@media screen and (max-width: 1760px) {
.net-body .left-box .t1{    font-size: 0.6rem;}
.net-body .left-box .t1::after{    margin: 0.95rem auto 0.417rem 0;}
.net-body .left-box .t2{font-size: 0.65rem;}

}


/* ==================== 页面具体样式 end ==================== */
@media screen and (max-width: 1660px) {
.hua{width:37.5%;}


}




@media screen and (max-width: 768px) {
.mxw-about{    padding: 40px 0 0;}
.mxw-title .cn{    font-size: 21px;}
.mxw-title .en{    font-size: 12px;}
.mxw-box2{ width:95%;    max-width: initial; min-width: initial;}
.mxw-about .about-body{    font-size: 14px;    line-height: 1.8;    margin-top: 25px;flex-wrap: wrap;}
.mxw-about .us-box{flex-wrap: wrap;    margin-top: 25px;    order: 1;    margin-left: 0;
    width: 100%;}
.mxw-about .us-box .item{width: 100%;    font-size: 14px;    padding: 15px 30px;    justify-content: flex-start;}
.mxw-about .us-box .item p{font-size: 16px;     margin-bottom: 10px;}
.mxw-four{padding: 40px 0 0;}

.four-body{ margin-top: 25px;}
.four-body>img{    display: none;}
.four-body .right-box{display: none}
.four-body .left-box{    width: 100%;  padding: 40px 0 25px;}
.four-body .left-box .item{width: 95%;
    padding: 0;  
    margin: 0 auto 20px;    flex-wrap: wrap;    background: rgba(172,205,34,0.7);}
.four-body .left-box .item::after{display: none}
.four-body .left-box .item .text{    margin: 10px 2.5% 0;text-align: center;
    width: 100%;}
.four-body .left-box .item>div:first-child{  flex-wrap: wrap;    }
.four-body .left-box .item .icon{    margin: 15px auto 0;
    width: 30px;}
.four-body .left-box .con{    opacity: 1;    visibility: visible;    background: none;width: 100%;    position: initial;    margin: 0 auto;
    padding: 0;max-height: initial;
    min-height: initial;}
.four-body .left-box .con .tt{display: none}
.four-body .left-box .con .desc{    font-size: 14px;
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 20px;}
.mxw-xn{    padding-top: 40px;}
.xn-body{margin-top: 25px;
    padding: 25px 0;}

.xn-body .xn-body-con{    flex-wrap: wrap;    justify-content: space-between;}

.xn-body .xn-body-con .item{ width:48%; margin:0 0 15px 0;    justify-content: space-between;padding: 20px 10px;}

.xn-body .xn-body-con .item .img{    width: 45px;
    margin: 0 auto;}

.xn-body .xn-body-con .item .st{    font-size: 16px;    margin: 12px auto 15px;}
.xn-body .xn-body-con .item:last-child{ width:100%}

.mxw-fw{    margin-top:0;    flex-wrap: wrap;}
.mxw-fw .left-box{    width: 100% ;   order: 1;}
.mxw-fw .right-box{    width: 100%;    padding: 25px 2.5%;}
.mxw-fw .right-box .cn{
    font-size: 20px;}
.mxw-fw .right-box .en{    margin-top: 10px;    font-size: 22px;}
.mxw-fw .right-box .desc{    margin: 15px auto;
    font-size: 14px;}
.f-more{    width: 135px;
    height: 40px;
    font-size: 16px;}
.mxw-fw .left-box .top{    padding: 25px 2.5%;}
.mxw-fw .left-box .top .item{    margin-bottom: 15px;
    text-align: center;}
.mxw-fw .left-box .top .item>img{width: 35px;}
.mxw-fw .left-box .top .item .st::after{    margin: 10px auto;}
.mxw-fw .left-box .top .item .st{    font-size: 16px;
    margin-top: 10px;}
.mxw-fw .left-box .top .item .desc{font-size: 14px;}
.mxw-fw .left-box .bottom{font-size: 18px;
    padding: 20px 2.5%;text-align: center;}
.mxw-fw .left-box .bottom span {
    padding: 0;
    display: block;
}


.mxw-jr{     padding: 30px 0 10px;}
.mxw-jr .item{ width:100% ;  width: 100%;
    margin: 0 auto 20px !important;}
.mxw-jr .flx p{font-size: 16px;}
.xf-swiper .swiper-button-next, .xf-swiper .swiper-button-prev{display:none; }
.mxw-net{    padding-top: 40px;}
.net-body{    margin-top: 25px;
    flex-wrap: wrap;}
.net-body .left-box{ width:100%;    padding: 20px 2.5%;}
.net-body .left-box .t1{    font-size: 22px;}
.net-body .left-box .t1::after{    margin: 12px auto 0 0;
    width: 60px;
    height: 2px;}

.net-body .left-box .t2 {
    font-size: 20px;
    margin-top: 15px;
}
.net-body .left-box .text{    font-size: 14px;}
.net-body .right-box{width: 100%;    background-size: cover;}
.mxw-news{    padding-top: 40px;}
.news-body{    margin-top: 25px;}
.news-body .swiper-slide .info {
    padding: 15px;
}
.news-body .swiper-slide .info .st{font-size: 16px;}
.news-body .swiper-slide .info .desc{font-size: 14px;
    line-height: 1.7;
    margin-top: 10px;
    margin-bottom: 15px;}
.news-body .swiper-slide .info .news-more::after{width: 24px;}
.news-body .swiper-pagination{    margin-top: 15px;}
.news-body .swiper-pagination .swiper-pagination-bullet{     width: 16px;
    height: 16px;}
.news-body .swiper-pagination .swiper-pagination-bullet::after{width: 5px; height: 5px;}
.mxw-dz{padding-top: 40px;}
.zhuanshu-l {width: 100%;
    text-align: center;}
.zhuanshu-l h2{    font-size: 20px;}
.zhuanshu-l h3{    font-size: 18px;}
.zhuanshu{padding:30px 0 0;}
.zhuanshu-list{ width:100%;       margin: 20px auto 0;    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;}
.hua{    position: initial;}
.zhuanshu-list a{font-size: 14px;
    margin: 0 0 15px 0;    width: 100%;
    }
.mxw-dz .mxw-box2{padding:0 0  30px 0;}

.mxw-dz .mxw-title{    margin: 40px auto 25px;}
.mxw-dz .mxw-box2{    flex-wrap: wrap;    justify-content: space-between;}
.mxw-dz .mxw-box2 .item{    width: 30%;margin: 0 0 25px;}
.mxw-dz .mxw-box2 .item>img{    width: 80px;}
.mxw-dz .mxw-box2 .item div{font-size: 16px;
    margin: 5px auto 10px;}
.mxw-dz .mxw-box2 .item p{font-size: 14px;}
.footer-up .d-menu{    display: none;}
footer{    padding-top: 50px;
    background-size: 100%;}
.footer-con{
    width: 95%;}
.footer-up{    font-size: 14px;    padding-bottom: 40px;    flex-wrap: wrap;}
.footer-up .d-logo{    border: none;}
.d-logo-box{    width: 80px;margin: 0 auto;}
.footer-up .d-logo .d-txt{ font-size: 15px;      margin: 15px auto; }

.footer-up .d-logo .d-tel{font-size: 24px;  }
.footer-up .d-ewm{ width:100%;  justify-content: center;
    margin-top: 25px;}
.mxw-box{    padding: 0;    min-width: initial; width:95% }
.ny-cate .cate-item{    width: 49%;padding: 0 10px 10px;    margin: 0 0 10px 0;}
.ny-cate .cate-item:nth-child(4n-1){    margin: 0 0 10px 0;}
#a1{    padding-top: 40px;}
.mxw-title2 .cn{    font-size: 22px; top:10px}
.mxw-title2 .en{    font-size: 26px;}
.mxw-title2{    padding-bottom: 10px}
.a1-body{ padding: 20px 0;}
.a1-body p{font-size: 16px !important;}

#a2{    padding: 40px 0 0;}
#a2 .a2-body{ width:100%;padding: 20px 0;}
#a2 .a2-body .a2-swiper{width:100%;     height: auto; background:none}
#a2 .a2-body .a2-swiper .swiper-slide .con{    position: initial;     width: 95% !important;}
#a2 .a2-body .a2-swiper .swiper-slide .con .text{margin-top: 0 !important;    transform: initial !important;}
#a2 .a2-body .a2-swiper .swiper-slide .con>img{ display:none;}
#a2 .a2-body .a2-swiper .swiper-slide .con .text .txt{    font-size: 16px;    margin-top: 10px;}


#a3{    padding-top: 40px;}
.a3-body{    margin-top: 25px;flex-wrap: wrap;}
.a3-body .box1{ width:100%}
.certify .swiper-slide{ width:280px}
.a3-body .box2{ width:100%; margin:25px 0}
#a4{ padding-top: 40px;}
.a4-body{    margin-top: 25px;
    margin-bottom: 40px;
    padding: 0;
    flex-wrap: wrap;}
.a4-body .item{ width:100%;    padding: 15px;    margin-bottom: 20px;    border: 1px solid #ccc;}
.a4-body .item .img{ display:none;}

.a4-body .item .st{    font-size: 20px;    color: #565656;}
.a4-body .item .desc{font-size: 16px;    margin-top: 10px;}
.a4-body .item .tim{    margin-top: 10px;font-size: 14px;}

#c1 .c1-body{margin-top: 25px;}
#c1 .c1-body .mxw-box2{flex-wrap: wrap;    padding: 20px 0;}
#c1 .c1-body .mxw-box2 .left-box h2{    font-size: 22px;}
#c1 .c1-body .mxw-box2 .left-box .text{font-size: 14px;    margin-top: 15px;}

#c1 .c1-body .mxw-box2 .right-box{width:100%; margin:15px 0 0}
#c1 .c1-body2 .c1-swiper .swiper-wrapper{    margin-left: 0;}
.c1-swiper .swiper-button-next{    right: 0;    width: 34px;height: 36px;}
.c1-swiper .swiper-button-prev{ left:0;    width: 34px;height: 36px;}
#c1 .c1-body2 {
    margin-top: 25px;
}
#c2{padding-top: 40px;}
#c2 .c2-body{ margin-top: 25px;    flex-wrap: wrap;}
#c2 .c2-body .right-box{}
#c2 .c2-body .right-box {
    margin-left: 0;
    margin-top: 10px;
}
#c2 .c2-body .right-box .en{    font-size: 20px;}
#c2 .c2-body .right-box .cn{    font-size: 18px;}
#c2 .c2-body .right-box .txt{    margin-top: 16px;font-size: 14px;}
#c2 .c2-body .right-box .txt hr {
    width: 120px;
    margin: 10px auto 10px 0;}
#c3{    padding-top: 40px;}
#c3 .c3-body{    margin-top: 20px;    padding-top: 60px;}
#c3 .c3-body .swiper-button-prev{    width: 34px;
    height: 36px;}
#c3 .c3-body .mxw-box .c3-swiper .swiper-slide .text{    font-size: 14px;    padding: 15px;}
#c4{padding: 40px 0;}
#c4 .c4-body{margin-top: 20px;  }
.app-item{    margin-top: 30px;    flex-wrap: wrap;}
.app-item .left-box{    width: 100%;}
.app-item .right-box {
    width: 100%;
    border-radius: 0;
    padding: 15px;
}
.app-item .right-box .st img{ width:45px;}
.app-item .right-box .st {
    font-size: 20px;
}
.app-item .right-box .text{    font-size: 14px;margin-top: 15px; line-height: 1.8;}
.app-item:nth-child(even) .right-box{    border-radius: 0;    margin-right: 0;}
.news-page{padding-top: 40px;}
.news-top{    flex-wrap: wrap;margin-bottom: 25px;}
.news-top .left-box{    width: 100%;margin:0}
.news-top .right-box .st{    font-size: 16px; margin-top:10px;}
.news-top .right-box .tim{  font-size: 12px;     margin: 10px auto 10px 0;}
.news-top .right-box .text{    font-size: 14px;line-height: 1.8;margin-bottom: 10px;}
.news-item{flex-wrap: wrap;margin-bottom: 25px;}

.news-item .mxw-image{    width: 100%;}
.news-item .right-box{ flex-wrap: wrap;padding: 10px;}
.news-item .date {
    border: none;
    border-radius: 0;
    text-align: left;
    width: 100%;
    height: auto;
    font-size: 12px;
    font-weight: initial;
    margin: 0 auto 10px auto; justify-content: flex-start;
}
.news-item .date p {
    width: initial;
    text-align: center;order: 1;   
    font-size: 12px;}
.news-item .date p:before{         display: inline-block;
    content: "-";
    width: 5px;
    height: 1px;    vertical-align: baseline;
  }
.news-item .text{    margin-right: 0;  }
.news-item .text .st{    font-size: 16px;}
.news-item .text .desc{  margin-top: 10px}
.news_de_box{    padding: 0 0 40px;}

.news_de_top h4 {
    font-size: 18px;
    margin: 0 0 10px;
    line-height: 22px;
    min-height: initial;
}
.news_de_top{    margin-bottom: 10px;
    padding-bottom: 10px;}
.news_de_main{    font-size: 14px;    line-height: 1.8;}

.contact-page{    padding-top: 40px;
    padding-bottom: 40px;}
.contact-page .mxw-box2 .contact-item{    margin-bottom: 30px;    flex-wrap: wrap;}
.contact-page .mxw-box2 .contact-item .left-box .item .st{    font-size: 14px;}
.contact-page .mxw-box2 .contact-item .left-box .item .text{font-size: 16px;}
.contact-page .mxw-box2 .contact-item .left-box .item{    padding-bottom: 10px;}
.contact-page .mxw-box2 .contact-item .right-box{    width: 100%;
    margin-left: 0;
    margin-top: 15px;}
 .hr_item{width: 95%;}

    .hr_item .hrt{    padding: 10px 8px; font-size: 16px;}
    .hr_item .hrb{padding: 0 15px;}






}









