@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%;
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-backface-visibility: hidden;
}
a:hover {
    text-decoration: none;
}
a:focus {
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    outline: -webkit-focus-ring-color auto 0;
}
button,
input {
    border: 0;
    outline: none;
    background: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
th,
td {
    vertical-align: middle;
}
i {
    font-style: inherit;
}
#map label {
    max-width: initial;
}
#map img {
    max-width: initial;
}
p{ margin-bottom: 0}
/* ==================== 重置默认样式 end ==================== */
/* ==================== 常用样式 start ==================== */
/* 清除浮动 */
.clearfix {
    display: block;
    zoom: 1;
}
.clearfix:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* bootstart ul */
ul,
h1,
h2,
h3,
h4,
li,
p {
    padding: 0;
    margin: 0;
}
/* 外层容器样式 */
section {
    overflow: hidden;
}
/* 通用正文样式 */
article {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}
/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}
.mxw-image:hover img {
    transform: scale(1.1);
}
.mxw-image img {
    transition: all 0.4s;
    width: 100%;
}
/* ==================== 常用样式 end ==================== */
/* ==================== 置顶按钮 start ==================== */
/*
#goto-top {
    position: fixed;
    z-index: 10;
    right: 0.3333rem;
    bottom: 10%;
    width: 0.6667rem;
    height: 0.6667rem;
    cursor: pointer;
    background: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #fff;
}
#goto-top.active {
    visibility: visible;
    opacity: 1;
}
#goto-top:after {
    content: "";
    display: block;
    width: 0.2333rem;
    height: 0.2333rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 6px;
}
@media screen and (max-width: 751px) {
    #goto-top {
        width: 30px;
        height: 30px;
        right: 10px;
    }
}*/
/* ==================== 置顶按钮 end ==================== */
/* ==================== 文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.u-line-2 {
    -webkit-line-clamp: 2;
}
.u-line-3 {
    -webkit-line-clamp: 3;
}
.u-line-4 {
    -webkit-line-clamp: 4;
}
.u-line-5 {
    -webkit-line-clamp: 5;
}
.u-line-6 {
    -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/* ==================== 文本行数限制 end ==================== */
/* ==================== flex通用布局 start ==================== */
.u-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.u-flex-wrap {
    flex-wrap: wrap;
}
.u-flex-nowrap {
    flex-wrap: nowrap;
}
.u-flex-col {
    flex-direction: column;
}
.u-grow-1 {
    flex-grow: 1;
}
.u-col-center {
    align-items: center;
}
.u-col-top {
    align-items: flex-start;
}
.u-col-bottom {
    align-items: flex-end;
}
.u-row-center {
    justify-content: center;
}
.u-row-left {
    justify-content: flex-start;
}
.u-row-right {
    justify-content: flex-end;
}
.u-row-between {
    justify-content: space-between;
}
.u-row-around {
    justify-content: space-around;
}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination   a,.mxw-pagination   span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: block;
    margin: 4px;
}
.mxw-pagination   a.current,
.mxw-pagination   a:hover {
    background-color: #032a75;
    color: #fff !important;
}
.mxw-pagination   a:first-child {
    margin-left: 0;
}
.mxw-pagination   a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 751px) {
    .mxw-pagination {
        margin-top: 30px;
    }
    .mxw-pagination   a {
        font-size: 12px;
        margin: 2px;
        padding: 8px 10px;
    }
}
/* ==================== 分页样式 end ==================== */

/* ==================== 通用标签页 start ==================== */
/* 标签页 */
.mxw-tabs {
    padding-left: 0;
    padding-right: 0;
}
.mxw-tabs .mxw-tabs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.mxw-tabs .mxw-tabs-wrap {
    position: relative;
    display: flex;
    overflow-x: scroll;
    max-width: 100%;
    align-items: center;
    justify-content: flex-start;
}
.mxw-tabs .mxw-tabs-wrap::-webkit-scrollbar {
    display: none;
}
.mxw-tabs .mxw-tabs-item {
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    font-size: 0.3rem;
    white-space: nowrap;
    background: #eaeaea;
    color: #333;
    padding: 0rem 0.5rem;
    margin-right: 0.9rem;
    line-height: 0.6667rem;
}
.mxw-tabs .mxw-tabs-item:last-child {
    margin-right: 0;
}
.mxw-tabs .mxw-tabs-item.active {
    background: #032a75;
    color: #fff;
}
@media screen and (max-width: 751px) {
    .mxw-tabs .mxw-tabs-header {
        margin-bottom: 20px;
    }
    .mxw-tabs .mxw-tabs-item {
        font-size: 14px;
        padding: 0 20px;
        margin-right: 10px;
    }
    .mxw-tabs .mxw-tabs-item:last-child {
        margin-right: 0;
    }
}
/* ==================== 通用标签页 end ==================== */
/* ==================== 关键词 start ==================== */
.mxw-keywords {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
}
.mxw-keywords .mxw-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;

}
.mxw-keywords .left {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
}
.mxw-keywords .left strong {
    vertical-align: inherit;
}
.mxw-keywords .left span {
    color: #00a2ea;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #00a2ea;
}
.mxw-keywords .left a:last-child {
    padding-right: 0;
}
.mxw-keywords .left a:last-child::after {
    display: none;
}
.mxw-keywords .right form {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}
.mxw-keywords .right form:before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #d9d9d9;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.mxw-keywords .right input {
    width: 230px;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
    border: 1px solid #c4c4c4;
    border-right: 0;
    background-color: #fff;
}
.mxw-keywords .right input::-webkit-input-placeholder {
    /*Webkit browsers*/
    color: #999;
}
.mxw-keywords .right input:-moz-placeholder {
    /*Mozilla Firefox 4 to 8*/
    color: #999;
}
.mxw-keywords .right input::moz-placeholder {
    /*Mozilla Firefox 19+*/
    color: #999;
}
.mxw-keywords .right input:-ms-input-placeholder {
    /*Internet Explorer 10+*/
    color: #999;
}
.mxw-keywords .right button {
    outline: none;
    border-width: 0;
    cursor: pointer;
    background: #00a2ea;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;

}
.mxw-keywords .right button .icon {
    display: block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    font-size: 0;
    background: url(//cdn.myxypt.com/69eca4ce/23/01/d9f812b97699b61978771e926ae74ade8cfebdf7.png) no-repeat;
    margin-left: 12px;
}
.mxw-keywords .right button .text {
    font-size: 14px;
    padding-left: 5px;
}
/* ==================== 关键词 end ==================== */

/* ==================== 移动端头部 start ==================== */
@media screen and (max-width: 751px) {
    header {
        z-index: 99999;
    }
    .mxw-mob-nav .head {
        font-size: 0;
        padding-left: 12px;
        padding-right: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        max-width: 750px;
        width: 100%;
        transform: translateX(-50%);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 99;
        background-color: #fff;
    }
    .mxw-mob-nav .logo {
        display: block;
        flex-shrink: 0;
    }
    .mxw-mob-nav .logo img {
        height: 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;
}
.mxw-banner .swiper-slide {
    overflow: hidden;
}
.mxw-banner .swiper-slide img {
    width: 100%;
}
.mxw-banner .swiper-pagination {
    width: 100%;
    max-width: 1680px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 25px;
    right: 50%;
    transform: translateX(50%);
    left: auto;
    padding-right: 40px;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    opacity: 0.7;
    margin-left: 9px;
    margin-right: 9px;
    border: 1px solid #fff;
    outline: none;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    border-color: #fff;
}
.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: 1680px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
}

/* 内页 banner */
.ny-banner img {
    width: 100%;
}




/* ==================== 页面自定义样式 start ==================== */
@media screen and (min-width: 1680px) {
    /* pc端固定html标签文字大小(rem适配) */
    html {
        font-size: 60px !important;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-box {
        max-width: 86%;
    }
}
@media screen and (min-width: 751px) {
    .pc-none,
    .mob-nav,
    .pc-none {
        display: none !important;
    }
    .mxw-ny-box {
        max-width: 1400px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media screen and (max-width: 1680px) {
    .mxw-ny-box {
        max-width: 90%;
    }
}
@media screen and (max-width: 751px) {
    .mxw-ny-box {
        max-width: 100%;
        font-size: 0;
        padding: 30px 20px;
    }
}
@media screen and (max-width: 751px) {
    body {
        margin-top: 60px;
    }
    html {
        font-size: 50px;
    }
    .m-none,
    .pc-nav {
        display: none !important;
    }
    .mxw-box {
        padding: 30px 20px;
        max-width: 100%;
    }
    .mxw-section {
        padding-left: 0;
        padding-right: 0;
    }
    article {
        font-size: 15px;
    }
}
/* ==================== 页面自定义样式 end ==================== */

/* ==================== 通用细节调整 start ==================== */
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#00a2ea;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
    /* .page-wrap{padding-top:30px;} */
    .easyzoom-flyout img{max-width:inherit;}
    .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
    body{padding-bottom:0;padding-top:0;/*margin-bottom:50px;*/}
    .page-product-detail-effect .big-img{pointer-events:none;}
    .page-banner .nybt h3{font-size:20px;}
    .page-product-detail-effect .big-img a{height:auto;}
    .container2{padding-left:20px;padding-right:20px;}
    .page-product-detail-effect .big-img{height:auto;}
    .page-banner{
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .page-banner>img{
        max-width: 240%;
        width:240%;
    }
    .xypg-product-list,
    .xypg-case-list{display:flex;flex-wrap:wrap;}
    .xypg-product-list li,
    .xypg-case-list li{width:48%;margin:0;}
    .xypg-product-list li:nth-child(2n),
    .xypg-case-list li:nth-child(2n){margin-left:4%;}
    .xypg-product-list li:nth-child(2)~li,
    .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
    .xypg-pagination>div{margin-bottom:10px;}
    .xypg-case-list li h3 a{padding-bottom:0;}
    .xypg-news-list li{padding:15px;margin-bottom:15px;}
    .xypg-news-list li .more{text-align:center;margin-top:0px;}
    .xypg-news-list li .more span{width:90px;margin:0 auto;}
    .product-detail-tabcon{font-size:16px;}
    .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
    .product-detail-tab .product-detail-tabli{height:auto;}
    /* 相册调整 */
    .xypg-album-list{justify-content:space-between;}
    .xypg-album-list:before,
    .xypg-album-list:after{display:none;}
    .xypg-album-list li{width:48%;margin:0;}
    .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 18px;}
.mxw-box{ width: 1200px;}
.top-box .logo-box{ height: 60px; margin: 15px auto 15px 0 }
.top-box .logo-box img{ height: 60px;}
header{ position: absolute; top: 0; width: 100%; z-index: 99; transition: all 0.3s;}
.top-box .right{ width: 650px}
.pc-head.flex{ position: fixed; background: #fff;}
.top-box .logo-box img:nth-child(2){ display: none;}
.top-box .logo-box img:nth-child(1){ display: block;}
.x-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.x-menu > li {
    width: 14%;
    margin: 0;
    text-align: center;
    float: none;
    position: relative;
}

.x-menu > li > a {
    font-size: 16px;
    color: #ffffff;
    line-height: 51px;
    display: block;
}

.x-menu > li > a:hover {
    color: #fff;
}

.x-menu > li.active > a {

}

.x-menu {
    width: 100%;
    float: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}


.x-menu > li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.x-sub-menu {
    position: absolute;
    z-index: 999;
    width: 150%;
    left: -25%;
    top: 75px;
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(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;
}

.x-sub-menu > li > a:hover {
    background: #e9eaeb;
}

.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;
}

.pc-head.flex .x-menu > li > a{ color: #333;}
.pc-head.flex .top-box .logo-box img:nth-child(2){ display: block;}
.pc-head.flex .top-box .logo-box img:nth-child(1){ display: none;}

.mxw-adv{     background: rgba(244, 244, 244, 1); padding: 34px 0 28px;}

.mxw-adv .item{ width: 347px; height: 316px; text-align: center;padding-top: 30px;transition: all 0.3s; border-radius: 25px}
.mxw-adv .item:hover{ background: url('../images/adv-bg.png') no-repeat; background-size: cover; color: #fff}
.mxw-adv .con{  display: flex; align-items: center; justify-content: space-between; }
.mxw-adv .item .st{ font-size: 20px; font-weight: bold; margin-top: 30px;transition: all 0.3s; }
.mxw-adv .item p{ font-size: 14px; color: #a9a9a9; margin-top: 15px;transition: all 0.3s;}
.mxw-adv .item:hover .st{ color: #fff;}
.mxw-adv .item:hover p{ color: #fff}
.mxw-adv .item:hover{ padding-top: 40px; }
.mxw-adv .item img{ width: 103px;}

.mxw-news{ padding:60px 0;}
.mxw-news .mxw-box{ display: flex; align-items: stretch;  justify-content: space-between;}
.mxw-news .box1{ width: 205px; }
.mxw-news .box3{ width: 205px; }
.mxw-news .box2{ width: 737px}
.mxw-news .box2 .a1 p{ font-size: 20px; color: #c40000}
.mxw-news .box2 .a1{color: #737373; font-size: 14px}
.mxw-news .box2 .tt{ display: flex; justify-content: space-between; align-items: center}
.mxw-news .box2 .tt a{ font-size: 14px; color: #c40000}
.mxw-news .box2 .list{ margin-top: 20px;}
.mxw-news .box2 .list .item{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;}
.mxw-news .box2 .list .item p{ color: #333; font-size: 16px;}
.mxw-news .box2 .list .item span{ font-size: 14px; color: #999}

.mxw-xx{ margin-top: 60px;}
.mxw-xx .mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
.mxw-xx .box1{ width: 200px; margin-right: 10px;}
.mxw-xx .box1 .up{ font-size: 27px; color: #212121; margin-bottom: 15px}
.mxw-xx .box1 .up img{ margin-right: 15px; width: 31px;}

.mxw-xx .box2{ width: 975px;}
.mxw-xx .more{ margin:0 auto; margin-top:15px; width:100px; height:35px; background: #80180b;color: #fff; padding:0 5px;border-radius: 10px; text-align:center; line-height:35px;}
.mxw-xx .more a{color: #fff;}
.mxw-xx .box2 .up{ border-bottom: 1px solid #cccc; display: flex; align-items: center; justify-content: flex-start; margin: 0 15px;flex-wrap: wrap;}
.mxw-xx .box2 .up .item{ /* width: 138px; */ height: 50px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #000;padding: 0 10px;}
.mxw-xx .box2 .up .item.active{  background: #80180b; color: #fff; }
.mxw-xx .box2 .list{ width: 100%; padding: 0 30px}
.mxw-xx .box2 .list .item{ position: relative; margin-top: 20px}
.mxw-xx .box2 .list .item img{ width:90%;}
.mxw-xx .box2 .list .item p{ position: absolute; bottom: 0; width: 90%; left: 15px; color: #fff; font-size: 12px; padding: 3px 5px;    background: rgba(0,0,0,.5); text-align: center;}

.mxw-td{ margin-top: 60px; padding-bottom: 80px; background: url("../images/td-bg2.jpg") bottom no-repeat;}
.ds-swiper{ overflow: hidden; margin-top: 60px;}
.ds-swiper .swiper-slide{ position: relative;}
.ds-swiper .swiper-slide .con{ width: 100%;  position: absolute; bottom: 0; z-index: -1;
}
.ds-swiper .swiper-slide .con .sd{ display: flex; align-items: stretch; justify-content: space-between; background: #f0f0f0;border-radius: 30px; padding: 20px 20px 20px 300px; width: 100%;}
.ds-swiper .swiper-slide .con .st{ padding-left: 300px;}
.ds-swiper .swiper-slide .con .sd .ewm{ width: 160px; flex-shrink: 0}
.ds-swiper .swiper-slide .con .sd .txt{ font-size: 15px; color: #666;  line-height: 1.6; padding-right: 20px;}
.ds-swiper .swiper-slide .toux{ padding-left: 30px; padding-bottom: 40px;}
.ds-list{ margin-top: 60px; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; }
.ds-list .item{ width: 170px; height: 170px; text-align: center; display: flex; align-items: center; flex-wrap: wrap; justify-content: center; align-content: center;}
.ds-list .item img{ width: 86px; transition: all 0.3s; border-radius: 50%; border: 3px solid transparent; }
.ds-list .item:hover img{    border: 3px rgba(30, 80, 174, 1) solid; width: 106px; }
.ds-list .item p{ font-size: 16px; margin-top: 10px; width: 100%;}
    .mxw-title2{ text-align: center}
.mxw-title2 .cn{ font-size: 30px; color: #333; text-align: center;}
.mxw-title2 .en{ font-size: 15px; color: #999; margin-top: 10px;}
.yx-page{ padding: 60px 0;}
.yx-list{ width: 1250px; margin: 60px auto 20px}
    .yx-list .item{ padding: 10px 0; justify-content: space-between;transition: all 0.3s; flex-direction:column;	box-shadow: -2px 3px 18px 0px 
		rgba(0, 0, 0, 0.2); display:flex;}
    .yx-list .item .st1{ font-size: 20px; position:absolute; background:rgba(0,0,0,.3); padding:12px 15px 18px; color:#fff; text-align:center; width:100%; left:0; bottom:0;}
    .yx-list .item .st2{ font-size: 13px; color: #333; margin-top: 5px; display:none}
    .yx-list .item .st3{ font-size: 16px; color: #000; margin-top: 5px; line-height:1.8}
    .yx-list .item .left{ width: 100%; text-align:center; flex-grow:1; min-width:0; padding:0 15px; position:relative;}
    .yx-list .item .right{  padding:5px 12px 10px;  }
    .yx-list .item:hover{}
    .yx-list .item:hover .st1{ }

    .fg-page{ padding: 60px 0}
    .fg-list{
        border-radius: 6px; width: 1200px; margin: 30px auto; }
    .fg-list .item{box-shadow: 0 0 15px 0 rgba(0,0,0,.1);}
    .fg-list .item .mxw-image{ position: relative }
    .fg-list .item .mxw-image p{ position: absolute; color: #fff;background: linear-gradient(0deg,rgba(0,0,0,.6),transparent); width: 100%; bottom: 0;padding: 12px 15px;}
    .fg-list .item .info{    padding: 15px; }
    .fg-list .item .info .desc{ font-size: 13px; color: #878787; line-height: 1.6; height: 42px}
    .fg-list .item .info .tim{ font-size: 14px; color: #999; margin-top: 10px}
    .fg-list .item:hover .mxw-image p{ font-weight: bold}

   .mxw-td .st{  margin-bottom: 15px; font-size: 20px; font-weight: bold; }
    .mxw-td .st .st1{ font-size: 30px; color: rgb(51, 51, 51); font-weight: bold;}
    .mxw-td .st .st2{ font-size: 16px; color: #999; margin: 0 10px; font-weight: normal;}
    .mxw-td .st .st3{ font-size: 24px; color: rgb(184, 158, 125); font-weight: bold; margin-right: 10px}
    .xg{ padding: 60px 0 40px; background: url("/kc/images/xg-bg.png") center no-repeat; background-size: cover;}
    .xg .st1{ text-align: center; font-size: 48px; font-weight: bold; color: #fff; letter-spacing: 2px;}
    .xg .st1 span{ margin: 0 15px}
    .xg .st2{ font-size: 24px; color: #fff; margin-top: 22px; text-align: center;}
    .xg .st3{ margin-top: 25px; color: #fff; text-align: center; transform: rotate(90deg) }
    
    
    .ddc{ display:flex; align-items:stretch; justify-content:flex-start; flex-wrap:wrap;}
    .ddc .item{ width:345px; margin-right:75px;}
    .ddc .item:nth-child(3n){ margin-right:0;}
    .ddc .item:nth-child(3n)~.item{ margin-top:72px;}
    
    
    

/* ==================== 页面具体样式 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 ==================== */


/* ==================== 新闻详情 start ==================== */
.ny-news-desc {
    padding: 44px 24px;
    margin-bottom: 34px;
}
.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;
    font-size: 15px;
}
.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: 20px 0;
    }
    .ny-news-desc .article {
        font-size: 17px;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */


 .mxw-ys .mxw-title3 .cn{ font-size: 30px; color: rgb(145, 124, 98); font-weight: bold; text-align: center;}
        .mxw-ys .mxw-title3 .cn span{ color: #333}
        .mxw-ys .mxw-title3 .en{ font-size: 17px; color: #737373; text-align: center; margin-top: 5px;}
        .mxw-ys{ padding: 80px 0; background: url("/kc/images/ys-bg.jpg") no-repeat;}
        .mxw-ys .mxw-box{ margin-top: 35px;}
        .mxw-ys .item{ background: #f6f6f6; padding: 60px 40px; text-align: center;}
        .mxw-ys .item .st{ font-size: 18px; margin-top: 20px;}
        .mxw-ys .item .desc{ font-size: 14px; line-height: 1.7;color: rgb(113, 113, 113); margin-top: 20px;}
        .mxw-ys .item .icon{ width: 60px; height: 60px; margin: 0 auto; overflow: hidden; transition: all 0.3s}
        .mxw-ys .item:hover{ background: #012453}
        .mxw-ys .item:hover img{ filter: drop-shadow(60px 0 0 white); margin-left: -200%;}
        .mxw-ys .item:hover .st{color: #fff}
        .mxw-ys .item:hover .desc{ color: #fff}

.sev-mode{ padding: 80px 0; background: url("/kc/images/sev-bg.jpg") no-repeat;}
    .sev-mode .con{ background: #917c62; border-radius: 20px; width: 1018px;  margin: 0 auto; padding: 50px 120px;}
    .sev-mode .con .title .cn{ font-size: 30px; color: #fff; text-align: center;}
    .sev-mode .con .title .en{ font-size: 14px; margin-top: 10px; color: #fff; text-align: center;}
    .sev-mode .con .title{ padding-bottom: 12px; border-bottom: 1px solid #fff;}
    .sev-mode .con-box{ display: flex; align-items: center; justify-content: space-between; padding: 40px 0; color: #fff;}
    .sev-mode .con-box .left{ width: 290px; text-align: center;}
    .sev-mode .con-box .right{ width: 290px; text-align: center}
    .sev-mode .con-box .st1{ font-size: 24px; color: #fff; font-weight: bold;}
    .sev-mode .con-box .st2{ color: rgb(255, 183, 78);  font-weight: bold; font-size: 18px}
    .sev-mode .con-box .st3{ font-size: 16px; color: #fff; line-height: 1.7}
    .sev-mode .con-box .center{ font-size: 36px; font-weight: bold}
    .sev-mode .more{ display: block; margin: 0 auto 15px; width: max-content; padding:  10px 20px; border: 1px solid #fff; color: #fff;
     font-size: 14px; border-radius: 20px;}


    .lc{ padding: 60px 0;}
    .lc-title .cn{     color: rgb(145, 124, 98); font-size: 30px; font-weight: bold;}
    .lc-title .cn span{ color: #333;}
    .lc-title .en{ color: #666; font-size: 16px; margin-top: 5px}
    .lc-con{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 35px}
    .lc-con .left{ flex-shrink: 0; width: 200px; margin-right: 60px;}
    .lc-con .right{  flex-grow: 1; min-width: 0; display: flex; flex-wrap: wrap; align-content: space-between; border-left:  1px solid #ccc; padding: 30px 0}
    .lc-con .left .item{ position: relative;margin-bottom: 40px;}
    .lc-con .left .item:last-child{ margin-bottom: 0}
    .lc-con .left .item p{ position: absolute; font-size: 20px; color: #fff; font-weight: bold; left: 20px; top: 40px; }
    .lc-con .right .item{ width: 100%; position: relative;  padding-left: 45px; }
    .lc-con .right .item .st{ color: rgb(145, 124, 98); font-size: 18px; margin-bottom: 5px}
    .lc-con .right .item .desc{ font-size: 14px; color: rgb(75, 75, 75); line-height: 1.8}
    .lc-con .right .item::before{ display: block; width: 30px; height: 30px;background: url("/kc/images/dd.png") left center no-repeat; background-size: cover; position: absolute; left: -15px;top: 15px;content: "";}

 .about-page{ padding: 60px 0;}
    .nabout-box{ background: url("/kc/images/about-bg.jpg") no-repeat; background-size: cover; padding: 60px 0}
    .nabout-box .mxw-box{ display: flex; align-items: center; justify-content: space-between;}
    .nabout-box .mxw-box .right{ width: 600px;padding: 20px; flex-shrink: 0}
    .nabout-box .mxw-box .right video{ max-width: 100%;}
    .nabout-box .mxw-box .left{ color: #fff}
    .nabout-box .mxw-box .left .st{ font-size:30px; color: rgb(184, 158, 125);font-weight: bold;}
    .nabout-box .mxw-box .left .st span{ margin-left:5px;font-weight: normal; font-size: 26px; color: #fff;}
    .nabout-box .mxw-box .left .text{ margin-top: 25px; font-size: 16px; color: #fff; line-height: 1.8}
 .mxw-tj{
        padding: 60px 0;
    }
    .mxw-tj .item1{ width: 354px; height: 202px;}
    .mxw-tj .item1 .st1{ font-size: 16px; color: #666; }
    .mxw-tj .item1 .st2{ font-size: 30px;color: rgb(145, 124, 98); margin-top: 10px;}
    .mxw-tj .item1 .st3{ font-size: 14px; color: rgb(135, 135, 135); margin-top: 30px;}
    .tj-more{ display: flex; width: 150px; height: 34px; align-items: center; justify-content: center; padding: 0 10px; border: 1px solid #ccc; border-radius: 17px; font-size: 14px; margin-top: 25px; }
    .mxw-tj .item2{ width: 430px; position: relative;}
    .mxw-tj .flex{ color: #fff; position: absolute; width: 85%; top: 40px; left: 0; right: 0; margin: 0 auto; background: rgba(0,0,0,.6);
     border-radius: 30px; padding: 30px; opacity: 0; height: 0; transition: all 0.3s}
    .mxw-tj .flex .tt1{ font-size: 20px; margin-bottom: 15px;}
    .mxw-tj .flex .tt2{ font-size: 13px; margin-bottom: 15px;}
    .mxw-tj .flex .tt3{ font-size: 13px; line-height: 1.8 }
    .mxw-tj .item3{ width: 330px; position: relative; display: flex; align-items: center;justify-content: center}
    .mxw-tj .item3 img{ max-width: initial; height: 100%}
    .mxw-tj .item4 img{ max-width: initial; height: 100%}
    .mxw-tj .item4{ width: 462px; position: relative; margin-top: 30px;}
    .mxw-tj .item5{ width: 690px; position: relative; margin-top: 30px;}
    .mxw-tj .mxw-box{ display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
    .mxw-tj .icm:hover .flex{ opacity: 1; height: 70%;}
    .mxw-tj .icm:hover{ cursor: pointer}


 .mxw-newsi1{ padding: 60px 0;border-bottom: 1px solid rgba(222, 222, 222, 1);  border-top: 1px solid rgba(222, 222, 222, 1);    background: rgba(249, 249, 249, 1)}
    .mxw-newsi1 .mxw-title3 .cn{ font-size: 30px; color: rgb(145, 124, 98); font-weight: bold; text-align: center;}
    .mxw-newsi1 .mxw-title3 .cn span{ color: #333}
    .mxw-newsi1 .mxw-title3 .en{ font-size: 17px; color: #737373; text-align: center; margin-top: 5px;}
    .mxw-title3 .cn{ font-size: 30px; color: rgb(145, 124, 98); font-weight: bold; text-align: center;}
    .mxw-title3 .cn span{ color: #333}
    .mxw-title3 .en{ font-size: 17px; color: #737373; text-align: center; margin-top: 5px;}   
    
    .mxw-newsi1 .top-list{ margin-top: 40px;}
    .mxw-newsi1 .top-list .item{ box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
        border-radius: 6px;}
    .mxw-newsi1 .top-list .item .mxw-image{ position: relative; }
    .mxw-newsi1 .top-list .item .mxw-image .st{ position: absolute;    background: linear-gradient(0deg,rgba(0,0,0,.6),transparent); color: #fff;padding: 12px 15px; width: 100%; bottom: 0; font-size: 16px}
    .mxw-newsi1 .top-list .item .info{    height:55px;overflow: hidden; padding:0;margin:15px;  font-size: 14px; color: #878787; line-height: 1.8}
    .mxw-newsi1 .bot-list{ margin-top: 30px;}
    .mxw-newsi1 .bot-list .item{ display: flex; align-items: center; justify-content: space-between;     padding: 10px; border-bottom: 1px solid hsla(0,0%,60%,.15); margin-top: 15px !important; font-size: 16px; color: #333;}
    .mxw-newsi1 .bot-list .item span{ flex-shrink: 0; margin-left: 15px; color: #999; font-size: 14px;}
    .mxw-newsi1 .bot-list .item .tt{flex-grow: 1; min-width: 0; }
    .mxw-newsi1 .bot-list .item:hover .tt{ font-weight: bold;color: #162e73}
 footer{ background: rgba(33, 33, 33, 1); padding: 40px 0 0;}
    .dp1{ display: flex; align-items: stretch; justify-content: space-between;}
    .dp1 .logo{ width: 300px; flex-shrink: 0; margin-right: 80px;}
    .dp1 .x-menu{}
    .dp1 ul{ display: flex; align-items: center; justify-content: space-between; font-size: 16px; color: #a9a9a9; flex-grow: 1; min-width: 0; border-bottom: 1px solid #a9a9a9}
    .dp2 .left{ width: 300px; margin-right: 80px; margin-top: 15px;}
    .dp2 .left p{ font-size: 14px; color: #a9a9a9;}
    .dp2 .left .cnt{ font-size: 36px; color: #a9a9a9; margin-top: 10px}
    .dp2{ display: flex; align-items: center; justify-content: space-between;}
    .dp2 .right{ flex-grow: 1; min-width: 0; line-height: 1.8; color: #a9a9a9; font-size: 14px; margin-top: 15px}
    .copy{ padding: 15px 0; margin-top: 15px; border-top: 1px solid #a9a9a9; font-size: 14px; color: #a9a9a9}
    .copy a{ color: #a9a9a9}
.meiti{ padding-bottom: 60px;}
        .meiti .left{ width: 500px; flex-shrink: 0;}
        .meiti .mxw-box{ display: flex; align-items: stretch; justify-content: space-between;}
        .meiti .right{ margin-left: 30px; flex-grow: 1; min-width: 0;}
        .meiti .right .title{ display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid #ccc;}
        .meiti .right .title p{ font-size: 18px; color: rgba(145, 124, 98, 1); font-weight: bold}
        .meiti .right .title a{ font-size: 14px; color: rgba(145, 124, 98, 1); }
        .meiti .right .list{ margin-top: 10px;}
        .meiti .right .list .item{ display: flex; align-items: center; justify-content: space-between; margin-top: 7px;padding-bottom: 7px; border-bottom: 1px solid rgba(153, 153, 153, 0.15); height: 25px}
        .meiti .right .list .item span{ flex-shrink: 0; margin-left: 20px; font-size: 14px;color: rgb(153, 153, 153)}
        .meiti .right .list .item p{ font-size: 14px; color: rgb(51, 51, 51); transition: all 0.3s;}
        .meiti .right .list .item:last-child{ padding-bottom: 0; border-bottom: 0;}
        .meiti .right .list .item:hover p{  font-weight: bold;color: rgba(145, 124, 98, 1);}
        .about-swiper .swiper-slide{ position: relative;}
        .about-swiper .swiper-slide p{ position: absolute; bottom: 0;    padding: 11px 128px 9px 15px; font-size: 14px;color: #fff;    background: linear-gradient(0deg,rgba(0,0,0,.6),transparent);}
 .gw-more{     width: 162px;height: 40px;line-height: 40px; text-align: center; border: 1px solid rgb(204, 204, 204) ; border-radius: 20px; margin: 35px auto 0; display: block; color: rgb(75, 75, 75);font-size: 14px;}
        .guwen{ padding-bottom: 75px;}
        .guwen .desc{ font-size: 17px; line-height: 2.1;color: rgb(53, 53, 53); text-indent: 2em; }
        .guwen .st{ font-size: 33px; color: rgba(145, 124, 98, 1);  font-weight: bold; margin-bottom: 20px; text-align: center;}
        .guwen .st span{ font-size: 30px; font-weight: normal; color: #333;}



.tc-md{ padding: 45px 0 75px; background: url("/kc/images/bg.jpg") center no-repeat ;background-size: cover }
.tc-md .title{ text-align: center;}
.md-body{ display: flex; align-items: stretch; justify-content: flex-start; margin-top:60px;}
.md-body .item:nth-child(4){ display: none;}
.md-body .item .img{ border:6px solid #b1aea9;}
.md-body .item { width:355px; margin-right:75px; display:flex;  flex-direction: column;}
.md-body .item:nth-child(3n){ margin-right:0}
.md-body .item .info{ border:1px solid #b1aea9; padding:20px 10px 35px; flex-grow: 1; min-width: 0; }
.md-body .item .info .st{ font-size:20px; }
.md-body .item .info .desc{font-size:16px; line-height:1.8; margin-top:15px;}
.md-body .item .info .more{ font-size:16px; color:#b1aea9; text-align:right;}
.tc-md.ny .md-body .item:nth-child(4){ display: block;}
.tc-md.ny .md-body{flex-wrap:wrap;}
.tc-md.ny { background:none}
.tc-md.ny .md-body .item{ margin-right:67px; }
.tc-md.ny .md-body .item:nth-child(3n){ margin-right:0}
.tc-md.ny .md-body .item:nth-child(3n)~.item{ margin-top:50px;}


.xyfg{ margin:60px 0; padding:22px 0; border:none}
.xyfg .top-list .item .info{ display:flex; align-items: center; justify-content: flex-end;}


@media screen and (max-width: 751px) {
.mxw-adv{
	padding:40px 0;
}
.mxw-box{ width:95%; padding:0;}
.mxw-adv .item{ padding:10px 5px; width:31.5%; height:auto;}
.mxw-adv .item img{ width:65px}
.mxw-adv .item .st{ font-size:16px; margin-top:15px;}
.mxw-adv .item p{ font-size:14px;margin-top:10px;}
.mxw-adv .item:hover{ padding-top:10px}
.mxw-adv .item:hover{}
.mxw-news{ padding:40px 0;}
.mxw-xx{ margin-top:40px;}
.mxw-xx .mxw-box{    flex-wrap: wrap;}
.mxw-xx .box1{ width:100%; margin-right:0}
.mxw-xx .box1 .up{font-size:20px;}
.mxw-xx .box1 .up img{ width:24px;margin-right: 0px;}
.mxw-xx .box2 .up{ margin:0 auto;}
.mxw-xx .box2{ width:100%}
.mxw-xx .box2 .up .item{ padding: 0 10px;font-size:16px; height:40px}
.mxw-xx .box2 .list{ padding:0}

.mxw-xx .box2 .list .item img{ width:100%;}
.mxw-td{ margin-top:40px;    padding-bottom: 40px;}
.ds-swiper{ margin-top:25px;}
.ds-swiper .swiper-slide .toux,.ds-swiper .swiper-slide .con .st{ display:none }
.ds-swiper .swiper-slide .con{    position: initial;   }
.ds-swiper .swiper-slide .con .sd{ padding:15px; flex-wrap: wrap;}
.ds-swiper .swiper-slide .con .st{ padding:0 15px; }
.ds-swiper .swiper-slide .con .sd .txt{ width:100%; padding:0}
.ds-swiper .swiper-slide .con .sd .ewm{ width:120px; margin:0 auto;}
.ds-list{ margin-top:15px;}
.ds-list .item{ width:32%;    height: 140px;}
.mxw-tj{padding:40px 0;}
.mxw-tj .item1 .st2{ font-size:22px; }
.mxw-tj .item1{ width:100%;}
.mxw-tj .icm{width:100%; margin-bottom:15px;}
.mxw-tj .icm>img{width:100%; }
.mxw-tj .item4,.mxw-tj .item5{ margin-top:0;}
.mxw-tj .flex{ 
    opacity: 1;    height: auto;    top: 12%;
}
.mxw-tj .item5>img{ height:300px;    width: initial;
    max-width: initial;}
.mxw-newsi1{ padding:40px 0; }
.mxw-newsi1 .top-list{ margin-top:25px;}
.mxw-newsi1 .top-list .item{width:100%; margin: 0 auto 20px;}
.mxw-newsi1 .top-list .item .info{ height:55px;overflow: hidden; padding:0;margin:15px;   }
.mxw-newsi1 .bot-list{ margin-top:0}
.mxw-newsi1 .bot-list .item{     margin-top: 0 !important;}
.dp1 .logo{ margin:0 auto;}
.dp2{ flex-wrap: wrap;}

.fg-page{padding:40px 0;}
.mxw-title2 .cn{ font-size:22px}
.fg-list{ width:95%; margin:25px auto 0;}
.fg-list .item{ width:100%; margin-left:auto; margin:0 auto 15px  !important;}
.yx-page{padding:40px 0;}
.yx-list{width:95%; margin:25px auto 0;}

.yx-list .item{    background: none;     padding:10px 2.5%; height:auto;}
.yx-list .item .st1{ font-size:14px}
.yx-list .item .st2,.yx-list .item .st3{ font-size:12px}
.yx-list .item .left{ width:130px}
.yx-list .item:hover {
    transform: none;
}
.xg .st1{font-size:22px}
.xg .st2{ font-size:18px}
.lc{ padding:40px 0;}
.lc-title .cn{ font-size:20px;}
.lc-con .left{ width:90px;    margin-right: 15px;}
.lc-con .left .item p{ font-size:16px; top:15px; left:5px;}
.lc-con .right{ padding:0}
.lc-con .right .item{ padding-left:15px}
.lc-con .right .item .st{font-size:14px;}
.lc-con .right .item .desc{font-size:12px;}

.lc-con .left{ display:none}
.lc-con .right{ border:0}
.lc-con .right .item::before{     top: 0px;
    zoom: 0.75;}
.lc-con .right .item{ margin-bottom:15px;}

.sev-mode{ padding:40px 0;}
.sev-mode .con{ width:100%; padding:20px;}

.sev-mode .con-box .st1{font-size:16px;}
.sev-mode .con-box .st2{font-size:14px;}
.sev-mode .con-box .st3{font-size:12px;}
.sev-mode .con-box .left,.sev-mode .con-box .right{ width:42%;}
.sev-mode .con-box .center{ font-size:26px;}
.sev-mode .con-box{padding:25px 0;}
.sev-mode .more{font-size:12px;}

.mxw-ys{padding:40px 0;}
.mxw-ys .mxw-title3 .cn{font-size:20px;}
.mxw-ys .mxw-title3 .en{font-size:14px;}
.mxw-ys .mxw-box{margin-top: 10px;}
.mxw-ys .item{ width:100%; padding:30px 20px; margin:15px auto 0   !important}

.about-page{padding:40px 0;}
.nabout-box{padding:40px 0;}

.nabout-box .mxw-box{flex-wrap: wrap;}
.nabout-box .mxw-box .left .st{font-size:20px;}
.nabout-box .mxw-box .left .st span{font-size:16px;}
.nabout-box .mxw-box .left{ width:100%;}
.nabout-box .mxw-box .right{ padding:0;width:100%;margin-top: 20px;}
.nabout-box .mxw-box .left .text{font-size:14px}



.meiti .mxw-box{    flex-wrap: wrap;}
.meiti .left{width:100%;}
.meiti .right{    margin: 20px auto;}
.meiti{padding-bottom: 40px;}

.guwen .st{font-size:22px;}
.guwen .st span{font-size:14px}

.ddc{ justify-content:space-between; align-items:stretch;}
.ddc .item { width:48.5%; margin-right:initial; padding:10px 0  0 0}
.ddc .item .left{ width:100%;}
.ddc .item .st1{ padding:8px 15px}
.ddc .item:nth-child(2n)~.item{ margin-top:25px}

.tc-md .title img{ width:85%; }
.md-body{ flex-wrap:wrap; margin-top:30px; justify-content:space-between;}
.md-body .item{ width:48.5%; margin-right:initial}
.md-body .item:nth-child(4){ display:block;}
.md-body .item .info .st{ font-size:18px;}
.md-body .item .info .desc{ font-size:14px;    margin-top: 5px;}
.md-body .item .info .more{ font-size:12px;}
.md-body .item .info{ padding:10px 5px;}
.tc-md.ny .md-body .item:nth-child(3n)~.item{margin-top:20px}
.md-body .item:nth-child(2n)~.item{ margin-top:20px;}
.tc-md{ padding:45px 0;}


.tc-md.ny .md-body .item{margin-right:initial}








}




/* page*/
.pages {

	float: left;
	width: 100%;
	line-height: 34px;
	text-align: center;
	color: #1a1d22;
}
.pages a {
	color: #fff;
	padding: 0 11px;
	margin: 0 5px;
font-/weight: bold;
	background: #677682;
}
.pages * {
	display: inline-block;
	_zoom: 1;
	_display: inline;
	vertical-align: middle;
	line-height: 28px;
	height: 28px;
	padding-bottom: 1px;
}
.pages .hover {
	display: inline-block;
	color: #fff;
	background: #1a2a38;
}
.pages a:hover {
	display: inline-block;
	color: #fff;
	background: #1a2a38;
}
.pages a.current{ background-color:#999;}

.izl-rmenu{position:fixed; right:5px;  bottom:10px; padding-bottom:73px; background:url(../images/r_b.png) 0px bottom no-repeat; z-index:999; }
.izl-rmenu .fbtn{width:72px; height:73px; margin-bottom:1px; cursor:pointer; position:relative;}
.izl-rmenu .btn-qq{background:url(../images/r_qq.png) 0px 0px no-repeat; background-color:#6da9de;}
.izl-rmenu .btn-qq:hover{background-color:#488bc7;}
.izl-rmenu a.btn-qq,.izl-rmenu a.btn-qq:visited{background:url(../images/r_qq.png) 0px 0px no-repeat; background-color:#6da9de; text-decoration:none; display:block;}
.izl-rmenu .btn-wx{background:url(../images/r_wx.png) 0px 0px no-repeat; background-color:#78c340;}
.izl-rmenu .btn-wx:hover{background-color:#58a81c;}
.izl-rmenu .btn-wx .pic{position:absolute; left:-160px; top:0px; display:none;width:160px;height:160px;}
.izl-rmenu .btn-phone{background:url(../images/r_phone.png) 0px 0px no-repeat; background-color:#fbb01f;}
.izl-rmenu .btn-phone:hover{background-color:#ff811b;}
.izl-rmenu .btn-phone .phone{background-color:#ff811b; position:absolute; width:160px; left:-160px; top:0px; line-height:73px; color:#FFF; font-size:18px; text-align:center; display:none;}
.izl-rmenu .btn-top{background:url(../images/r_top.png) 0px 0px no-repeat; background-color:#666666; display:none;}
.izl-rmenu .btn-top:hover{background-color:#444;}