@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei", "华文细黑", "STHeiti", "MingLiu", sans-serif;
    outline: none
}
*:before,
*:after {
    vertical-align: middle;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
}
ul,
li,
ol {
    list-style: none;
}
em {
    font-style: normal;
}
img {
    vertical-align: middle;
    max-width: 100%;
    image-rendering: -moz-crisp-edges; /* Firefox */
   image-rendering: -o-crisp-edges; /* Opera */
   image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
   -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.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.current,
.mxw-pagination  a:hover {
    background-color: #0191ea;
    color: #fff !important;
}
.mxw-pagination  a:first-child {
    margin-left: 0;
}
.mxw-pagination  a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .mxw-pagination {
        margin-top: 30px;
    }
    .mxw-pagination  a {
        font-size: 12px;
        margin: 2px;
        padding: 8px 10px;
    }
}
/* ==================== 分页样式 end ==================== */

/* ==================== 通用标签页 start ==================== */
/* 标签页 */
.mxw-tabs {
    padding-left: 0;
    padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.mxw-tabs .mxw-tabs-wrap {
    position: relative;
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
    align-items: center;
    justify-content: flex-start;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
    display: none;
}
.mxw-tabs .mxw-tabs-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    font-size: 0.3rem;
    white-space: nowrap;
    background: #eaeaea;
    color: #333;
    padding: 0rem 0.5rem;
    margin-right: 0.9rem;
    line-height: 0.6667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #0748b2;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    font-size: 0;

    background: #f9f9f9;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: stretch;
    font-size: 0;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    padding-left: 0.333rem;
    display: flex; align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}
.mxw-keywords .left strong {
    vertical-align: inherit; color: #444444;
}
.mxw-keywords .left span {
    color: #000;
    vertical-align: middle;
    /*font-weight: bold;*/
    display: flex; align-items: center;
}
.mxw-keywords .left span img{ margin-right: 0.167rem;}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #0191ea;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right{
    display: flex;
    align-items: center;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
   /* content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);*/
}
.mxw-keywords .right input {
    width: 284px;

    height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    margin-right: -20px;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    width: 68px;
    height: 44px;
    background-color: #0191ea; cursor: pointer;
}
.mxw-keywords .right button .icon {
    display: block;
    width: 14px;
    height: 14px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;
    background-size: cover;
}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 40px;
    }
    .mxw-mob-nav .menu-btn {
        flex-shrink: 0;
        width: 26px;
        height: 20px;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
    }
    .mxw-mob-nav .menu-btn i {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 100px;
        background-color: #333;
    }
    .mxw-mob-nav .menus-box {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 50%;
        max-width: 450px;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        visibility: hidden;
        opacity: 0;
        transform: translateX(50%);
    }
    .mxw-mob-nav .menus-box.active {
        visibility: visible;
        opacity: 1;
    }
    .mxw-mob-nav .menus-box.active .menus {
        transform: translateX(0);
    }
    .mxw-mob-nav .menus {
        width: 60%;
        height: 100%;
        margin-right: 0;
        margin-left: auto;
        background: #fff;
        transform: translateX(100%);
        transition: all 0.5s;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-flow: column;
    }
    .mxw-mob-nav .menus > ul {
        width: 100%;
        overflow: auto;
    }
    .mxw-mob-nav .menus > ul > li.active > ul {
        display: block;
    }
    .mxw-mob-nav .menus > ul > li > a {
        display: block;
        width: 100%;
        padding: 15px 18px;
        font-size: 14px;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mxw-mob-nav .menus > ul > li > a.sub:after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-top: 4px solid #555;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 0;
        margin-left: 10px;
    }
    .mxw-mob-nav .menus > ul > li > ul {
        display: none;
        padding: 0px 24px;
    }
    .mxw-mob-nav .menus > ul > li > ul > li > a {
        font-size: 14px;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        line-height: 36px;
        height: 36px;
        border-bottom: 1px solid #f3f3f3;
    }
    .mxw-mob-nav .menus-head {
        width: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #F8F8F8;
        border-bottom: 0.6px solid #eee;
        font-size: 16.8px;
        font-weight: bold;
        line-height: 54px;
        height: 54px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .mxw-mob-nav .menus-head .text {
        color: #333;
        line-height: 1.2;
    }
    .mxw-mob-nav .menus-head .mxw-close {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        outline: none;
        position: relative;
        transform: rotate(45deg);
    }
    .mxw-mob-nav .menus-head .mxw-close:before,
    .mxw-mob-nav .menus-head .mxw-close:after {
        content: "";
        display: block;
        border-radius: 100px;
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #333;
        transform: translate(-50%, -50%);
    }
    .mxw-mob-nav .menus-head .mxw-close:before {
        width: 2px;
        height: 100%;
    }
    .mxw-mob-nav .menus-head .mxw-close:after {
        width: 100%;
        height: 2px;
    }
}
/* ==================== 移动端头部 end ==================== */
/* ==================== 轮播图 start ==================== */
.mxw-banner {
    font-size: 0;
    position: relative;z-index: 0;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
    height: 100%; text-align: center;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 0.833rem;
    height: 0.167rem;
    background-color: #ffffff;
    opacity: 0.5;
    margin-left: 5px;
    margin-right: 5px;
    outline: none;
    border-radius: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0191ea;
    border-color: #0191ea;
    opacity: 1;

}
.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: #fff;
}
.mxw-banner .swiper-button-next {
    right: 0;
}
.mxw-banner .swiper-button-prev {
    left:0;
}
.mxw-banner .banner-swiper {
    --swiper-navigation-color: #fff;
    /* 单独设置按钮颜色 */
    --swiper-navigation-size: 24px;
    /* 设置按钮大小 */
}

@media screen and (max-width: 751px) {
    .mxw-banner .swiper-pagination {
        padding-right: 0px;
        bottom: 10px;
        max-width: 80%;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
        font-size: 14px;
        width: 8px;
        height: 8px;
    }
    .mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-size: 18px;
    }
    .mxw-banner .swiper-button-next,
    .mxw-banner .swiper-button-prev {
        display: none;
    }
}
/* ==================== 轮播图 end ==================== */


/* 容器大小 */
.mxw-box {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 84.1%;
}
.mxw-box2 {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 86%;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}





/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    html {

    }
    .mxw-box {
        max-width: 89%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.page-wrap>.mxw-box{ font-size: 14px}
.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:#0191ea;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 240%;
        width:240%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
	.footer3 ul li .iconfont{ width:initial; height:initial}
    .product-detail-tab .product-detail-tabcon iframe,.product-detail-tab .product-detail-tabcon video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content  iframe, .xypg-right-content  video{ max-width: 100%; height: 220px !important;}
    .xypg-right-content img{ max-width: 100%; height: auto !important;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}

.top-box{ width: 95%; max-width: 1800px;}
.top-box .logo-box{  font-size: 0;    flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start; margin: 0.333rem 0 0.333rem 0; border-right: 1px solid #dedede; padding-right: 0.533rem ;}
.top-box .logo-box .t-logo>img{ max-height:1.017rem; margin-bottom: 0.25rem;}
.top-box .logo-text{ padding-left: 0.7rem; flex-grow:1; min-width: 0;  display: flex; display: -webkit-flex; display: -moz-flex; flex-direction: column; justify-content: center; align-items: flex-start;	}
.top-box .logo-text .t1{	font-size: 0.667rem; font-weight: bold; line-height: 1;	 /* 设置背景渐变，定义颜色停止点位置 */
    background: linear-gradient(
            90deg,
            #ff6000,           /* 开始颜色 */
            #ff6000 9%,       /* 开始颜色延伸到25% */
            #ffc700 22%,       /* 中间颜色从25%开始 */
            #ff6000 35%,       /* 结束颜色从75%开始 */
            #ff6000            /* 结束颜色 */
    );
    /* 使用 WebKit 前缀 */
    -webkit-background-clip: text;
    /* 标准属性 */
    background-clip: text;
    /* 设置文本颜色为透明 */
    color: transparent;}
.top-box .logo-text .t2{	font-size: 0.3rem; color: #666; font-weight: lighter;	letter-spacing: 0.058rem; margin-top: 0.167rem}

.mxw-keywords .left .zx{ display: inline-block; font-size: 0.35rem; margin-right: 0.833rem; vertical-align: middle}
.mxw-keywords .left .zx>img{ margin-right: 5px}
.mxw-keywords .left .zx b{ color: #0748b2; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; opacity: 0.4 }
.mxw-link>.mxw-box{display:flex;justify-content:flex-start;align-items:flex-end;position:relative;overflow:visible;}
.mxw-link .mxw-link-list{color:#333;position:absolute;top:0;left:0;width:100%;transform:translateY(-100%);padding:10px 0;display:none; background: #fff;}
.mxw-link .mxw-link-list a{font-size:14px;line-height:1.8;}
.mxw-link .title{font-size:0.3rem;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:0.267rem;line-height:1.8;display:block;}
.mxw-link .list a:after,
.mxw-link .mxw-link-list a:after{content:",";}
.mxw-link .list a:last-child:after,
.mxw-link .mxw-link-list a:last-child:after{display:none;}

header{
 background: #fff;
 /*position: sticky; top: 0; width: 100%; z-index: 100;*/
}
header .welcome {
    line-height: 34px;
    border-bottom: 1px solid #e5e5e5; display: none;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #aeaeae;
    height: 100%;

}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
    color: #aeaeae;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}


.top-box{ align-items: stretch;  }
.top-box .right{ display: flex; flex-shrink: 0; margin-left:3rem; justify-content: flex-end; align-items: center;}



.x-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    width: 100%;

}
.x-menu > li {
    margin: 0;
    text-align: center;
    float: none;
    position: relative;
    flex-grow: 1;
    min-width: 0;
    z-index: 1;
}

.x-menu > li > a {
    font-size: 0.333rem;
    color: #fff;
    display: flex;
    height: 100%;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-transform: uppercase;
    line-height: 1.3;
    width: 100%;
    padding: 0.3rem 0;
}

.x-menu > li:last-child>a{ background: none}
.x-menu > li > a:hover {
    color: #fff;
}
.x-menu>li.active{ 		background-color: #7cbaea;	}
.x-menu > li.active > a {color: #fff;}

.x-menu > li.active > a::before{ opacity: 1; transition: all 0.3s}
.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 200px;
    left:50%;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%,20px);
    transform: translate(-50%,20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu > li > a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
    align-content: center;

}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#0191ea;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}
.top-box .right .tp-tel{ display: flex; align-items: center; justify-content: flex-start;	}
.top-box .right .tp-tel img{ height: 0.633rem; margin-right: 0.25rem;}
.top-box .right .tp-tel .icon{ flex-shrink: 0;}
.top-box .right .tp-tel .con{flex-grow: 1; min-width: 0;}
.top-box .right .tp-tel .con .st{ line-height: 1;	font-size: 0.3rem; color: #333;}
.top-box .right .tp-tel .con .num{	font-size: 0.533rem;font-weight: bold; line-height: 1; margin-top: 0.133rem; /* 定义线性渐变背景 */
    background: linear-gradient(90deg, #ff6000, #ffc700);
    /* 将背景裁剪到文字上 */
    -webkit-background-clip: text;
    background-clip: text;
    /* 设置文本颜色为透明，使得背景显示出来 */
    color: transparent;}
.nav-bg{ background: #0191ea}

.n-banner{ position: relative;}
.n-banner .mxw-box{ position: absolute; bottom: 0.333rem;	font-size: 0.333rem;color: #ffffff; left: 0; right: 0; line-height: 1; font-weight: lighter;}
.n-banner .mxw-box a{ color: #fff;}

.ab-box{ padding-top: 0.833rem; padding-bottom: 1.333rem;}
.n-title{ text-align: center;}
.n-title .cn{font-size: 0.5rem; font-weight: bold;}
.n-title .en{	font-size: 0.267rem; color: rgba(0, 0, 0, 0.5); text-transform: uppercase; font-weight: bold; }
.n-title::after{	width: 20px;
    height: 3px;
    background-color: #0191ea; content: ""; display: block; margin: 0.38rem auto 0; }
.ab-box .desc{ text-align: center; margin: 0.667rem auto 1.5rem; line-height: 2.5;}
.num-box{ display: flex; align-items: stretch; justify-content: space-between;}
.num-box .item{ width: 20%; display: flex; align-items: center; justify-content: space-between;}
.num-box .item .num{ display: flex; align-items: flex-end; justify-content: flex-start;}
.num-box .item .num .scrolling-numbers{	font-family: Impact,sans-serif;
    font-size: 0.8rem;  line-height: 1;color: #0191ea; }
.num-box .item .num sub{ margin-left: 0.367rem;}
.num-box .item p{	font-size: 0.3rem; margin-top: 0.417rem; width: max-content; width: -moz-max-content; padding-bottom: 0.45rem; border-bottom: 2px solid #cccccc}
.num-box .item  img{ height: 1.083rem;}
.ab1-swiper{ margin-top: 1.667rem; overflow: hidden;}
.ab1-swiper .swiper-slide{ width: 32%; 	border-radius: 0.317rem; overflow: hidden; }
.ab1-swiper .swiper-slide img{ width: 100%}
.ab1-swiper .swiper-pagination{ position: initial; transform: none; margin:0.8rem auto 0;  overflow: hidden; }
.ab1-swiper .swiper-pagination .swiper-pagination-bullet{	width: 15px;
    height: 15px;
    background-color: #e1e1e1; opacity: 1; border-radius: 50%; transform: none;}
.ab1-swiper .swiper-pagination .swiper-pagination-bullet-active{ background: #0191ea}
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{ transform: none}
.ab2-box{ padding: 1.167rem 0 1.833rem; background: url("../images/ab2-bg.jpg") center no-repeat;}
.ab2-box .n-title .cn{	color: #ffffff;}
.ab2-box .n-title .en{	color: #ffffff;}
.ab2-box .n-title::after{ background: #fff;}
.ab2-body{ margin: 1.75rem auto 0; display: flex; align-items: stretch; justify-content: space-between;}
.ab2-body .item{ width: 16%; text-align: center; color: #fff;}
.ab2-body .item .st{ 	font-size: 0.4rem;	color: #fffefe;  margin: 0.4rem auto 0.5rem;}
.ab2-body .item .desc{	font-size: 0.3rem; line-height: 2;}
.ab3-box{ padding: 0.833rem 0 0.733rem;}
.ab3-body{ margin: 0.9rem auto 0; display: flex; align-items: stretch; justify-content: space-between;}
.ab3-body .ab3-img{ width: 24.2%; flex-shrink: 0; margin-right: 1.2rem;}
.ab3-body .ab3-right{ flex-grow: 1; min-width: 0;}
.ab3-body .ab3-right .top{ display: flex; align-items: stretch; justify-content: flex-start; }
.ab3-body .ab3-right .top .item{background-color: #f2f2f8;border-radius: 0.167rem; padding: 0.533rem 1.417rem; text-align: center; margin-right: 1.5rem;}
.ab3-body .ab3-right .top .item .num{	font-size: 0.85rem;	color: #052053; font-weight: bold; line-height: 1;}
.ab3-body .ab3-right .top .item p{	font-size: 0.3rem;	color: #052053; margin-top: 0.3rem;line-height: 1;}
.ab3-body .ab3-right .bot{ display: flex; align-items: stretch; justify-content: center; margin-top: 0.8rem;}
.ab3-body .ab3-right .bot .bo1{ flex-shrink: 0; width: 40.3%;}
.ab3-body .ab3-right .bot .bo2{ flex-grow: 1; min-width: 0;}
.ab3-swiper{ overflow: hidden;}
.ab3-swiper .swiper-slide{ display: flex; align-items: stretch; justify-content: space-between;}
.ab3-swiper .swiper-slide .img:nth-child(2){ margin-left: 0.5rem;}
.ab3-body .ab3-right .bot .bo1{}
.ab3-body .ab3-right .bot .bo1 .item{	font-size: 0.333rem;	color: #888888; display: flex; align-items: center; justify-content: flex-start; margin-bottom: 0.8rem;}
.ab3-body .ab3-right .bot .bo1 .item img:nth-child(1){ height: 0.417rem; margin-right: 0.133rem;filter: invert(51%) sepia(1%) saturate(4%) hue-rotate(322deg) brightness(105%);-webkit-filter: invert(51%) sepia(1%) saturate(4%) hue-rotate(322deg) brightness(105%);-ms-filter: "invert(51%) sepia(1%) saturate(4%) hue-rotate(322deg) brightness(105%)";}
.ab3-body .ab3-right .bot .bo1 .item img:nth-child(2){ height: 0.15rem; margin-left: 0.133rem; overflow: hidden; visibility: hidden;}
.ab3-body .ab3-right .bot .bo1 .item.active{ color: #000}
.ab3-body .ab3-right .bot .bo1 .item.active img{ filter: none; -webkit-filter: none; -ms-filter: none}
.ab3-body .ab3-right .bot .bo1 .item.active img:nth-child(2){ visibility: visible;}
.ab4-box{ padding: 1.583rem 0 2.083rem; background: url("../images/ab4-bg.jpg") center no-repeat; background-size: cover;}
.ab4-box .n-title .cn{	color: #ffffff;}
.ab4-box .n-title .en{	color: rgba(255, 255, 255, 0.5);}
.ab4-box .n-title::after{ background: #fff;}
.ab4-body{ margin-top: 1.917rem; position: relative;}
.ab4-swiper{ overflow: hidden; width: 85%; margin: 0 auto; background: url("../images/ct.png") repeat-x; background-position-y: 3.19rem;}
.ab4-swiper .swiper-slide{ color: #fff; text-align: center; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; display: -webkit-flex; display: -moz-flex; display: -ms-flex;}
.ab4-swiper .swiper-slide .dian{	width: 10px;
    height: 10px;
    background-color: #ffffff; border-radius: 50%; margin: 0.2rem auto; order: 2;}
.ab4-swiper .swiper-slide .icon{ order: 1;  height: 1.917rem; display: flex; margin-top: 1rem;}
.ab4-swiper .swiper-slide .icon img{height: 0.767rem; margin-top: auto; margin-bottom: 0 }
.ab4-swiper .swiper-slide .con{	font-size: 0.3rem; color: #fff; line-height: 1.6; order: 4; height: 1.917rem; }
.ab4-swiper .swiper-slide .num{ order: 3;	font-size: 0.5rem; font-weight: bold; margin-bottom: 0.333rem;}
.ab4-swiper .swiper-slide:nth-child(2n) .icon{ order: 4; margin-bottom: 0.667rem; margin-top: 0}
.ab4-swiper .swiper-slide:nth-child(2n) .con{ order: 1; }
.ab4-swiper .swiper-slide:nth-child(2n){ justify-content: flex-start; }
.ab4-swiper .swiper-slide:nth-child(2n) .icon img{ margin-top: 0; margin-bottom: auto;}
.ab4-swiper .swiper-slide:nth-child(2n) .num{ margin-bottom: 0; margin-top: 0.333rem; order: 2;}
.ab4-swiper .swiper-slide:nth-child(2n) .dian{ order: 3}
.ab4-body .swiper-button-prev::after,.ab4-body .swiper-button-next::after{ color: #fff;}
.ab4-body .swiper-button-prev{ left: 0;}
.ab4-body .swiper-button-next{ right: 0}

.pro-box{ padding: 0.833rem 0 1.1rem;}
.pro-box .pro-list{ margin-top: 0.75rem;}
.case-list .st{ padding: 0.2rem; color: #fff; text-align: center; background: #0191ea;}

.news-page{padding: 1.333rem 0 1.167rem;}
.news-page .news-list{ display: flex; align-items: stretch ; justify-content: space-between; flex-wrap: wrap}
.news-page .news-list .item{ padding: 0.5rem 0.467rem; border: 1px solid #eeeeee; width: 48.2%; display: flex; align-items: center; justify-content: space-between; }
.news-page .news-list .item:nth-child(2n) ~ .item{ margin-top: 0.5rem;}
.news-page .news-list .item .date{ background: #cccccc; color: #fff; font-size: 0.567rem; font-weight: bold; text-align: center; flex-shrink: 0;margin-right: 0.333rem; padding: 0.2rem 0.167rem; }
.news-page .news-list .item .date p{ font-size: 0.333rem; font-weight: normal;}
.news-page .news-list .item .text{ flex-grow: 1; min-width: 0}
.news-page .news-list .item .text .title{ color: #333; font-size: 0.3rem; font-weight: bold;}
.news-page .news-list .item .text .desc{ font-size: 0.233rem; color: #666; margin-top: 0.25rem; line-height: 1.6; height: 0.75rem; overflow: hidden}
.news-page .news-list .item:hover{ border-color: #0079c4}
.news-page .news-list .item:hover .text .title{color: #0079c4}
.news-page .news-list .item:hover .date{ background: #0079c4}

.cont-box{ padding: 0.833rem 0 1.167rem;}
.cont-top{	background-color: #ffffff;
    box-shadow: 0rem 0rem 0.3rem 0rem
    rgba(0, 0, 0, 0.1); margin-top: 0.75rem; display: flex; align-items: stretch; justify-content: space-between;}
.cont-top .map{ width: 58.125%; flex-shrink: 0;	border: solid 1px #cacaca;}
.cont-top .info{ flex-grow: 1; min-width: 0; padding: 1.167rem 1.2rem 1.083rem 1.583rem;}
.cont-top .info h1{	font-size: 0.5rem;}
.cont-top .info .text{ margin: 0.5rem auto 0.667rem; 	font-size: 0.3rem;	color: #444444; line-height: 2.2}
.cont-top .info .list{ display: flex; align-items: stretch; justify-content: flex-start; padding-top: 0.667rem; border-top: 1px solid rgba(0, 0, 0, 0.1);}
.cont-top .info .list .item{ margin-right: 0.667rem; text-align: center; max-width: 1.867rem;}
.cont-top .info .list .item p{	font-size: 0.233rem; margin-top: 0.25rem;}

.liuuuu{
    background: #fff;
    margin-top: 82px;
    box-sizing: border-box;
    padding: 1.1rem 1rem;

    box-shadow: 0rem 0rem 0.3rem 0rem
    rgba(0, 0, 0, 0.1);
}
.liuuuu_a{
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    font-stretch: normal;
    line-height: 45px;
    letter-spacing: 0px;
    color: #333333;
}
.kkjliuud{
    margin-top: 3%;
}
.hhutrle{
    width: 32%;
}
.hhuy{
    width: 32%;
    height: 66px;
    background-color: #ffffff;
    border: solid 1px #e1e1e1;
    line-height: 66px;
    position: relative;font-size: 0;
}
.hhuy input{
    border: none;
}
.hhuy #codeimg{
    float: right;
    height: auto;
    line-height: 64px;
    overflow: hidden;
    position: absolute; right: 15px;
    top: 16px;
}
.hhuy input{
    height: 1.033rem;
    background-color: #ffffff;
    line-height: 1.033rem;
    box-shadow: none;
    border-radius: 0px;
    padding: 0 15px;
}

.hhutrle input{
    height: 66px;
    background-color: #ffffff;
    border: solid 1px #e1e1e1;
    line-height: 66px;
    box-shadow: none;
    border-radius: 3px;
    width: 100%;
    padding: 0 20px;
}
.hhutr{
    margin-bottom: 2%;
    display: flex;
    justify-content: space-between;
}
.dhsunjh textarea{
    height: 130px;
    background-color: #ffffff;
    border: solid 1px #e1e1e1;
    line-height: 66px;
    box-shadow: none;
    border-radius: 0px;
    width: 100%;
    padding: 0 20px; resize: none;
}
.hunfhg {
    width: 258px;
    height: 64px;
    line-height: 64px;
    margin:3% auto 0;
    text-align: center;
}
.hunfhg .btn{
    line-height: 1.067rem;
    height: 1.067rem;
    background-color: #0191ea;
    border-radius: 5px;
    padding: 0px;
    font-size: 16px;
    color: #fff;  width: 4.167rem; cursor: pointer;
}

@media(max-width:1600px){
    .hhugfrtg_a{
        font-size: 28px;
    }
    .liuuuu_a{
        font-size: 28px;
    }
}

footer{ padding-top: 0.867rem; background: url("../images/ft-bg.png") center no-repeat; background-size: cover;}
footer .up{ display: flex; align-items: flex-start; justify-content: space-between; }
footer .up .tc-left{ width: 26%; flex-shrink: 0;}
footer .up .tc-right{ width: 57%; flex-shrink: 0; text-align: right;}
footer .up .tc-left .d-logo img{ height: 0.967rem;}
footer .up .tc-left .d-add{	font-size: 0.267rem;	color: #ffffff; margin-top: 0.85rem; }
footer .up .tc-left .d-add>p{ margin-bottom:0.417rem; }
footer .up .tc-left .d-add>p i{	font-size: 0.4rem; font-weight: bold; font-style: italic}
footer .up .tc-right .d-menu{	font-size: 0.267rem; margin-top: 0.25rem; display: flex; align-items: center; justify-content: space-between; }
footer .up .tc-right .d-menu a{ color: #fff;	font-size: 0.267rem;}
footer .up .tc-right .meiti{ display: flex; align-items: stretch; justify-content: flex-end; margin-top: 0.75rem;}
footer .up .tc-right .meiti .item{ margin-left: 0.383rem; height: 0.667rem; width: 0.667rem; overflow: hidden;  }
footer .up .tc-right .meiti .item img{ transition: all 0.3s; margin-top: -100%;  }
footer .up .tc-right .copy{ color: #fff; margin: 0.6rem auto;	font-size: 0.3rem;
    opacity: 0.8; line-height: 2;}
footer .up .tc-right .meiti .item:hover img{ margin-top: 0; transition: all 0.3s}

.tc-about{ padding: 1.583rem 0 3rem; background: url("../images/about-bg.jpg") center no-repeat; background-size: cover;}
.tc-about>.mxw-box{ display: flex; align-items: flex-start; justify-content: space-between;}
.tc-about>.mxw-box .tc-left{ width: 25.6%; flex-shrink: 0;}
.tc-about>.mxw-box .tc-left .img img{ height: 1.317rem;}
.tc-about>.mxw-box .tc-left .inab-swiper{ overflow: hidden; margin-top: 0.833rem;}
.tc-about>.mxw-box .tc-right{width: 55%; flex-shrink: 0; padding-top: 0.7rem;}
.tc-about>.mxw-box .tc-left .inab-swiper .swiper-slide{ text-align: center;}
.tc-about>.mxw-box .tc-left .inab-swiper .swiper-slide .nian{ display: flex; align-items: flex-end; justify-content: center;}
.tc-about>.mxw-box .tc-left .inab-swiper .swiper-slide .nian span{	font-size: 1.333rem;	letter-spacing: -3px;
    color: #0191ea; line-height: 1; font-weight: bold;}
.tc-about>.mxw-box .tc-left .inab-swiper .swiper-slide .nian sub{	font-size: 0.5rem; font-weight: bold; color: #0191ea}
.tc-about>.mxw-box .tc-left .inab-swiper .swiper-slide .st{	font-size: 0.433rem; font-weight: bold; margin-top: 1.25rem;	color: #333333;}
.tc-about>.mxw-box .tc-left .inab-swiper .swiper-slide .desc{ font-size: 0.3rem; margin-top: 0.25rem;	color: #333333; line-height: 2;}

.inab-swiper .swiper-pagination{ position: initial; margin-top: 1.4rem; font-size: 0;}
.inab-swiper .swiper-pagination .swiper-pagination-bullet{	width: 0.25rem;
    height: 0.25rem; opacity: 1;
    background-color: #e1e1e1;}
.inab-swiper .swiper-pagination .swiper-pagination-bullet-active{ background-color: #0191ea;}

.tc-about>.mxw-box .tc-right .txt1{	font-size: 0.667rem; font-weight: bold;	color: #0191ea;line-height: 1;}
.tc-about>.mxw-box .tc-right .txt2{font-size: 0.667rem; font-weight: bold;	color: #333; margin-top: 0.633rem;line-height: 1;}
.tc-about>.mxw-box .tc-right .desc{	font-size: 0.333rem; margin: 0.917rem auto 1.3rem; line-height: 2;}
.mm-more{background-color: #0191ea; padding: 0.233rem 0.433rem; line-height: 1; display: inline-flex;
 align-items: center; color: #fff;    border-radius: 0.417rem;}
.mm-more img{ margin-left: 0.15rem;}

.tc-oem{ padding-top: 1.133rem;}
.tc-title{ text-align: center;}
.tc-title .tx1{	font-size: 0.667rem;	color: #0191ea; font-weight: bold;}
.tc-title .tx2{	font-size: 0.667rem;	color: #333; font-weight: bold; margin: 0.3rem auto 0.267rem;}
.tc-title .tx3{	font-size: 0.3rem;	color: #333; }
.oem-body{ margin-top: 0.917rem; background: url("../images/oem-bg.jpg") center no-repeat; background-size: cover; padding: 1.667rem 0;}
.oem-body>.mxw-box{display: flex; align-items: stretch; justify-content: center;color: #fff;  flex-wrap: wrap; padding: 0 1.917rem;}
.oem-body>.mxw-box .item{ width: 33.33%; text-align: center;}
.oem-body>.mxw-box .item .cn{	font-size: 0.5rem; font-weight: bold; margin: 0.5rem auto 0.233rem;}
.oem-body>.mxw-box .item .ico img{ height: 1rem;}
.oem-body>.mxw-box .item .en{	font-size: 0.233rem; text-transform: uppercase; color: rgba(255,255,255,.5)}
.oem-body>.mxw-box .item:nth-child(3n)~.item{ margin-top: 2.333rem;}

.tc-pro{ padding: 1.333rem 0 1.583rem; background: url("../images/pro-bg.jpg") center no-repeat; background-size: cover;}
.pro-body{ max-width: 1920px;   margin: 0 auto;
padding-top: 0.833rem; display: flex; align-items: stretch; justify-content: space-between;}
.pro-body .swiper-button-prev,.pro-body .swiper-button-next{ width: 2.667rem; background: #0191ea;position: initial;  flex-shrink: 0; margin: 1.53rem 0 1.55rem; height: initial;}
.pro-body .swiper-button-prev::after{ display: none; }
.pro-body .swiper-button-next::after{ display: none; }

.pro-swiper{ flex-grow: 1; min-width: 0; overflow: hidden;}
.pro-swiper .swiper-slide{ width: 25%;}
.pro-swiper .swiper-slide .top{ text-align: center;	background-color: #0191ea; color: #fff; padding: 0.3rem 0.3rem 0.283rem;visibility: hidden; }
.pro-swiper .swiper-slide .top .t1{	font-size: 0.433rem; font-weight: bold; line-height: 1; padding-bottom: 0.267rem; background: url("../images/gdxt.png") center bottom no-repeat;  }
.pro-swiper .swiper-slide .top .t2{	margin-top: 0.233rem;	font-size: 0.4rem;  line-height: 1;}
.pro-swiper .swiper-slide .bot{background-color: #0191ea; text-align:center; padding: 0.267rem 0.3rem 0.2rem; visibility: hidden;}
.pro-swiper .swiper-slide .bot img{ height: 0.667rem;}
.pro-swiper .swiper-slide:hover .top{ visibility: visible; transition: all 0.3s}
.pro-swiper .swiper-slide:hover .bot{ visibility: visible;transition: all 0.3s }
.pro-swiper .swiper-slide .con{ position: relative; overflow: hidden;}
.pro-swiper .swiper-slide .con img{ width: 100%}
.pro-swiper .swiper-slide .f-con{  position: absolute; left: 0; bottom:0; width: 100%; height: 100%; background: rgba(1, 145, 234, 0.7); display: flex; display: -webkit-flex; display: -ms-flex; display: -moz-flex; flex-direction: column; justify-content: center; align-items: center; flex-wrap: wrap;transition: all 0.3s; display: none}
.pro-swiper .swiper-slide .con .t1{	font-size: 0.433rem; font-weight: bold; line-height: 1; padding-bottom: 0.267rem; background: url("../images/gdxt.png") center bottom no-repeat;   color: #fff}
.pro-swiper .swiper-slide .con .t2{	margin-top: 0.233rem;	font-size: 0.4rem;  line-height: 1; color: #fff}
.pro-swiper .swiper-slide .con .t3{	font-size: 0.267rem; margin-top: 0.2rem;color: #fff}
.pro-swiper .swiper-slide .con .ico{ margin-top: 0.75rem;}
.pro-swiper .swiper-slide:hover .f-con{ bottom: -100%;}

.tc-gc{ position: relative; max-width: 1920px; margin: 0 auto;}
.gc-cate{display: flex; align-items: stretch; justify-content: flex-start; position: absolute; top: 0; left: 0; right: 0;z-index: 9;	background-color: #ffffff;}
.gc-cate .item{ width: 20%; text-align: center; padding: 0.333rem; border-right: 1px solid #999999;}
.gc-cate .item:last-child{ border: 0}
.gc-cate .item .cn{ font-size: 0.35rem; margin: 0.15rem auto; line-height: 1;}
.gc-cate .item .en{ 	font-size: 0.2rem; color: #333}
.gc-cate .item img{ height: 0.933rem;}
.gc-cate .item.active{ color: #fff;	background-color: #179aec;}
.gc-cate .item.active .en{ color: #fff;}
.gc-cate .item.active .icon img{ filter:brightness(500);  -ms-filter:"brightness(100)"; -webkit-filter:brightness(100) }

.gc-swiper{ overflow: hidden;}
.gc-swiper .swiper-slide{ position: relative;}
.gc-swiper .swiper-slide .flx{ position: absolute; bottom: 0; left: 2.5rem;  width: 46.1%;	background-color: rgba(1, 145, 234, 0.8);  color: #fff; padding: 0.7rem 0.917rem 0.917rem;}
.gc-swiper .swiper-slide .flx .cn{	font-size: 0.567rem; font-weight: bold;}
.gc-swiper .swiper-slide .flx .en{	font-size: 0.333rem; margin-top: 0.233rem; font-weight: lighter}
.gc-swiper .swiper-slide .flx .st{ padding-left: 0.6rem; border-left: 7px solid #ffffff;}
.gc-swiper .swiper-slide .flx .desc{ margin-top: 0.533rem;	font-size: 0.333rem; line-height: 1.8}

.tc-team{ padding: 1.25rem 0 1.833rem;}
.team-swiper{ margin: 1.083rem auto 0; overflow: hidden;}
.team-swiper .swiper-slide{ width: 30%;}
.team-swiper .swiper-slide .st{ display: flex; align-items: center; justify-content: space-between;	background-color: #179aec; color: #fff; padding: 0.4rem 0.8rem;}
.team-swiper .swiper-slide .st p{	font-size: 0.333rem; font-weight: bold; flex-grow: 1; min-width: 0;}
.team-swiper .swiper-slide .st .icon{ flex-shrink: 0; margin-left: 0.5rem;}
.team-swiper .swiper-slide .st .icon img{ height: 0.217rem;}

.tc-news{ padding: 1.583rem 0 3.167rem; background: url("../images/news-bg.jpg") center no-repeat; background-size: cover; }
.tc-news .ns-title{ text-align: left;}
.tc-news .ns-title .tx1{	font-size: 0.433rem; font-weight: bold;}
.tc-news .ns-title .tx2{		font-size: 0.5rem; font-weight: bold; margin-top: 0.5rem;}
.tc-news .up{ display: flex; align-items: flex-end; justify-content: space-between;}
.tc-news .up .n-more{ display: inline-flex; display: -webkit-inline-flex; padding: 0.233rem 0.433rem;	background-color: #0191ea;
    border-radius: 0.417rem;  color: #fff; align-items: center;}
.tc-news .up .n-more img{ margin-left: 0.15rem; height: 0.25rem; flex-shrink: 0;}
.tc-news .news-swiper{ margin-top: 2rem;}
.tc-news .news-swiper .swiper-slide{ width: 10.533rem; padding: 0.55rem 0; transition: all 0.3s }
.news-body{ position: relative;}
.tc-news .news-swiper .swiper-slide .con{ padding: 0.7rem 1.5rem 0.667rem 0.933rem; background: #fff;border-right: 1px solid rgba(0, 0, 0, 0.26);}
.tc-news .news-swiper .swiper-slide .con .tim{	color: #00b5ed;	font-size: 0.333rem; font-style: italic;}
.tc-news .news-swiper .swiper-slide .con .desc{	font-size: 0.333rem; color: #777; margin: 0.433rem auto 0.533rem; line-height: 2; height: 1.333rem}
.tc-news .news-swiper .swiper-slide .con .c-more{	font-size: 0.3rem; color: #888; }
.tc-news .news-swiper .swiper-slide .con .c-more img{ margin-left: 0.15rem; height: 0.25rem;}
.tc-news .news-swiper .swiper-slide:hover{transition: all 0.3s; background: url("../images/ns-bg.png") center no-repeat; background-size: cover;}
.tc-news .news-swiper .swiper-slide:hover .tim{ color: #fff;}
.tc-news .news-swiper .swiper-slide:hover .desc{ color: #fff;}
.tc-news .news-swiper .swiper-slide:hover .c-more{ color: #fff;}
.tc-news .news-swiper .swiper-slide:hover .con{ background: none;}
.tc-news .news-swiper .swiper-slide:hover .c-more img{filter:brightness(500);  -ms-filter:"brightness(100)"; -webkit-filter:brightness(100)}
.news-body .swiper-button-prev,.news-body .swiper-button-next{ width: 1.267rem; height: 1.267rem;}
.news-body .swiper-button-prev::after,.news-body .swiper-button-next::after{ display: none;}


.ab2-swiper{ overflow: hidden; margin-top: 1rem; position: relative}
.ab2-swiper p{ font-size: 0.3rem; background: #999; padding: 10px; text-align: center; color: #fff}
.ab2-swiper .swiper-slide{ width: 20%;}


    /* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 0 0 1.067rem;

}
.ny-news-desc > .mxw-box {
    padding-top: 60px;
}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;
    padding-bottom: 19px;
}
.ny-news-desc .info {
    font-size: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #d5d5d5;
    margin-bottom: 19px;
}
.ny-news-desc .info .text {
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-right: 19px;
    border-left: 1px solid #ccc;
    padding-left: 19px;
}
.ny-news-desc .info .tip + .text {
    border-left: 0;
}
.ny-news-desc .info .tip {
    border: 1px solid #999;
    border-radius: 97px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    display: inline-block;
    color: #999;
}
.ny-news-desc .article img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto !important;
}
.ny-news-desc .article {
    line-height: 1.8;
    text-align: justify;

}
.ny-news-desc .article p {
    line-height: 1.8;
}

@media screen and (max-width: 751px) {
    .ny-news-desc {
        padding: 0;
        background: none;
        margin-bottom: 0;
    }
    .ny-news-desc > .mxw-box {
        padding: 45px 0;
    }
    .ny-news-desc .article {

    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */

body{ max-width: 100vw; overflow-x: hidden; }







/*
filter: invert(51%) sepia(1%) saturate(4%) hue-rotate(322deg) brightness(105%) contrast(95%);


*/









































.product-detail-tabcon table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.product-detail-tabcon table th,
.product-detail-tabcon table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.product-detail-tabcon table td p{line-height:1.8!important;}
.product-detail-tabcon table tr:hover{background-color:#f2f2f2!important;}
.product-detail-tabcon table tr:nth-child(2n-1){background-color:#fff ;}
.product-detail-tabcon table tr:nth-child(2n){background-color:#fdfdfd ;}

.xypg-detail-con table{width:100%;font-size:14px;margin-top:15px;margin-bottom:15px;color:#505459}
.xypg-detail-con table th,
.xypg-detail-con table td{border:1px solid #ddd !important;padding: 8px !important; background: none !important;}
.xypg-detail-con table td p{line-height:1.8!important;}
.xypg-detail-con table tr:hover{background-color:#f2f2f2!important;}
.xypg-detail-con table tr:nth-child(2n-1){background-color:#fff ;}
.xypg-detail-con table tr:nth-child(2n){background-color:#fdfdfd ;}



@media screen and (max-width: 1440px) {
    .top-box{ width: 95%; max-width: 95%;}






}

/* ==================== 页面具体样式 end ==================== */






/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll {
    overflow: hidden;
}
.mxw-scroll .scroll-wrap {
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.mxw-scroll .scroll-item {
    flex-shrink: 0;
}

@media screen and (max-width: 500px) {
    .mxw-scroll .scroll-item {
        width: 48%;
        margin-right: 4%;
    }

}
/* ==================== 通用 - 无缝滚动 end ==================== */


@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 95%; width: 95%;}

    .nav-bg{ display: none;}
    .tc-about{ padding: 45px 0;}
    .tc-about>.mxw-box{ flex-wrap: wrap;}
    .tc-about>.mxw-box .tc-left{ width: 100%;}
    .tc-about>.mxw-box .tc-left .img{width: 95%; text-align: center;}
    .tc-about>.mxw-box .tc-left .img img{ height: auto; }
    .tc-about>.mxw-box .tc-left .inab-swiper{ margin-top: 25px;}
    .tc-about>.mxw-box .tc-left .inab-swiper .swiper-slide .nian span{ font-size: 46px;}
    .tc-about>.mxw-box .tc-left .inab-swiper .swiper-slide .nian sub{ font-size: 18px;}
    .tc-about>.mxw-box .tc-left .inab-swiper .swiper-slide .st{ font-size: 20px; margin-top: 15px;}
    .tc-about>.mxw-box .tc-left .inab-swiper .swiper-slide .desc{ font-size: 14px; margin-top: 10px;}
    .inab-swiper .swiper-pagination{ margin-top: 10px;}
    .inab-swiper .swiper-pagination .swiper-pagination-bullet{ width: 12px; height: 12px;}
    .tc-about>.mxw-box .tc-right{ width: 100%; padding-top: 30px;}
    .tc-about>.mxw-box .tc-right .txt1{ font-size: 22px;}
    .tc-about>.mxw-box .tc-right .txt2{ font-size: 21px; margin-top: 10px;}
    .tc-about>.mxw-box .tc-right .desc{ font-size: 14px; margin: 15px auto 20px;}
    .mm-more{ font-size: 14px; padding: 12px 20px;}
    .mm-more img{height: 12px;}
    .tc-oem{ padding-top: 45px;}
    .tc-title{ padding: 0 2.5%;}
    .tc-title .tx1{ font-size: 22px;}
    .tc-title .tx2{ margin: 5px auto 10px; font-size: 18px;}
    .tc-title .tx3{ font-size: 16px;}
    .oem-body{ margin-top: 25px; padding: 45px 0;}
    .oem-body>.mxw-box{ padding: 0;}
    .oem-body>.mxw-box .item .ico img{ height: 35px;}
    .oem-body>.mxw-box .item .cn{ margin: 5px auto 10px; font-size: 16px;}
    .oem-body>.mxw-box .item .en{ font-size: 12px;}
    .oem-body>.mxw-box .item:nth-child(3n)~.item{ margin-top: 30px;}
    .tc-pro{ padding-top: 45px; padding-bottom: 45px;}
    .pro-body{ margin-top: 25px; padding-top: 0}
    .pro-body .swiper-button-prev, .pro-body .swiper-button-next{ display: none;}
    .pro-swiper .swiper-slide .top{ display: none;}
    .pro-swiper .swiper-slide .bot{ display: none;}
    .pro-swiper .swiper-slide{ width: 50%;}
    .pro-swiper .swiper-slide .f-con{ padding:0 20px;}
    .pro-swiper .swiper-slide .con .t1{ font-size: 16px; padding-bottom: 10px;}
    .pro-swiper .swiper-slide .con .t2{ font-size: 15px;}
    .pro-swiper .swiper-slide .con .t3{ font-size: 12px;}
    .pro-swiper .swiper-slide .con .ico{ margin-top: 25px; height: 30px; width: 30px;}

    .gc-cate{ width: 100%; max-width: 100%; flex-wrap: wrap;position: initial; justify-content: flex-start;}
    .gc-cate .item{ width: 33.333%; padding: 15px 10px;}
    .gc-cate .item img{ height: 30px;}
    .gc-cate .item .cn{ margin: 5px auto; font-size: 16px;}
    .gc-cate .item .en{ font-size: 12px;}
    .gc-cate .item:nth-child(3){ border-right: 0}
    .gc-swiper .swiper-slide .flx{ position: initial; width: 100%; padding: 25px 2.5%;}
    .gc-swiper .swiper-slide .flx .st .cn{ font-size: 18px; }
    .gc-swiper .swiper-slide .flx .st .en{ font-size: 16px; margin-top: 5px; }
    .gc-swiper .swiper-slide .flx .st{ padding-left: 20px; border-left-width: 3px;}
    .gc-swiper .swiper-slide .flx .desc{ font-size: 14px; margin-top: 15px;}
    .tc-team{ padding: 45px 0;}
    .team-swiper{ margin-top: 25px;}
    .team-swiper .swiper-slide .st{ padding: 12px; font-size: 14px;}
    .team-swiper .swiper-slide .st .icon img{ height: 12px;}
    .team-swiper .swiper-slide .st p{ font-size: 14px;}
    .tc-news{ padding: 45px 0;}
    .tc-news .ns-title .tx1{ font-size: 20px;}
    .tc-news .ns-title .tx2{ font-size: 14px; margin-top: 10px;}
    .tc-news .up .n-more{ flex-shrink: 0; padding: 10px 20px; font-size: 14px;}
    .tc-news .up .n-more img{ height: 12px;}
    .tc-news .news-swiper{ margin-top: 25px;}
    .tc-news .news-swiper .swiper-slide{ padding: 25px 0;}
    .tc-news .news-swiper .swiper-slide .con{ padding: 30px 20px; border: 0;}
    .tc-news .news-swiper .swiper-slide .con .tim{ font-size: 14px;}
    .tc-news .news-swiper .swiper-slide .con .desc{ font-size: 16px; margin: 12px auto; line-height: 1.8}
    .tc-news .news-swiper .swiper-slide .con .c-more{ font-size: 14px;}
    .tc-news .news-swiper .swiper-slide .con .c-more img{ height: 12px;}
    .news-body .swiper-button-prev, .news-body .swiper-button-next{ width: 35px; height: 35px;}
    .news-body .swiper-button-prev{ left: -10px;}
    .news-body .swiper-button-next{ right: -10px;}

    footer{ padding-top: 45px;}
    footer .up{ flex-wrap: wrap;}
    footer .up .tc-left{ width: 100%;}
    footer .up .tc-right .d-menu{ display: none;}
    footer .up .tc-left .d-add{ font-size: 14px; line-height: 1.8; margin-top: 25px;}
    footer .up .tc-left .d-add>p{ margin-bottom: 10px;}
    footer .up .tc-right{ width: 100%;}
    footer .up .tc-right .meiti{ margin-top: 20px;}
    footer .up .tc-left .d-add>p i{ font-size: 18px;}
    footer .up .tc-right .copy{ margin: 15px auto 10px; font-size: 14px; text-align: center; line-height: 1.8}
    footer .up .tc-right .meiti{ justify-content: flex-start; display: none;}

    .n-banner .mxw-box{ position: initial; margin-top: 10px; font-size: 14px; color: #333}
    .n-banner .mxw-box a{ color: #333;}
    .ab-box{ padding: 45px 0}
    .n-title .cn{ font-size: 22px;}
    .n-title .en{ font-size: 14px; font-weight: normal;}
    .n-title::after{ margin-top: 10px;}
    .ab-box .desc{ margin: 20px auto 15px; font-size: 14px;}
    .num-box{ flex-wrap: wrap;}
    .num-box .item{ width: 45%; text-align: center;}
    .num-box .item .num .scrolling-numbers{ font-size: 35px;}
    .num-box .item img{ height: 35px;}
    .num-box .item p{ font-size: 14px; padding-bottom: 10px; margin-top: 5px;}
    .num-box .item:nth-child(2)~.item{ margin-top: 20px;}
    .num-box .item .num sub{ font-size: 12px; margin-left: 10px;}
    .num-box .item .con{ flex-grow: 1;min-width: 0; }
    .ab1-swiper{ margin-top: 25px;}
    .ab1-swiper .swiper-pagination{ margin: 15px auto 0; display: flex;}
    .ab1-swiper .swiper-pagination .swiper-pagination-bullet{ width: 12px; height: 12px; justify-content: center; text-align: center;}

    .ab2-box{ padding: 45px 0; background-size: cover;}
    .ab2-body{ margin: 25px auto; flex-wrap: wrap; justify-content: space-between;}
    .ab2-body .item{ width: 48%;}
    .ab2-body .item img{ height: 35px;}
    .ab2-body .item .st{ font-size: 16px; margin: 10px auto 10px;}
    .ab2-body .item .desc{ font-size: 14px; line-height: 1.6}
    .ab2-body .item:nth-child(2n)~.item{ margin-top: 25px;}

    .ab3-box{ padding: 45px 0;}
    .ab3-body{ margin: 25px auto 0; flex-wrap: wrap; }
    .ab3-body .ab3-img{ display: none;}
    .ab3-body .ab3-right .top{ width: 100%; justify-content: space-between;}
    .ab3-body .ab3-right .top .item{ width: 31.5%; margin: initial; padding: 20px 10px;}
    .ab3-body .ab3-right .top .item .num{ font-size: 25px;}
    .ab3-body .ab3-right .top .item p{ font-size: 12px;margin-top: 5px;}
    .ab3-body .ab3-right .bot{ margin-top: 25px; flex-wrap: wrap;}
    .ab3-body .ab3-right .bot .bo1{ width: 100%;}
    .ab3-body .ab3-right .bot .bo1 .item{ font-size: 14px; margin-bottom: 10px;}
    .ab3-body .ab3-right .bot .bo1 .item img{ height: 14px;}
    .ab3-body .ab3-right .bot .bo1 .item.active img:nth-child(2){ height: 5px;}
    .ab4-box{ padding: 45px 0 50px;}
    .ab4-swiper .swiper-slide .con{ font-size: 14px; line-height: 1.8; height: 75px;}
    .ab4-body{ margin-top: 25px;}
    .ab4-swiper .swiper-slide:nth-child(2n) .num{ font-size: 18px;}
    .ab4-swiper .swiper-slide .icon img{ height: 35px;}
    .ab4-swiper .swiper-slide .icon{ height: auto; margin-top: 0}
    .ab4-swiper .swiper-slide .con{ height: auto;}
    .ab4-swiper .swiper-slide .icon img{ margin-top: 0}
    .ab4-swiper .swiper-slide:nth-child(2n) .icon{ order: 1; margin-bottom: 0}
    .ab4-swiper .swiper-slide:nth-child(2n) .dian{ order: 2;}
    .ab4-swiper .swiper-slide:nth-child(2n) .num{ order: 3;}
    .ab4-swiper .swiper-slide:nth-child(2n) .con{ order: 4; height: auto;}
    .ab4-swiper .swiper-slide:nth-child(2n) .icon img{ margin-bottom: 0}
    .ab4-swiper .swiper-slide .num{ font-size: 18px; margin-bottom: 10px !important;}
    .ab4-swiper .swiper-slide:nth-child(2n) .num{ margin-top: initial;}
    .ab4-swiper .swiper-slide .dian{ margin: 10px auto !important;}
    .ab4-swiper .swiper-wrapper{ align-items: stretch;}
    .ab4-swiper{    background-position-y: 50px;}
    .pro-box .pro-list{ margin-top: 25px;}

    .news-page{ padding: 45px 0;}
    .news-page .news-list{ flex-wrap: wrap;}
    .news-page .news-list .item{ width: 100%; padding: 10px; }
    .news-page .news-list .item:nth-child(1)~.item{ margin-top: 15px;}
    .ny-product-desc{ padding: 45px 0;}
    .cont-box{ padding: 45px 0}
    .cont-top{ flex-wrap: wrap; margin-top: 25px;}
    body{ margin-bottom: 0;}
    .cont-top .info{ padding: 30px 20px;}
    .cont-top .info .text{ margin: 15px auto; font-size: 14px;}
    .cont-top .info h1{ font-size: 22px;}
    .cont-top .info .list{ padding-top: 25px;}
    .cont-top .info .list .item p{ font-size: 14px; margin-top: 10px;}
    .liuuuu{ margin-top: 40px; padding: 25px;}
    .liuuuu_a{ font-size: 22px;}
    .hhutr{ flex-wrap: wrap; margin-bottom: 15px;}
    .hhutr .hhutrle{ width: 100%; margin-bottom: 15px;}
    .hhutrle input{ height: 42px; line-height: 42px;padding: 0 12px}
    .hhuy{ width: 100%;height: 42px; line-height: 42px; font-size: 0}
    .hhuy input{height: 40px; line-height: 40px;padding: 0 12px}
    .hhuy #codeimg{ top: 5px; right: 5px;}
    .dhsunjh textarea{ line-height: 42px; padding: 0 12px}
    .hunfhg .btn{height: 42px; line-height: 42px;}

    #map{ width: 100%; height: 450px;}

}












