﻿
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;    outline: none;
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}
html {
    margin: 0 auto;
}
ul,
li,header .welcome
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;
}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 0.3rem;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.033rem;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 0.017rem solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 0.033rem solid #fff;
    border-right: 0.033rem solid #fff;
    transform: rotate(-45deg);
    margin-top: 0.1rem;
}
@media screen and (max-width: 12.517rem) {
    #goto-top {
        width: 0.5rem;
        height: 0.5rem;
        right: 0.167rem;
    }
}
/* ==================== 置顶按钮 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: 12.517rem) {
    .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: 12.517rem) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.pagination {
    margin-top: 0.833rem;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination > a,.pagination > span {
    padding: 0.1rem 0.2rem;
    font-size: 0.233rem;
    color: #666;
    line-height: 1.2;
    border: 0.017rem solid #ccc;
    display: block;
    margin: 0.067rem;
}
.pagination > a.active,
.pagination > a:hover {
    background-color: #ff7e00;
    color: #fff !important;
}
.pagination > a:first-child {
    margin-left: 0;
}
.pagination > a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 12.517rem) {
    .pagination {
        margin-top: 0.5rem;
    }
    .pagination > a {
        font-size: 0.2rem;
        margin: 0.033rem;
        padding: 0.133rem 0.167rem;
    }
}
/* ==================== 分页样式 end ==================== */
/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 12.517rem) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 1rem;
        max-width: 12.5rem;
        width: 100%;
      
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 0.667rem;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 0.433rem;
        height: 0.333rem;
        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: 0.05rem;
        border-radius: 1.667rem;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 7.5rem;
        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: 0.25rem 0.3rem;
        font-size: 0.233rem;
        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: 0.067rem solid #555;
        border-left: 0.067rem solid transparent;
        border-right: 0.067rem solid transparent;
        border-bottom: 0;
        margin-left: 0.167rem;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0rem 0.4rem;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 0.233rem;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 0.6rem;
        height: 0.6rem;
        border-bottom: 0.017rem 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.01rem solid #eee;
        font-size: 0.28rem;
        font-weight: bold;
        line-height: 0.9rem;
        height: 0.9rem;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 0.333rem;
        height: 0.333rem;
        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: 1.667rem;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 0.033rem;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 0.033rem;
    }
}
/* ==================== 移动端头部 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 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0.417rem;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 0.667rem;
    text-align: center;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #fff;
    margin-left: 0.15rem;
    margin-right: 0.15rem;
    opacity: 1;

}
.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: #205fa2;
}
.mxw-banner .swiper-button-next,
.mxw-banner .swiper-button-prev {
    width: 1.1667rem;
    height: auto;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.18);
    background-image: none;
    outline: none;
}
.mxw-banner .swiper-button-next {
    right:0;
}
.mxw-banner .swiper-button-prev {
    left: 0;
}
.swiper-button-next::after,.swiper-button-prev::after{display: none}

.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 0.4rem;
    /* 设置按钮大小 */
}
@media screen and (max-width: 12.517rem) {
    .mxw-banner .swiper-pagination {
        padding-right: 0rem;
        bottom: 0.167rem;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 0.083rem;
        font-size: 0.233rem;
        width: 0.133rem;
        height: 0.133rem;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 0.3rem;
    }
    .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;
}

/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-box {
        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 {
        min-width: initial;
        max-width: 95%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 关键词 start ==================== */
.keywords {
    z-index: 99;
    width: 100%;
    border-bottom: 1px solid #dfdfdf;
}
.keywords .mxw-box {
    height: 1.1667rem;
}
.keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 0.3rem;
    line-height: 1.2;
    color: #333;
    padding-left: 0.25rem;
}
.keywords .left:before {
    content: "";
    display: block;
    width: 1px;
    background: #e5e5e5;
    height: 1.1667rem;
    left: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}
.keywords .left span {
    font-size: inherit;
    font-weight: bold;
    line-height: 1.2;
    color: #205fa2;
}
.keywords .left a {
    color: #666;
}
.keywords .left a:hover {
    color: #205fa2;
}
.keywords .left a:last-child:after {
    display: none;
}
.keywords .left a:after {
    content: ",";
}
.keywords .right form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.keywords .right input {
    width: 5.6667rem;
    height: 1.1667rem;
    line-height: 1.1667rem;
    padding: 0.1667rem 0.25rem;
    font-size: 0.2333rem;
    color: #333;
    border-left: 1px solid #dddddd;
    border-right: 0;
}
.keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
    font-size: 14px;
}
.keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
    font-size: 14px;
}
.keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
    font-size: 14px;
}
.keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
    font-size: 14px;
}
.keywords .right button {
    width: 1.1333rem;
    height: 1.1667rem;
    background: #205fa2;
    border: 0;
    border-left: 0;
    cursor: pointer;
}
.keywords .right button .icon {
    display: block;
    width: 0.2667rem;
    height: 0.2667rem;
    margin: 0 auto;
    background: url(../image/66fdfcb09f60ce06fdc7bea0314def01bed43799.png) no-repeat;
    background-size: 100%;
}
/* ==================== 关键词 end ==================== */

header {
    width: 100%;
    z-index: 99;
    transition: all 0.4s;
    position: relative;
}
header .welcome {
    background-color: #f8f8f8;
    /*height: 44px;*/
    line-height: 24px;
    color: #888888
}
header .welcome a{color: #888888}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #888888;
}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 13px;
}
header .welcome .right >a {
    padding-left:10px;padding-right:10px;
}

header .top{ justify-content: space-between }
header .top .logo{  margin: 0 auto 0 0;}

.to1{ display: flex; align-items: center; justify-content: flex-start;}
.to1>div{ margin-right: 0.333rem}

.to2{ text-align: right; margin-left: 4.25rem}
.to2 .x1{ margin-right: 8px;}
.to2 .x1>P{ font-size: 0.5rem; color: #205fa2;  font-family: Impact,sans-serif; line-height: 1}
.to2 .x1>div{ font-size: 0.267rem; color: #333; margin-bottom:5px}


.mxw-title {text-align: center;}
.mxw-title .en{ position: relative; display: flex;align-items: center; justify-content: center}
.mxw-title .en .text{ color: rgba(182,182,182,.14); font-size: 1.333rem;font-weight: 700; line-height: 1; text-transform: uppercase}
.mxw-title .en .cn{ position: absolute; font-size: 0.733rem; font-weight: 700;}
.mxw-title .en .cn span{ color: #205fa2;}
.mxw-title .desc{ font-size: 0.3rem; color: #666; margin-top: 0.167rem}

.tc-product{ padding: 0.917rem 0 1.583rem}

.pro-cate{ justify-content: center;margin-top: 1.167rem; margin-bottom: 0.633rem }
.pro-cate .item{ display: flex; justify-content: space-between; align-items: center; padding: 15px 20px 12px 20px; background: #f1f1f1;
font-size: 0.3rem; color: #444; margin: 0 0.267rem; width: 3.833rem; transition: all 0.3s;}
.pro-cate .item:hover,.pro-cate .item.active{ background: #205fa2; color: #fff; }
.pro-cate .item img{  width: 16px; height: 16px;  transition: all 0.3s;}
.pro-cate .item:hover img,.pro-cate .item.active img{filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(133deg) brightness(105%) contrast(101%);}

.tc-product .pro-body{
    padding-top: 0.833rem;
    background: url("../image/f58f5781cdab12d352a002ad66f0bf2c5dfcd70c.png") top repeat-x;

}
.pro-swiper{overflow: hidden;}
.pro-swiper .swiper-slide .item{ margin-right: 2%; border: 1px solid #e9e9e9; width: 24%;}
.pro-swiper .swiper-slide .item:nth-child(4n){ margin-right: 0}
.pro-swiper .swiper-slide .item .pro-t{ font-size: 0.333rem; font-weight: 700; text-align: center; margin: 0.367rem auto 0.333rem; padding: 0 0.25rem}

.pro-cz{ margin-bottom: 0.4rem; justify-content: center}
.pro-cz a{ display: block; width: 1.833rem;
    /*height: 0.6rem; */
    font-size: 0.267rem;
    line-height: 36px; border-radius: 4px; border: 1px solid #205fa2; text-align: center; color: #205fa2 }
.pro-cz a.more{ background: #205fa2; color: #fff; margin-right: 0.333rem}
.pro-cz a:hover{background: #205fa2; color: #fff; }
.pro-cz a.more:hover{ background: none; color: #205fa2;  }

/* 横幅 */
.index-hf {
    background: url(../image/bgshou.jpg) no-repeat center;
    background-size: cover;
    align-items: center;

}

.index-hf-left {
    width: 700px;
    padding-top: 20px;
}

.index-hf-left h3 {
    color: #fff;
    font: 600 46px/52px "Microsoft yahei";
    margin-bottom: 15px;
}

.index-hf-left h3 span {
    width: 60px;
    height: 4px;
    background-color: #fff;
    display: inline-block;
    margin-bottom: 13px;
    margin-left: 15px;
    margin-right: 15px;
}

.index-hf-left p {
    color: rgba(255, 255, 255, 0.8);
    font: 400 18px/32px "Microsoft yahei";
}

.index-hf-right {
    width: 460px;
    text-align: center;
    padding: 38px 0;
    background: url("../image/6ee2abe1521ac5a6013fa4d28e2d6ea752648a50.png") center no-repeat;
    flex-shrink: 0;

}

.index-hf-right h3 {

    text-align: left;
    padding-left: 125px;
    color: #ffffff;
    font: 400 18px/44px "Microsoft yahei";
}
.index-hf-right h3>img{ margin-right: 15px}

.index-hf-right p {
    color: #ffffff;
    font: 600 38px/66px "Airal";
}

.index-hf-right a {
    width: 170px;
    height: 40px;
    display: block;
    background-color: #fff;
    color: #205fa2 !important;
    font: 400 18px/40px "Microsoft yahei";
    margin: 25px auto 0;
    border-radius: 3px;
}

.index-hf .mxw-box{ justify-content: space-between;}


@media screen and (max-width: 1680px) {
    .index-hf-right{ margin-right: 0}
    .container2{ width: 1200px;}

}

.yin{ text-align: center;    font-size: 0;}

.mxw-case{ padding: 1.667rem 0 1.5rem;}
.case-box{ justify-content: space-between; align-items: stretch; margin-top: 1rem }
.case-box .left{ width: 48.75%; font-size: 0; display: flex; align-items: center; justify-content: center; overflow: hidden;}
.case-box .left>img{ max-width: initial; height: 100%;}
.case-box .right{ flex-wrap: wrap;justify-content: space-between; width: 51.25%;font-size: 0}
.case-box .right .item{ width: 48%; margin-left: 2%;}
.case-box .right .item:nth-child(2n){ margin-right: 0}
.case-box .item:nth-child(1),.case-box .item:nth-child(2){  margin-bottom: 20px;}
.tmore {
    width: 1.833rem;
    height: 0.6rem;
    background-color: #205fa2;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.tmore:hover{ color: #fff;}
.mxw-title2{ justify-content: space-between;}
.mxw-title2 .t21{
    font-size: 0.667rem;
    font-weight: bold;
    color: #333333;
    flex-shrink: 0;
    margin-right: 0.417rem;
    display: flex;
    align-items: center;
}
.mxw-title2 .t21 span{	font-size: 0.3rem;	color: #a0a0a0; font-weight: normal; margin-left: 14px}
.mxw-title2 .tjx{ flex-grow: 1; min-width: 0; height: 1px;
    background-color: #eeeeee; margin-right: 0.333rem}


.hz-swiper{ margin-top: 0.667rem; overflow: hidden; margin-bottom: 1rem;}
.hz-swiper .swiper-slide .img{ border: 1px solid #eeeeee; max-width: 100%;}
.hz-swiper .swiper-slide .img img{ width: 100%;}
.hz-swiper .swiper-slide p{ font-size: 0.3rem; margin-top: 0.25rem; text-align: center}
.hz-swiper .swiper-slide.swiper-slide-active .img,.hz-swiper .swiper-slide:hover .img{ cursor: pointer;	border: solid 1px #005bac;}
.hz-swiper .swiper-slide.swiper-slide-active p,.hz-swiper .swiper-slide:hover p{ color:  #005bac;}



.mx-ab{ position: relative;}
.mx-ab .mxw-title .en .cn,.mx-ab .mxw-title .desc{ color: #fff;}
.ab-body{padding: 1.167rem 0; }
.mx-ab  .bg{ position: absolute; z-index: -1}
.ab-body .mxw-box{ box-shadow: 0px 0px 8px 8px rgba(0, 0, 0, 0.06);
     padding: 0.917rem 0.833rem; background: #fff; margin-top: 0.867rem; }

.ab-body .left{ width: 51%;}
.ab-body .right{ width: 49%; padding-left: 1rem;}
.ab-body .right .rc1{ 	font-size: 0.583rem; color: #205fa2; font-weight: 700;line-height: 1}
.ab-body .right .rc2{ 		font-size: 0.3rem; color: #205fa2; margin-top: 0.25rem; text-transform: uppercase}
.ab-body .right .rc3{ font-size:0.3rem; 	color: #666666; margin: 0.583rem auto 0.8rem 0; line-height: 2}

.rc-list a{ display: inline-block; width: 32%; margin-right: 2%;
    height: 0.933rem; text-align: center; line-height: 0.933rem;transition: all 0.3s;
    background-color: #eeeeee;}
.rc-list a:last-child{ margin-right: 0}
.rc-list a:hover{ background: #205fa2; color: #fff}

.honnor .hz-box{margin-top: 0.667rem; overflow: hidden; margin-bottom: 2rem;}

.adv{ padding: 1.25rem 0 1.5rem; background: url("../image/ed1508751640d11270ed143ffe70abd7491eff06.jpg") no-repeat; background-size: cover;}
.adv .mxw-title .cn,.adv .mxw-title .desc{ color: #fff;}
.adv-body{ margin-top: 1.417rem; justify-content: space-between; align-items: stretch}
.adv-body .item{ width: 23.3%; background: #fff; transition: all 0.3s;}
.adv-body .item .cp1{ margin: 0.5rem 0.25rem 0.417rem;	font-size: 0.367rem; text-align: center; font-weight: 400;color: #28C7EF;}
.adv-body .item  .cp2{ padding: 0 0.833rem; margin-bottom: 0.583rem;	font-size: 0.267rem; color: #666; line-height: 1.5;}
.adv-body .item:hover{ background: #205fa2;color: #fff;}
.adv-body .item:hover .cp2{color: #fff;}

.mx-news{ padding: 1.167rem 0 1.75rem}

.news-body{ margin-top: 1.167rem; align-items: stretch;}
.news-body .left{ position: relative; width: 47.5%; margin-right: 2.5%; display: block;}
.news-body .left .tt{ position: absolute; padding: 0.433rem 0.75rem; bottom: 0; width: 100%; background: rgba(0,0,0,.5); align-items: center; justify-content: space-between }
.news-body .left .tt .st1{ font-size: 0.333rem; color: #fff; margin-right: 0.25rem; width: calc(100% - 180px);}
.news-body .left .tt span{ color: #fff; font-size: 0.267rem}
.news-body .right{ width: 50%; align-items: flex-start;}
.news-body .right .item{ display: flex; justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;padding: 0.7rem 0 0.7rem 0;align-items: center;
}
.news-body .right .item .c1{ flex-grow: 1; min-width: 0;}
.news-body .right .item .c2{ width: 1.2rem; margin-left: 0.45rem; flex-shrink: 0; text-align: center;; }
.news-body .right .item .c2 .year{font-size: 0.433rem;	color: #c8c8c8; font-weight: 700;}
.news-body .right .item .c2 .day{font-size: 0.3rem;	color: #c8c8c8; margin-top: 4px;}
.news-body .right .item .nt1::before{width: 0.167rem;height: 0.167rem;background-color: #205fa2; border-radius: 50%; content: ""; display: inline-block; margin-right: 15px;}
.news-body .right .item:first-child{ border-top: 1px solid #e0e0e0;}
.news-body .right .nt1{ font-size: 0.333rem; margin-bottom: 0.333rem}
.news-body .right .nt2{ 	font-size: 0.267rem;color: #666; padding-left: 25px;}
.news-body .left .mxw-image{ height: 100%; display: flex; align-items: center; justify-content: center;}
.news-body .left .mxw-image img,.case-box .left .mxw-image img{ height: 100%}



.pc-nav{ background: #205fa2;}
.pc-nav .x-menu>li>a{ color: #fff; font-weight: normal;}
.pc-nav .x-menu>li.active,.pc-nav .x-menu>li>a:hover{background: #2f8fed;}

.x-menu>li+li:after{ display: none;}


.case-box .left,.case-box .right .item{ position: relative}
.case-box .left .mxw-image { display: flex; align-items: center; justify-content: center;height: 100%}
.case-box .left .ct{    position: absolute;
   padding: 0.25rem;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,.5); color: #fff;text-align: center;
    align-items: center;
    justify-content: space-between;font-size: 0.333rem}

.case-box .right .item .ct{ padding: 10px;text-align: center; background: rgba(0,0,0,.5); color: #fff;position: absolute; width: 100%; bottom: 0; font-size: 0.3rem}


footer{ background: #1f1f1f; padding: 0.867rem 0 0.8rem}

.d-mune{ padding: 0 0.833rem 0.617rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #404040; }
.d-mune .item{ font-size: 18px ; color: #fff }



.fd1{ width: 30%; padding: 0.25rem 0 1rem; border-right: 1px solid #404040; flex-shrink: 0; padding-right: 1rem;}
.fd1 .dbt{ font-size: 0.333rem; color: #fff;margin-bottom: 0.417rem; }
.fd1 .desc{ font-size: 16px; color: #a0a0a0; line-height: 2}
.fd2{ text-align: center;border-right: 1px solid #404040;flex-grow: 1; min-width: 0;}
.fd2>p:nth-child(1){font-size: 0.333rem; color: #fff;margin-bottom: 0.417rem; }
.fd3{ width: 40%; flex-shrink: 0; color: #a0a0a0; font-size: 16px; padding-left: 1.3rem; line-height: 2;}
.fd3 a{color: #a0a0a0}

.bot{ align-items: stretch; margin-top: 0.8rem}
.zs-swiper .swiper-slide img{ width: 100%;}

.mxw-banner .swiper-button-next, .mxw-banner .swiper-button-prev{ display: none;}



.xypg-detail-con{ font-size: 18px; line-height: 2;}





/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    .container2{ width:auto}
  header {
    width: 100%;
    transition: all 0.4s;
    position: relative;
    z-index: 9999;
  }
  .mxw-mob-nav .head {
    font-size: 0;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    max-width: 750px;
    width: 100%;
  
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #fff;
    border-bottom: 1px solid #eee;
  }
  .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: #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;
  }

.mxw-banner .swiper-button-next, .mxw-banner .swiper-button-prev{    width: 40px;height: auto;}
.mxw-box{ width: 95%;}
.tc-product{ padding: 40px 0 45px;}
.mxw-title .en .text{ font-size: 26px;} 
.mxw-title .en .cn{ font-size: 22px;}
.mxw-title .desc{ font-size: 14px; margin: 8px auto 0; width: 100%;}
.pro-cate{ margin: 30px auto 10px; flex-wrap: wrap; justify-content: space-between;}
.pro-cate .item{ width: 48.5%; margin: 0 0 15px 0;}

.tc-product .pro-body{ padding-top: 25px;}
.tc-product .pro-body .swiper-slide{flex-wrap: wrap;justify-content: space-between;}
.pro-swiper .swiper-slide .item{width: 48.5%; margin: 0 0 15px 0;}
.pro-swiper .swiper-slide .item .pro-t{ font-size: 16px; margin: 10px auto 15px;}
.pro-cz{ padding: 0 10px;}
.pro-cz a{ width: 48%; font-size: 11px; line-height: 30px;}

.index-hf .mxw-box{ flex-wrap: wrap;}
.index-hf-left{ width: 100%;}
.index-hf-right{ width: 100%; margin: 20px auto 0; background: none; text-align: center; padding-top: 0; }

.index-hf-right h3{ padding-left: 0; text-align: center;}
.mxw-case{padding: 40px 0 25px;}
.mxw-title .desc{ width: 95%;}
.case-box{ flex-wrap: wrap; margin-top: 30px;}
.case-box .left{ width: 100%; margin-bottom: 20px;}
.case-box .right{ width: 100%; justify-content: space-between;}
.case-box .right .item{ width: 48.5%; margin:0 0 20px 0;}

.case-box .left .ct{ font-size: 14px; padding: 10px;}
.case-box .right .item .ct{ font-size: 14px; padding: 5px;}
.mxw-title2 .t21{ font-size: 22px;  display: block;}
.mxw-title2 .t21 span{ font-size: 12px; display: block; margin-left: 0;}
.hz-swiper{ margin: 20px auto 30px;}
.hz-swiper .swiper-slide p{font-size: 14px; margin-top: 5px;}
.mx-ab .bg img{ width: 300%;     max-width: initial;}
.ab-body{padding: 40px 0 45px;}
.ab-body .mxw-box{ padding: 20px; flex-wrap: wrap;}
.ab-body .left{ width: 100%;}
.ab-body .right{ width: 100%; margin-top: 20px; padding: 0;}
.ab-body .right .rc1{ font-size: 20px;}
.ab-body .right .rc2{ font-size: 14px;}
.ab-body .right .rc3{font-size: 14px; line-height: 1.7; margin-top: 20px; margin-bottom: 20px;}
.rc-list a{ height: 32px; font-size: 14px; line-height: 32px;}
.honnor .hz-box{ margin: 20px auto 40px; padding: 0;}


.adv-body{ margin-top: 25px ; flex-wrap: wrap;}
.adv-body .item{ width: 48.5%; margin-bottom: 15px; padding-bottom: 20px;}
.adv-body .item .cp1{ font-size: 16px; white-space: normal; text-align: left; margin: 10px auto 15px; width: 90%;color: #28C7EF;}
.adv-body .item .cp2{ font-size: 14px; padding: 0 ; width: 90%; margin: 0 auto;}

.adv,.mx-news{padding: 40px 0 35px;}
.news-body{ margin-top: 25px; flex-wrap: wrap;}
.news-body .left{ width: 100%; margin: 0 auto 20px;}
.news-body .right{width: 100%;}

.news-body .left .tt{ padding: 10px;}
.news-body .left .tt .st1{ font-size: 14px;}
.news-body .left .tt span{ font-size: 12px;}
.news-body .right .item{ padding: 15px 0;}
.news-body .right .nt1{ font-size: 16px; margin-bottom: 10px;}
.news-body .right .nt2{ font-size: 14px;}
.news-body .right .item .c2 .year{ font-size: 20px;}
.news-body .right .item .c2 .day{ font-size: 14px; margin-top: 0;}
.d-mune{ display: none;}
footer{padding: 40px 0 15px;}
.bot{ margin-top: 0; flex-wrap: wrap;}
.fd1{ width: 100%; padding: 0; border: 0; margin-bottom: 20px;}
.fd2{ width: 100%; padding: 0; border: 0; margin-bottom: 20px; text-align: left;}
.fd3{ width: 100%; padding: 0; border: 0; margin-bottom: 0; font-size: 14px;}
.fd2>p:nth-child(1){ font-size: 16px; margin-bottom: 5px;}
.fd1 .desc{font-size: 14px;}
.index-hf-left{ padding-top: 35px;}
.index-hf-left h3{ font-size: 18px; line-height: 1;}
.index-hf-left p{ font-size: 14px;}


}
/* ==================== 移动端头部 end ==================== */


.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:#1a6dba;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;}



.x-sub-menu{ width: 100%; left: 0;}








@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%;}
}