@charset "utf-8";
/* ============================================================================================================================
													全局默认样式
===============================================================================================================================*/
body {
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size:14px;
    line-height:1.7;
    margin: 0px;
    padding: 0px;
    color: #595959;
    background-color: #fff;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0px;
}
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: #2bc48a;
    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;
}

/*============================================================================================================================
													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;
    color: #666;
}

.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:1600px;
    margin:0 auto;
}
/* ============================================================================================================================
													page-翻页
===============================================================================================================================*/
.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 {
    background-color: #2bc48a;
    border-color: #2bc48a;
}

.pagination>li>a,
.pagination>li>span {
    color: #333;
}

@media (max-width:992px) {
    .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, .h2, .h3, .h4, .h5, .h6 {
    margin: 0;
    padding: 0;
    color: #262626;
}
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{
    display: inline-block;
    width: 130px;
    height: 42px;
    border: 1px solid #2bc48a;
    color: #2bc48a;
    line-height: 40px;
    border-radius: 40px;
    text-align: center;
}
.more i{
    color:#2bc48a;
    font-size: 12px;
    margin-left: 5px;
    padding: 4px;
    transition: all 0.5s;
    border-radius: 50%;
}

.more:hover i{
    color:#2bc48a!important;
    background-color: #ffffff;
}

/* ============================================================================================================================
													浮动
===============================================================================================================================*/
.fr {
    float: right;
}

.fl {
    float: left;
}

/* ============================================================================================================================
												弹出效果
===============================================================================================================================*/


/* ============================================================================================================================
													去掉swiper左右伪类内容
===============================================================================================================================*/
.swiper-button-prev::after, .swiper-container-rtl .swiper-button-next::after{
    content:""
}
.swiper-button-next::after, .swiper-container-rtl .swiper-button-prev::after{
    content:""
}

/* ============================================================================================================================
													header
===============================================================================================================================*/
.header-box,.header{
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height:130px;
    background-color: #fff;
    z-index: 9999;
    transition: all 0.3s;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.header_fixed {
    position: fixed!important;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.header{
    position: fixed;
}
.header .content_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top{
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    background-color: #2bc48a;
}
.header-top-content{
    display: flex;
    width: 94%;
    max-width: 1600px;
    margin: 0 auto;
    height: 30px;
    justify-content: flex-end;
    align-items: center;
}
.header-top p{
    font-size: 14px;
    line-height: 16px;
    padding: 0 10px;
    border-right: 1px solid #ccc;
    color: white;
}
.header-top p:last-child{
    padding: 0 0 0 10px;
    border-right:none;
}
.header-right{
    line-height: 100px;
    width: 50%;
    margin-left: auto;
    margin-right: 24px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header-logo{
    width: 308px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    height: 100px;
}
@media (max-width: 1450px) {
    .header-right{
        width: 60%;
    }
}
@media (max-width:1200px) {
    .header-top{
        display: none;
    }
    .header-logo{
        width:120px;
        height:60px;
    }
    .header-box,.header{
        height:60px;
    }
    .header-right{
        width: auto;
        line-height:60px;
        margin: 0;
    }
    .mnav-btn {
        color: white;
        cursor: pointer;
        width: 50px;
    }

    .mnav-btn a {
        display: block;
        overflow: hidden;
    }

    .mnav-btn span {
        float: left;
        width: 25px;
        height: 2px;
        background-color: #2bc48a;
        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: 25px;
    }
    .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{
    width: 100%;
    padding: 0 3%;
    display: none;
    position: absolute;
    left: 0px;
    top:60px;
    z-index: 2;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid #dadada;
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
}
.mnav>ul{
    width: 100%;
    overflow-y: auto;
    height:100vh;
    padding-bottom:100px;
}
.mnav .mnavli{
    line-height: normal;
    border-bottom: 1px solid #cecece;
    font-size: 15px;
    padding: 0 15px 0 20px;
    min-width: 100%;
    display: block;
    border-radius: 0;
    text-align: left;
    margin: 0;
    box-shadow: none;
    opacity: 0;
    -webkit-transform: translate(30px, 0);
    -ms-transform: translate(30px, 0);
    transform: translate(30px, 0);
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
}
.mnav .mnavli.animate{
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}
.mnav .mnavlia{
    vertical-align: middle;
    display: inline-block;
    text-decoration: none;
    width:80%;
    line-height: 48px;
    color: #383838;
    position: relative;
    box-sizing: border-box;
    text-transform: uppercase;
}
.mnav ._icon{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    background: none;
    margin-left: 8%;
}
.mnav ._icon::after{
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    background: url(../images/show.png) no-repeat center;
    background-size: 17px auto;
}
.mnav ._icon.son::after{
    background: url(../images/hide.png) no-repeat center;
    background-size:17px auto;
}

.mnav .m_navsub{
    display: none;
    margin:0 0 20px;
}
.mnav .m_navsub li {
    background: url(../images/dian.png) no-repeat left center;
    background-size: 3px auto;
    font-size: 14px;
}
.mnav .m_navsub li a{
    line-height: 40px;
    padding-left:14px ;
}

/* --导航样式--*/
.nav>ul{   
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.nav ul .navli{
    position: relative;
    text-align: center;
    font-size: 15px;
    font-weight: normal;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    flex: 1;
    -webkit-flex: 1;
}
.nav ul .navlia{
    position: relative;
    color: #333;
    text-transform: uppercase;
    display: block;
    position: relative;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    font-size: 16px;
    font-weight: 700;
}
.nav ul .navli:hover .navlia{
    color: #2bc48a;
}
.nav ul .navlia::after{
    transition: all 0.5s ease;
    content: "";
    position: absolute;
    background: #2bc48a;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    height: 2px;
    opacity: 0;
}
.nav ul .navli:hover ::after{
    opacity: 1;
    width: 100%;
}

/* --导航子栏目样式--*/
.navsub{
    display: none;
    min-width:100%;
    max-width: 300px;
    background: #fff;
    position: absolute;
    top: auto;
    left: 0px;
    height: auto;
    box-shadow: 0px 1px 30px 0px rgb(77 77 77 / 30%);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: -webkit-transform;
    transition:transform;
    border-radius: 0;
    overflow: hidden;
}
.nav ul .navli:hover .navsub{
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    transition:transform .3s;
}
.nav ul .navsub ol{
    opacity: 0;
    -webkit-transform: translate(0, -20px);
    -ms-transform: translate(0, -20px);
    transform: translate(0, -20px);
    -webkit-transition: all .2s;
    transition: all .2s;
    padding:10px 0;
}
.nav .navsub.active ol{
    opacity:1;
    -webkit-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    transform: translate(0, 0px);
    -webkit-transition: all .2s .3s ease-in;
    transition: all .2s .3s ease-in;
}

.navsub a{
    height: 42px;
    line-height: 42px;
    display: block;
    padding: 0 20px;
    text-align: left;
    color: #333;
    font-size: 14px;
    position: relative;
    -webkit-transition: all 0.3s cubic-bezier(0.86, 0.5, 1, 1);
    transition: all 0.3s cubic-bezier(0.86, 0.5, 1, 1);
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.navsub a:hover {
    background-color:#2bc48a;
    color: #fff;
}

/* --网站语言样式--*/
.lang_box{
    padding-top: 2px;
}
.lang_box i{
    font-size:22px;
}
/* 搜索 */
.header_search,
.header_search span {
    line-height:100px;
    display: block;
    color: #333;
    cursor: pointer;
    font-size:22px;
}
.header_search{
    margin-left:30px;
}
.header_search .search {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    display: none;
    height:130px;
    width: 100%;
    background-color: #ffffff;
}

.header_search i {
    position: relative;
    width: 0.3rem;
    height: 0.3rem;
    line-height:130px;
    cursor: pointer;
    font-size: 28px;
    color: #1e1e1e;
    z-index: 5;
    margin-right: 10%;
    margin-top: 0;
}

.header_search .search ul {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0;
    height: 70px;
    width: 90%;
    max-width:7rem;
    z-index: 2;
}

.header_search .search ul form {
    position: relative;
    height: 50px;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid #1e1e1e;
}

.header_search .search ul input[type="text"] {
    border: none;
    width: 100%;
    display: block;
    border: none;
    height:50px;
    text-align: left;
    color: #666;
    font-size: 14px;
    background: none;
    line-height: 60px;
    padding: 0 85px 0 0.2rem;
    background: #fff;
}

.header_search .search_btn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    z-index: 2;
    width: 85px;
    height: 50px;
    line-height: 60px;
    cursor: pointer;
    border: none;
    outline: none;
    color: #1e1e1e;
    background: #ffffff;
    font-size: 24px;
}
/* @media (max-width:992px) {
    .header_search,
    .header_search span {
        line-height: 50px;
    }

    .header_search .search {
        height: 100%;
    }

    .header_search i {
        margin-right: 20px;
        width: 26px;
        height: 55px;
        font-size: 24px;
        line-height: 55px;
    }

    .header_search .search ul {
        margin: 0.5rem auto 0;
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: initial;
    }

    .header_search .search ul,
    .header_search .search ul form,
    .header_search .search ul input[type="text"],
    .header_search .search_btn {
        height: 48px;
        line-height: 48px;
    }

    .header_search .search ul form {
        margin: 0 auto;
        width: 90%;
    }

    .header_search .search ul input[type="text"] {
        padding-right: 55px;
    }

    .header_search .search_btn {
        width: 50px;
        font-size: 20px;
    }
} */


/* ============================================================================================================================
													内页banner
===============================================================================================================================*/
.adv_container{
    position: relative;
    width: 100%;
}
.adv_container ._main{
    position: absolute;
    width: 100%;
    height: auto;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #ffffff;
    text-align: center;
    padding: 0 15px;
}
.adv_container ._main h2{
    font-size:48px;
    text-transform: uppercase;
    font-weight: 700;
}
.adv_container ._main p{
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 10px;
}
.adv_container picture{
    display: block;
    height:500px;
    overflow: hidden;
    position: relative;
}
.adv_container picture img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    opacity: 0.9;
    transform: translateY(-50%);
}
@media (max-width:991px){
    .adv_container picture{
        height:350px;
    }
}
@media (max-width:767px){
    .adv_container picture{
        height: 220px;
    }
    .adv_container ._main h2{
        font-size:32px;
    }
    .adv_container ._main p{
        font-size: 18px;
        line-height: 26px;
        margin-top: 6px;
    }
}



/* ============================================================================================================================
													网站底部
===============================================================================================================================*/
.footer{
    overflow: hidden;
    background-color: #383838;
    color: #ffffff;
}

.footer-box{
    margin:0.5rem 0 0.2rem;
}

.footer a{
    color: #ffffff;
}
.footer a:hover{
    color: #2bc48a;
}
.footer-box{
    overflow: hidden;
}
.footer-info{
    position: static;
    width:75%;
    font-size: 0;
    padding:10px 0 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-info>div{
    display: inline-block;
    vertical-align: top;
    text-align: left;
    margin-bottom:0.15rem;
    margin-right: 5px;
}
/* --logo-- */
.footer-info ._item{
    /* max-width: 160px; */
    overflow: hidden;
    margin-top: -10px;
}
.footer-info ._logo{
    display: inline-block;
    font-size: 18px;
    color: #fff;
    vertical-align: top;
    text-transform: uppercase;
    margin-bottom: 28px;
    transition: all 0.5s ease;
}
.footer-info ._ewm{
    text-align:center;
    width: 120px;
    font-size: 14px;
    color: #cccccc;
}
.footer-info ._ewm img ,.footer-info ._ewm p{
    width: 100%;
}
.footer-info .footer-nav h2 a{
    display: inline-block;
    font-size: 18px;
    color: #fff;
    vertical-align: top;
    text-transform: uppercase;
    margin-bottom:18px;
    transition: all 0.5s ease;
}
.footer-info .footer-nav li a{
    display: block;
    font-size: 14px;
    color: #cccccc;
    line-height: 32px;
    transition: all 0.5s ease;
}
.footer a:hover{
    color: #fff;
    opacity: 0.6!important;
}
/* --联系-- */
.footer-contact{
    width:22.5%;
}
.footer-contact ._item{
    font-size: 14px;
    color: #b4b4b4;
    padding-top: 4px;
    display: block;
}

.footer-contact p a{
    display: block;
    font-size: 26px;
    color: #fff;
    font-weight: bold;
    background: url(../images/pho.png) no-repeat left center;
    padding-left:35px;
    line-height:1;
    margin:15px 0 0;
}
.footer-contact p ._tel{
    margin-bottom:20px;
    background: url(../images/tel.png) no-repeat left center;
}
.footer-contact li{
    margin-bottom:10px;
    display: flex;
    align-items: flex-start;
}
.footer-contact li  ,.footer-contact li a{
    line-height:1.8;
    color: #D3D3D3;
}
.footer-contact li span{
    flex: none;
}
@media (max-width:1200px){
    .footer-info{
        width:68%;
    }
    .footer-contact {
        width:30%;
    }
}
@media (max-width:991px){
    .footer-info{
        width:60%;
    }
    .footer-contact {
        width:38%;
    }
    .footer-info .footer-nav h2 a{
        margin:15px 0;
    }
}
@media (max-width:767px){
    .footer-contact {
        width: 100%;
    }
}

/* --友情链接-- */
.footer-link{
    margin:8px 0;
}
.footer-link ._item{
    width:130px;
}
.footer-link ._item ,.footer-link a{
    display: inline-block;
    font-size: 14px;
    color: #D3D3D3;
    margin-right: 16px;
}
/* --版权与ICP-- */
.footer-copyright{  
    overflow: hidden;
    margin-top:30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding:5px 0;

}
.footer-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copyright ._main{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    line-height: 40px;
}
.footer-main ul{
    display: flex;
    align-items: center;
}
.footer-main ul li{
    margin-right: 10px;
}
.footer-main ul li:last-child{
    margin-right: 0;
}
.footer-main ul li a{
    display: block;
}
.footer-main ul li a i{
    display: block;
    width: 24px;
    height: 24px;
    background: url(/uploads/image/20230705/32c9dcc7376cd29eaad5f9b42294ea25.png) center center no-repeat;
    background-size: 24px;
}
.footer-main ul li a i.tuiter{
    background: url(/uploads/image/20230705/178f7f334069c6e27b572592d40c8d7d.png) center center no-repeat;
    background-size: 24px;
}
.footer-main ul li a i.youtube{
    background: url(/uploads/image/20230705/3a538d0a03478b200dba28f5918328f4.png) center center no-repeat;
    background-size: 24px;
}
.footer-copyright a{
    color: #888888;
    margin: 0 4px;
}
.footer-copyright p{
    color: #888888;
    margin: 0 4px 0 0;
}
@media (max-width:992px) {
    .footer-copyright ._main{
        justify-content: space-around;
        line-height: 1.8;
        text-align: center;
    }
}


/* ============================================================================================================================
													右侧面导航
===============================================================================================================================*/
.sidebar-nav{
    position: fixed;
    z-index: 999;
    right: 5px;
    top: 30%;
}
.sidebar-nav  .item{
    display: block;
    position: relative;
    height: 50px;
    width: 55px; 
    cursor: pointer;
    margin-bottom:6px;
}
.sidebar-nav i{
    margin-left: 5px;
    position: relative;
    overflow: hidden;
    height: 50px;
    width: 50px;
    display:flex;
    align-items: center;
    justify-content: center;
    font-size:26px;
    border-radius: 50%; 
    color: #fff;
    background:#2bc48a; 
    box-shadow:0px 0px 10px 0px rgb(255 255 255 / 20%);
}
.sidebar-nav  .item:hover{
    opacity: 1; 
}
.sidebar-nav ._main{
    
    position: absolute;
    right:64px;
    background:#2bc48a;
    top: 0;
    bottom: 0;
    height: 50px;
    line-height: 50px;
    max-width: 0;
    white-space: nowrap;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.sidebar-nav ._main p{
    font-size: 16px;
    color: #fff;
    overflow: hidden;
    max-width: 0;
}
.sidebar-nav .item:hover ._main._mainbf::after{
    content: '';
    display: block;
    border: transparent 8px solid;
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    border-left-color: #2bc48a;
}
.sidebar-nav ._mains ,.sidebar-nav ._mains img{
    height: 160px;
    background-color: inherit;
}
.sidebar-nav  .item:hover ._main{
    display: block;
    max-width:6rem;
    padding: 0 30px;
    border-radius: 15px;
}
.sidebar-nav  .item:hover ._main p{
    display: block;
    max-width:6rem;
}
.sidebar-nav  .item:hover ._mains{
    display: block;
    border-radius:0px;
    padding: 0px;
    width: 160px;
}

/* ============================================================================================================================
													crumb-box面包屑
===============================================================================================================================*/
.crumb-box {
    background:#f6f6f6;
    overflow: hidden;
}
.crumb-box1{
    background:#ffffff;
}
.crumb-box .container{
    display: flex;
    align-items: center;
}
.crumb {
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    color: #333;
    font-size: 14px;
}
.crumb i {
    margin-right: 2px;
}

.crumb a {
    color: #333;
}

.crumb a:last-child {
    color: #2bc48a;
}

@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{
        width: 100%;
        background-color: #2bc48a;
        padding: 10px;
        color: #ffffff;
    }
}

@media (min-width:991px) {
    .crumb-box1 .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .crumb-box1 .m_crumbnav1{
        flex: 1;
    }
    .crumb-box1 .m_crumbnav1 ul{
        position: relative;
        margin: 22px auto;
        justify-content: space-between;
        text-align: left;
    }
    .crumb-box1 .m_crumbnav1 ul li{
        display: inline-block;
        transition: all 0.5s;
        position: relative;
        font-size: 16px;
        color: #333;
        text-align: center;
        margin:0 3px;
        padding:10px 25px;
        text-transform: capitalize;
        border-radius: 20px;
        line-height: 1.2;
    }
    .crumb-box1 .m_crumbnav1 ul li:hover,.crumb-box1 .m_crumbnav1 ul li.active{
        background:#2bc48a;;
        border-color:#2bc48a;
    }
    .crumb-box1 .m_crumbnav1 ul li:hover a ,.crumb-box1 .m_crumbnav1 ul li.active a{
        color:#fff;
    }
    /*--2---*/
    .m_crumbnav{
        display:block;
        position: relative;
        margin-left: 0px;
        clear: left;
        margin-right: 2%;
        width: 19%;
    }
    .m_crumbnav h3{
        background: #2bc48a;
        color: #fff;
        padding: 25px 0;
        font-size: 18px;
        justify-content: center;
        margin-bottom: 1px;
        display: flex;
        align-items: center;
    }
    .m_crumbnav h3 span{
        display: flex;
        align-items: center;
    }
    .m_crumbnav h3 span i{
        display: block;
        width: 18px;
        height: 18px;
        background: url(/uploads/image/20230704/1afceb1ca2e54a6e4158d286f00eaa9e.png) center no-repeat;
        background-size: 18px;
        margin-left: 10px;
    }
    .m_crumbnav li{
        line-height: 2;
        background: #f6f6f6;
        transition: all 0.5s;
    }
    .m_crumbnav li a{
        display: block;
        font-size: 16px;
        width: 100%;
        border-radius: 0;
        padding: 12px;
        padding-left: 25px;
        text-align: left;
        transition: all 0.5s;
    }
    .m_crumbnav li:hover a , .m_crumbnav li.active a{
        background:#2bc48a;
        border-color:#2bc48a;
    }
    .m_crumbnav li:hover a ,.m_crumbnav li.active a{
        color: #fff;
    }
    .detail_search{
        width: 100%;
        padding: 20px;
        background-color: #f6f6f6;
        margin-bottom: 25px;
    }
    .detail_search p{
        font-size: 18px;
        line-height: 1.1;
        margin-bottom: 5px;
    }
    .detail_search .detail_search_main{
        display: flex;
        align-items: center;
    }
    .detail_search .detail_search_main form{
        display: flex;
        align-items: center;
        width: 100%;
    }
    .detail_search .detail_search_main form input{
        font-size: 16px;
        line-height: 40px;
        padding: 0 10px;
        flex: 1;
        overflow: hidden;
        border: 1px solid #ccc;
    }
    .detail_search .detail_search_main button{
        width: 30px;
        height: 40px;
        margin-left: 5px;
        background: url(/uploads/image/20230706/2f521f98f2dab778634151ac8cf43909.png) center center no-repeat;
        background-size: 20px;
        background-color: #2bc48a;
        border: none;
    }
}
@media (max-width:991px) {
    .detail_search{
        display: none;
    }
    .m_crumbnav , .m_crumbnav1{
        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_crumbnav1 li{
        padding: 5px 10px;
        display: flex;
    }
    .m_crumbnav li a ,.m_crumbnav1 li a{
        flex: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 10px 0;
        color: #707070;
    }
    .m_crumbnav li.active , .m_crumbnav1 li.active{
        background: #eee;
    }
    .m_crumbnav li.active a ,.m_crumbnav1 li.active a{
        color: #2bc48a;
    }
    .m_crumbnav.on ,.m_crumbnav1.on {
        left: 0;
    }
    .m_crumbnav em ,  .m_crumbnav1 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_crumbnav1 em.on{
        left: 0;
        position: fixed;
    }
}

/* ============================================================================================================================
													临床服务样式
===============================================================================================================================*/
/* == 内页标题 ==*/
.wu_title{
    width: 100%;
    text-align: center;
    line-height: 1.4;
    margin-bottom:5%;
}
.wu_title p ,.wu_title2 p{
    font-size: 18px;
    color: #999999;
    margin-top: 0px;
}
.wu_title h2{
    color: #2bc48a;
    margin-top:4px;
    font-size: 40px;
    position: relative;
    z-index: 1;
}
.wu_title h2::after{
    content: '';
    position: absolute;
    background: #dddddd;
    width: 40px;
    height: 3px;
    z-index: 5;
    left: 50%;
    bottom: -25px;
    transform: translate(-50%,-50%);
}
.wu_title1 h2{
    font-size: 32px;
    color: #333;
    font-weight: bold;
}
.wu_title1 p,.wu_title4 h2 , .wu_title4 h2{
    color: #fff;
}
.wu_title4 p{
    color:#ffb0b2;
}
.wu_title1 h2::after ,.wu_title2 h2::after{
    background: #2bc48a;
}
.wu_title2 h2{
    font-size: 32px;
    color: #333;
    font-weight: bold;
}
.wu_title4 h2::after{
    background: #ffffff;
}

@media (max-width:992px) {
    .wu_title p{
        font-size:14px;
    }
    .wu_title h2{
        font-size:28px;
    }
    .wu_title h2::after{
        bottom: -15px;
    }
}


/* == fw_box1 ==*/
.fw_box1{
    overflow: hidden;
    margin-top:64px;
}
.fw_box1 img{
    width: 100%;
    display: block;
}
@media (max-width:992px) {
    .fw_box1{
        margin:0.7rem 0 0.2rem;
    }
}

/* == fw_box2 ==*/
.fw_box2{
    padding: 64px 0;
    background-color: rgba(247, 247, 247, 1);
}
.fw_box2 ul{
    overflow: hidden;
    width: 101.5%;
}
.fw_box2 ul li{
    float:left;
    width:23.5%;
    margin-right:1.5%;
    margin-bottom: 0.3rem;
    background: #eee;
    text-align: center;
    border-radius: 5px;
    position: relative;
}
.fw_box2 ul li .pic{
    max-height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.fw_box2 ul li .pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fw_box2 ul li p{
    padding: 20px;
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    border-radius: 5px;
    background: rgba(202,43,47,0.5);
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
@media (max-width:992px) {
    .fw_box2{
        padding:0.7rem 0;
    }
}
@media (max-width:767px) {
    .fw_box2 ul ,.fw_box2 ul li{
        width: 100%;
        padding: 0;
    }
}


/* == fw_box3 ==*/
.fw_box3{
    padding: 64px 0;
}

.fw_box3 ._main{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.fw_box3 ._main ._left{
    position: relative;
    padding-left:12px;
    min-width: 30%;

}
.fw_box3 ._main ._left::after{
    position: absolute;
    left:0px;
    bottom: 0;
    background: #cb2b2f;
    width: 4px;
    height: 65px;
    content: '';
}
.fw_box3 ._main ._left p{
    font-size: 16px;
    color: #999999;
}
.fw_box3 ._main ._left h3{
    font-size: 32px;
    color: #333;
    font-weight: bold;
    text-align: left;
    margin-top:5px;
}
.fw_box3 ._main ._right{
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.fw_box3 ._main ._right li{
    font-size: 20px;
    text-align: center;
}
.fw_box3 ._main ._right li span{
    color: #2bc48a;
}
@media (max-width:992px) {
    .fw_box3{
        padding:0.7rem 0;
    }
}
@media (max-width:767px) {
    .fw_box3 ._main ._left{
        margin-top: 0.15rem;
        text-align: center;
    }
    .fw_box3 ._main ._left h3{
        text-align: center;
        font-size:20px;
        margin: 0;
    }
    .fw_box3 ._main ._left::after{
        opacity: 0;
    }
    .fw_box3 ._main>div ,.fw_box3 ._main ._right li{
        width: 100%!important;
    }
    .fw_box3 ._main ._right{
        flex-wrap: wrap;
    }
}

/* == fw_box4 ==*/
.fw_box4{
    padding: 55px 0;
    overflow: hidden;
}
.fw_box4 ul{
    width:90%;
    padding: 0 5%;
    display: flex;
    align-items:flex-start;
    justify-content: space-between;
    background: url(../images/hx.png) no-repeat center 40%;
}
.fw_box4 ul li{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.fw_box4 ul .pic{
    display: block;
    overflow: hidden;
    width:113px;
    height: 113px;
    margin: 0 auto;
}
.fw_box4 ul img{
    display: block;
    max-width:113px;
}
.fw_box4 ul h3{
    font-size: 20px;
    margin: 20px auto 5px;
}
.fw_box4 ul p{
    font-size: 16px;
    color: #666;
    line-height:1.5;
}
@media (max-width:767px) {
    .fw_box4{
        padding: 0.7rem 0;
    }
    .fw_box4 ul{
        width: 100%;
        padding: 0;
        flex-wrap: wrap;
        background: none;
    }
    .fw_box4 ul li{
        width: 50%;
        margin: 10px 0;
    }
    .fw_box4 ul .pic{
        width:1.13rem;
        height: 1.13rem;
    }
    .fw_box4 ul img{
        max-width:1.13rem;
    }
}

/* == fw_box5 ==*/
.fw_box5{
    padding:60px 0 75px;
    background-color: rgba(247, 247, 247, 1);
}
.fw_box5 .wu_title{
    margin-bottom:4%;
}
.fw_box5 ul{
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.fw_box5 ul li{
    flex: 1;
}
.fw_box5 ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width:767px) {
    .fw_box5{
        padding: 0.7rem 0 ;
    }
    .fw_box5 ul{
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }
    .fw_box5 ul li{
        flex:auto;
        width: 100%;
    }
}

/* == fw_box6 ==*/
.fw_box6{
    padding:60px 0 75px;
}
.fw_box6 ul{
    width: 100%;
    font-size: 0px;
    overflow: hidden;
}
.fw_box6 li{
    position: relative;
    vertical-align: top;
    display: inline-block;
    width: calc(100% / 6);
    height: 610px;
    background: #000;
    transition: all 0.8s;
    opacity: 1;
    vertical-align: top;
}
.fw_box6 li ._pic{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.fw_box6 li ._con{
    position: absolute;
    top: 0;
    left:0;
    width: 90%;
    margin: 0 5%;
    z-index: 2;
    color: #ffffff;
    transition: all 1s;
    height: 100%;
    padding: 25px 0;
}
.fw_box6 li ._con h3{
    text-align: center;
}
.fw_box6 li ._con p{
    font-size: 16px;
    opacity: 0;
    position: relative;
    margin-top: 20px;
    top: 20px;
    transition: all 1s;
}
.fw_box6 li::after{
    position: absolute;
    top: 0;
    left:0%;
    content: '';
    background-color: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    opacity: 0;
}

@media (min-width:767px) {
    .fw_box6 li.on {
        width: calc(100% / 2);
    }
    .fw_box6 li.on ._con p{
        opacity:1;
        margin-top:0px;
        text-align: center;
    }
    .fw_box6 li.on::after{
        opacity:1;
    }
    
}

@media (max-width:767px) {
    .fw_box6{
        padding: 0.7rem 0;
    }
    .fw_box6 ._main{
        margin-top:30px;
    }
    .fw_box6 li{
        width: 50%!important;
        height: 27vh!important;
        vertical-align: top;
    }
    .fw_box6 li::after{
        opacity:1;
    }
    .fw_box6 li ._con h3{
        font-size: 20px;
    }
    .fw_box6 li ._con p{
        opacity:1;
        margin-top:10px;
        top: 0;
        font-size: 14px;
    }
}
/* == fw_box7 ==*/
.fw_box7{
    padding:0px 0 60px;
}
.fw_box7 ul{
    display: flex;
    justify-content: space-evenly;
    align-items:stretch;
    text-align: center;
}
.fw_box7 ul li{
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 30px #fde1e1;
    padding:2.5vw 1vw;
    flex-basis:25%;
    margin:10px;
    transition: 0.5s;
}
.fw_box7 ul li img{
    max-width: 90px;
}
.fw_box7 ul li h3{
    margin:10px 0;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}
.fw_box7 ul li p{
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}
@media (max-width:767px) {
    .fw_box7{
        padding:0px 0 0.7rem;
    }
    .fw_box7 ul{
        flex-wrap: wrap;

    }
    .fw_box7 ul li{
        flex-basis:auto;
        width: 100%;
    }
}
/* == fw_box8 ==*/
.fw_box8{
    padding:75px 0;
    color: #ffffff;
}
.fw_box8 ._main{
    overflow: hidden;
    display: flex;
    align-items:stretch;
}
.fw_box8 ._main>div ,.fw_box8 ._main>li , .fw_box8 ._main ._right .item{
    width: 50%;
}
.fw_box8 ._main li{
    position: relative;
}
.fw_box8 ._main h3{
    font-size: 22px;
    font-weight: bold;
}
.fw_box8 ._main p{
    font-size: 16px;
    line-height: 26px;
    margin-top: 8px;
}
.fw_box8 ._main li>dl{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 20px 25px;
}
.fw_box8 ._main ._left{
    height: 5rem;
    min-height: 400px;
}
.fw_box8 ._main ._right{
    display: flex;
    align-items:stretch;
    flex-wrap: wrap;
}
.fw_box8 ._main ._right li{
    height:2.5rem;
    min-height:200px;
}
.fw_box8 ._main ._right ._bottom{
    width:100%;
}
@media (max-width:767px) {
    .fw_box8 {
        padding: 0.7rem 0;
    }
    .fw_box8 ._main{
        flex-direction: column;
    }
    .fw_box8 ._main>div ,.fw_box8 ._main>li{
        width:100%;
    }
    .fw_box8 ._main ._left{
        height: 400px;
    }
    .fw_box8 ._main ._right li{
        height:200px;
    }
}
/* == fw_box9==*/
.fw_box9{
    padding:75px 0;
}
.fw_box9 ul{
    display: flex;
    justify-content: space-evenly;
    align-items:stretch;
    text-align: center;
    width:101%;
    margin-left: -0.5%;
}
.fw_box9 ul li{
    background: #f7f7f7;
    border-radius: 5px;
    padding: 3.5vw 1vw;
    transition: 0.5s;
    flex-basis: 25%;
    margin:10px 0.5%;
}
.fw_box9 ul li img{
    max-width: 90px;
}
.fw_box9 ul li p{
    margin-top: 25px;
    font-size: 18px;
    line-height: 2;
}
.fw_box9 ul li:hover{
    background: linear-gradient(#fe7e81,#d64144);
    transition: 0.5s;
}
.fw_box9 ul li:hover img{
    filter: grayscale(100%) brightness(333%);
}
.fw_box9 ul li:hover p{
    color: #fff;
}


@media (max-width:767px) {
    .fw_box9{
        padding:0.7rem 0;
    }
    .fw_box9 ul{
        flex-wrap: wrap;

    }
    .fw_box9 ul li{
        flex-basis:auto;
        width: 100%;
    }
}
/* == fw_box10 ==*/
.fw_box10{
    padding:75px 0;
    background-color: rgba(247, 247, 247, 1);
}
.fw_box10 ul{
    display: flex;
    justify-content:space-between;
    align-items:stretch;
    text-align: center;
}
.fw_box10 ul li{
    position: relative;
    width: 32%;
    height: 320px;
    border-radius:16px;
    overflow: hidden;
}
.fw_box10 ul li>dl{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}
.fw_box10 ul li>dl h3{
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 5px;
}
.fw_box10 ul li::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    content: '';
    opacity: 0;
}
.fw_box10 ul li:hover::after{
    opacity: 1;
}

/* ============================================================================================================================
													临床服务样式
===============================================================================================================================*/

/* == js_box ==*/
.js_box{
    width: 100%;
    padding:0.8rem 0;
    overflow: hidden;
}
.js_box ul{   
    padding: 60px 0;
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}
.js_box ul li{
    flex-grow: 1;
}
.js_box ul dl{
    color: #333333;
    line-height: 1.1;
    font-family: 'Oswald',arial;
    text-align: center;
    font-size: 22px;
}
.js_box ul dl h3{
    display: inline;
    font-size: 60px;
    color: #2bc48a;
}
.js_box ul dl span{
    color: #2bc48a;
    font-size: 44px;
}
.js_box ul p{
    font-size: 20px;
    text-align: center;
    color: #666;
    line-height: 30px;
}
@media (max-width:767px) {

    .js_box ul{
        flex-wrap: wrap;
        padding: 0.6rem 0 0;
    }

    .js_box ul dl h3{
        font-size: 26px;
        margin-right: 10px;
    }
    .js_box ul li{
        flex-basis: 50%;
        padding-left: 0%;
        margin-bottom: 10px;
    }
}

/* == js_box1 ==*/
.js_box1{
    overflow: hidden;
}
.js_box1 ._main , .js_box1 ._main img{
    display: block;
    max-width: 100%;
    margin:0 auto;
    overflow: hidden;
}

/* == js_box2 ==*/
.js_box2{
    padding: 0.8rem 0;
    background-color: rgba(247, 247, 247, 1);
}

.js_box2 ._main{
    overflow: hidden;
}
.js_box2 ._main ul{
    display: flex;
    flex-wrap: wrap;
}
.js_box2 ._main ul li{
    width: 25%;
    height: 400px;
    border: 1px solid #eee;
    position: relative;
    transition: 0.5s;
}
.js_box2 ._main ul li ._con{
    width: 100%;
    height: 100%;
    padding: 48px 25px;
    position: relative;
    z-index: 9;
    transition: 0.5s;
    border-top: 3px solid rgba(255,255,255,0);
}
.js_box2 ._main ul li h3{
    color: #2bc48a;
    font-size: 22px;
    font-weight: bold;
}
.js_box2 ._main ul li p{
    color: #666666;
    font-size: 14px;
    line-height: 2;
    max-height: 250px;
    overflow-y:auto;
}
.js_box2 ._main ul li .xian{
    width: 25px;
    height: 2px;
    background: #ddd;
    margin: 20px 0;
}
.js_box2 ._main ul li:hover ._con{
    background: rgba(202,43,47,0.5);
    border-top: 3px solid rgb(202 43 47);
}
.js_box2 ._main ul li:hover p ,.js_box2 ._main ul li:hover h2{
    color: #fff;
}

@media (max-width:767px) {
    .js_box2 ._main ul li{
        width: 100%;
    }
}


/* == js_box3 ==*/
.js_box3{
    padding: 0.8rem 0;
}

.js_box3 ul{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    width:102%;
}
.js_box3 ul li{
    width:23%;
    margin-right: 2%;
    margin-bottom: 30px;
}
.js_box3 ul li a{
    max-height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    display: block;
}
.js_box3 ul li img{   
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.js_box3 ul li p{
    padding: 20px;
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    border-radius: 5px;
    background: rgba(255,255,255,0.5);
    font-size: 20px;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width:992px) {
    .js_box3 ._main ul li{
        width:48%;
    }
}
@media (max-width:767px) {
    .js_box3 ._main ul{
        width: 100%;
    }
    .js_box3 ._main ul li{
        width:100%;
        margin:15px 0 0px;
    }
}

/* == js_box4 ==*/
.js_box4{
    padding: 0.8rem 0;
    overflow: hidden;
}
.js_box4 ._main , .js_box4 ._main img{
    display: block;
    max-width: 100%;
    margin:0 auto;
    overflow: hidden;
}
.js_box4 ._con{
    width: 100%;
    max-width: 680px;
    height: auto;
    margin:0 auto;
    padding: 0px;
    background: url(/uploads/image/20230216/0f4b96f19b32901badc4c85baa9973ad.png) no-repeat center;
    color: #ffffff;
    font-size: 24px;
    line-height: 2;
    text-align: center;
}
@media (max-width:767px) {
    .js_box4 ._con{
        display: none;
    }
}


/* ============================================================================================================================
												 内页样式
===============================================================================================================================*/
.list_main{
    overflow: hidden;
    padding: 0.4rem 0;
}

.box_left{
    float: left;
}
.box_right{
    overflow: hidden;
}
.dropload-noData{
    font-size: 14px;
}
.dropload-noData1{
    font-size:16px;
    display:flex;
    align-items: center;
    justify-content: center;
    color: #666;
}
.dropload-noData1 i{
    font-size: 32px;
    color: #09bb07;
    padding-right: 3px;
}

/* ============================================================================================================================
													文章列表样式
===============================================================================================================================*/
.article ul {
    overflow: hidden;
}
.article ul li {
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f5f5f5;
}
.article ul li a {
    font-size: 0;
    padding:12px;
    display: block;

}
.article ul li dt,
.article ul li dd {
    display: inline-block;
    vertical-align: middle;
}
.article ul li dt {
    overflow: hidden;
    width:18%;
    position: relative;
    padding-top:14%;
    border: 1px solid #dddddd;
}

.article ul li dt img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    object-fit: cover;
}

.article ul li dd {
    width:82%;
    overflow: hidden;
    padding: 0.15rem;
}

.article ul li dd h3 {
    font-size:16px;
    font-weight:bold;
    color: #000000;
    margin-bottom:8px;
}

.article ul li dd span {
    font-size: 14px;
    color: #999;
    display: block;
    margin: 5px 0;
}

.article ul li dd p {
    font-size: 14px;
    color: #999;
    line-height: 25px;
    height: 50px;
}

.article ul li dd em {
    display: none;
    font-size: 14px;
    color: #999;
    float: right;
    margin-top: 0.2rem;
}

.article ul li:hover dd h3,
.article ul li:hover dd em {
    color:#2bc48a;
}
@media (max-width:992px) {
    .article ul li a {
        padding: 0;
    }
    .article ul li dd h3{
        font-size: 18px;
    }
    .article ul li dt {
        width: 100%;
        padding-top: 70%;
        margin-right: 0;
        border: 0;
        border-bottom: 1px solid #eee;
    }
    .article ul li dd {
        width: 100%;
    }
    .article ul li dd em {
        float: left;
        margin-top: 0.2rem;
    }
}

/* ============================================================================================================================
													图文列表样式
===============================================================================================================================*/
.mutlist{
    overflow: hidden;
}
.mutlist ul{
    width: 102%;
    margin-left: -1%;
}

.mutlist ul li{
    float: left;
    width: 31.33%;
    margin:0 1% 2%;
    overflow: hidden;
    border: 1px solid #ddd;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.mutlist ul li dt{
    height: 322px;
    overflow: hidden;
    position: relative;
}
.mutlist ul li dt img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 322px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.mutlist ul li dd{
    padding: 24px;
}
.mutlist ul li dd h3{
    font-size: 18px;
    color: #222;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 1px solid #c0c0c0;
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.mutlist ul li dd p{
    font-size: 14px;
    line-height: 28px;
    height: 60px;
    color: #676767;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.mutlist ul li dd span{
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}
.mutlist ul li:hover{
    background-color: #2bc48a;
}
.mutlist ul li:hover dt img{
    transform: scale(1.1);
}
.mutlist ul li:hover dd span ,.mutlist ul li:hover dd p ,.mutlist ul li:hover dd h3{
    color: #ffffff;
}

@media (max-width: 992px){
    .mutlist ul{
        width: 100%;
        margin-left: 0;
        margin-bottom: -4%;
    }
    .mutlist ul li{
        width: 48%;
        margin: 0 4% 4% 0;
    }
    .mutlist ul li:nth-child(2n){
        margin: 0 0 4% 0;
    }
}
@media (max-width: 767px){
    .mutlist ul{
        width: 100%;
        margin-left: 0;
        margin-bottom: -2%;
    }
    .mutlist ul li{
        width: 100%;
        margin: 0;
        margin-bottom: 2%;
    }
    .mutlist ul li:nth-child(2n){
        margin: 0;
        margin-bottom: 2%;
    }
}
/* ============================================================================================================================
													产品列表样式
===============================================================================================================================*/
.prolist{
    width: 100%;
    overflow: hidden;
}

.prolist ul{
    width: 102%;
    margin-left: -1%;
}

.prolist ul li{
    float: left;
    width: 31.33%;
    margin: 0 1% 2%;
    background: #eee;
    text-align: center;
    overflow: hidden;
}
.prolist ul dt{
    padding-top: 86%;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
}
.prolist ul dt img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.prolist ul dd{
    padding: 20px;
    font-family: "mon-l", "arial", sans-serif !important;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
}
.prolist ul li dt::after{
    content: '';
    position: absolute;
    left: 0px;
    top: 100%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 1;
}
.prolist ul span{
    font-size:16px;
    color:#2bc48a;
    background: #fff;
    width: 54px;
    height: 54px;
    line-height: 54px;
    border-radius: 50%;
    display: block;
    position: absolute;
    left:50%;
    top:100%;
    opacity: 0;
    transform: translate(-50% ,-50%);
    z-index:2;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.prolist ul li:hover span{
    opacity: 1;
    top:50%;
}
.prolist ul li:hover dt::after{
    top: 0;
    opacity: 1;
}

@media (max-width:767px) {
    .prolist ul{
        width: 100%;
        margin: 0;
    }
    .prolist ul li{
        width: 100%;
        margin: 0 0 2%;
    }
}


/* ============================================================================================================================
													文章详情样式
===============================================================================================================================*/


.article_detail{
    float: left;
    overflow: hidden;
    clear: left;
    width:73%;
}
.article_detail ._title h2{
    font-size: 26px;
    text-align: center;
    line-height: 36px;
    color: #262626;
}
.article_detail ._title p{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    margin: 20px 0;
    border-top: 1px solid #d9d9d9;
    flex-wrap: wrap;
}
.article_detail ._content{
    overflow: hidden;
    padding:10px 0 20px;
    font-size: 16px;
    line-height: 26px;
}
.box_right .r_news{
    width:25%;
    float: right;
}
.box_right .r_news h2{
    font-size: 24px;
    color: #222;
}
.box_right .r_news li{
    width: 100%;
    float: left;
    border-bottom: 1px solid #eee;
    margin:15px 0 0;
    padding-bottom: 15px;
}
.box_right .r_news li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.box_right .r_news li .pic{
    width: 30%;
    max-height:88px;
    overflow: hidden;
}
.box_right .r_news li .txt{
    width:65%;
}
.box_right .r_news li h3{
    font-size: 16px;
    color: #333;
    transition: all 0.5s;
}
.box_right .r_news li p{
    font-size: 14px;
    color: #999;
    line-height:22px;
    height:44px;
    margin:5px 0;
}

._return{
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d9d9d9;
}
._return a{
    width: 50%;
    display: block;
}
._return .prev{
    float: left;
}
._return .next{
    float: right;
    text-align: right;
}

@media (max-width:992px) {

    .article_detail ,.box_right .r_news{
        width: 100%;
    }
    .box_right .r_news li .pic{
        max-height:3rem;
    }
}

/* ============================================================================================================================
												产品详情样式
===============================================================================================================================*/
.product_detail{
    overflow: hidden;
}
.product_detail ._info{
    display: block;
    overflow: hidden;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
.product_detail ._info ._text{
    overflow: hidden;
}
.product_detail ._info  h2{
    font-weight: bold;
    white-space: normal;
    text-align: left;
    font-size: 28px;
    color: #262626;
}
.product_detail ._con{
    display: inline-block;
    vertical-align: middle;
    -moz-box-flex: 1;
    -webkit-box-flex: 1;
    box-flex: 1;
    flex: 1;
    white-space: normal;
    padding: 12px 0;
}

.product_detail ._text ul{
    margin: 12px 0;
    padding:8px 12px;
    background-color: #f5f5f5;
    color: #999;
    line-height: 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.product_detail ._text ul li {
    width: 50%;
}

.product_detail ._text ul li em {
    font-size: 14px;
}
.product_detail ._text ul span {
    margin:0.1rem 0 0.15rem;
    line-height:1.3;
    display: block;
}

.product_detail ._contact{
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #eee;
    padding-top: 12px;
}
.product_detail ._contact a{
    display: inline-block;
    width:120px;
    line-height:38px;
    text-align: center;
    height:40px;
    position: static;
    transform: none;
    color:#2bc48a;
    border: 1px solid #2bc48a;
}
/* ==手机轮播样式==*/
.mproduct{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.mproduct img{
    width: 100%;
}
.mproduct .product_btn{
    overflow: hidden;
    margin:12px 0;
}
.mproduct .product_btn li{
    border: 2px solid #F5F5F5;
}
.mproduct .product_btn li.swiper-slide-thumb-active{
    border-color:#2bc48a;
}
/* ==詳情样式==*/
.product_detail ._content{
    width: 100%;
    overflow: hidden;
}
.product_detail ._content ._title{
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
    height: 44px;
    border-bottom: 1px solid #eee;
}
.product_detail ._content ._title span{
    display: inline-block;
    height: 44px;
    line-height: 44px;
    text-align: center;
    padding: 0 25px;
    cursor: pointer;
    background: #2bc48a;
    color: #fff;
}
/* ==产品推荐样式==*/
.recommend-box h3{
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}
.recommend-box>div{
    position: relative;
    overflow: hidden;
    width: 100%;
}
.recommend-box ._btn{
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin:auto 0;
    width: 30px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    z-index: 10;
    cursor: pointer;
    border-radius: 1px;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    background: rgba(100,100,100,.8);
    font-size: 1.5rem;
    color: #fff;
}
.recommend-box .pro_listprev{
    left: 0px;
}
.recommend-box .pro_listnext{
    right: 0px;
}
.recommend-box dt{
    width: 100%;
    height: 3.36rem;
    overflow: hidden;
    background: #fff;
}
.recommend-box dt img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease;
    transform: scale(1);
    background: #fff;
}
.recommend-box h4{
    font-size: 16px;
    color: #fff;
    text-align: center;
    background-color: #979797;
    padding:0.2rem 0.1rem;
    transition: all .5s ease;
}
.recommend-box li:hover dt img{
    transform: scale(1.3);
}
.recommend-box li:hover h4{
    color:#fff;
    background-color:#2bc48a;
}
@media (max-width:992px) {
    .product_detail ._info h2{
        font-size: 22px;
        line-height: 30px;
    }
}
@media (max-width:767px) {
    .product_detail ._info h2{
      font-weight: normal;
    }
    .recommend-box h4{
        font-size:14px;
    }
}

/* ============================================================================================================================
												关于我们样式
===============================================================================================================================*/
.detail_about{
    width: 100%;
    overflow: hidden;
    background-color: #f7f7f7;
    padding: 0.8rem 0;
}
.detail_about .container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.detail_about .container>div{
    width: 50%;
}
.detail_about ._pic{
    position: relative;
    overflow: hidden;
}
.detail_about ._pic img{
    display: block;
    width: 100%;
}
.detail_about ._txt{
    position: relative;
    z-index: 2;
    margin-left: -60px;
    background-color: rgba(255, 255, 255, 0.8);
    padding:5% 40px;

}
.detail_about ._txt ._title{
    line-height: 1.6;
    font-size: 18px;
    color: #666;
    font-family: "mon-l", "arial", sans-serif !important;
}
.detail_about ._txt h2{
    margin:5px 0 20px;
    font-size:24px;
    color: #000000;
    line-height:1.8
}
.detail_about ._txt>div{
    font-size:16px;
    line-height:2;
    color:#333333
}
@media (max-width:767px) {
    .detail_about .container>div{
        width:100%;
    }
    .detail_about ._txt{
        margin:0;
        padding: 10px;
    }
    .detail_about ._txt h2{
        margin:0px auto 5px;
    }
    .detail_about ._txt>div{
        font-size:14px;
    }
}

/* ============================================================================================================================
												文化样式
===============================================================================================================================*/
.culture_title {
    width: 100%;
    text-align: center;
    color: #000000;
    font-size: 36px;
    line-height: 1.8;
}

@media (max-width:1366px) {
    .culture_title {
        font-size: 24px;
    }
}

.culture_box {
    padding: 0.6rem 0;
    overflow: hidden;
    width: 100%;
    background-color: #f5f5f5;
}

.culture_box ul {
    width: 102%;
    margin-left: -1%;
    font-size: 0px;
}

.culture_box li {
    display: inline-block;
    vertical-align: top;
    margin: 1%;
    background-color: rgba(238, 238, 238, 1);
    border-radius: 12px;
    transition: all .5s ease;
}

.culture_box li:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(5px);
}

.culture_box li dt {
    width: 100px;
    height: 100px;
    margin: 40px auto 0;
}

.culture_box li dt img {
    width: 100%;
}

.culture_box li dd {
    padding: 20px;
}

.culture_box li h3 {
    text-align: center;
    color: #2bc48a;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.culture_box li p {
    line-height: 1.7;
    font-size: 16px;
    color: #333;
    text-align: center;
}

@media (min-width:1400px) {
    .culture_box li {
        width: 18%;
    }
}

@media (max-width:1400px) {
    .culture_box li {
        width: 23%;
    }

    .culture_box li p {
        font-size: 14px;
    }
}

@media (min-width:1366px) {
    .culture_box li:nth-child(1) {
        margin-top: 40px;
    }

    .culture_box li:nth-child(2) {
        margin-top: 18px;
    }

    .culture_box li:nth-child(3) {
        margin-top: 30px;
    }

    .culture_box li:nth-child(5) {
        margin-top: 22px;
    }
}

@media (max-width:1366px) {
    .culture_box li {
        width: 31.33%;
    }
}

@media (max-width:767px) {

    .culture_box ul {
        width: 100%;
        margin: 0;
    }

    .culture_box li {
        width: 100%;
        margin: 1% 0;
    }
}


.culture_box1 {
    width: 100%;
    overflow: hidden;
    padding: 0.4rem 0 0;
}

.culture_box2 {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}
.culture_box2 li {
    position: relative;
    overflow: hidden;
    padding-top:17.1%;
}
.culture_box2 li img{
    position: absolute;
    width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}
.culture_box2 li:hover img{
    transform: translate(-50%, -50%) scale(1.2);
}
@media (max-width:767px) {
    .culture_box2 {
        width: 94%;
        margin: 0 auto;
    }
    .culture_box2 li {
        padding-top:0;
        height: 2.2rem;
    }
}

.left-boxs{
    display: block;
    width: 100%;
    overflow: hidden;
}
.left-boxs ._left img{
    width: 100%;
}
.left-boxs ._right{
    padding: 3%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.left-boxs ._right h2{
    color: #2980b9;
    font-size:24px;
    font-weight: bolder;
    width: 100%;
    line-height: 1.6;
}
.left-boxs ._right p{
    font-size:16px;
    padding-top: 10px;
    line-height:2;
    color: #666;
}

.right-boxs{
    display: block;
    width: 100%;
    overflow: hidden;
}
.right-boxs ._left img{
    width: 100%;
}
.right-boxs ._right{
    padding: 3%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.right-boxs ._right h2{
    color: #2bc48a;
    font-size:24px;
    font-weight: bolder;
    width: 100%;
    line-height: 1.6;
}
.right-boxs ._right p{
    font-size:16px;
    padding-top: 10px;
    line-height:2;
    color: #666;
}
.right-boxs ._left{
    float:right!important;
}
.right-boxs ._right{
    float:left!important;
}
    
@media (max-width:767px) {
    .left-boxs ._right p ,.right-boxs ._right p{
        font-size:14px;
    }
    .right-boxs ._right{
        float:right!important;
    }
    .right-boxs ._left{
        float:left!important;
    }
}

