@charset "utf-8";
/* ============================================================================================================================
													全局默认样式
===============================================================================================================================*/
@font-face {
    font-family:'MiSans';
    src:url('./font/MiSans-Regular.ttf'),
   /*  url('./font/MiSans-Regular.woff2') format('woff2'), */
}
@font-face {
    font-family:'monbaiti';
    src:url('./font/monbaiti.ttf');
}
body {
    position: relative;
    font-family: 'MiSans',sans-serif;  
    font-size:14px;
    line-height:1.7;
    margin: 0px;
    padding: 0px;
    color: #000000;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}
h4,h5,h6 {
    font-weight: normal;
}
ul,li,dd,dl,dt,ol {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
em,i {
    font-style: normal;
}
a {
    color: #333333;
    text-decoration: none;
}
a:hover,
a:focus{
    color: #001332;
    text-decoration:none;
}
p {
    padding: 0px;
    margin: 0px;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
input ,
input:focus,
button,
button:focus,
optgroup,
option,
select,
textarea,
textarea:focus{
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: 0;
    box-shadow: none;
}
.clearfix{
    clear: both;
}
input::-webkit-input-placeholder{   /* 使用webkit内核的浏览器 */
	color: #bcbcbc;
}
input:-moz-placeholder{    /* Firefox版本4-18 */
	color: #bcbcbc;
}              
input::-moz-placeholder{    /* Firefox版本19+ */
	color: #bcbcbc;
}              
input:-ms-input-placeholder{   /* IE浏览器 */
	color: #bcbcbc;
}        
.center{
    text-align: center;
}
.text_right{
    text-align:right;
}
.text_left{
    text-align:left;
}


/* ==============================================
				公共标题
============================================== */
.guide_title{
    width: 100%;
    position: relative;
    text-align: center;
    line-height: 1;
}
.guide_title h2{
    font-size:30px;
    font-weight:500;
}
.guide_title p{
    margin:0.1rem 0 0.2rem;
    text-transform: uppercase;
    font-family:'monbaiti';
}
.white_title h2{
    color: #ffffff;
}
@media (max-width:991px){
    .guide_title h2{
        font-size:28px;
    }
    .guide_title p{
        margin:0.2rem 0;
    }
}



/*============================================================================================================================
													flex
===============================================================================================================================*/
.flex{
    display: flex;
}
.flex1{
    flex: 1;
}
.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-jcenter{
    display: flex;
    justify-content: center;
}
.flex-acenter{
    display: flex;
    align-items: center;
}
.flex-start{
    display: flex;
    align-items:flex-start;
}
.flex-sbetween{
    display: flex;
    justify-content: space-between;
}


/*============================================================================================================================
													bootstrap
===============================================================================================================================*/
.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,
.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,
.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,
.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{
    padding: 0;
}

/* ============================================================================================================================
													超出省略
===============================================================================================================================*/
.ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis-1 {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ellipsis-2 {
    -webkit-line-clamp: 2;
}

.ellipsis-3 {
    -webkit-line-clamp: 3;
}

.ellipsis-4 {
    -webkit-line-clamp: 4;
}

.ellipsis-5 {
    -webkit-line-clamp: 5;
}

.ellipsis-6 {
    -webkit-line-clamp: 6;
}

.ellipsis-7 {
    -webkit-line-clamp: 7;
}

.ellipsis-8 {
    -webkit-line-clamp: 8;
}
.ellipsis-9{
    -webkit-line-clamp:9;
}

.ellipsis-10{
    -webkit-line-clamp:10;
}


/* ============================================================================================================================
													全局宽度
===============================================================================================================================*/

/* --宽度--*/
.container-fluid,
.banner-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}
/* --内容宽度--*/
.container {
    width:94%;
    max-width:1400px;
    margin:0 auto;
    padding: 0;
}
/* --头部宽度--*/
.content_box {
    width:94%;
    max-width:1400px;
    margin:0 auto;
}
/* ============================================================================================================================
													page-翻页
===============================================================================================================================*/
.page{
    overflow: hidden;
}
.page.null{
    display: none;
}
.pagination {
    margin:15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    clear: both;
}
.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    font-size: 16px;
    color: #001332;
    background-color: #ffffff;
    border: none;
    border-bottom:1px solid #001332;
}
.pagination>li{
    margin: 0 8px;
}
.pagination>li>a,
.pagination>li>span {
    padding: 4px 6px;
    font-size:14px;
    border: none;
    color: #666666;
    cursor: pointer;
}
@media (max-width:991px) {
    .pagination {
        margin:0.3rem 0;
    }
}

.next-map p {
    position: relative;
    margin-top: 4px;
}

.next-map p:last-child {
    position: relative;
}

.next-map p span {
    float: left;
    display: inline-block;
}

.next-map p .ellipsis-1 {
    display: inline-block;
}


/* ============================================================================================================================
													公共标题字体大小
===============================================================================================================================*/
h1 {
    font-size: 42px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 30px;
}

@media (max-width: 1440px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 14px;
    }
}

/* ============================================================================================================================
													more-更多按钮
===============================================================================================================================*/
/* --点击按钮公共样式--*/
.more{
    width:180px;
    height:50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:50px;
    color: #ffffff;
    line-height: inherit;
    font-size:18px;
    background-color: #001332;
    transition: all .3s ease;
}
.more:hover{
    color: #ffffff;
    padding-bottom:5px;
}
@media (min-width:991px) and (max-width:1440px) {
    .more{
        width:150px;
        height:42px;
        font-size:14px;
    }
}
@media (max-width:991px) {
    .more{
        width:130px;
        height:36px;
        font-size:12px;
    }
}

/* ============================================================================================================================
													浮动
===============================================================================================================================*/
.fr {
    float: right;
}

.fl {
    float: left;
}

/* ============================================================================================================================
												弹出效果
===============================================================================================================================*/

/* ============================================================================================================================
													去掉swiper左右伪类内容
===============================================================================================================================*/
.swiper-button-prev::after, .swiper-button-next::after{
    content:""
}
.swiper-button-next:focus, .swiper-button-prev:focus{
    outline: none;
    box-shadow: none;
}
/* ============================================================================================================================
													header
===============================================================================================================================*/
.header-box{
    height: 120px;
    width: 100%;
    position: relative;
    z-index: 999;
}
.header-box .header{
    position: fixed;
    height:70px;
    top: 0;
    left: 0;
    width: 100%;
    z-index:1000;
    background-color: #ffffff;
}
.header .content_box{
    display: flex;
    align-items:flex-end;
    justify-content: space-between;
}
/* --语言选择样式--*/
.lang_box{
    position: relative;
    font-size: 12px;
    color: #001332;
    cursor: pointer;
}
.lang_box .lang_ts{
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 12px;
    text-transform: uppercase;
}
.lang_box ._ts{
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #a3a6ac;
}

.lang_box .lang_ts img{
    width: 10px;
    margin-left:10px;
}

.lang_box .lang_tc{
    display: none;
    position: absolute;
    top:20px;
    left: 0;
    min-width: 100px;
    background-color: #ffffff;
}
.lang_box .lang_tc a{
    width: 100%;
    padding:10px 0.2rem;
    float: left;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dedede;
}
.lang_box img{
    width: 20px;
    margin-right: 5px;
}

/* --导航logo样式--*/
.header-logo , .header-logo img{
    max-width:165px;
}
/* --搜索样式--*/
.header .header_search{
    margin-top: 30px;
    width: 132px;
    overflow: hidden;
}
.header .header_search button {
    cursor: pointer;
    color: #1b1b1b;
    background:inherit;
    border: 0;
    font-size: 12px;

}
.header .header_search form {
    display: flex;
    align-items: center;
    overflow: hidden;
    height:20px;
    border: 1px solid #1b1b1b;
}
.header .header_search input{
   flex: 1;
   overflow: hidden;
   border: 0;
   font-size: 12px;
   padding-left: 8px;
}
.nav_body{
    position: fixed;
    height:50px;
    top:70px;
    left: 0;
    width: 100%;
    background-color: #001332;
    z-index: 999;
}
.nav_body .nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav_body .nav .navli{
    position: relative;
    padding: 0 0.15rem;
    margin: 0 0.2rem;
}
.nav_body .nav .navlia{
    font-size: 12px;
    color: #ffffff;
    line-height:50px;
}
.nav_body .nav .navli.on::after{
    position: absolute;
    content: '';
    bottom: 0.1rem;
    left: 0;
    background-color: #ffffff;
    width: 100%;
    height: 2px;
}

@media (max-width:991px) {
    .nav_body{
        display: none;
    }
    .header-box{
        height:60px;
    }
    .header-box .header {
        height:60px;
        background-color: #fff;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    }
    .header .content_box{
        height:60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header .content_box ._right{
        display: flex;
        align-items: center;
    }
    .header-logo, .header-logo img{
        width:120px;
    }
    .lang_ts{
        display: none;
    }
    .lang_box .lang_tc{
        top:35px;
        padding: 0 4%;
    }
    .m_search{
        width:100%;
        overflow: hidden;
        margin-top: 0.2rem;
        padding: 0 4%;
    }
    .m_search button {
        cursor: pointer;
        color: #1b1b1b;
        background:inherit;
        border: 0;
        font-size:20px;
    }
    .m_search form {
        display: flex;
        align-items: center;
        overflow: hidden;
        height:40px;
        border: 1px solid #1b1b1b;
    }
    .m_search input{
       flex: 1;
       overflow: hidden;
       border: 0;
       font-size:14px;
       padding-left:8px;
    }

    .mnav-btn {
        color: white;
        cursor: pointer;
        width: 40px;
        margin-left: 5px;
    }

    .mnav-btn a {
        display: block;
        overflow: hidden;
    }

    .mnav-btn span {
        float: left;
        width: 25px;
        height: 2px;
        background-color: #111111;
        margin-top: 6px;
        -ms-transform-origin: 7% 50%;
        -moz-transform-origin: 7% 50%;
        -webkit-transform-origin: 7% 50%;
        -o-transform-origin: 7% 50%;
        transition: all 0.3s;
        margin-left: 15px;
    }

    .header .mnav-btn .line1 {
        margin-top: 0;
    }

    .header .mnav-btn .on .line1 {
        transform: rotate(45deg);
    }

    .header .mnav-btn .on .line2 {
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
        transform: rotate(0);
    }

    .header .mnav-btn .on .line3 {
        transform: rotate(-45deg);
    }
     /* -- mnav ul--*/ 
     .mnav{
        border-top: 1px solid #eeeeee;
        display: none;
        position:fixed;
        width: 100%;
        margin-right: 0;
        height: calc(100vh - 60px);
        top:60px;
        left: 0;
        padding:10px 0;
        background: #fff;
        transition: none;
    }
    .mnav ul{
        display: block;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .mnav .mnavli{
        display: block;
        width: 100%;
        opacity: 0;
        transform: translateY(32px);
        transition: transform .4s ease, opacity .4s ease;
        padding: 0;
        position: relative;
        border-bottom: 1px solid #eaeaea;
    }
    .mnav.navon .mnavli{
        opacity: 1;
        transform: translateY(0);
    }
    .mnav .mnavlia{
        height: 50px;
        padding: 0 4%;
        position: relative;
        display: flex;
        align-items: center;
        font-size: 16px;
        color: #333333;
        transition: color .4s ease;
    }
    .mnav .on .mnavlia{
        color: #001332;
    }
    .mnav .mnavli i{
        display: block;
        width: 50px;
        height: 50px;
        position: absolute;
        z-index: 9;
        right: 0;
        top: 0;
        background: url(../images/nav.svg) no-repeat center /18px auto;
    }
    .mnav .mnavli .son{
        transform: rotate(180deg);
    }
    .mnav .m_navsub{
        display: none;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
        overflow: hidden;
        padding: 16px 0;
        text-align:left!important;
        background: #313131;
        font-size: 0;
    }
    .mnav .m_navsub a{
        display: inline-block;
        height: 34px;
        line-height: 34px;
        text-align: left;
        padding: 0 4%;
        width: 50%;
        margin: 0;
        vertical-align: middle;
        font-size: 14px;
        color: #fff;
        transition: color .4s ease;
        position: relative;
        z-index: 2;
    }
}
/* ============================================================================================================================
						guide_footer
===============================================================================================================================*/
.guide_footer{
    padding: 0.8rem 0;
    background-color: #000b1d;
}
.guide_footer a ,.guide_footer{
    color: #ffffff;
}
.footer_nav , .footer_info{
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer_nav .item{
    margin: 0;
}
.footer_nav ._title{
    min-width: 64px;
    font-size: 16px;
    display: inline-block;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 0.12rem;
    margin-bottom: 0.12rem;
}
.footer_nav .navsub li{
    line-height: 36px;
}
.footer_info{
    padding:0.8rem 0;
    margin:0.3rem 0;
    border-bottom: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
}
.footer_info ._left{
    margin-right:1rem;
    font-size: 16px;
    max-width:347px;
    letter-spacing:1.2px
}
.footer_info ._left .logo{
    display:inline-block;
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid #ffffff;
}
.footer_info ._left ._txt{
    width: 100%;
    margin-bottom: 0.32rem;
}
.footer_info ._left ._way{
    flex: 1;
    overflow: hidden;
}
.footer_info ._contact{
    display: flex;
}
.footer_info ._ewm , .footer_info ._ewm img{
    width: 90px;
    height: 90px;
}
.footer_info ._more{
    display: flex;
    align-items: flex-end;
    line-height: 1;
}
.footer_info ._more img{
    margin-right: 0.26rem;
}

.footer_info ._right{
    flex: 1;
    overflow: hidden;
    height: 255px;
}
.footer_bottom{
    margin: 0.1rem 0;
}
.footer_bottom ._top{
    font-size: 16px;
    margin-bottom: 0.1rem;
}
.footer_bottom ._top em{
    display: inline-block;
    margin: 0 0.05rem;
}
.footer_bottom ._bottom{
    font-size: 12px;
}
.footer_bottom ._bottom a{
    display: inline-block;
    margin-right: 0.4rem;
}


@media (max-width:991px) {
    .footer_nav .item{
        min-width:30%;
        margin-bottom: 0.3rem;
    }
    .footer_nav .navsub li{
        line-height:30px;
    }
    .footer_nav .item.on .navsub {
        max-width: 220px;
    }
    .footer_nav .item.on .navsub li{
        width: 50%;
        float: left;
    }
    .footer_info{
        padding:0.7rem 0;
        flex-direction: column-reverse;
    }
    .footer_info ._left ,.footer_info ._right{
        width: 100%;
        max-width:100%;
        margin: 0;
        flex: auto;
    }
    .footer_info ._left {
        margin:0.4rem 0 0;
        font-size: 14px;
    }
    .footer_info ._left ._contact{
        width: 100%;
        justify-content: space-between;
    }
    .footer_info ._more img{
        width: 20px;
    }
    .footer_info ._left ._txt{
        margin-bottom: 0.2rem;
        padding-right:120px;
    }
    .footer_info ._left ._way ._txt{
        padding-right:10px;
    }
    .footer_info ._ewm {
        margin-top: -50px;
    }
    .footer_info ._ewm , .footer_info ._ewm img{
        width:110px;
        height:110px;
    }
    .footer_info ._right{
        height: 180px;
    }
}


/* ============================================================================================================================
												page-banner
===============================================================================================================================*/
.banner-container{
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 100;
}
.page-banner {
    overflow: hidden;
    position: relative;
    
}
.page-banner ._main {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    padding: 0 15px;
}

.page-banner ._main h2 {
    font-size: 32px;
    text-transform: capitalize;
    font-weight: 700;
}

@media (max-width:767px) {
    .page-banner ._main h2 {
        font-size: 24px;
    }
}

/* ============================================================================================================================
													crumb-box
===============================================================================================================================*/
.crumb-box {
    overflow: hidden;
    background-color: #f5f5f5;
}

.crumb {
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    color: #333;
    font-size: 16px;
}

.crumb i {
    margin-right: 4px;
}

.crumb a {
    color: #333;
}

.crumb a:last-child {
    color: #bd8843;
}

@media (max-width:991px) {
    .crumb {
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
    }

    .crumb-box .container {
        width: 100%;
        flex-wrap: wrap;
    }

    .crumb-box .container ul,
    .crumb {
        flex: auto;
        width: 100%;
    }

    .crumb_btn {
        display: none;
        width: 100%;
        background-color: #bd8843;
        padding: 0 10px;
        color: #ffffff;
    }

    .crumb_btn li {
        position: relative;
        padding: 10px 0;
        text-transform: capitalize;
        font-weight: bold;
    }

    .crumb_btn li::after {
        content: "";
        position: absolute;
        right: 5px;
        top: 11px;
        width: 18px;
        height: 18px;
        background-image: url(../images/cate.png);
        background-size: 100% 100%;

    }
}

@media (min-width:991px) {
    .crumb-box .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .crumb-box .m_crumbnav {
        flex: 1;
    }

    .crumb-box .m_crumbnav ul {
        position: relative;
        margin: 22px auto;
        justify-content: space-between;
        text-align: right;
    }

    .crumb-box .m_crumbnav ul li {
        display: inline-block;
        transition: all 0.5s;
        position: relative;
        font-size: 16px;
        color: #333;
        text-align: center;
        margin: 0 0 0 15px;
        text-transform: capitalize;
        border-radius: 20px;
        line-height: 1.4;
    }

    .crumb-box .m_crumbnav ul li:hover a,
    .crumb-box .m_crumbnav ul li.active a {
        color: #bd8843;
    }
}

@media (max-width:991px) {
    .m_crumbnav,
    .m_crumbnav {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;
        transition: left .3s;
        z-index: 9999;
        background-color: #ffffff;
        padding-left: 10%;
        overflow-y: auto;
    }

    .m_crumbnav li,
    .m_crumbnav li {
        padding: 5px 10px;
        display: flex;
    }

    .m_crumbnav li a,
    .m_crumbnav li a {
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 10px 0;
        color: #707070;
    }

    .m_crumbnav li.active,
    .m_crumbnav li.active {
        background: #eee;
    }

    .m_crumbnav li.active a,
    .m_crumbnav li.active a {
        color: #bd8843;
    }

    .m_crumbnav.on,
    .m_crumbnav.on {
        left: 0;
    }

    .m_crumbnav em,
    .m_crumbnav em {
        position: relative;
        left: 100%;
        top: 0;
        color: #ffffff;
        background: #333;
        width: 10%;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left .3s;
    }

    .m_crumbnav em.on,
    .m_crumbnav em.on {
        left: 0;
        position: fixed;
    }
}
/* ============================================================================================================================
						box_right
===============================================================================================================================*/
.propage_body , .box_right{
    padding:0.4rem 0;
}
.propage_body{
    padding-top:0;
}


/* ============================================================================================================================
						pc产品栏目样式
===============================================================================================================================*/
.pcpro_main{
    margin: 0.6rem 0 0.2rem;
}
.pcpro_main ._item{
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top:0.4rem;
}
.pcpro_main ._title{
    font-size: 0.3rem;
    line-height: 0.5rem;
    padding-bottom:0.2rem;
    font-weight:540;
    border-bottom: 1px solid #000000;
}

.pcpro_main ._right{
    position: absolute;
    top:0.2rem;
    right: 0;
    display: flex;
    justify-content: flex-end;
}
.pcpro_main ._right .p_btn{
    margin-left: 0.6rem;
}
.pcpro_main ._right .swiper-button-disabled{
    opacity: 0.2;
}
.pcpro_main .pro_list{
    margin-top:-0.7rem;
    padding-top:1.1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.pro_list .s_item a{
    display: block;
    overflow: hidden;
    width: 100%;
}
.pro_list .s_item ._pic{
    position: relative;
    border-radius:0.12rem;
    overflow: hidden;
    padding-top:125%;
}
.pro_list .s_item img{
    display: block;
    object-fit: cover;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin:0;
}
.pro_list .s_item ._txt{
    margin-top: 0.3rem;
    text-align: center;
}
.pro_list .s_item h3{
    font-size: 18px;
    color: #000;
    margin: 0.1rem 0;
}
.pro_list .s_item ._more{
    margin:0.2rem 0 0.3rem;
    padding-bottom: 0.1rem;
    display: inline-block;
    border-bottom: 1px solid #000000;
}

/* ============================================================================================================================
						产品栏目样式
===============================================================================================================================*/
.propage_main{
    width:100%;
    position:absolute;
    top: 0;
    padding:20px 30px 0;
    margin:0 0 20px;
    z-index:99;
    background-color: #ffffff;
}
.propage_top{
    position: fixed;
    z-index:100;
    top:50px;
    left: 0;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
}
.propage_cate{
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}
.propage_main .p_btn{
    position: absolute;
    top:20px;
    margin-top: 4px;
    height:18px;
}
.propage_main .p_btn img{
    height:18px;
}
.propage_main .p_btn img ,.propage_main .p_btn:focus{
    border: 0;
    outline:0;
    box-shadow: none;
}
.propage_main .pro_cate-next{
    right:3%;
}
.propage_main .pro_cate-prev{
    left:3%;
}
.propage_cate .swiper-slide{
    position: relative;
    text-align: center;
    cursor: pointer;
    font-size:16px;
    line-height:30px;
}
.propage_cate .swiper-slide.active::after{
    position: absolute;
    bottom: -0.1rem;
    left:50%;
    transform: translateX(-50%);
    width:100px;
    height:2px;
    content: '';
    background-color: #001332;
}
/* ============================================================================================================================
						prolist
===============================================================================================================================*/
.prolist{
    overflow: hidden;
}
.prolist ul{
    position: relative;
    width:101%;
    margin-left: -1%;
    overflow: hidden;
}
.prolist li{
    float: left;
    margin-left:1%;
    width:24%;
    overflow: hidden;
}
.prolist li a{
    display: block;
    overflow: hidden;
}
.prolist ._pic{
    position: relative;
    border-radius:0.12rem;
    overflow: hidden;
    padding-top:125%;
}
.prolist img{
    display: block;
    object-fit: cover;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin:0;
}
.prolist ._txt{
    margin-top: 0.3rem;
    text-align: center;
}
.prolist h3{
    color: #000;
    font-size: 18px;
    margin: 0.1rem 0;
}
.prolist ._more{
    margin:0.4rem 0 0.5rem;
    padding-bottom: 0.1rem;
    display: inline-block;
    border-bottom: 1px solid #000000;
}
@media (max-width:991px) {
    .propage_body{
        position: relative;
        padding-top: 80px;
    }
    .prolist ul{
        width:102%;
        margin-left:-2%;
    }
    .prolist li{
        margin-left:2%;
        width:48%;
    }
    .prolist ._more{
        margin:0.1rem 0 0.5rem;
    }
}
@media (max-width:768px) {
    .prolist ul{
        width:100%;
        margin:0;
    }
    .prolist li{
        width:100%;
        margin: 0;
    }
    .prolist ._more{
        margin:0.1rem 0 0.5rem;
    }
}


/* ============================================================================================================================
	.product_detail
===============================================================================================================================*/
.product_detail {
    overflow: hidden;
    padding:0.8rem 0 0.5rem;
}
.product_detail ._info{
    display: block;
    overflow: hidden;
    font-size: 18px;
    line-height:32px;
    color: #000000;
}
.product_detail ._info ._description{
    flex: 1;
    overflow: hidden;
    padding-left:5%;
}
/*--返回与翻页--*/
.product_detail .return-box{
    padding:0.1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.product_detail .return-box ._return{
    display: flex;
    align-items: center;
}
.product_detail .return-box ._return span{
    margin-left:5px;
}
.product_detail .return-box ._right{
    display:flex;
    align-items: center;
}
.product_detail .return-box .Jump{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border: 1px solid #000000;
    margin-left:10px;
}
.product_detail ._text{
    overflow: hidden;
    padding: 0.3rem 0;
    border-top: 1px solid #666666;
    white-space: normal;
}
.product_detail ._text span ,.product_detail ._text p{
    font-size: 18px;
}
.product_detail ._text h2{
    font-weight: bold;
    font-size:32px;
    padding: 0.1rem 0  0.3rem;
    border-bottom: 1px solid #000000;
}
.product_detail ._text h3{
    font-weight: bold;
    font-size:22px;
    margin: 0.5rem 0 0.2rem;
}
/* ==mproduct==*/
.mproduct {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.mproduct li{
    overflow: hidden;
    border-radius: 0.15rem;
}

.mproduct li , .mproduct img {
    width: 100%;
    height: 100%;
}
.mproduct .product_btn {
    position: relative;
    overflow: hidden;
    margin: 12px 0;
    padding: 0 40px;
}
.mproduct .product_btn li {
    border: 2px solid #F5F5F5;
    border-radius: 0.05rem;
    height:100%;
}
.mproduct .product_btn li.swiper-slide-thumb-active {
    border-color: #bd8843;
}
.mproduct .product_btn::before,
.mproduct .product_btn::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width:40px;
    background-color: #ffffff;
    z-index: 2;
}
.mproduct .product_btn::before ,.mproduct .product_btn .product_prev{
    left: 0;
}
.mproduct .product_btn::after ,.mproduct .product_btn .product_next{
    right: 0;
}
.mproduct .product_btn .pr_btn{
    margin: 0;
    top: 0;
    width:30px;
    height:100%;
    background-color: #eaeaea;
    color: #000000;
}
.mproduct ._return{
    position: absolute;
    left: 0.3rem;
    top:0.3rem;
    z-index: 10;
    width:0.5rem;
    height:0.5rem;
    border-radius:0.15rem;
    background-color: #d6d6d6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mproduct ._return img{
    width:0.1rem;
    height: auto;
}

/* ==pro_description==*/
.pro_description{
    overflow: hidden;
    margin-top: 0.6rem;
    border-bottom: 1px solid #000000;
}
.pro_description .hd{
    background-color: #f2f2f2;
    line-height: 40px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #000000;
}
.pro_description .hd li{
    margin: 0 3%;
    padding: 0 20px;
    cursor: pointer;
}
.pro_description .hd .on{
    background-color: #001332;
    color: #ffffff;
}
.pro_description .item{
    display: none;
    overflow: hidden;
}
.pro_description .item img{
    vertical-align: top;
    max-width: 100%;
}
@media (max-width:991px) {
    .pro_description .item img{
        width: 100%;
    }
    .pro_description .item img{
        width: 100%;
    }
}

.pro_description .center{
    padding: 0.2rem 0;
}
.pro_description .center p{
    padding:0.05rem 0;
}
  
/* ==recommend-box==*/
.recommend-box {
    width: 100%;
    overflow: hidden;
    padding-bottom: 0.1rem;
    border-bottom: 1px solid #000000;
    margin-bottom:0.8rem;
}

.recommend-box ._title{
    display: flex;
    justify-content: space-between;
    color: #000;
    margin-bottom: 0.3rem;
}
.recommend-box ._title span{
    font-size: 32px;
    font-weight: bold;
}
.recommend-box ._title .right{
    position: relative;
    width:60px;
}

.recommend-box>div {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.recommend-box .pro_listprev {
    left: 0px;
}
.recommend-box .pro_listnext {
    right: 0px;
}
.recommend-box .prolist li{
    margin: 0;
}

@media (max-width:991px) {
    .product_detail{
        padding: 0.4rem 0;
    }
    .product_detail ._info ._description{
        width: 100%;
        padding: 0;
    }
    .product_detail ._text{
        border: none;
        font-size: 0.24rem;
        line-height:1.6;
    }
    .product_detail ._text h2{
        font-size:0.36rem;
        display: inline-block;
        padding: 0 0 0.2rem 0;
        margin-bottom: 0.1rem;
    }
    .product_detail ._text h3{
        font-size:0.26rem; 
        margin: 0.35rem 0 0.15rem;
    }
    .product_detail ._text span, .product_detail ._text p{
        font-size: 0.24rem;
    }
    .pro_description , .pro_description .hd{
        border-bottom: 0;
    }
    .recommend-box{
        display: none;
    }
}

/* ============================================================================================================================
	.about_detail
===============================================================================================================================*/

.detail_title{
	overflow: hidden;
	text-align: left;
}
.detail_title h3{
    font-size: 24px;
    font-weight: bold;
    color: rgba(189,136,67,0.3);
    text-transform: uppercase;
    line-height: initial;
}
.detail_title h2{
    font-size: 28px;
    font-weight: bold;
    color: #363636;
    line-height: initial;	
}
.detail_title h2 em{
    width: 60px;
    height: 4px;
    background: #bd8843;
    display: inline-block;
    vertical-align: middle;
}
@media (max-width:991px) {
    .detail_title h3{
        font-size: 18px;
    }
    .detail_title h2{
        font-size:24px;
    }
}
/*--发展历程--*/
.about_box2 {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: url(/uploads/image/com/lc_bg.png) center no-repeat;
}

.swiper_course {
    position: relative;
    overflow: hidden;
    padding:0.5rem 0 0;
}
.about_box2 ._main {
    padding: 0 0 46px;
}

.about_box2 ._main::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 224px;
    left: 0;
    bottom: 60px;
    background: url(/uploads/image/com/lc.png) center no-repeat;
    background-size: inherit;
}

.about_box2 ._main .swiper_course li {
    position: relative;
    text-align: center;
    line-height: 1;
    padding-bottom: 60px;
    transition: 0.45s;
}

.about_box2 ._main .swiper_course li h4 {
    font-size:24px;
    font-weight: bold;
    color: #202020;
    margin-bottom:10px;
}
.about_box2 ._main .swiper_course li p {
    font-size:14px;
    color: #888888;
    line-height:24px;
    height:72px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 194px;
}

.about_box2 ._main .swiper_course li:hover h4,
.about_box2 ._main .swiper_course li.swiper-slide-active h4 {
    color: #bd8843;
}

.about_box2 ._main .swiper_course li.swiper-slide-active {
    margin-top: -10px !important;
}

.about_box2 ._main .swiper_course li.swiper-slide-active::before,
.about_box2 ._main .swiper_course li.on::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #bd8843;
}

.about_box2 .swiper_course_box {
    position: absolute;
    bottom: 20px;
}

.about_box2 .swiper_course_box ._box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-bottom: 66px;
    background: url(/uploads/image/com/lc2.png) center no-repeat;
    background-size: 100%;
}

.about_box2 .swiper_course_box ._box ._btn {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    transform: translate(0);
    cursor: pointer;
    z-index: 9;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
    border: 1px solid #a0a0a0;
}

.about_box2 .swiper_course_box ._box ._btn::after {
    font-weight: bold;
    font-size: 14px;
    color: #202020;
    content: 'next';
}
.about_box2 .swiper_course_box ._box .par-prev::after {
    content: 'prev';
}
.about_box2 .swiper_course_box ._box ._btn:hover:after {
    color: #bd8843;
}

.about_box2 .swiper_course1 {
    position: relative;
    overflow: hidden;
    width: 100px;
    color: #202020;
    font-size:14px;
}

.about_box2 .swiper_course1 .swiper-slide {
    text-align: center;
    opacity: 0 !important;
}

.about_box2 .swiper_course1 li.swiper-slide-active {
    opacity: 1 !important;
}
@media (min-width:992px) {
    .swiper_course .swiper-wrapper{
        min-height: 263px;
    }
}

@media (max-width:991px) {
    .about_box2 {
        padding: 0.8rem 0;
    }

    .about_box2 ._main::before {
        background: inherit;
        background-color: #d9d9d9;
        height: 1px;
        bottom: 5px;
    }

    .about_box2 ._main {
        position: relative;
        margin: 0.8rem 0 2.2rem;
        padding: 0;
    }

    .about_box2 .swiper_course {
        padding: 0;
    }

    .about_box2 .swiper_course_box {
        bottom: -2.8rem;
        margin: auto;
        left: 50%;
        transform: translate(-50%);
    }

    .about_box2 ._main .swiper_course li.swiper-slide-active,
    .about_box2 ._main .swiper_course li {
        margin-top: 0 !important;
        padding-bottom: 0.3rem;
    }

    .about_box2 ._main .swiper_course li h4 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .about_box2 ._main .swiper_course li p {
        font-size: 14px;
        line-height: 20px;
        height: 40px;
    }

    .about_box2 ._main .swiper_course li.swiper-slide-active::before,
    .about_box2 ._main .swiper_course li.on::before,
    .about_box2 ._main .swiper_course li::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%);
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #bd8843;
    }
}

/* ============================================================================================================================
	.公司简介
===============================================================================================================================*/
.detail_about{
	overflow: hidden;
	padding:0.6rem 0;
}
.detail_about .detail_about_fl{
    overflow: hidden;
    width: 48%;
    float: left;
}
.detail_about .detail_about_fl ._content{
	overflow: hidden;
    margin-top: 20px;
}
.detail_about .detail_about_fl ._content p{
    font-size: 14px;
    line-height:24px;
	text-indent:2em;
}
.detail_about .detail_about_fl .number_box{
	overflow: hidden;
    display: flex;
    align-items:stretch;
    justify-content: space-between;
    margin-top: 20px;
    width: 100%;
}
.detail_about .detail_about_fl .number_box li{
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 24%;
    padding: 12px 15px;
	border: 1px solid #ddd;
}
.detail_about .detail_about_fl .number_box li dt {
    font-size:14px;
    color: #363636;
    width: 100%;
    text-align: center;
    font-weight: 500;
}
.detail_about .detail_about_fl .number_box li dd {
    overflow: hidden;
    width: 100%;
    font-size:0.28rem;
    color: #bd8843;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: initial;
    margin-top: 5px;
}
.detail_about .detail_about_fr{
	overflow: hidden;
	width: 48%;
	float: right;
}
.detail_about .detail_about_fr img{
	width: 100%;
	display: block;
	float: right;
}
@media (max-width:991px) {
    .detail_about{
        padding:0.5rem 0;
    }
    .detail_about .container>div{
        width:100%;
    }
    .detail_about .detail_about_fl ._content{
        margin-top: 10px;
    }
    .detail_about .detail_about_fl ._content p{
        line-height:26px;
    }
    .detail_about .detail_about_fl .number_box{
        flex-wrap: wrap;
        margin:0.1rem 0;
    }
    .detail_about .detail_about_fl .number_box li{
        width:49%;
        margin: 0.1rem 0;
    }
    .detail_about .detail_about_fl .number_box li dd{
        font-size: 0.36rem;
    }
}
/* 厂房环境 */
.detail_equipment{
	overflow: hidden;
	padding:0.6rem 0;
	background: #f5f5f5;
}
.detail_equipment ul{
    overflow: hidden;
    margin-top:0.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.detail_equipment ul li{
	width: 23.5%;
	float: left;
	overflow: hidden;
	margin:0;
}	
.detail_equipment ul li dt{
    padding-top: 75%;
    position: relative;
	width: 100%;
	overflow: hidden;
}
.detail_equipment ul li dt img{
	display: block;
    object-fit: cover;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
}
.detail_equipment ul li dd{
    overflow: hidden;
    background: #fff;
    font-size: 16px;
    text-align: center;
    padding: 12px;
}
@media (max-width:991px) {
    .detail_equipment{
        padding:0.5rem 0;
    }
    .detail_equipment ul li{
        width:48.5%;
        margin: 0 0 0.2rem;
    }	
}
/*--about_box3--*/
.about_box3{
	overflow: hidden;
	padding:0.6rem 0;
}
.certificate {
    margin-top: 0.2rem;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.certificate ul li {
    position: relative;
    width: 25%;
    padding: 1.5625vw;
}

.certificate ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(/./themes/skin/static/images/cer-border.png);
    background-size: 100% 100%;
}

.about_box3 ._bottom {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin-top: 10px;
}

.about_box3 ._btn {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    width: 58px;
    height: 30px;
    background: center no-repeat;
    background-size: 100%;
    cursor: pointer;
    margin: 0 10px;
    outline: none;
}

.about_box3 ._btn:focus {
    outline: none;
}

.about_box3 .news_prev {
    background-image: url("/./themes/skin/static/images/prev1.png");
}

.about_box3 .news_next {
    background-image: url("/./themes/skin/static/images/next1.png");
}
@media (max-width:991px) {
    .about_box3{
        padding:0.5rem 0;
    }
}
/* 文章列表 */
.artlist {
    overflow: hidden;
    padding: 0.1rem 0;
}

.artlist .artlist-ul {
    overflow: hidden;
}

.artlist .artlist-ul li {
    padding: 0.3rem 0;
    border-bottom: 1px dashed #999999;
}
.artlist .artlist-ul li a {
    display: flex;
    align-items: center;
    color: #2E2E2E;
}

.artlist .artlist-ul li dt {
    flex: 0 0 35%;
    margin: 0 40px 0 0;
    overflow: hidden;
}

.artlist .artlist-ul li dt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    max-height: 300px;
}

.artlist .artlist-ul li dd {
    flex: 1;
    overflow: hidden;
    padding: 15px 40px 15px 0;
}

.artlist .artlist-ul li dd h2 {
    font-size: 28px;
    color: #202020;
    line-height: 36px;
    max-height: 72px;
}
.artlist .artlist-ul li dd em{
    display: block;
    font-size:14px;
    color:#487177;
    margin:10px 0;
}
.artlist .artlist-ul li dd p {
    font-size:16px;
    color: #487177;
    line-height:24px;
    max-height:48px;
}
.artlist .artlist-ul li:hover h2 {
    color: #bd8843;
}
.artlist .artlist-ul li .more{
    margin-top: 12px;
}
.artlist .artlist-ul li:hover .more{
    color: #fff;
}
.artlist .artlist-ul li:hover .more::before{
    opacity: 1;
    width: 100%;
    height: 100%;
    transform: scale(10);
}

@media (max-width:992px) {

    .artlist .artlist-ul li dt {
        flex: 0 0 35%;
        margin: 0 0.2rem 0 0;
    }
    .artlist .artlist-ul li dd h2 {
        font-size: 18px;
        line-height: 26px;
        max-height: 52px;
        font-weight: bold;
    }
    .artlist .artlist-ul li dd em{
        font-size: 12px;
    }
    .artlist .artlist-ul li dd p {
        font-size: 14px;
        line-height: 22px;
        max-height: 44px;
    }
}

@media (max-width:640px) {
    .artlist .artlist-ul li a {
        flex-wrap: wrap;
    }

    .artlist .artlist-ul li dt,
    .artlist .artlist-ul li dd {
        width: 100%;
        padding: 0;
        margin: 0;
        flex: auto;
    }
    .artlist .artlist-ul li dd h2 {
        margin-top: 0.2rem;
        font-size:0.3rem;
        line-height:0.44rem;
        max-height:0.88rem;
        font-weight: bold;
    }
    .artlist .artlist-ul li dd em{
        font-size:0.2rem;
        margin: 0.1rem 0;
    }
    .artlist .artlist-ul li dd p {
        font-size:0.26rem;
        line-height:0.4rem;
        max-height:0.8rem;
    }
    .artlist .artlist-ul li .more{
        margin-top: 0.12rem;
    }
}
.article_detail{
    margin:0.4rem 0;
    padding:0.5rem;
    background-color: #ffffff;
}
.article_detail h2 {
    width: 100%;
    color: #bd8843;
    font-size: 28px;
}

.article_detail ._desc {
    margin: 0 0 0.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d2d2d2;
    padding: 0.14rem 0;
}
.article_detail ._desc ._left {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #999999;
}

.article_detail ._desc ._left li {
    margin-right: 0.4rem;
    font-weight: 300;
    display: flex;
    align-items: center;
}

.article_detail ._desc ._left li._time i {
    display: block;
    margin-right: 3px;
    width: 20px;
    height: 20px;
    background: url(../images/_time.png) no-repeat center center;
    background-size: contain;
}

.article_detail ._desc ._left li._view i {
    display: block;
    margin-right: 3px;
    width: 20px;
    height: 20px;
    background: url(../images/_view.png) no-repeat center center;
    background-size: contain;
}
.article_detail ._content{
    overflow: hidden;
}
.article_detail video{
    max-width: 100%;
}
/*--翻页切换样式--*/
.article_detail ._pagenation {
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article_detail ._pagenation a{
    flex: 0.48;
    overflow: hidden;
}
@media (max-width:992px) {
    .article_detail{
        margin:0.3rem 0;
        padding:0.4rem 0.2rem;
    }
    .article_detail h2 {
        font-size:0.34rem;
        line-height:1.5;
    }
    .article_detail ._desc ._left {
        font-size:0.24rem;
    }
    .article_detail ._desc ._left li:first-child{
        display: none;
    }
    .article_detail ._desc ._left li{
        margin-right: 0.2rem;
    }
    .article_detail ._desc ._left li i{
        width: 0.28rem!important;
        height: 0.28rem!important;
    }
    .article_detail ._desc{
        margin:0 0 0.1rem 0;
        padding: 0.1rem;
    }
}