@charset "UTF-8";
/* ==================== 重置默认样式 start ==================== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    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;
}
.in-box0928-2{ margin: 45px auto;}
.in-box0928-2 .st2 p{ margin-top: 12px;}
.in-box0928-2 .desc{ padding: 12px 0 18px; border-top: 1px solid #cfbaa9;border-bottom: 1px solid #cfbaa9; color: #733b1e; margin: 10px auto 0}

.n-banner{ text-align:center;}
/* ==================== flex通用布局 end ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 > .u-col {
        width: 48%;
    }
    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
    .u-row-3 > .u-col {
        width: 32%;
    }
    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }
    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }
    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }
    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }
    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-6 > .u-col {
        width: 15%;
        margin-right: 2%;
    }
    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }
    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 2%;
    }
}
@media screen and (max-width: 751px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .u-row-2 .u-col {
        width: 100%;
    }
    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }
    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }
    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }
    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 分页样式 start ==================== */
.mxw-pagination {
    margin-top: 50px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.mxw-pagination > a,.mxw-pagination > span {
    padding: 6px 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.2;
    border: 1px solid #ccc;
    display: block;
    margin: 4px;
}
.mxw-pagination > a.active,
.mxw-pagination > a:hover {
    background-color: #9e5d13;
    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 ==================== */

@font-face {
    font-family: 'siyuansongti';
    font-weight: bold;

    //src: url('../font/SourceHanSerifCN-Bold.otf'); /* IE9+ */
    //url('../font/SourceHanSerifCN-Bold.woff') format('woff'), /* chrome、firefox */
    //url('../font/SourceHanSerifCN-Bold.woff2') format('woff2'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
}
@font-face {
    font-family: 'siyuansongti-m';
    font-weight: normal;
   // src: url('../font/SourceHanSerifCN-Medium-6.otf'); /* IE9+ */
   // url('../font/SourceHanSerifCN-Medium-6.woff') format('woff'), /* chrome、firefox */
   // url('../font/SourceHanSerifCN-Medium-6.woff2') format('woff2'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/

}

@font-face {
    font-family: 'siyuansongti-h';
    font-weight: bolder;
   // src: url('../font/SourceHanSerifCN-Heavy-4.otf'); /* IE9+ */
//url('../font/SourceHanSerifCN-Heavy-4.woff') format('woff'), /* chrome、firefox */
//url('../font/SourceHanSerifCN-Heavy-4.woff2') format('woff2'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/

}


/* ==================== 通用标签页 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: #9e5d13;
    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: #f9f9f9;
}
.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: #9e5d13;
    vertical-align: inherit;
    /*font-weight: bold;*/
}
.mxw-keywords .left a:after {
    content: ",";
    padding-left: 5px;
    padding-right: 5px;
}
.mxw-keywords .left a:hover {
    color: #9e5d13;
}
.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;
    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: 65px;
    height: 44px;
    background-color: #9e5d13;
    border-radius: 0px 5px 5px 0px;
     color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.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;

}
.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-image: linear-gradient(-5deg, 
		#ffda89 0%, 
		#ffe3a8 100%);
    }
    .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: #fbf2df;
        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: #ffda89;
        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: 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: 21px;
    height: 21px;
    border-radius: 100%;
    background-color: #9e5d13;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #9e5d13;
    outline: none;
    opacity: 1;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mxw-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #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: #9e5d13;
}
.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: 1400px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 81%;
}
.mxw-box2 {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.3rem;
    color: #333;
    width: 85%;
}

/* 内页 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 {
        font-size: 50px !important;
    }
    .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-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:#9e5d13;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}
}


/* ==================== 通用细节调整 end ==================== */




/* ==================== 页面具体样式 start ==================== */
body{ font-size: 0.3rem;}

.top-box .logo-box{ margin: 0.25rem auto 0.3rem 0; font-size: 0;    flex-shrink: 0;}
.top-box .logo-box>img{ max-height:1rem;}
.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: #9e5d13; font-size: 0.35rem}

.mxw-link .mxw-box{color:#fff; padding: 0.5rem 0 }
.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:18px;cursor:pointer;line-height:1.8; }
.mxw-link .list{display:flex;align-items:center;justify-content:flex-start;}
.mxw-link .list a{font-size:16px;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-image: linear-gradient(-5deg, #fabc37 0%, #ffd271 100%);}
header .welcome {
    background: #373737;
    height: 32px;
    line-height: 32px;
    border-bottom: 1px solid #e5e5e5;
}
header .welcome .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:rgba(255,255,255,.6);
    height: 100%;
    padding: 0 0.833rem;
}
header .welcome .left {
    font-size: 14px;
    line-height: 1.2;
}
header .welcome .right {
    display: flex;
    align-items: center;
    font-size: 14px;
    color:rgba(255,255,255,.6);
}
header .welcome .right img{ margin-right: 15px;}
header .welcome .right >a {
    padding-left:5px;padding-right:5px;
}
header .welcome .right .title{ display: flex; align-items: center;}
header .welcome .right .title img{ margin-right: 10px; cursor: pointer;}
header .welcome .right .item{ position: relative; cursor: pointer; margin-left: 0.417rem}
header .welcome .right .item:hover .con{ display: block;}
header .welcome .right .ttel{ margin-right: 0.5rem; font-size: 14px; display: flex; align-items: center}

.top-box{ align-items: stretch; position: relative}
.top-box .right{ display: flex; flex-grow: 1; min-width: 0; justify-content: flex-end; align-items: center; }


.top-box .right .tel-box{ display: flex; align-items: flex-start; margin-left: 0.75rem; }
.top-box .right .tel-box .icon{ width: 0.8rem; margin-right: 0.267rem;}
.top-box .right .tel-box .st{ font-size: 0.3rem; font-weight: bold; color: #575757}
.top-box .right .tel-box .text{ color: #9e5d13; font-size: 0.467rem; font-weight: bold;}




.x-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
}
.x-menu > li {
    text-align: center;
    float: none;
    position: relative;
    height: 100%;
    width: initial;
    margin: 0 0 0 0.933rem;
}

.x-menu > li > a {
    font-size: 0.4rem;
    color: #333333;
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    padding: 0.36rem 0;
    width:initial;
    justify-content: center;
    font-weight: bold;
}

.x-menu > li > a:hover {
    color: #c83015;
}
.x-menu>li.active{	}
.x-menu > li.active > a {
    color: #c83015;

}


.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: 120%;
    left: -10%;
    top: calc(100% + 10px);
    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;
    align-content: center;

}

.x-sub-menu > li > a:hover {
    color: #fff;
    background:#9e5d13;
}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
}

.x-menu > li > a>span{ width: 100%;    font-weight: normal;}

.x-menu>span{width: 2px;
    height: 0.333rem; display: block;  content: ""; background: #dddddd;
    right: 0; }
.x-menu > span:last-child{ display: none}

body{ background: #fff9ef; }


.st1{ 	font-size: 0.533rem;color: #ffebc2; text-align: center; background: url("../images/st1-bg.png") center no-repeat; padding: 0.233rem 0; background-size: auto 100%;}
.in-box1{ padding-top: 1.1rem;}
.st2{ 	 font-size: 1.4rem;color: #733b1e;text-align: center; margin-top: 0.583rem; line-height: 1;}
.st2 p{	color: #733b1e; font-size: 0.8rem; margin-bottom: 0.2rem;}
.st2 p span{font-size: 0.5rem;}
.st3{ 	color: #733b1e; text-align: center; font-size: 0.417rem; font-family: 'siyuansongti', '宋体',  sans-serif; margin-top: 0.533rem; font-weight: bold; }
.st3 span{ 	color: #c81109; font-family: 'siyuansongti', '宋体',  sans-serif;}
.con1{ margin-top: 1.417rem; text-align: left}
.in-box2 .box2-body{ margin-top: 1.25rem; display: flex; align-items: stretch; justify-content: space-between;}
.in-box2 .box2-body .left{ width: 49.2%; flex-shrink: 0;}
.in-box2 .box2-body .left video{width: 100%; }
.in-box2 .box2-body .right{ padding: 1rem 1.167rem 1rem 0.667rem; background: url("../images/b2-bg.png") right center no-repeat; font-family: 'siyuansongti', '宋体',  sans-serif; font-size: 0.367rem;color: #733b1e; line-height: 1.8; display: flex; align-content: center; flex-wrap: wrap;}
.in-box2 .box2-body .right p{ font-family: 'siyuansongti', '宋体',  sans-serif;  width: 100%}

.in-box3{ padding-top: 1.333rem;}
.in-box3 .st2 p{ margin-top: 0.367rem;}

.in-box3 .box3-body{ margin-top: 0.633rem; display: flex; align-items: center;justify-content: space-between;}
.in-box3 .box3-body .left{ width: 52.2%; flex-shrink: 0; }
.in-box3 .box3-body .right{ flex-grow: 1; min-width: 0; margin-left: -0.85rem;}
.in-box3 .box3-body .right .title{ font-size: 0.633rem;	color: #733b1e; margin-top: 0.333rem;    font-weight: bold;    margin-bottom: 0.267rem;}
.in-box3 .box3-body .right .text{font-size: 0.367rem; 	color: #733b1e; line-height: 1.4;    padding-right: 0.5rem;
    text-align: justify;}
.in-box3 .box3-body .right .text span{color: #c81109;}
.in-box3 .box3-body .box-3d{ margin-top: -0.333rem;}


.in-box4{ padding-top: 1rem;}
.in-box4 .st2 p{ margin-top: 0.333rem;}
.in-box4 .st3{ padding: 0 1rem;    font-family: initial;
    font-weight: normal;
    margin-bottom: 0.7rem;
}
.in-box4 .box4-body{ margin-top: 1.083rem; }
.in-box4 .box4-body .item{ text-align: center; position: relative; padding-top: 0.633rem;}
.in-box4 .box4-body .item .flx{ position: absolute; top: 0;  left:0; right: 0; margin: 0 auto}
.in-box4 .box4-body .item .flx .title{ color: #ffebc2;font-size: 0.6rem;padding: 12px 0; text-align: center; background: url("../images/box4-tt-bg.png") center no-repeat; font-family: 'siyuansongti', '宋体',  sans-serif; transition: all 1s;background-size: auto 100%;}
.in-box4 .box4-body .item .flx .icon{ width: 2.8rem; margin: 0.833rem auto; transition: all 0.3s}
.in-box4 .box4-body .item .flx .desc{color: #c81109; font-size: 0.66rem;line-height: 1; margin-bottom: 0.333rem;    font-weight: bolder; }
.in-box4 .box4-body .item:hover .title{  }
.in-box4 .box4-body .item:hover .icon{ transform: rotate3d(0,1,0,180deg);  }
.in-box4 .box4-body .item .b-more{	color: #733b1e;	font-size: 0.4rem;line-height: 1;text-align: right; margin-right: 1rem;     display: block; }
.in-box4 .box4-body .item .b-more span{	color: #c81109; font-family: 'siyuansongti-m', '宋体',  sans-serif; }


.in-box5{ padding-top: 1.5rem;}
.in-box5 .st2 p{ margin-top: 0.333rem;}
.in-box5 .st3{ margin-top: -0.25rem;}
.in-box5 .st4{ font-size: 0.5rem; line-height: 1.5; text-align: center;  color: #733b1e; margin-top:-2.5rem;  margin-bottom: 0.5rem;}
.in-box5 .st4 span{color: #c81109;}
.in-box5 .box5-body{}
.box5-body{ margin-top: 0.5rem;}


.in-box6{ padding: 1.5rem 0;}
.in-box6 .box6-body{ margin-top: 1rem;}
.in-box6 .st3{    font-family: initial;
    font-weight: normal;line-height: 1.6;
    margin-bottom: 0.5rem;}
.box5-body .title{ display: flex; align-items: stretch; justify-content: space-between; background:url("../images/lhtt-bg.png") center repeat-x; text-align: center; padding-right: 20px}
.box5-body .title .item{ font-size: 0.45rem; padding: 0.25rem 0;font-family: 'siyuansongti', '宋体',  sans-serif;  color: #feeece; width: 20%; text-align: center; border-right: 0.017rem solid #d7c3b1;    font-weight: bold;}
 .box5-body .title .item:last-child{ border: 0}
.box5-body .title .item:nth-child(2){ width: 40%;}
 .box5-body .con{ height: 12.5rem; overflow-y: scroll;}
 .box5-body .con .text{ display: flex; align-items: stretch; justify-content: space-between; background: #ffebc2;}
 .box5-body .con .text:nth-child(2n){ background: #ffefd4; }
.box5-body .con .text .item{font-family: 'siyuansongti-m', '微软雅黑',  sans-serif;  font-size: 0.333rem; text-align: center; color: #733b1e; display: flex; align-items: center; justify-content: center; width: 20%; border-right: 1px dashed #a6733e;padding: 0.417rem 0.25rem;}
.box5-body .con .text .item:last-child{ border: 0}
.box5-body .con .text .item:nth-child(2){ width: 40%; flex-direction: column;}

 .box5-body .con{-webkit-tap-highlight-color:rgba(255,255,255,0);-webkit-touch-callout:none;margin:0}
 .box5-body .con::-webkit-scrollbar{width:20px;height:15px}
.box5-body .con::-webkit-scrollbar-track{border-radius:0;background:#f4d7a4;}
 .box5-body .con::-webkit-scrollbar-thumb{background:#7e3d03;}
 .box5-body .con::-webkit-scrollbar-thumb:hover{background:#7e3d03;}



.nth-page{ padding-top: 0.833rem;}
.nth-page .mxw-box{ display: flex; align-items: flex-start; justify-content: space-between;  }
.nth-page .mxw-box .left{ width: 5.267rem; flex-shrink: 0; margin-right: 1.033rem; position: sticky; top: 0.833rem; margin-bottom: 1rem;}
.nth-page .mxw-box .right{ flex-grow: 1; min-width: 0;}
.nth-page .mxw-box .left .top p{ width: 100%; font-size: 0.633rem; text-align: center; color: #733b1e; line-height: 1; padding-bottom: 0.25rem; background: url("../images/menu-bg.png") center repeat-y;    background-size: contain;}
.nth-page .mxw-box .left .list{ display: flex; flex-direction: column; background: url("../images/menu-bg.png") center repeat-y; padding: 0 3px 0.917rem; background-size: contain}
.nth-page .mxw-box .left .list .item{ padding: 0.417rem; border-top: 1px dashed #986946; font-size: 0.5rem;color: #733b1e; display: flex; align-items: center; justify-content: flex-start;    margin: 0 2px 0 2px;}
.nth-page .mxw-box .left .list .item:last-child{border-bottom: 1px dashed #986946;}
.nth-page .mxw-box .left .list .item:hover,.nth-page .mxw-box .left .list .item.active{background: #f5c75e; color:#c81109 ;background-size: contain}
.nth-page .mxw-box .left .list .item::before{ content: ""; width: 0.183rem; height: 0.183rem; border-radius: 50%; background: #733b1e; margin-right: 0.333rem;flex-shrink: 0 }
.nth-page .mxw-box .left .list .item:hover::before,.nth-page .mxw-box .left .list .item.active::before{ background: #c81109}
.nth-page .mxw-box .right .pozs{ font-size: 0.533rem;color: #733b1e;padding-left: 0.25rem; border-left: 0.1rem solid #733b1e; line-height: 1;}
.nth-page .mxw-box .right .pozs span{ color: #c81109}
.nth-page .mxw-box .right .content{font-size: 0.333rem; line-height: 1.6; color: #834d2c; margin-top: 1rem; margin-bottom: 1.5rem; }



.pp2-wz1{ font-size: 0.633rem;text-align: center}
.pp2-tt1{ font-size: 0.8rem; text-align: center;font-family: 'siyuansongti-h', '宋体',  sans-serif; padding-bottom: 0.25rem; background: url("../images/pp-tt2-bg.png") center bottom no-repeat;  line-height: 1.1; margin-top: 1.333rem;}
.pp2-wz2{ text-align: center; color: #733b1e; font-size: 1.033rem; margin-top: 0.7rem; margin-bottom: 0.5rem;}
.pp2-wz2 span{ color: #c81109; }

.pp4-tt1{ line-height: 1.5}
.pp4-wz1{ text-align: center; margin: 0.667rem auto 0.917rem; }

.pro-page{ background: url("../images/taiji.png") no-repeat; background-size: 100% auto; max-width: 1920px; margin: 0 auto;}

.pro1-wz1{font-family: 'siyuansongti-h', '宋体',  sans-serif; }
.pro1-wz2{ text-align: center; margin-top: 0.333rem; font-size: 0.8rem}

.pro1-list1{ margin-top: 10.333rem; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap;}
.pro1-list1 .item .title{font-size: 0.6rem;font-weight: 400; color:#c83015}
.pro1-list1 .item .desc{  margin-top: 0.1rem; font-size: 0.367rem; flex-grow: 1;}
.pro1-list1 .item{ display: flex; flex-direction: column;    margin-bottom: 0.8rem;}

.case-page.nth-page .mxw-box .left .list .item{ font-size: 0.45rem; padding: 0.5rem 0.25rem;}
.case-page.nth-page .mxw-box .left .list .item::before{ margin-right: 0.25rem}
.case-page.nth-page .mxw-box .right .content .case50{ padding: 0 0.833rem;}

.case3-title{ text-align: center; font-size: 1.533rem;font-family: 'siyuansongti-h', '宋体',  sans-serif; }

.case3-list{ padding: 0 0.667rem 0; display: flex; flex-wrap: wrap; justify-content: space-between;}
.video-list p{ text-align: left; font-size: 0.433rem; margin-top: 0.25rem;}




.xf-list{ position: fixed; right: 5%; bottom: 10%; z-index: 99;}
.xf-list .item{ margin-bottom: 0.3rem; cursor: pointer; position: relative;}
.xf-list .item .xf{ position: absolute; right: 100%; background: url("../images/xl-bg.png") no-repeat;  padding: 0.11rem 0.23rem 0.1rem 0.1rem; width: max-content; font-size: 0.4rem; background-size: 100% 100%; top: 0;font-family: 'siyuansongti-m', '宋体',  sans-serif; line-height: 1;  color: #733b1e; transform: translateY(50%); opacity: 0; transition: all 0.3s;}
.xf-list .item:hover .xf{ opacity: 1;}


footer{ padding: 0.8rem 0 1.167rem;background-color: #e3ac4d;}
footer .d-box1{ width: 18%; flex-shrink: 0;}
footer .d-box3{ display: flex; align-items: flex-start; justify-content: flex-end; text-align: center; font-size: 0.367rem; color: #783e1b;
    font-family: '思源黑体', '微软雅黑', serif; flex-shrink: 0}
footer .d-box3 p{ margin-top: 0.167rem;}
footer .d-box3 .item{ max-width: 2.283rem; margin-left: 0.3rem;}
footer>.mxw-box{ display: flex; align-items: flex-start; justify-content: space-between;}
footer .d-box2{ padding: 0 0.3rem 0 0.333rem; flex-grow: 1; min-width: 0;font-family: '思源黑体', '微软雅黑', serif;}
footer .d-box2 .top{font-size: 0.467rem; color: #783e1b;line-height: 1; padding-bottom: 0.2rem; border-bottom: solid 0.017rem #783e1b;}
footer .d-box2 .bot{ font-size: 0.267rem; margin-top: 0.2rem; color: #783e1b; line-height: 2;}
footer .d-box2 .bot a{ color: #783e1b}

.pp2img-1{ text-align: center; }

.pro-page-list .st2{ font-size: 1.283rem;    font-weight: 600;}
.pro-page-list .st2 p{ margin-top: 0.333rem;     font-weight: 400;    font-size: 0.8rem;}
.pro-page-list .st3{ margin-top: -0.2rem}
.pro-page-list .st4{ margin-top: -2rem; text-align: center;}
.pro-page-list .st4 span{ color: #c81109}
.pro-page-list .box5-body .con{ overflow: hidden; height: auto;}
.pro-page-list  .box5-body .title{ padding-right: 0}
.pro-page-list  .box5-body .title .item{ font-size: 0.42rem;}

  .f75{ font-size: 1rem; text-align: center; line-height: 1.2}
        .j50{  width: 100%; height: 0.833rem;}
        .con-t1{ font-size: 0.5rem; color: #fff9ef; padding: 0.3rem 0;  background: url("/skin/images/0928-bg.png") center no-repeat;background-size: auto 100%;    text-align: center;}
        .f60{ font-size: 0.7rem; text-align: center; color: #d7261b;  margin: 0.4rem auto;}
        .desc31{ font-size: 0.433rem; text-align: center;}
        .m12{ margin: 0.2rem auto;}
        .f40{ color: #733b1e; font-size: 0.45rem;}



.gy-list .item{ display:flex; align-items: center; justify-content: space-between;}
                        .gy-list .item .image{ flex-shrink: 0; width: 17%;}
                        .gy-list .item .con{ margin-left: 0.6rem;  flex-grow: 1; min-width: 0;}
                        .gy-list .item .con .title{ font-size: 0.417rem; color: #c83015;}
                        .gy-list .item .con .desc{ font-size: 0.267rem; color: #733b1e; margin-top: 0.2rem;}
                        .g-more{ border: 0.017rem solid #94684f; padding: 0.1rem 0.3rem; font-size: 0.267rem; margin: 12px 0 0 auto; display: block; width: max-content}
                        .gy-list .item:nth-child(1)~.item{ margin-top: 0.5rem}


  .jd-list .item{ display: block; width: 100%}
                    .jd-list .item .title{ color: #c83015; font-size: 0.6rem; margin-bottom: 0.3rem;}
                    .jd-list .item .con{ display: flex; align-items: center; justify-content: space-between;}
                    .jd-list .item .con .lb{ flex-grow: 1; min-width: 0;}
                    .jd-list .item .con .image{ width: 52%; flex-shrink: 0; margin-left: 1rem;}
                    .jd-list .item:nth-child(1)~.item{ margin-top: 0.75rem}
                    .jd-list .g-more{ margin-left: 0; margin-top: 0.7rem}



    .in-box1{margin-bottom: 3rem;}
    .in-box1 .con{ display: flex; align-items: stretch; justify-content: space-between; margin-top: 1rem; }
    .in-box1 .con .video{ width: 46.8%; flex-shrink: 0;}
    .in-box1 .con .video video{ max-width: 100%;}
    .in-box1 .con .con1{ flex-grow: 1; min-width: 0;  align-content: center; padding: 1.133rem 0.7rem; background: #fff0d2; font-size: 0.467rem; color: #733b1e; margin-top: 0 ; text-align: left; line-height: 1.5}
    .in-more{ width: 3.667rem; height: 1.033rem; display: flex; align-items: center; justify-content: center; color: #733b1e; font-size: 0.467rem; margin: 0 auto; border: 1px solid #733b1e; }
    .in-box1 .in-more{  margin-top: 1rem;}
    .in-box3{padding-top: 0;}
    .in-box3 .in-more{ margin-left: 0; margin-top: 1rem; }


.in-box0928-1{ margin-top: 1rem;}
    .in-box0928-1 .st2 p{ margin-top: 0.25rem;}
    .in-box0928-1 .desc{ text-align: center; font-size: 0.467rem; color: #733b1e; margin: 0.4rem auto 0;}
    .in-box0928-1 .imgs{ text-align: center;}









/* ==================== 页面具体样式 end ==================== */


/* ==================== 新闻详情 start ==================== */
.ny-news-desc {


}
.ny-news-desc > .mxw-box {

}
.ny-news-desc .title {
    font-weight: bold;
    font-size: 27px;
    color: #333;

}
.ny-news-desc .tit2{text-align: center;font-size: 20px;    padding-bottom: 15px;}
.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: 16px; width:80%; margin:0 auto;
}
.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; width:100%;
    }
    .ny-news-desc .info .text {
        margin-right: 6px;
        padding-left: 6px;
        line-height: 2em;
        display: inline;
    }
    .ny-news-desc .info {
        padding-bottom: 12px;
    }
}
/* ==================== 新闻详情 end ==================== */



/* ==================== 通用 - 无缝滚动 end ==================== */
.mxw-scroll {
    overflow: hidden;
}
.mxw-scroll .scroll-wrap {
    display: flex;
    align-items: stretch;
    transform: translateX(0);
}
.mxw-scroll .scroll-item {
    flex-shrink: 0;
}

@media screen and (max-width: 500px) {
    .mxw-scroll .scroll-item {
        width: 48%;
        margin-right: 4%;
    }

}
/* ==================== 通用 - 无缝滚动 end ==================== */

@media screen and (max-width: 1860px) {
    .st2{ font-size: 1.8rem}
}

@media screen and (max-width: 1750px) {
    .st2{ font-size: 1.5rem}
}

@media screen and (max-width: 768px) {
    .mxw-box{ padding: 0; max-width: 85%; width: 95%;}

    .in-box1{ padding-top: 10px;}
    .st1{ font-size: 16px;background: url(../images/st1-bg-m.png) center no-repeat;background-size: auto 100%;}
    .st2{ font-size: 26px; margin-top: 5px}
    .st2 p{ font-size: 22px; margin: 0 auto 10px;}
	.st2 p span{ font-size: 18px;}
    .st3{ font-size: 16px; line-height: 1.5}
    .st3 br{ display: none}
    .con1{ margin-top: 20px;}
    .in-box2{ padding-top: 45px;}
    .in-box2 .box2-body{ margin-top: 5px; flex-wrap: wrap;}
    .in-box2 .box2-body .left{ width: 100%}
    .in-box2 .box2-body .right{ padding: 20px; font-size: 16px; background-size: auto 100%}
    .in-box3{ padding-top: 40px;}
    .in-box3 .box3-body{ flex-wrap: wrap;}
    .in-box3 .box3-body{ margin-top: 5px;}
    .in-box3 .box3-body .left{ width: 100%}
    .in-box3 .box3-body .right{ margin-left: 0}
    .in-box3 .box3-body .right .title{ font-size: 22px;}
    .in-box3 .box3-body .right .text{ font-size: 16px; margin-top: 10px;}
    .in-box4{ padding-top: 40px;}
    .in-box4 .st3{ padding: 0}
    .in-box4 .box4-body{ margin-top: 5px;}
    .in-box4 .box4-body .item{ width: 49%; margin-top: 0; margin-right: 2%;    padding-top: 18px;}
    .in-box4 .box4-body .item:nth-child(2n){ margin-right: 0}
    .in-box4 .box4-body .item .flx .title{ font-size: 16px; background-size: auto 100%;    padding: 6px 0;}
    .in-box4 .box4-body .item .flx .icon{ width: 50px; margin: 10px auto;}
    .in-box4 .box4-body .item .flx .desc{ font-size: 16px; margin-bottom: 15px;}
    .in-box4 .box4-body .item .b-more{ font-size: 14px;}
    .in-box4 .u-row-2 .u-col:nth-child(1) ~ .u-col{ margin-top: 0}
    .in-box4 .box4-body .item .b-more{ margin-right: 12px;}
    .in-box4 .u-row-2 .u-col:nth-child(2n) ~ .u-col{ margin-top: 15px}
    .in-box5{ padding-top: 45px;}

    .in-box5 .st4{ font-size: 18px; margin-top: -45px;}
    .box5-body{ margin-top: 20px;}
     .box5-body .title .item{ font-size: 16px;}
    .box5-body .title{ padding-right: 4px;}
     .box5-body .con::-webkit-scrollbar{width:4px;height:10px}
     .box5-body .title .item:first-child{ width:22% }
     .box5-body .title .item:last-child{ width:18% }
     .box5-body .con .text .item{ padding: 10px; font-size: 14px;}
     .box5-body .con .text .item:first-child{ width:22% }
     .box5-body .con .text .item:last-child{ width:18% }
     .box5-body .con{ height: 8rem}
    .in-box6{ padding: 45px 0}
    .in-box6 .st3 br{ display: none}

    .in-box6 .box6-body{ margin-top: 20px;}
.in-box0928-2 {margin: 10px auto;}
    .nth-page{ padding-top: 25px;}
    .nth-page .mxw-box{ flex-wrap: wrap;}
    .nth-page .mxw-box .left{ width: 100%; margin-right: 0;}
    .nth-page .mxw-box .left .top,.nth-page .mxw-box .left .bottom{ display: none}
    .nth-page .mxw-box .left .list{ flex-direction: initial; flex-wrap: wrap; justify-content: space-between; background: none; border: 0; padding-bottom: 0;}
    .nth-page .mxw-box .left .list .item{background: none;font-size: 15px;padding: 10px 5px;width: 23%;border: 0;}
    .nth-page .mxw-box .left .list .item::before{ display: none;}
    .nth-page .mxw-box .left .list .item:last-child{ border: 0}
    .nth-page .mxw-box .right .pozs{font-size: 16px;display: none;}
    .nth-page .mxw-box .right .content{ margin-top: 30px; font-size: 14px;margin-bottom: 30px;}
    .nth-page .content .st2{ margin-top: 0}
    .nth-page .mxw-box .left{position: initial;margin-bottom: 0;}

    .pp2-wz1{ font-size: 18px;}
    .pp2img-1{ width: 60%; margin:20px auto 15px; text-align: center}
    .pp2-tt1{ font-size: 20px; margin-top: 20px ; background-size: auto 50%; padding-bottom: 12px}
    .pp2-wz2{ font-size: 22px;}

    .pro1-wz2{ font-size: 14px;}

    .pro-page{ background: none}
    .pro-page.nth-page .mxw-box .right .content{
        background: url(../images/taiji.png) no-repeat;
        background-size: 150% auto;
        background-position: 85% 35px;
    }


    .pro1-list1{ margin-top: 6.5rem}
    .pro1-list1 .item .title{ font-size: 22px;}
    .pro1-list1 .item .desc{ padding: 15px; font-size: 14px; margin-top: 5px;}
    .u-row-2 .u-col:nth-child(1) ~ .u-col{ margin-top: 25px;}

    .pro-page-list .box5-body .con{ overflow: initial; height: auto;}
    .case-page.nth-page .mxw-box .left .list .item{font-size: 15px;padding: 10px 12px;width: 32%;border: 0;}
    .case-page.nth-page .mxw-box .right .content .case50{ padding: 0 15px; }
    .case3-title{ font-size: 20px;}
    .case3-list{ padding: 20px 0 }
    .video-list p{ font-size: 14px; margin-top: 5px;}



    .xf-list .item{ zoom: 0.5}


    footer{ padding: 40px 0 12px;}
    footer>.mxw-box{ flex-wrap: wrap;}
    footer .d-box1{ width: 100%; text-align: center; margin-bottom: 20px;}
    footer .d-box2{ padding: 0; order: 1;}
    footer .d-box3{ justify-content: center; width: 100%}
    footer .d-box3 .item:first-child{ margin-left: 0}
    footer .d-box3 .item p{ font-size: 16px; margin-top: 0px;}
    footer .d-box2{ margin-top: 20px;}
    footer .d-box2 .top{ font-size: 16px;}
    footer .d-box2 .bot{ font-size: 14px;}
    body{ margin-bottom: 0; font-weight:600;}

    .nth-page .content .st2{ font-size: 24px;}
    .pro-page-list .st2 p{ font-size: 16px;}
    .pro-page-list .st4{ margin-top: -40px; font-size: 14px;}
    .pro-page-list .st2 p{ margin-top: 15px;}
    .pro-page-list .box5-body .title .item{ font-size: 18px;}


.in-box1 .st2{    font-weight: bolder;    font-family: initial;}
.in-box1 .st2 p{ font-weight: bold;    font-family: initial;}
.in-box1 .st1{ font-family: initial;}
.in-more{	    width: 96px;
    height: 27px;
    border: solid 1px #733b1e;
    display: flex;
    align-items: center;
    justify-content: center;font-size: 14px;
    margin: 0 auto;
    color: #733b1e;}
.in-box1 .in-more{    margin-top: 20px;}
.in-box1 .con1{ 	font-size: 14px; color: #733b1e;line-height: 1.5;}


.in-box2 .st2{    font-weight: bolder;    font-family: initial; line-height: 1.5;}
.in-box2 .st2 p{ font-weight: bold;    font-family: initial;    font-size: 20px;}
.in-box2 .st1{ font-family: initial;}
.in-box2 .desc{    font-size: 14px;
    color: #733b1e;
    padding: 10px 0 15px;
    border-top: 1px solid #733b1e;
    border-bottom: 1px solid #733b1e;
    margin: 0 5%;}

.in-box3{    padding-top: 10px;}
.in-box3 .st2{    font-weight: bolder;    font-family: initial; line-height: 1.5;}
.in-box3 .st2 p{ font-weight: bold;    font-family: initial;    font-size: 20px;}
.in-box3 .st1{ font-family: initial;}
.in-box3 .st2 p{ margin-top:0;font-size: 18px;}

.in-box3 .desc{    font-size: 14px;
    color: #733b1e;}


.in-box4{padding-top: 10px;}
.in-box4 .st2{    font-weight: bolder;    font-family: initial; line-height: 1.5;}
.in-box4 .st2 p{ font-weight: bold;    font-family: initial;    font-size: 20px;}
.in-box4 .st1{ font-family: initial;}
.in-box4 .st2 p{ margin-top:0;font-size: 18px;}
.in-box4 .box4-body{    padding: 0;}
.in-box4 .box4-body .item{     padding-top: 0;}
.in-box4 .box4-body .item>img{    width: 72px;}
.in-box4 .box4-body .item .desc{    font-size: 20px;
    color: #733b1e;
    margin: 10px auto 0;    font-weight: bold;}
.in-box4 .box4-body .item .title{    font-size: 15px;
    color: #733b1e;    margin-top: 5px;

}
.in-box4 .in-more{    margin-top: 20px;}


.in-box6{padding-top: 10px;    padding-bottom: 0;}
.in-box6 .st2{    font-weight: bolder;    font-family: initial; line-height: 1.5;}
.in-box6 .st2 p{ font-weight: bold;    font-family: initial;    font-size: 20px;}
.in-box6 .st1{ font-family: initial;}
.in-box6 .st2 p{ margin-top:0;font-size: 18px;    margin-bottom: 0;}
.in-box6 .st3{display: none;}
.in-box6 .in-more{    margin-top: 20px;}


body{    margin-bottom: 61px;}

.m-tool{    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-image: linear-gradient(-5deg, #ffda89 0%, #ffe3a8 100%);    padding: 10px 0;}

.m-tool .item{    color: #733b1e;
    width: 100%;
    text-align: center;
    font-size: 12px;}
.m-tool .item .icon img{    height: 20px;}
.m-tool .item p{    margin-top: 5px;}
.m-footer{       text-align: center;
    font-size: 12px;
    padding: 60px 0 20px;
    background: url(../images/md-bg.jpg) #fabe3b top no-repeat;
    background-size: 100% auto; color: #733b1e;}
.m-footer .mxw-box{font-size: 12px;}


.in-box1 video{    width: 100%;}
.jd-list .item .title{font-size: 18px;    margin-bottom: 5px;}
.g-more{ zoom:0.9;    margin-top: 15px;}
.jd-list .item .con .image{    margin-left: 20px;}
.jd-list .g-more{margin-top: 15px;}
.jd-list .item .con .lb .text{font-size: 12px;}
.mxw-ny-box{padding: 0;}
.ny-news-desc .article{    font-size: 14px;
    margin-top: 10px; min-height:450px;}

.ny-news-desc .title{font-size: 18px;   }
.con-t1{    font-size: 18px;    padding: 8px 0;}
.f75{  font-size: 22px;  }
.j50{ height:25px;}
.f60{font-size: 18px;    margin: 12px auto; }
.desc31{font-size: 14px;}
.f75 br{display:none}
.f40{ font-size: 16px; }
.gy-list .item .image{width: 32%;}
.gy-list .item .con{    margin-left: 15px;}
.gy-list .item .con .title{font-size: 16px; }

.in-box1{     margin-bottom: 0;}

.in-box3 .in-more{margin: 12px auto 0;}



}












