/*
    text-overflow: ellipsis;
    white-space: nowrap;
    
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    -webkit-background-clip: content;
    -moz-background-clip: content;
    background-clip: content;
    
    box-shadow: 0px 0px 5px rgba(153,153,153,0.5);  
	
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;  
	
	//四边
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
	
*/
/* 全局  */
@charset "UTF-8";
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, img {
	border: medium none;
	margin: 0;
	padding: 0;
}
*{margin: 0;padding: 0;list-style: none;word-wrap:break-word; }
html{overflow-x: hidden;font-size:20px;height: 100%;}
body{
    font-family:Helvetica;
    background:#fff;
    font-size:0.6rem;
    color:#666; 
    overflow:hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

body,button, input, select, textarea{
    font-family: "Helvetica Neue", Helvetica, STHeiTi,\5FAE\8F6F\96C5\9ED1;
}

input, textarea{-webkit-tap-highlight-color: rgba(255,255,255,0);}
em,span,i{font-style:normal;}
a{outline: none;-webkit-appearance: none;-webkit-tap-highlight-color: rgba(255,255,255,0);font-family: "microsoft yahei";text-decoration: none;color: #666;}
input[type="button"], input[type="submit"], input[type="reset"]{-webkit-appearance: none;}
ul, ol{list-style: none;vertical-align: middle;}
img{border: 0px;vertical-align:middle}
.fl{float: left;display: inline;}
.fr{float: right;display: inline;}
.clear{ clear:both; overflow:hidden; height:0;}
.h5{ overflow:hidden;clear:both;height:0.25rem;}
.h10{ overflow:hidden;clear:both;height:0.5rem;}
.h15{ overflow:hidden;clear:both;height:0.75rem;}
.h20{ overflow:hidden;clear:both;height:1rem;}
.h25{ overflow:hidden;clear:both;height:1.25rem;}
.h30{ overflow:hidden;clear:both;height:1.5rem;}

.bc_fff{
	background:#fff;
	overflow:hidden;
}
.wbox{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.wbox-flex{
	-webkit-flex:1!important;
	-webkit-box-flex:1
}
/*动态设置字体巨细*/
/*iphone 6*/
html{
    font-size: 20px;
}

@media screen and (max-width: 360px){
    html{
        font-size: 20px;
    }
}
@media screen and (min-width: 361px) and (max-width: 539px){
    html{
        font-size: calc(100vw/360*20);
    }
}
@media screen and (min-width: 540px){
    html{
        font-size: 28px;
    }
}
/*iphone 6 plus*/


/*浏览器转动条*/
::-webkit-scrollbar {width:0px;background-color:#fff;}
::-webkit-scrollbar-button {}
::-webkit-scrollbar-track {}
::-webkit-scrollbar-track-piece {}
::-webkit-scrollbar-thumb {border:solid 0px #5d5d5d;width:0px;background-color:#fff;}
::-webkit-scrollbar-corner {background-color:#5d5d5d;}
::-webkit-resizer {}
::-webkit-scrollbar:horizontal{height:9px;}

.clamp1{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.clamp2{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp3{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp4{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp5{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.clamp6{
    word-break: break-all;
    display: -webkit-box !important;
    -webkit-line-clamp: 6 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*
* flex 横
*/
.flex-r{/*横向*/
    display: flex;
    flex-direction: row;
}
.flex-v{/*纵向*/
    display: flex;
    flex-direction: column;
}
.flex-1{
    flex: 1 0 0;
}
.flex-2{
    flex: 2 0 0;
}

/*
* 内容笔直居中
*/
.tableCont{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top:0px;
    z-index: 5;
}
.table{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: table;
}
.tableCell{
    display: table-cell;
    overflow: hidden;
    vertical-align: middle;
}

/*
* 边框公共部分
*/
.bd_b:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0px;
    bottom:0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
    z-index: 2;
}
.bd_t:before{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0px;
    top:0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
    z-index: 2;
}
.bd_l:before{
    display: block;
    content: "";
    overflow: hidden;
    width: 1px;
    height: 100%;
    background: #ddd;
    position: absolute;
    left: 0px;
    top:0px;
    -webkit-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    -o-transform: scaleX(0.5);
    transform: scaleX(0.5);
    z-index: 2;
}
.bd_r:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 1px;
    height: 100%;
    background: #ddd;
    position: absolute;
    right: 0px;
    top:0px;
    -webkit-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    -o-transform: scaleX(0.5);
    transform: scaleX(0.5);
    z-index: 2;
}
.bd_a:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 200%;
    height: 200%;
    border: 1px solid #ddd;
    position: absolute;
    left: 0px;
    top:0px;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    -ms-border-radius: 0.3rem;
    -o-border-radius: 0.3rem;
    border-radius: 0.3rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform-origin: 0px 0px;
    -moz-transform-origin: 0px 0px;
    -ms-transform-origin: 0px 0px;
    -o-transform-origin: 0px 0px;
    transform-origin: 0px 0px;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    z-index: 2;
}

/*
* 列表共用部分
*/
.list_a{
    display: block;
    overflow: hidden;
    position: relative;
}
.imgDiv{
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 66.6666667%;
}
.imgDiv img{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
}
.listName{
    overflow: hidden;
    line-height: 1.0rem;
    font-size: 0.7rem;
    color:#666;
}
.listTit{
    overflow: hidden;
    line-height: 1.0rem;
    font-size: 0.7rem;
    color:#333;
}
.listTime{
    font-size: 0.7rem;
    color:#999;
    line-height: 1.0rem;
    overflow: hidden;
}
.listDeta{
    position: relative;
    overflow: hidden;
}
.listIntr{
    overflow: hidden;
    font-size: 0.6rem;
    color:#666;
    line-height: 0.9rem;
}
/*
* 种种弹窗
*/
.moveBox{
    /*display: flex;
    flex-direction: column;*/
}
.moveHead{
    position: relative;
    display: flex;
    flex-direction: row;
    -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
}
.moveHead:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0px;
    bottom: 0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.moveHeadC{
    flex: 1 0 0;
    overflow: hidden;
}
.moveHeadTit{
    line-height: 2.25rem;
    height: 2.25rem;
    display: block;
    overflow: hidden;
    font-size: 0.7rem;
    color:#666;
    text-align: center;
}
.moveBody{
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-overflow-scrolling: touch;
}
.moveFoot{
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.1);
}
.moveFoot:before{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0px;
    top: 0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.moveBtBox{
    overflow: hidden;
}
a.moveBt{
    display: block;
    overflow: hidden;
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    color:#666;
    position: relative;
    line-height: 2.25rem;
}
.moveBt:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 1px;
    height: 100%;
    background: #ddd;
    position: absolute;
    right: 0px;
    top: 0px;
    -webkit-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    -o-transform: scaleX(0.5);
    transform: scaleX(0.5);
}
.moveBt:last-child:after{
    display: none;
}
a.moveBtTrue{
    color:#fff;
    background: #bd0000;
}
a.moveBtCancle{
    color:#666;
    background: #fafafa;
}
.moveClose{
    position: absolute;
    right: 0.5rem;
    top: -0.65rem;
    overflow: hidden;
    width: 1rem;
    height: 1rem;
    padding: 3px;
    background: #fff;
    border-radius: 1rem;
    z-index: 9;
}
.moveClose span{
    display: block;
    overflow: hidden;
    width: 1rem;
    height: 1rem;
    border: 1px solid #ddd;
    border-radius: 1rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url(/subsiteSrc/ynbyM/images/close.png) no-repeat center center;
    background-size: 0.5rem 0.5rem;
}
.headClose{
    display: block;
    width: 2.25rem;
    height: 2.25rem;
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 9;
}
.headClose span{
    display: block;
    overflow: hidden;
    width: 2.25rem;
    height: 2.25rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url(/subsiteSrc/ynbyM/images/close.png) no-repeat center center;
    background-size: auto 0.7rem;
}

.leftMove{
    overflow: hidden;
    position: fixed;
    left: 0px;
    top:0px;
    bottom: 0px;
    width: 100%;
    z-index: 9;
    background: #fff;
    -webkit-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    -o-transform: translateX(-110%);
    transform: translateX(-110%);
    -webkit-transition: transform 0.3s linear;
    -o-transition: transform 0.3s linear;
    transition: transform 0.3s linear;
}
.leftMove.show{
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}
.rightMove{
    width: 100%;
    height: 100%;
    position: fixed;
    right: 0px;
    top:0px;
    overflow: hidden;
    background: #fff;
    z-index: 9;
    -webkit-transition: transform 0.3s linear;
    -o-transition: transform 0.3s linear;
    transition: transform 0.3s linear;
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    -o-transform: translateX(110%);
    transform: translateX(110%);
}
.rightMove.show{
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}
.bottomMove{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    bottom:0px;
    background: #fff;
    z-index: 9;
    -webkit-transition: transform 0.3s linear;
    -o-transition: transform 0.3s linear;
    transition: transform 0.3s linear;
    -webkit-transform: translateY(110%);
    -ms-transform: translateY(110%);
    -o-transform: translateY(110%);
    transform: translateY(110%);
}
.bottomMove.show{
    transform: translateY(0);
}
#mobileBg{width:100%;height:100%;position:fixed;background:rgba(0,0,0,0.3);z-index:50;left:0;top:0px; z-index:8; display: none;}
#mobileBg.show{
    display: block;
}


/**
 * 框架部分 begin
 * @author 杨朝杰
 * @return
 */	
#mobileWrap{
	margin:0 auto;
}
#mobileTop{clear:both; /*position:fixed;*/z-index:5;width:100%;
-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
}
#mobileCon{
    overflow:hidden;
    overflow-y:auto;
    clear:both; 
    background:#f1f1f1; 
    position:relative;
    z-index:4;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-overflow-scrolling: touch;
}
#mobileFooter{clear:both; /*position:fixed; bottom:0;*/ width:100%; z-index:4;
-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
box-shadow: 0px 0px 3px rgba(0,0,0,0.2);}
#mobileMenu1{height:100%;display:block;position:fixed; top:0;width:calc(100vw - 2.25rem);z-index:99;background:#fff;left:calc(2.25rem - 100vw); overflow:hidden;overflow-y:auto;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-overflow-scrolling: touch;}
#mobileConH{overflow:hidden;}

#mobileTop.hide,#mobileCon.hide,#mobileFooter.hide{
	-webkit-transform: translateX(-10.0rem);
	transition: all 0.3s linear;
	}/*导航睁开*/
#mobileTop.show,#mobileCon.show,#mobileFooter.show{
	-webkit-transform:translateX(0);
	transition: all 0.3s linear;
}/*导航关闭*/

#mobileMenu{
    width: 12.5rem;
}
.english{
    display: block;
    font-size: 0.8rem;
    color:#333;
    overflow: hidden;
    height: 2.25rem;
    line-height: 2.25rem;
    padding: 0px 1.0rem;
    opacity: 0;
    pointer-events: none;
}
/**
 * 手机顶部
 * @author 杨朝杰
 * @return
 */	
#toolbarnav{display: flex;height:2.25rem;width:100%;max-width:100%;position: relative;color:#fff;background:#55a66f;}
#toolbarnav.bc_fff{
    background: #fff;
}
#toolbarnav h1{font-weight: normal;flex:1;text-align: center;display: block;text-align: center;line-height:2.25rem;color: #fff;font-size:0.9rem;padding:0 10px 0 0;}
#toolbarnav h1 a{
    display: block;
    overflow: hidden;
    padding: 0.5rem 0px;
    padding-left: 10px;
}
#toolbarnav h1 a img{
    display: block;
    height: 1.25rem;
}
.searchIcon{
    display: block;
    width: 2.25rem;
    overflow: hidden;
    position: relative;
    background: url(/subsiteSrc/ynbyM/images/search.png) no-repeat center center;
    background-size: auto 0.9rem;
    margin-right: 2.25rem;
}
#go-back{
	position: absolute;
	top:0;
	width:2rem;
	height:2.25rem;
	display:block;
	left:0;
	font-size:1.1rem;
	opacity:0.7;
	}
#go-back span{color:#fff;font-size:1.4rem;display:block;height:2.25rem;margin-left:10px;line-height: 2.25rem;}

.menuBt{
    display: block;
    position:fixed;
    width:2.25rem;
	height:2.25rem;
    right: 0px;
    top:0px;
	overflow:hidden;
    z-index: 100;
    padding: 1.12rem 0.5rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: background 0.3s linear;
    -o-transition: background 0.3s linear;
    transition: background 0.3s linear;
}
.menuBt.shadow{
    background: rgba(0,0,0,0.5);
}
.menuBt span{
    display: block;
    position: relative;
    width:100%;
    height:0.1rem;
    background-color: #fff;
    transition:0.3s;
    border-radius: 0.1rem;
}
.menuBt span:before,
.menuBt span:after {
    content: '';
    display: block;
    width:100%;
    height:0.1rem;
    position: absolute;
    background: #fff;
    transition:0.3s;
    border-radius: 0.1rem;
    position: absolute;
    left: 0px;
}
.menuBt span:before {top: -0.35rem;}
.menuBt span:after {top: 0.35rem}

.menuBt.close span {background: rgba(0, 0, 0, 0);}
.menuBt.close span:before {
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.menuBt.close span:after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#sub-btn{display: block;width:2.25rem;height:2.25rem;position: absolute;right: 0;top: 0;}
#sub-btn span{font-size:1rem;color: #fff;margin:12px 0 0 16px;display: block;}

#articleTool{
	position:relative;
	display: block;height:45px;width: 100%;max-width:100%;position: relative;color:#333;background:#f9fafb;
	}
#articleTool:after {
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
	display:none;
}
#articleTool h1{
	overflow:hidden;
	text-align: center;
	display: block;
	text-align: center;
	line-height:2.2rem;
	color:#333;
	font-size:0.8rem;
	margin:0 40px;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: content;
	-moz-background-clip: content;
	background-clip: content;
	}
#articleTool #go-back span{ color:#333;}

/**
 * 一级导航
 * @author 杨朝杰
 * @return
 */
.closeMenu{
    display: block;
    height: 2.25rem;
    overflow: hidden;
    background: url(/subsiteSrc/ynbyM/images/close.png) no-repeat calc(100% - 0.5rem) center;
    background-size: auto 0.75rem;
    -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
}
#mobileMenu header{position:relative;display:block;background:url(/subsiteSrc/ynbyM/images/cloud_bg2.png) no-repeat center bottom; background-size:cover;height:2.25rem;position:relative;}
#mobileMenu header h1{text-align: center;padding: 0.25rem 0px;color:#fff;font-size:16px; position:relative;}
#mobileMenu header h1 img{ height:1.75rem;}
/*#mobileMenu header:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom:0px;
    width: 100%;
    height: -1px;
    border-bottom: 1px solid #d3e8f9;
    -webkit-transform-origin: scaleY(0.3);
    transform-origin: scaleY(0.3);
    -webkit-transform: scaleY(0.3);
    transform: scaleY(0.3);
    display:none;
}*/
.menu_ul{
    width:100%;
    overflow:hidden;
    /*overflow-y: auto;
    height: 100vh;*/
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-overflow-scrolling: touch;
}
.menu_ul li{
    display: block;
    overflow:hidden;
    position: relative;
}
.menu_ul li:after{
    content: "";
    position: absolute;
    left:0;
    bottom:0px;
    width:100%;
    height: 1px;
    background: #dadada;
    -webkit-transform-origin: scaleY(0.5);
    transform-origin: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.menu_ul li:last-child:after{
    display: none;
}
.menuTop{
    overflow: hidden;
    height:2.25rem;
    line-height:2.25rem;
    display: flex;
    padding: 0px 0.5rem;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.menu_a{
    font-size:0.7rem;
    display: block;
    flex: 1;
    color:#666;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position:relative;
    position: relative;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.menu_a span{
    color:#666;
    font-size:0.7rem;
    display: block;
    flex:1;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    text-align: center;
}
.slideDownBt{
    display: block;
    width: 2.25rem;
    height: 2.25rem;
    position: relative;
}
.slideDownBt:after{
    display: none;
    content: "";
    overflow: hidden;
    width: 0.5rem;
    height: 0.1rem;
    position: absolute;
    right: 0px;
    top: 50%;
    background: #999;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}
.slideDownBt:before{
    display: none;
    content: "";
    overflow: hidden;
    width: 0.5rem;
    height: 0.1rem;
    position: absolute;
    right: 0px;
    top: 50%;
    background: #999;
    -webkit-transform:  translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.slideDownBt.show:after,
.slideDownBt.show:before{
    display: block;
}
#mobileMenu ul li.hover .slideDownBt:after{
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
#mobileMenu ul li.hover .slideDownBt:before{
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    -o-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}
#mobileMenu ul li.active .slideDownBt:after{
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}
#mobileMenu ul li.active .slideDownBt:before{
    -webkit-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
}
.menu_a i{
    display: none;
    font-size: 0.9rem;
    color:#666;
    line-height: 2rem;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
#mobileMenu ul li.hover .menu_a span,
#mobileMenu ul li.hover .menu_a i,
#mobileMenu ul li.hover .menu_a:after{
    color:#fff;
}
#mobileMenu ul li.hover .menuTop{
    background: #55a66f;
}
#mobileMenu ul li.hover .menuTop em:after,
#mobileMenu ul li.hover .menuTop em:before{
    background: #fff;
}
/*#mobileMenu ul li.hover a:after {
    content: " ";
    position: absolute;
    left:0;
    bottom:0px;
    width:100%;
    height: -1px;
    border-bottom: 1px solid #4fb9eb;
    -webkit-transform-origin: scaleY(0.3);
    transform-origin: scaleY(0.3);
    -webkit-transform: scaleY(0.3);
    transform: scaleY(0.3);
}
#mobileMenu ul li.hover .menu_a{background:#d6000f;}*/
#mobileMenu ul li.hover .menu_a i{
    transform: rotate(90deg);
}
#mobileMenu ul li.hover.active .menu_a i{
    transform: rotate(0deg);
}
.menu_dl dd.hover .subMenu_a{
    color:#55a66f;
}
.menuDiv{
    display: none;
    overflow: hidden;
    background: #f9f9f9;
}
.menu_dl{
    overflow: hidden;
    padding: 0.25rem 0px;
}
.menu_dl dd{
    overflow: hidden;
    height: 1.75rem;
    line-height: 1.75rem;
}
.subMenu_a{
    display: block;
    overflow: hidden;
    font-size: 0.6rem;
    color:#666;
    position: relative;
    padding-right: 2.25rem;
    text-align: center;
    padding-left: 0.5rem;
}
.subMenu_a i{
    font-size: 0.7rem;
    padding-right: 0.25rem;
}
/*.subMenu_a:before{
    display: block;
    content: "";
    overflow: hidden;
    width: 0.15rem;
    height: 0.15rem;
    position: absolute;
    left: 0px;
    top: 50%;
    background: #666;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}*/
.menu_dl dd.hover .subMenu_a:before{
    background: #d6000f;
}

.search{
    height: 1.75rem;
    overflow: hidden;
    position: relative;
    line-height: 1.75rem;
    margin: 0px 0.75rem 0.4rem 0.75rem; 
}
.search:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #55a66f;
    position: absolute;
    left: 0px;
    bottom: 0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.searchDiv{
    flex: 1;
    overflow: hidden;
}
.searchInp2{
    display: block;
    width: 100%;
    height: 1.75rem;
    overflow: hidden;
    line-height: 1.75rem;
    border:none;
    background: none;
    outline: none;
    font-size: 0.6rem;
    color:#666;
}
.searchBt{
    display: block;
    width: 1.75rem;
    height: 1.75rem;
    overflow: hidden;
    background: url(/subsiteSrc/ynbyM/images/search_h2.png) no-repeat center center;
    background-size: auto 0.9rem;
}
/**
 * 二级导航
 */ 
.subNavBox{
    overflow: hidden;
    height: 2.0rem;
    display: flex;
    position: relative;
}
.subNav_ul{
    overflow-y: hidden;
    overflow-x: auto;
    flex: 1;
    font-size: 0px;
    word-break:keep-all;
    white-space:nowrap;
    background: #fff;
    position: relative;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-overflow-scrolling: touch;
}
.subNav_ul li{
    display: inline-block;
    overflow: hidden;
    padding: 0px 0.25rem;
    height: 2.0rem;
    line-height: 2.0rem;
}
.subNav_ul li a{
    display: block;
    overflow: hidden;
    font-size: 0.6rem;
    color:#666;
    padding: 0px 0.25rem;
}
.subNav_ul li.hover a{
     color: #55a66f;
}
.fa.subNavIcon{
    display: none;
    height: 2.0rem;
    line-height: 2.0rem !important;
    overflow: hidden;
    font-size: 0.9rem !important;
    color:#666;
    padding: 0px 0.25rem;
    /*background: #fafafa;*/
    -webkit-animation: subNavMove 1s linear infinite;
    -o-animation: subNavMove 1s linear infinite;
    animation: subNavMove 1s linear infinite;
}
@keyframes subNavMove{
    0%  {transform: translateX(0px);opacity: 0;}
    1% {transform: translateX(0px);opacity: 1;}
    90% {transform: translateX(0.75rem);opacity: 1;}
    91% {transform: translateX(0.75rem);opacity: 0;}
    100%{transform: translateX(0px);opacity: 0;}
}
.locaMenu{
    position: relative;
    z-index: 9;
}
.loca_a{
    display: flex;
    height: 2rem;
    overflow: hidden;
    line-height: 2rem;
    font-size: 0.7rem;
    color:#333;
    padding: 0px 10px;
    background: #fff;
    position: relative;
    z-index: 5;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.loca_a span{
    display: block;
    flex: 1;
    overflow: hidden;
}
.loca_a i{
    display: block;
    width: 1.0rem;
    height: 2.0rem;
    overflow: hidden;
    text-align: center;
    line-height: 2.0rem;
    font-size: 1.0rem;
    color:#666;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.loca_a.shadow{
    -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.1);
    box-shadow: 0px 3px 3px rgba(0,0,0,0.1);
}
.loca_a.hover i{
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.loca_ul{
    display: none;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 2.0rem;
    max-height: calc(100vh - 9.25rem);
    background: #fff;
    z-index: 4;
    overflow-y:scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}
.loca_ul li{
    display: block;
    height: 1.75rem;
    line-height: 1.75rem;
    overflow: hidden;
    position: relative;
}
.loca_ul li:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    right: 0px;
    top:0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
    z-index: 2;
}
.loca_ul li a{
    display: block;
    overflow: hidden;
    font-size: 0.6rem;
    color:#666;
    padding: 0px 0.5rem;
}
.loca_ul li.hover a{
    color:#55a66f;
}
#thirdMenuBg{
    display: none;
    width: 100%;
    height: 200vh;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}

/**
 * 牢靠的底部
 * @author 杨朝杰
 * @return
 */	
.footerBar{
	font-size:0.65rem;
	overflow: hidden;
	color: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-clip: content;
	-moz-background-clip: content;
	background-clip: content;
	width: 100%;
	background:#fff;
    box-shadow: 1px 0 4px #d9d8d8;
}
.foot_dl{
    height:2.25rem;
    overflow: hidden;
    display: flex;
}
.foot_dl dd{
    flex: 1 0 0;
    overflow: hidden;
}
.foot_a{
    display: block;
    overflow: hidden;
    padding-top: 0.2rem;
}
.foot_a span{
    display: block;
    overflow: hidden;
    height: 0.9rem;
}
.foot_dl dd:nth-child(1) .foot_a span{
    background: url(/subsiteSrc/ynbyM/images/footIcon1.png) no-repeat center center;
    background-size: auto 0.9rem;
}
.foot_dl dd:nth-child(1).hover .foot_a span{
    background: url(/subsiteSrc/ynbyM/images/footIcon1_h.png) no-repeat center center;
    background-size: auto 0.8rem;
}
.foot_dl dd:nth-child(2) .foot_a span{
    background: url(/subsiteSrc/ynbyM/images/footIcon2.png) no-repeat center center;
    background-size: auto 0.85rem;
}
.foot_dl dd:nth-child(2).hover .foot_a span{
    background: url(/subsiteSrc/ynbyM/images/footIcon2_h.png) no-repeat center center;
    background-size: auto 0.85rem;
}
.foot_dl dd:nth-child(3) .foot_a span{
    background: url(/subsiteSrc/ynbyM/images/footIcon3.png) no-repeat center center;
    background-size: auto 0.85rem;
}
.foot_dl dd:nth-child(3).hover .foot_a span{
    background: url(/subsiteSrc/ynbyM/images/footIcon3_h.png) no-repeat center center;
    background-size: auto 0.85rem;
}
.foot_dl dd:nth-child(4) .foot_a span{
    background: url(/subsiteSrc/ynbyM/images/footIcon4.png) no-repeat center center;
    background-size: auto 0.85rem;
}
.foot_dl dd:nth-child(4).hover .foot_a span{
    background: url(/subsiteSrc/ynbyM/images/footIcon4_h.png) no-repeat center center;
    background-size: auto 0.85rem;
}
.foot_a i{
    display: block;
    overflow: hidden;
    text-align: center;
    font-size: 0.6rem;
    color:#666;
    padding-top: 0.1rem;
}
.foot_dl dd.hover .foot_a i{
    color:#55a66f;
}
/**
 * 返回顶部
 * @author 杨朝杰
 * @return
 */	
#scrollTop{
    width:1.75rem;
    height:1.75rem;
    line-height:1.75rem;
    text-align:center;
    border-radius:100%;
    background:rgba(255,255,255,0.9);
    position: fixed;
    right:0.5rem;
    bottom:3.0rem;
    z-index:5;
    -webkit-box-shadow:0px 0px 5px rgba(153,153,153,0.5);    
    -moz-box-shadow:0px 0px 5px rgba(153,153,153,0.5);     
    box-shadow:0px 0px 5px rgba(153,153,153,0.5);
    -webkit-transform: translateX(2.5rem) rotate(180deg);
    -ms-transform: translateX(2.5rem) rotate(180deg);
    -o-transform: translateX(2.5rem) rotate(180deg);
    transform: translateX(2.5rem) rotate(180deg);
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
#scrollTop em{font-size:1.3rem;color:#666;padding:3px 0 0 0;}
#scrollTop.show{
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    -o-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
}
/**
 * page
 * @author 杨朝杰
 * @return
 */
.ajaxLoad{color:#666;height:2rem;line-height:2rem;text-align:center;clear:both;position:relative;background:#fff;margin:5px 0 0 0; font-size:0.7rem;}
.ajaxLoad i{font-size:0.8rem;margin:0 5px 0 0;color:#fc8b1c;}
#toDown{
    height: 2rem;
    line-height: 2rem;
    background: #fff;
    text-align: center;
    position: relative;
    font-size: 0.6rem;
    color:#999;
    text-align: center;
    display: none;
}
#toDown span{
    display: inline-block;
    padding: 0px 0.75rem;
    position: relative;
}
#toDown span:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 4.0rem;
    height: 0.05rem;
    position: absolute;
    right: 100%;
    top: 50%;
    background: #eee;
    -webkit-transform: translateY(-50%;);
    -ms-transform: translateY(-50%;);
    -o-transform: translateY(-50%;);
    transform: translateY(-50%;);
}
#toDown span:before{
    display: block;
    content: "";
    overflow: hidden;
    width: 2.0rem;
    height: 0.05rem;
    position: absolute;
    left: 100%;
    top: 50%;
    background: #eee;
    -webkit-transform: translateY(-50%;);
    -ms-transform: translateY(-50%;);
    -o-transform: translateY(-50%;);
    transform: translateY(-50%;);
}
/**
 * 文章阅读页
 * @author 杨朝杰
 * @return
 */	
.articleBox{line-height:1.5rem;color:#454545;padding:10px;font-size:0.75rem;background:#fff;}
.articleBox img{max-width:100%;}
.articleTitle{
	font-size: 0.9rem;
    color: #333333;
    text-align: center;
    font-weight: bold;
    padding:10px 50px 0 50px;
    line-height: 1.5rem;
	}
.articleTime{display: block;clear: both;text-align: center;color: #999;font-size:0.6rem;padding:0 0 5px 0;}

.articleTop{
	overflow:hidden;
	background:#f9fafb;
	padding:10px 0;
	}
.articleTop .articleTitle{
	font-size:18px;
	color:#333333;
	text-align:center;
	font-weight:bold;
	padding:0 50px;
	line-height:30px;
	}
.articleTop .articleTime{
	text-align:center;
	padding:10px 0 0 0;
	}

.articleHand{
    clear:both;
    font-size:0.75rem;
    padding:0 0px 20px 0;
    overflow: hidden;
    background: #fff;
    }
.articleHand a{
    display:block;
    line-height:1.6rem;
    padding:0 20px 0 10px;
    float:left;
    clear: both;
}
.articleHand a i{
	padding:0 5px 0  0;
	}
.articleHand a.word{color:#37a6ff !important; }
.articleHand a.ppt{color:#ff7735 !important;}
.articleHand a.excel{color:#15bf44 !important; }
.articleHand a.pdf{color:#1369c0 !important; }
.articleHand a.zip{color:#ff9779 !important; }

.videoCon{
	position:absolute;
	top:205px;
	bottom:0;
	overflow-y:auto;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-overflow-scrolling: touch;
	}
.videoCon .articleTitle{
	font-size:18px;
	color:#333333;
	text-align:left;
	font-weight:bold;
	padding:5px 10px 0 10px;
	line-height:30px;
	}
.videoCon .articleTime{
	text-align:left;
	padding:0 0 0 10px;
	}
	
.audiojs{
	width:40px;
	height:40px;
	border-radius:100%;
	background:url(/subsiteSrc/ynbyM/audiojs/play.png) no-repeat center center;
	background-size:cover; 
	margin:2px 10px 0 0;
	position:relative;
	z-index:9;
	}
.audiojs.playing{
	width:40px;
	height:40px;
	border-radius:100%;
	background:url(/subsiteSrc/ynbyM/audiojs/play2.png) no-repeat center center;
	background-size:cover;
	}
.audiojs .scrubber{ display:none;}
.audiojs .time{ display:none;}
.audiojs .play-pause {
	width: 25px;
	height: 40px;
	padding:0 6px;
	margin: 0px;
	float: left;
	overflow: hidden;
}
.articelImgSlide{
    overflow: hidden;
}
#articelImgSlide img{
    display: block;
    max-width: 100%;
}
#articelImgSlide{
    /*padding-bottom: 30px;*/
}
#articelImgSlide .swiper-pagination{
    bottom: 5px;
}
.articelImgSlide .swiper-button-prev{
    left: 0px;
    background: url(/subsiteSrc/ynbyM/images/aboutPrev3.png) no-repeat center center;
    background-size: auto 30px;
}
.articelImgSlide .swiper-button-next{
    right: 0px;
    background: url(/subsiteSrc/ynbyM/images/aboutNext3.png) no-repeat center center;
    background-size: auto 30px;
}
.articelImgSlide .swiper-pagination-bullet{background: #eee;opacity: 1;}
.articelImgSlide .swiper-pagination-bullet-active{background: #007aff;}
/**
 * 分享
 * @author 杨朝杰
 * @return
 */
.shareBt{display: inline-block;width:1rem;position: relative;}
.shareClose{line-height:2rem;text-align:center;padding:.15rem 0 0 0;font-size:0.8rem;}
.shareBt:after{display: block;content: "";overflow: hidden;width: 100%;padding-top: 100%;background: url(/subsiteSrc/ynbyM/images/share/share.png) no-repeat center center;background-size: 100% 100%;position: absolute;left: 50%;bottom:-.2rem;}
.shareBox{width:100%;overflow: hidden;background: #fff;position: fixed;left: 0px;bottom:-100%;z-index: 10000;-webkit-transition: bottom 0.8s;-o-transition: bottom 0.8s;transition: bottom 0.8s;padding:0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
.shareBox.show{bottom:0px;}
.shareCont{overflow: hidden;padding:0.5rem 0px 0.25rem;}
.boxShadow{position: fixed;left: 0px;top:0px;width: 100%;height: 100%;overflow: hidden;background: rgba(0,0,0,0.6);z-index: 999;display: none;}
.wxSha{position: fixed;left: 0px;top:0px;width: 100%;height: 100%;overflow: hidden;background: rgba(0,0,0,0.6) url(../images/share/weChatShare.png) no-repeat center 0rem;background-size: auto 16rem;z-index: 99999999;display: none;}
.shareC .bshare-custom{display: flex; padding: 0.8rem .5rem;}
.shareC .bshare-custom .item{flex: 1;text-align: center;}
.shareC .bshare-custom .item span{display: block;line-height: 1.5rem;}
.shareC .bshare-custom a {display: inline-block;height: 2rem;width: 2rem;padding: 0;background-size: auto 1.95rem !important;}
.shareC .bshare-custom .bshare-sinaminiblog {background: url(/subsiteSrc/ynbyM/images/share/shareBt1.png) no-repeat center center;}
.shareC .bshare-custom .bshare-qqim {background: url(/subsiteSrc/ynbyM/images/share/shareBt6.png) no-repeat center center;}

.shareC .bshare-custom .bshare-qzone {background: url(/subsiteSrc/ynbyM/images/share/shareBt3.png) no-repeat center center;}
.shareC .bshare-custom .bshare-douban{background: url(/subsiteSrc/ynbyM/images/share/shareBt4.png) no-repeat center center;}
.shareC .bshare-custom .bshare-weixin {background: url(/subsiteSrc/ynbyM/images/share/shareBt5.png) no-repeat center center;}
.weChatShareTip {display: none;width: 100%;height: 100%;overflow: hidden;background: rgba(0, 0, 0, 0.5) url(../images/common/share/weChatShare.png) no-repeat calc(100% - 30px) 10px;background-size: 90% auto;position: fixed;left: 0px;top: 0px;z-index: 9999999;}
.shareParent .shareItem{width: 20%;}

/*.bdsharebuttonbox a.bds_weChat{
    display: none;
}*/
.bdsharebuttonbox a.bds_weChat:before{background: url(/subsiteSrc/ynbyM/images/share/shareBt5.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_tsina:before{background: url(/subsiteSrc/ynbyM/images/share/shareBt1.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_tqq:before{background: url(/subsiteSrc/ynbyM/images/share/shareBt2.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_qzone:before{background: url(/subsiteSrc/ynbyM/images/share/shareBt3.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_douban:before{background: url(/subsiteSrc/ynbyM/images/share/shareBt4.png) no-repeat center center;background-size:100%;}
.bdsharebuttonbox a.bds_sqq:before{background: url(/subsiteSrc/ynbyM/images/share/shareBt6.png) no-repeat center center;background-size:100%;}
.weChatShareTip{
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.5) url(../images/share/weChatShare.png) no-repeat calc(100% - 30px) 10px;
    background-size: 90% auto;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9999999;
}
/**
 * 音乐播放器
 * @author 杨朝杰
 * @return
 */
.audio{margin:0 50px;padding:10px 0 10px 0;}
.audio-tips{margin-top:10px; color: #b1b1b1; text-align: center; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;}
.audio-detail{padding:5px 10px; display: -webkit-box; display: -ms-flexbox; display: flex; background:#f8f8f8;position:relative;}
.audio-detail:after{content: " "; width: 200%; height: 200%; position: absolute; top: 0; left: 0; border: 1px solid #e6e6e6; box-sizing: border-box; -webkit-transform: scale(.5); transform: scale(.5); -webkit-transform-origin: 0 0; transform-origin: 0 0;z-index:1;}
.audio .info{-webkit-box-flex: 1; -ms-flex: 1 0; flex: 1 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; overflow: hidden;line-height:45px;}
.audio .info p{margin: 0; font-size: 15px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #666; text-indent: 0;}
.audio .info .audio-title{-webkit-box-flex: 1.5; -ms-flex: 1.5; flex: 1.5; line-height: 24px;font-size:14px;}
.audio .info .audio-desc{-webkit-box-flex: 1; -ms-flex: 1; flex: 1; line-height: 16px;color:#999 !important;font-size:12px !important;}
.audio .info .audio-desc span{padding:0 15px 0 0;color:#ff000;}

/**
 * 牢靠的底部2
 * @author 杨朝杰
 * @return
 */ 
.footerBar2{
    font-size:12px;
    overflow: hidden;
    color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-background-clip: content;
    -moz-background-clip: content;
    background-clip: content;
    width: 100%;
    height:45px;
    background:#fff;
    position:relative;
}
.footerBar2:after{
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border-top:1px solid #ededed;
    box-sizing: border-box;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index:1;
    }
.footerBar2 .shareBt:after{ display:none;}

.footerBar2 div{
    overflow:hidden;
    position:relative;
    z-index:2;
    }
.phoneBt{
    width:30%;
    float:right;
    }
.phoneBt a {
    width: 100%;
    display: block;
    line-height: 45px;
    background: #ff7800;
    color: #fff !important;
    text-align: center;
}
.goBack2{
    width:16%;
    float:left;
    }
.goBack2 a{
    display: block;
    height:45px;
    background: url(/subsiteSrc/ynbyM/images/jt6.png) no-repeat 10px center;
    background-size: 26px;
    color: #666 !important;
    text-align: center;
    }
.marker, .shareDiv{
    float:right;
    line-height:45px;
    font-size:14px;
    padding:0 15px 0 0;
    }

.shareDiv .shareBt{ width:100%;}

.marker span, .shareDiv span{padding:0 0 0 6px;}
.marker em, .shareDiv em{color:#999;}


/**+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++以上为模板框架部分（只管少改）+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.jqthumb{
    position: absolute;
    left: 0px;
    top: 0px;
}
/*
* 全文 kis2
*/
.textList_dl{
    background: #fff;
    padding: 0px 0.5rem;
    overflow: hidden;
}
.textList_dl dd{
    position: relative;
    padding: 0.5rem 0px;
}
.textList_dl dd:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0px;
    bottom: 0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
/*
* 全图1 kis2
*/
.img_dl1{
    overflow: hidden;
    padding: 0.25rem;
}
.img_dl1 dd{
    width: 50%;
    overflow: hidden;
    float: left;
    padding: 0.25rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.img_dl1 .imgDiv{
    padding-top: 54.0023895%;
}
.img_dl1 .list_a{
    background: #fff;
    overflow: hidden;
    text-align: center;
}
.img_dl1 .listDeta{
    padding: 0.25rem 0.5rem;
}
/*
* 全文列表2 kis2
*/
.img_dl2{
    padding: 0.25rem;
    overflow: hidden;
}
.img_dl2 dd{
    width: 50%;
    float: left;
    padding: 0.25rem;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.img_dl2 .imgDiv{
    padding-top: 133.333333333%;
}
.img_dl2 .listDeta{
    padding: 0.25rem 0.5rem;
    background: #fff;
}
.img_dl2 .listDeta .listTit{
    text-align: center;
}
/*
* 全图列表3 kis2
*/
.eyes{
    background: rgba(0,0,0,0.2) url(../images/eyes.png) no-repeat center center;
    background-size: auto 0.75rem;
}

/*
* 全图列表4 kis2
*/
.img_dl4{
    padding: 0.25rem;
    overflow: hidden;
}
.img_dl4 dd{
    width: 50%;
    overflow: hidden;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.25rem;
}
.img_dl4 .list_a{
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}
.img_dl4 .listDeta{
    padding: 0.25rem;
    text-align: center;
}
.autoImg{
    position: relative;
    overflow: hidden;
    padding-top: 66.66666667%;
    background: #fafafa;
}
.autoImg img{
    max-width: 100%;
    max-height: 100%;
    left: 50%;
    top: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

/*
* 视频列表 kis2
*/
.img_dl5{
    overflow: hidden;
    padding: 0.25rem;
}
.img_dl5 dd{
    width: 50%;
    overflow: hidden;
    float: left;
    padding: 0.25rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.img_dl5 .imgDiv{
    padding-top: 54.0023895%;
}
.img_dl5 .list_a{
    background: #fff;
    overflow: hidden;
    text-align: center;
}
.img_dl5 .listDeta{
    padding: 0.25rem 0.5rem;
}
.img_dl5 .play{
    background-size: auto 1.5rem;
}
/*
* 图文列表1 kis2
*/
.txtImg_dl1{
    overflow: hidden;
    padding: 0px 0.5rem;
    background: #fff;
}
.txtImg_dl1 dd{
    padding: 0.5rem 0px;
    position: relative;
    overflow: hidden;
}
.flex_dl dd .list_a{
    display: flex;
}
/*.flex_dl dd:last-child:after{
    display: none;
}*/
.txtImg_dl1 dd:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0px;
    bottom:0px;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
    z-index: 2;
}
.txtImg{
    width: 7.0rem;
    overflow: hidden;
    margin-left: 0.5rem;
}
.txtImg_dl1 .imgDiv{
    padding-top: 60.7142857%;
}
.flex_dl .listDeta{
    flex: 1;
}
.txtImg_dl1 .listIntr{
    height: 1.75rem;
}
.txtImg_dl1 .listTime{
    font-size: 0.6rem;
}
/*
* 图文列表 kis2
*/
.txtImg_dl2{
    padding: 0.25rem;
    overflow: hidden;
}
.txtImg_dl2 dd{
    padding: 0.25rem;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.txtImg_dl2 .list_a{
    background: #fff;
    border-radius: 0.2rem;
}
.txtImg_dl2 .imgDiv{
    padding-top: 54.0023895%;
}
.txtImg_dl2 .listDeta{
    padding: 0.5rem;
}
.txtImg_dl2 .listIntr{
    color:#999;
}
/*
* 全文
*/
.list_dl{
    overflow: hidden;
    background: #fff;
    padding: 0.5rem;
}
.list_dl dd{
    height: 1.75rem;
    line-height: 1.75rem;
    overflow: hidden;
}
.list_dl dd .list_a{
    display: flex;
    overflow: hidden;
}
.list_dl dd .listName{
    flex: 1;
}
.list_dl dd .listTime{
    margin-left: 0.5rem;
}
/**+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 首页 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++/
/*
* banner
*/
.banner{
    overflow: hidden;
    position: relative;
    padding-top: 66.6666667%;
}
.bannerCont{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
}
.bannerSwiper{
    height: 100%;
}
.banner_a{
    display: block;
    height: 100%;
    width: 100%;
}
.bannerSwiper .swiper-pagination span{
    width: 0.4rem;
    height: 0.4rem;
    background: #d7d7d7;
    opacity: 1;
    border-radius: 0.4rem;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.bannerSwiper .swiper-pagination .swiper-pagination-bullet-active{
    background: #55a66f !important;
}
.banShadow{
    width: 210%;
    height: 200%;
    position: absolute;
    left: 50%;
    bottom: -187%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 200%;
    -moz-border-radius: 200%;
    -ms-border-radius: 200%;
    -o-border-radius: 200%;
    border-radius: 200%;
    background: #fff;
    z-index: 2;
}

/*
* 通知通告 kis2
*/
.notice{
    overflow: hidden;
    background: #fff;
    display: flex;
    padding: 0.5rem;
}
.noticeL{
    width: 2.0rem;
    position: relative;
    overflow: hidden;
    font-size: 0.7rem;
    color:#55a66f;
    line-height: 1.0rem;
    padding: 0px 0.5rem 0px 0px;
    margin-right: 0.5rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.noticeL:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 1px;
    height: 100%;
    background: #ddd;
    position: absolute;
    right: 0px;
    top: 0px;
    -webkit-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    -o-transform: scaleX(0.5);
    transform: scaleX(0.5);
}
.noticeSwiper{
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 2.0rem;
}
.noticeSwiper .list_a{
    height: 2.0rem;
}

/*
* 新闻中心 kis2
*/
.news{
    padding: 0.5rem;
    overflow: hidden;
    background: #fff;
}
.newsTit{
    height: 2.0rem;
    overflow: hidden;
    line-height: 2.0rem;
    display: flex;
}
.newsTitL{
    overflow: hidden;
    font-size: 0.8rem;
    color:#333;
    flex: 1;
}
.newsMore{
    display: block;
    font-size: 1.0rem;
    color:#333;
    overflow: hidden;
}
.indNews_a{
    display: block;
    padding-top: 54.0023895%;
}
.indNewsName{
    width: 100%;
    height: 2rem;
    line-height: 2rem;
    overflow: hidden;
    font-size: 0.6rem;
    color:#fff;
    padding: 0px 0.5rem;
    background: rgba(0,0,0,0.7);
    position: absolute;
    left: 0px;
    bottom: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.indNewsSwiper.swiper-container-horizontal>.swiper-pagination-bullets,
.indNewsSwiper .swiper-pagination-custom,
.indNewsSwiper .swiper-pagination-fraction{
    left: auto;
    right: 1.0rem;
    width: auto !important;
    z-index: 9;
    bottom: 1.0rem;
}
.indNewsSwiper .swiper-slide{
    overflow: hidden;
}
.swiperBt{
    position: absolute;
    right: 1rem;
    bottom: 0px;
    z-index: 9;
    padding: 0.75rem 0px;
}
.swiperBt .swiper-pagination{
    position: relative;
}
.swiperBt .swiper-pagination span{
    float: left;
    margin: 0px 0.15rem;
}
.swiperBt .swiper-pagination-bullet{
    background: #fff;
    opacity: 1;
}
.swiperBt .swiper-pagination-bullet-active{
    background: #f39800;
}
.swiperBt .prev{
    display: block;
    overflow: hidden;
    position: absolute;
    left: -0.55rem;
    top: 50%;
    width: 0.3rem;
    height: 0.55rem;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(/subsiteSrc/ynbyM/images/trangleLeft_h.png) no-repeat center center;
}
.swiperBt .next{
    display: block;
    overflow: hidden;
    position: absolute;
    right: -0.55rem;
    top: 50%;
    width: 0.3rem;
    height: 0.55rem;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(/subsiteSrc/ynbyM/images/trangleRight_h.png) no-repeat center center;
}
.indNewsSwiper .swiper-button-prev,
.indNewsSwiper .swiper-button-next{
    display: none;
}
.news_dl{
    overflow: hidden;
}
.news_dl dd{
    padding: 0.25rem 0px;
    overflow: hidden;
}
.news_dl dd .list_a{
    display: flex;
}
.news_dl .listName{
    flex: 1;
}
.news_dl .listName i{
    font-size: 0.5rem;
    color:#b5b5b5;
    padding-right: 0.25rem;
}
.news_dl .listTime{
    padding-left: 0.5rem;
}

/*
* 品牌产品 kis2
*/
.brand{
    overflow: hidden;
}
.brandTit{
    height: 1.5rem;
    overflow: hidden;
    line-height: 1.5rem;
    text-align: center;
    margin: 0.5rem 0.5rem 0rem 0.5rem;
}
.brandTit span{
    position: relative;
    font-size: 0.8rem;
    color:#333;
    padding: 0px 0.5rem;
}
.brandTit span:before{
    display: block;
    content: "";
    overflow: hidden;
    width: 100vw;
    height: 1px;
    background: #ddd;
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.brandTit span:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100vw;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.brand_dl{
    overflow: hidden;
    padding: 0.25rem;
}
.brand_dl dd{
    width: 33.33333333%;
    overflow: hidden;
    float: left;
    padding: 0.25rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.brand_dl .list_a{
    background: #fff;
    text-align: center;
    padding: 0.5rem;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
}
.brand_dl span{
    display: block;
    width: 50%;
    padding-top: 50%;
    overflow: hidden;
    margin: 0px auto;
}
.brand_dl i{
    display: block;
    font-size: 0.7rem;
    color:#666;
    font-style: normal;
    line-height: 1.0rem;
    height: 1.0rem;
}
.brand_dl em{
    display: block;
    font-size: 0.5rem;
    color:#999;
    font-style: normal;
    line-height: 1.0rem;
    height: 1.0rem;
}

/*
* 我不知道是啥 kis2
*/
.iDontKnow{
    overflow: hidden;
    padding: 0.5rem;
    background: #fff;
}
.iDontKnowSwiper{
    overflow: hidden;
}
.iDontKnow_a{
    padding-top: 50%;
    overflow: hidden;
    display: block;
    position: relative;
}
.iDontKnowCont{
    padding: 0px 1.0rem;
    overflow: hidden;
}
.iDontKnowCont span{
    display: block;
    overflow: hidden;
    font-size: 0.7rem;
    color:#fff;
    line-height: 1.0rem;
}
.iDontKnowCont i{
    display: block;
    overflow: hidden;
    font-size: 0.5rem;
    color:#fff;
    line-height: 1.0rem;
}
.iDontKnowCont p{
    display: inline-block;
    height: 1.75rem;
    line-height: 1.75rem;
    overflow: hidden;
    font-size: 0.6rem;
    color:#666;
    padding: 0px 1.0rem;
    background: #edebe3;
    font-style: normal;
}
.iDontKnowCont p em{
    font-style: normal;
    padding-left: 0.5rem;
}

/*
* 视频 begin
*/
.video{
    padding: 0.5rem;
    overflow: hidden;
    background: #fff;
}
.videoCont{
    overflow: hidden;
    position: relative;
    padding-top: 50%;
}
.videoCont video{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    object-position: center center;
}
.icon{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 3;
}
.play{
    background: rgba(0,0,0,0.2) url(../images/play.png) no-repeat center center;
    background-size: auto 2.0rem;
}

/*
* 人才招聘 kis2
*/
.recruitMreo{
    position: relative;
    width: 5.0rem;
    height: 1.5rem;
    text-align: center;
    font-size: 0.7rem;
    color:#666;
    line-height: 1.5rem;
}

/*
* 应聘详情页 kis2
*/
.recruitmentView{
    overflow: hidden;
    background: #fff;
    padding: 0.5rem;
}
.goJoin{
    display: block;
    width: 5.0rem;
    height: 1.75rem;
    overflow: hidden;
    text-align: center;
    font-size: 0.7rem;
    color:#fff;
    background: #55a66f;
    margin: 0px auto;
    line-height: 1.75rem;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}
.recruitmentView .articleBox{
    position: relative;
}

/*
* 应聘表单 kis2
*/

.recruitBt{
    display: block;
    margin:0px 0.5rem;
    height: 1.75rem;
    font-size: 0.6rem;
    color:#fff !important;
    text-align: center;
    line-height: 1.75rem;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
    background: #ff7e00;
}

/*
* form kis2
*/
.form_dl{
    overflow: hidden;
    padding: 0.25rem 0.5rem;
    background: #fff;
}
.form_dl dd{
    padding: 0.25rem 0px;
    position: relative;
}
.form{
    position: relative;
}
.formL{
    overflow: hidden;
    position: relative;
    z-index: 3;
}
.tip{
    display: block;
    width: 0.75rem;
    text-align: right;
    overflow: hidden;
    font-size: 0.7rem;
    color:#ff0000;
    line-height: 1.75rem;
}
.formC{
    overflow: hidden;
    position: relative;
    z-index: 3;
}
.formDiv{
    overflow: hidden;
    padding: 0px 0.5rem;
    position: relative;
}
.formInp{
    display: block;
    width: 100%;
    height: 2.0rem;
    overflow: hidden;
    line-height: 2.0rem;
    font-size: 0.6rem;
    color:#666;
    border: none;
    outline: none;
    background: none;
    position: relative;
    z-index: 4;
}
.formArea{
    display: block;
    width: 100%;
    height: 5.0rem;
    overflow: hidden;
    line-height: 1.0rem;
    font-size: 0.6rem;
    color:#666;
    border: none;
    outline: none;
    background: none;
    padding: 0.25rem 0px;
    resize: none;
}
.code_a{
    display: block;
    overflow: hidden;
    margin-left: 0.5rem;
}
.code_a img{
    display: block;
    height: 2.0rem;
}
#time{
    background: url(/subsiteSrc/ynbyM/images/date.png) no-repeat right center;
    background-size: auto 0.75rem;
}
.formBtBox{
    overflow: hidden;
    padding: 0.5rem;
    background: #fff;
}
.formBt{
    display: block;
    overflow: hidden;
    height: 2.0rem;
    line-height: 2.0rem;
    font-size: 0.7rem;
    color:#999;
    text-align: center;
    background: #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}
.formBt.hover{
    background: #55a66f;
    color:#fff;
}
/*
* 品牌产品 kis2
*/
.brandBox{
    overflow: hidden;
    background: #fff;
}
.brandBox:last-child{
    padding-bottom: 1.0rem;
}
.brandListCont{
    /*height: 4.0rem;*/
    overflow: hidden;
}
.brandList_dl{
    padding: 0.25rem;
    overflow: hidden;
}
.brandList_dl dd{
    width: 33.33333333%;
    overflow: hidden;
    float: left;
    padding: 0.25rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.brandList_dl .list_a{
    background-image: url(/subsiteSrc/ynbyM/images/brand.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 100%;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
    border-radius: 0.25rem;
}
.brandBox:nth-child(1) .brandList_dl .list_a{
    background-color: #61cfc0;
}
.brandBox:nth-child(2) .brandList_dl .list_a{
    background-color: #75d1d7;
}
.brandBox:nth-child(3) .brandList_dl .list_a{
    background-color: #e6b55f;
}
.brandBox:nth-child(4) .brandList_dl .list_a{
    background-color: #e6785f;
}
.brandList_dl dd span{
    display: block;
    overflow: hidden;
    font-size: 0.8rem;
    color:#fff;
    height: 1.5rem;
    line-height: 1.5rem;
    padding: 0px 0.5rem 1.5rem 0.5rem;
}
.brandMore{
    display: none;
    position: relative;
    width: 5.0rem;
    height: 1.75rem;
    text-align: center;
    margin: 0px auto;
    line-height: 1.75rem;
}
.brandMore span{
    position: relative;
    z-index: 3;
    padding: 0px 0.5rem;
}

.brandBox:nth-child(1) .brandMore:after{
    border-color: #61cfc0;
    color: #61cfc0;
}
.brandBox:nth-child(2)  .brandMore:after{
    border-color: #75d1d7;
    color: #75d1d7;
}
.brandBox:nth-child(3)  .brandMore:after{
    border-color: #e6b55f;
    color: #e6b55f;
}
.brandBox:nth-child(4)  .brandMore:after{
    border-color: #e6785f;
    color: #e6785f;
}
.brandBox:nth-child(1) .brandMore{
    color: #61cfc0;
}
.brandBox:nth-child(2)  .brandMore{
    color: #75d1d7;
}
.brandBox:nth-child(3)  .brandMore{
    color: #e6b55f;
}
.brandBox:nth-child(4)  .brandMore{
    color: #e6785f;
}
.brandMore.over:after{
    display: none;
}
.brandMore.over span{
    color:#999;
}
.brandMore span:before{
    display: none;
    content: "";
    overflow: hidden;
    width: 5.0rem;
    height: 1px;
    background: #ddd;
    position: absolute;
    right: 100%;
    top: 50%;
}
.brandMore span:after{
    display: none;
    content: "";
    overflow: hidden;
    width: 5.0rem;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 100%;
    top: 50%;
}
.brandMore.over span:before,
.brandMore.over span:after{
    display: block;
}
.brandIntr{
    width: 0px;
    height: 0px;
    overflow: hidden;
}
.brandViewBox{
    overflow: hidden;
    padding: 0.5rem;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.brandViewLogo{
    overflow: hidden;
    text-align: center;
}
.brandViewLogo img{
    height: 2.0rem;
}
.brandViewCont{
    overflow: hidden;
    font-size: 0.7rem;
    color:#666;
    line-height: 1.25rem;
    overflow-y: auto;
    height: calc(100% - 2.5rem);
}
.brandViewCont img{
    max-width: 100%;
}
.brandLayer .layui-layer-content{
    overflow: hidden !important;
}
/*
* 业绩图标 kis2
*/
.chartBox{
    overflow: hidden;
    background: #fff;
    padding: 0.5rem;
}
.chartTit{
    font-size: 0px;
    overflow: hidden;
    text-align: center;
}
.chartTit .center{
    display: inline-block;
    position: relative;
    padding: 0px 0.75rem;
}
.chartTit span{
    display: block;
    overflow: hidden;
    font-size: 0.7rem;
    color:#57c282;
    font-weight: bold;
    line-height: 1.0rem;
}
.chartIconL,
.chartIconR{
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    overflow: hidden;
    position: absolute;
    top: 50%;
    margin-top: -0.25rem;
    background: #57c282;
}
.chartIconL{
    left: 0px;
}
.chartIconR{
    right: 0px;
}
.chartCont_x{
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-overflow-scrolling: touch;
}
.chartCont{
    width: 30.0rem;
    height: 10rem;
    overflow: hidden;
}

/*
* 人生就是博大事记 kis2
*/
.event_dl{
    overflow: hidden;
    background: #fff;
    position: relative;
}
.event_dl:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 1px;
    height: 100%;
    background: #55a66f;
    position: absolute;
    left: 4.5rem;
    top: 1.0rem;
    z-index: 1;
}
.event_dl dd{
    overflow: hidden;
    padding: 0.5rem;
    position: relative;
    z-index: 3;
}
.event_y{
    height: 1.5rem;
}
.event_y span{
    display: block;
    width: 3.0rem;
    overflow: hidden;
    font-size: 0.8rem;
    color:#55a66f;
    height: 1.5rem;
    line-height: 1.5rem;
    padding-right: 1.5rem;
    text-align: right;
    background:#fff url(../images/event_y.png) no-repeat right center;
    background-size: auto 1.0rem;
}
.eventCont{
    overflow: hidden;
    padding-bottom: 1.0rem;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.eventDeta{
    overflow: hidden;
}
.eventMore{
    display: none;
    width: 3.0rem;
    height: 1.0rem;
    line-height: 1.0rem;
    font-size: 0.6rem;
    color:#55a66f;
    text-align: center;
    position: absolute;
    right: calc((100vw - 10.25rem)/2);
    bottom: 0px;
    padding: 0px 0.75rem;
    font-style: normal;
}
.eventMore:before{
    display: block;
    content: "";
    overflow: hidden;
    width: 2.5rem;
    height: 1px;
    background: #ddd;
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.eventMore:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 2.5rem;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.event_ul{
    overflow: hidden;
}
.event_ul li{
    overflow: hidden;
    display: flex;
    padding: 0.25rem 0px;
}
.event_m{
    overflow: hidden;
    margin-right: 0.75rem;
}
.event_m span{
    display: block;
    width: 3.0rem;
    overflow: hidden;
    font-size: 0.7rem;
    color:#666;
    height: 1.5rem;
    line-height: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    text-align: right;
}
.event_m span:after{
    display: block;
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    overflow: hidden;
    border: 1px solid #55a66f;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    position: absolute;
    right: 0.2rem;
    top: 50%;
    background: #fff;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.eventIntr{
    position: relative;
    flex: 1 0 0;
}
.eventTxt{
    position: relative;
    padding: 0.25rem;
    line-height: 1.0rem;
}
.eventIntr em{
    display: block;
    content: "";
    overflow: hidden;
    width: 6px;
    height: 10px;
    position: absolute;
    left: -0.25rem;
    top: 0.5rem;
    background: url(/subsiteSrc/ynbyM/images/eventIcon.png) no-repeat center center;
    background-size: auto 100%;
    z-index: 9;
}
.event_dl dd.on .event_y span{
    position: fixed;
    left: 0.5rem;
    top: 4.25rem;
    z-index: 9;
    background: #fff url(../images/event_y.png) no-repeat right center;
    background-size: auto 1.0rem;
}

/*
* 生长历程 kis2
*/
.course{
    overflow: hidden;
    position: relative;
}
.course .hd{
    width: calc(100vw - 5.0rem);
    height: 3.0rem;
    margin: 0px auto;
    overflow: hidden;
    position: relative;
}
.courseLine1{
    display: block;
    width: 0px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 62px;
    z-index: 1;
    background: #57c282;
}
.course_ul{
    width: 20000px;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 3;
}
.course_ul li{
    width: calc((100vw - 5.0rem)/4);
    overflow: hidden;
    float: left;
    display: inline;
}
.course_ul li span{
    display: block;
    overflow: hidden;
    text-align: center;
    font-size: 0.6rem;
    color:#555;
    line-height: 1.0rem;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.course_ul li.on span{
    font-size: 0.7rem;
    font-weight: bold;
    color:#55a66f;
}
.course_ul li p{
    display: block;
    width: 0.3rem;
    position: relative;
    margin: 0px auto;
    padding: 15px 0px;
}
.course_ul li p span{
    display: block;
    width: 0.3rem;
    height: 0.3rem;
    overflow: hidden;
    background: #b5b5b5;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    -ms-border-radius: 0.3rem;
    -o-border-radius: 0.3rem;
    border-radius: 0.3rem;
    position: relative;
    z-index: 3;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.course_ul li p i{
    width: 0.7rem;
    height: 0.7rem;
    background: #f6f6f6;
    overflow: hidden;
    border: 1px solid #57c282;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    -webkit-transition: scale 0.5s linear;
    -o-transition: scale 0.5s linear;
    transition: scale 0.5s linear;
    -webkit-transform: scale(0) translate(-50%,-50%);
    -ms-transform: scale(0) translate(-50%,-50%);
    -o-transform: scale(0) translate(-50%,-50%);
    transform: scale(0) translate(-50%,-50%);
    opacity: 0;
    filter: alpha(opacity=0);
}
.course_ul li p em{
    width: 1.1rem;
    height: 1.1rem;
    background: #f6f6f6;
    overflow: hidden;
    border: 1px solid #57c282;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    -webkit-transition: scale 0.55s linear;
    -o-transition: scale 0.55s linear;
    transition: scale 0.55s linear;
    -webkit-transform: scale(0) translate(-50%,-50%);
    -ms-transform: scale(0) translate(-50%,-50%);
    -o-transform: scale(0) translate(-50%,-50%);
    transform: scale(0) translate(-50%,-50%);
    opacity: 0;
    filter: alpha(opacity=0);
}
.course_ul li.on p i{
    -webkit-transform: scale(1) translate(-50%,-50%);
    -ms-transform: scale(1) translate(-50%,-50%);
    -o-transform: scale(1) translate(-50%,-50%);
    transform: scale(1) translate(-50%,-50%);
    opacity: 1;
    filter: alpha(opacity=100);
}
.course_ul li.on p em{
    -webkit-transform: scale(1) translate(-50%,-50%);
    -ms-transform: scale(1) translate(-50%,-50%);
    -o-transform: scale(1) translate(-50%,-50%);
    transform: scale(1) translate(-50%,-50%);
    opacity: 1;
    filter: alpha(opacity=100);
}
.course_ul li.on p span{
    background: #57c282;
}
.courseLine{
    display: block;
    width: 100%;
    height: 1px;
    overflow: hidden;
    background: #939292;
    position: absolute;
    left: 0px;
    top: 1.85rem;
    z-index: 2;
}
.courseLine i{
    display: block;
    width: 0px;
    height: 1px;
    overflow: hidden;
    background: #57c282;
    position: absolute;
    left: 0px;
    top: 0px;
}
.course .bd{
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 0px 2px 4px #e2e2e2;
    box-shadow: 0px 2px 4px #e2e2e2;
}
.course_dl{
    overflow: hidden;
}
.course_dl dd{
    overflow: hidden;
}
.courseCont{
    overflow: hidden;
    background: #fff;
    padding: 0.5rem;
}
.courseL{
    overflow: hidden;
}
.courseL a{
    display: block;
    padding-top: 61.333333333%;
    overflow: hidden;
}
.courseR{
    overflow: hidden;
    padding-top: 0.25rem;
}
.courseYear{
    overflow: hidden;
    height: 1.5rem;
    overflow: hidden;
    line-height: 1.5rem;
    font-size: 0.7rem;
    color:#666;
}
.courseYear i{
    font-size: 0.8rem;
    color:#57c282;
    overflow: hidden;
    padding-right: 0.25rem;
}
.courseDeta{
    overflow: hidden;
}
.courseCont_ul{
    overflow: hidden;
}
.courseCont_ul li{
    overflow: hidden;
    font-size: 0.7rem;
    color:#888;
    line-height: 1.5rem;
    padding-bottom: 0.5rem;
}
.aboutRow2 .wrap{
    position: relative;
    z-index: 3;
}
.aboutRow2Bg{
    width: 100%;
    height: 630px;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
}
.courseBt{
    position: absolute;
    right: 30px;
    top: 30px;
    overflow: hidden;
}
.course .bt1{
    display: block;
    width: 27px;
    height: 27px;
    overflow: hidden;
    position: absolute;
    top: 1.2rem;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 9;
}
.bt1.prev{
    left: 0.5rem;
    background: #57c282 url(../images/btPrev_h.png) no-repeat center center;
    background-size: auto 15px;
}
.bt1.next{
    right: 0.5rem;
    background: #57c282 url(../images/btNext_h.png) no-repeat center center;
    background-size: auto 15px;
}
.course .bt2{
    display: block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: absolute;
    top: 42px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.bt2.prev{
    left: 60px;
    background: #e6e6e6 url(../images/btPrev.png) no-repeat center center;
    background-size: auto 15px;
}
.bt2.prev:hover{
    background: #57c282 url(../images/btPrev_h.png) no-repeat center center;
    background-size: auto 15px;
}
.bt2.next{
    right: 60px;
    background: #e6e6e6 url(../images/btNext.png) no-repeat center center;
    background-size: auto 15px;
}
.bt2.next:hover{
    background: #57c282 url(../images/btNext_h.png) no-repeat center center;
    background-size: auto 15px;
}
.bdCont{
    width: 100%;
    margin: 0px auto;
    position: relative;
    padding-bottom: 0.5rem;
}
.bdEm{
    width: 30px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(/subsiteSrc/ynbyM/images/courseTrangle.png) no-repeat center center;
}

/*
* 产品 kis2
*/
.img_dl6{
    overflow: hidden;
    background: #fff;
    padding: 0.25rem;
}
.img_dl6 dd{
    width: 50%;
    overflow: hidden;
    float: left;
    padding: 0.25rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.img_dl6 .imgDiv{
    padding-top: 100%;
}
.img_dl6 .listDeta{
    padding: 0.3rem 0.25rem 0rem 0.25rem;
    overflow: hidden;
}
.img_dl6 .listName{
    text-align: center;
}
.proSearch{
    padding: 0.5rem;
    overflow: hidden;
    background: #fff;
    position: relative;
}
.showSearch{
    display: block;
    height: 1.5rem;
    overflow: hidden;
    background: #f5f5f5 url(/subsiteSrc/ynbyM/images/search.png) no-repeat 0.75rem center;
    background-size: auto 0.75rem;
    font-size: 0.6rem;
    color:#999;
    line-height: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
    border-radius: 1.5rem;
    padding-left: 1.75rem;
}
.searchBox{
    overflow: hidden;
    padding: 0.5rem;
    display: flex;
    position: relative;
}
.searchInp{
    display: block;
    height: 1.5rem;
    overflow: hidden;
    line-height: 1.5rem;
    width: 100%;
    font-size: 12px;
    color:#666;
    background: #f5f5f5;
    border: none;
    padding: 0px 0.75rem;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
    border-radius: 1.5rem;
    outline: none;
}
.goSearch{
    display: block;
    height: 1.5rem;
    overflow: hidden;
    line-height: 1.5rem;
    padding: 0px 0.75rem;
    background-color: #55a66f;
    font-size: 0.7rem;
    color:#fff;
    background-size: auto 0.75rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
    border-radius: 1.5rem;
    margin-left: 0.5rem;
}
.goSearch.disable{
    color:#999;
    background-color: #fafafa;
}
.searchMore{
    overflow: hidden;
}
.searchMoreHead{
    overflow: hidden;
    display: flex;
    padding: 0.5rem 0.5rem 0.3rem 0.5rem;
    line-height: 1.0rem;
}
.searchMoreHead span{
    display: block;
    overflow: hidden;
    flex: 1;
    font-size: 0.7rem;
    color:#999;
}
.searchMoreBt{
    display: block;
    height: 1.0rem;
    overflow: hidden;
    font-size: 0.6rem;
    color:#999;
}
.closeMore{
    padding-left: 1.25rem;
    background: url(/subsiteSrc/ynbyM/images/closeMore.png) no-repeat left center;
    background-size: auto 1.0rem;
}
.changeMore{
    padding-left: 1.25rem;
    background: url(/subsiteSrc/ynbyM/images/refresh.png) no-repeat left center;
    background-size: auto 0.9rem;
}
.searchMoreCont{
    overflow: hidden;
    padding: 0.15rem;
}
.searchMoreCont a{
    display: block;
    height: 1.25rem;
    overflow: hidden;
    line-height: 1.25rem;
    font-size: 0.6rem;
    color:#666;
    padding: 0px 0.5rem;
    background: #f5f5f5;
    float: left;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
    margin: 0.15rem;
}

/*
* 产品详情 kis2
*/
.proViewSlide{
    position: relative;
    overflow: hidden;
}
.proViewSlide_a{
    display: block;
    padding-top: 66.66666666667%;
    overflow: hidden;
}
.proViewIntr{
    overflow: hidden;
    padding: 0.5rem;
    background: #fff;
}
.proViewName{
    font-size: 0.8rem;
    color:#333;
    line-height: 1.25rem;
    overflow: hidden;
}
.proViewName_En{
    overflow: hidden;
    font-size: 0.6rem;
    color:#999;
    line-height: 1.0rem;
}
.proViewTxt{
    overflow: hidden;
    font-size: 0.7rem;
    line-height: 1.25rem;
    color:#666;
    padding: 0.25rem 0px;
    position: relative;
}
.proViewLink{
    display: none;
    overflow: hidden;
    text-align: center;
    font-size: 0px;
    position: relative;
}
.proViewLink .center{
    display: inline-block;
    overflow: hidden;
}
.shopBt{
    display: block;
    width: 2.25rem;
    height: 2.25rem;
    overflow: hidden;
    float: left;
    margin: 0.6rem 0.25rem 0.25rem 0.25rem;
}
.tmall{
    background: url(/subsiteSrc/ynbyM/images/tmall.png) no-repeat center center;
    background-size: auto 100%;
}
.taobao{
    background: url(/subsiteSrc/ynbyM/images/taobao.png) no-repeat center center;
    background-size: auto 100%;
}
.jd{
    background: url(/subsiteSrc/ynbyM/images/jd.png) no-repeat center center;
    background-size: auto 100%;
}
.amazon{
    background: url(/subsiteSrc/ynbyM/images/amazon.png) no-repeat center center;
    background-size: auto 100%;
}
.yhd{
    background: url(/subsiteSrc/ynbyM/images/yhd.png) no-repeat center center;
    background-size: auto 100%;
}
.proViewDeta{
    overflow: hidden;
    background: #fff;
    position: relative;
}
.proViewDeta .videoCont{
    background: #fff;
    margin: 10px;
}
.proViewDeta .center {
    width: calc(100vw*1.6);
    overflow: hidden;
    -webkit-transform: translateX(calc(-100vw*0.3));
    -ms-transform: translateX(calc(-100vw*0.3));
    -o-transform: translateX(calc(-100vw*0.3));
    transform: translateX(calc(-100vw*0.3));
}
.proViewDeta img{
    max-width: 100%;
}
.proViewSlide .swiper-pagination-bullet{
    width: 0.5rem;
    height: 0.5rem;
    background: url(/subsiteSrc/ynbyM/images/proViewSlideIcon.png) no-repeat center center;
    background-size: auto 0.5rem;
}
.proViewSlide .swiper-pagination-bullet-active{
    background: url(/subsiteSrc/ynbyM/images/proViewSlideIcon_h.png) no-repeat center center; 
    background-size: auto 0.5rem;
}

/*
* 走进人生就是博 kis2
*/
.img_dl7{
    padding: 0.25rem;
    overflow: hidden;
    background: #fff;
}
.img_dl7 dd{
    overflow: hidden;
    padding: 0.25rem;
}
.img_dl7 .imgDiv{
    padding-top: 50%;
}
.img_dl7 .listDeta{
    padding: 0.5rem 0.5rem 0px 0.5rem;
}

/*
* 报名时间 kis2
*/
.intoTit{
    height: 2.0rem;
    overflow: hidden;
    line-height: 2.0rem;
    font-size: 0.8rem;
    color:#333;
    text-align: center;
    background: url(/subsiteSrc/ynbyM/images/baiyao.png) no-repeat center center;
    background-size: auto 1.75rem;
}
.applyTimeBox{
    height: 6.5rem;
    overflow: hidden;
    padding: 0px 0.5rem;
}
.applyTime_dl{
    overflow-x: auto;
    white-space: nowrap;
    font-size: 0px;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -webkit-overflow-scrolling: touch;
}
.applyTime_dl dd{
    width: 6.0rem;
    overflow: hidden;
    display: inline-block;
    margin-right: 0.5rem;
}
.applyTime_dl dd:last-child{
    margin: 0px;
}
.applyTime_a{
    display: block;
    overflow: hidden;
    background: #fff;
    position: relative;
}
.applyTime_m{
    height: 3.0rem;
    overflow: hidden;
    line-height: 3.0rem;
    font-size: 0.7rem;
    color:#fff;
    text-align: center;
    background: #aaa79f;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.applyTime_m i{
    font-size: 1.0rem;
}
.applyTimeMore{
    overflow: hidden;
    text-align: center;
    font-size: 0.7rem;
    color:#666;
    line-height: 1.25rem;
    background: #f6f6f6;
    padding: 0.5rem 0px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.applyTimeMore span{
    display: block;
    overflow: hidden;
    color:#333;
}
.applyTimeMore p{
    color:#666;
}
.applyTimeMore p i{
    color:#d40000;
    padding: 0px 5px;
}
.applyTrue{
    display: none;
    overflow: hidden;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: 0px;
    bottom: 0px;
    background: url(/subsiteSrc/ynbyM/images/applyTrue.png) no-repeat center center;
}
.applyTime_dl dd.hover .applyTime_m{
    background: #55a66f;
}
.applyTime_dl dd.hover .applyTimeMore{
    background: #fef9d8;
}
.applyBtBox{
    overflow: hidden;
}
a.applyBt{
    display: block;
    width: 6.0rem;
    height: 2.0rem;
    overflow: hidden;
    line-height: 2.0rem;
    text-align: center;
    font-size: 0.7rem;
    color:#fff;
    background: #f19751;
    margin: 0px auto;
    -webkit-border-radius: 2.0rem;
    -moz-border-radius: 2.0rem;
    -ms-border-radius: 2.0rem;
    -o-border-radius: 2.0rem;
    border-radius: 2.0rem;
}

/*
* 报名表单 kis2
*/
.applyForm_dl{
    padding: 0.25rem;
    overflow: hidden;
}
.applyForm_dl dd{
    padding: 0.25rem;
    overflow: hidden;
}
.selectUserNum{
    overflow: hidden;
    text-align: center;
    font-size: 0px;
}
.selectUserNum .center{
    display: inline-block;
    overflow: hidden;
}
.form_a{
    overflow: hidden;
    position: relative;
}
.form_a.fl{
    margin-right: 0.75rem;
}
.formSpan{
    display: block;
    height: 1.5rem;
    line-height: 1.5rem;
    overflow: hidden;
    font-size: 0.7rem;
    color:#333;
}
.radio{
    padding-left: 0.9rem;
    background: url(/subsiteSrc/ynbyM/images/radio.png) no-repeat left center;
    background-size: auto 0.6rem;
}
.form_a.checked .radio{
    background: url(/subsiteSrc/ynbyM/images/radio_h.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.checkbox{
    padding-left: 0.9rem;
    background: url(/subsiteSrc/ynbyM/images/checkbox.png) no-repeat left center;
    background-size: auto 0.6rem;
}
.form_a.checked .checkbox{
    background: url(/subsiteSrc/ynbyM/images/checkbox_h.png) no-repeat left center;
    background-size: auto 0.7rem;
}
.input{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
}
.formTit{
    display: block;
    height: 2.0rem;
    overflow: hidden;
    line-height: 2.0rem;
    font-size: 0.7rem;
    color:#666;
    width: 4.25rem;
    text-align: right;
    padding-right: 0.25rem;
}
.applyForm .formDiv{
    background: #f3f3f3;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
}
.formSelect{
    display: block;
    width: 100%;
    height: 2.0rem;
    overflow: hidden;
    line-height: 2.0rem;
    font-size: 0.6rem;
    color:#999;
    border:none;
    background: none;
    outline: none;
    position: relative;
    z-index: 5;
}
.applyR{
    overflow: hidden;
}
.required{
    overflow: hidden;
    display: block;
    padding-left: 0.25rem;
    font-size: 0.8rem;
    color:#d40000;
    line-height: 2.0rem;
}
.mobileCode{
    display: block;
    overflow: hidden;
    height: 2.0rem;
    line-height: 2.0rem;
    font-size: 0.6rem;
    color:#fff;
    background: #55a66f;
    padding: 0px 0.5rem;
}
.disable{
    background: #ddd;
    color:#999;
}
.addUserBox{
    clear: both;
    position: relative;
    z-index: 3;
    margin: -0.25rem 0px;
}
.addUserBox span{
    display: block;
    position: relative;
    margin: 0.25rem 0.5rem 0.25rem 0px;
    float: left;
}
.addUserBox i{
    display: block;
    height: 1.5rem;
    line-height: 1.5rem;
    position: relative;
    font-size: 0.6rem;
    color:#999;
    padding: 0px 0.5rem;
    background: #eee;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
}
.addUserBox em{
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    overflow: hidden;
    position: absolute;
    right: -0.25rem;
    top: -0.25rem;
    background: url(/subsiteSrc/ynbyM/images/closeMore.png) no-repeat center center;
    background-size: auto 0.75rem;
}
.addUserBt{
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    overflow: hidden;
    background: #eee url(../images/add.png) no-repeat center center;
    background-size: auto 0.5rem;
    margin: 0.25rem 0px;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
}
.addUserForm{
    padding: 0.5rem 0px;
    overflow: hidden;
}
.visible{
    overflow: visible !important;
}
.agreement{
    overflow: hidden;
    padding: 0.5rem;
    font-size: 0.7rem;
    color:#666;
    line-height: 1.5rem;
}
.formTableBox{
    display: none;
    padding: 0.1rem 0px;
    overflow: hidden;
}
.fileBt{
    display: block;
    padding: 0px 0.75rem;
    overflow: hidden;
    font-size: 0.6rem;
    color:#666;
    background: #eee;
    height: 1.5rem;
    line-height: 1.5rem;
    margin-top: 0.25rem;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
}
a.downloadBt{
    background: #f19751;
    color:#fff;
}
a.uploadBt{
    background: #dfd4c5;
    color:#666;
}

/*
* 报名乐成 kis2
*/
.applySuccess{
    overflow: hidden;
    text-align: center;
}
.applySuccess p{
    font-size: 18px;
    color:#333;
    overflow: hidden;
    padding-top: 3.0rem;
    background: url(/subsiteSrc/ynbyM/images/success.png) no-repeat center top;
    background-size: auto 2.5rem;
}
.applySuccess span{
    display: block;
    overflow: hidden;
    padding: 0px 1.0rem;
    font-size: 0.6rem;
    color:#999;
    line-height: 1.0rem;
}
.avigation{
    display:inline-block;
    height: 20px;
    line-height: 1.0rem;
    padding-left: 1.5rem;
    background: url(/subsiteSrc/ynbyM/images/avigation.png) no-repeat left center;
    background-size: auto 1.0rem;
}

/*
* 交通指南页面 kis2
*/
.navigation{
    padding: 0.5rem;
    overflow: hidden;
}
.navigationMap{
    overflow: hidden;
}

/*
* 人才理念 kis2
*/
.txtImg_dl3{
    padding: 0.25rem;
    overflow: hidden;
}
.txtImg_dl3 dd{
    padding: 0.25rem;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.txtImg_dl3 .list_a{
    background: #fff;
    border-radius: 0.2rem;
}
.txtImg_dl3 .imgDiv{
    padding: 0px;
    height: 6.5rem;
}
.txtImg_dl3 .listDeta{
    padding: 0.5rem;
}
.txtImg_dl3 .listTit{
    text-align: center;
    font-size: 0.8rem;
}
.txtImg_dl3 .listIntr{
    color:#999;
}
.imgDiv1{
    background: url(/subsiteSrc/ynbyM/images/recruitIcon1.png) no-repeat center bottom;
    background-size: auto 6.0rem;
}
.imgDiv2{
    background: url(/subsiteSrc/ynbyM/images/recruitIcon2.png) no-repeat center bottom;
    background-size: auto 6.0rem;
}
.imgDiv3{
    background: url(/subsiteSrc/ynbyM/images/recruitIcon3.png) no-repeat center bottom;
    background-size: auto 6.0rem;
}

/*
* 招聘列表 kis2
*/
.recruit_dl{
    overflow: hidden;
    padding: 0.25rem;
    background: #fff;
}
.recruit_dl dd{
    overflow: hidden;
    padding: 0.25rem;
}
.recruit_a{
    display: block;
    overflow: hidden;
    height: 1.75rem;
    background: #e7ecee;
    padding: 0px 0.5rem;
}
.recruit_a span{
    display: block;
    overflow: hidden;
    float: left;
    display: inline;
    font-size: 0.6rem;
    color:#666;
    text-align: left;
    height: 1.75rem;
    line-height: 1.75rem;
    text-align: center;
}
.recruit_a span:nth-child(1){
    text-align: left;
    width: 40%;
}
.recruit_a span:nth-child(2){
    width: 20%;
}
.recruit_a span:nth-child(3){
    width: 30%;
}
.recruit_a span:nth-child(4){
    width: 10%;
    background: url(/subsiteSrc/ynbyM/images/rucruitIcon.png) no-repeat right center;
    background-size: 12px 12px;
}
.recruit_dl dd.hover .recruit_a span:nth-child(4){
    background: url(/subsiteSrc/ynbyM/images/rucruitIcon_h.png) no-repeat right center;
}
.recruitCont{
    display: none;
    overflow: hidden;
}
.recruitCont .articleBox{
    font-size: 0.6rem;
    line-height: 1.0rem;
}
.goJoin{
    display: block;
    width: 100px;
    height: 1.5rem;
    overflow: hidden;
    font-size: 0.6rem;
    color:#fff !important;
    text-align: center;
    line-height: 1.5rem;
    background: #ff7e00;
    margin-left: 0.5rem;
}
.recruitForm_dl{
    overflow: hidden;
    padding: 0.25rem 0.5rem;
}
.recruitForm_dl dd{
    padding: 0.25rem 0px;
    overflow: hidden;
    position: relative;
}
.recruitForm_dl dd input{
    display: block;
    width: 100%;
    height: 1.75rem;
    overflow: hidden;
    border:1px solid #d4d4d4;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
    padding: 0px 0.25rem;
    font-size: 0.6rem;
    color:#999;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.75rem;
    outline: none;
}
.recruitForm_dl dd select{
    display: block;
    width: 100%;
    height: 1.75rem;
    overflow: hidden;
    border:1px solid #d4d4d4;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
    padding: 0px 0.25rem;
    font-size: 0.6rem;
    color:#999;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.75rem;
    outline: none;
    background: #fff;
}
.recruitForm_dl dd textarea{
    width: 100%;
    height: 4.5rem;
    overflow: hidden;
    border:1px solid #d4d4d4;
    padding: 0.25rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
    outline: none;
    overflow-y: auto;
    font-size: 0.6rem;
    color:#999;
}
.recruitForm_dl dt{
    padding: 0.5rem 0px;
}
.code_dd{
    padding: 0.25rem 5.0rem 0.25rem 0px !important;
    position: relative;
}
/*.code_a{
    display: block;
    width: 4.5rem;
    height: 1.75rem;
    overflow: hidden;
    position: absolute;
    right: 0px;
    top:0.25rem;
}*/
.recruitBt{
    display: block;
    margin:0px 0.5rem;
    height: 1.75rem;
    font-size: 0.6rem;
    color:#fff !important;
    text-align: center;
    line-height: 1.75rem;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
    background: #ff7e00;
}
#picker{float: left;}
.cautiontitle{
    height: 1.3rem;
    line-height: 1.3rem;
    padding-left: 0.5rem;
    float: left;
    font-size: 0.6rem;
}
#selectPicture{float: left;}
#thelist{
    padding: 0px !important;
}
.uploader-file-list dd{
    width: 100% !important;
    overflow: hidden;
    height: auto !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.uploader-file-list dd img{
    width: 1.5rem !important;
    height: 1.5rem !important;
}
.uploadifyPic2{
    width: 100%;
}
.downLoadBt{
    position: absolute;
    right: 0px;
    top: 0.5rem;
    font-size: 0.6rem;
}
.recruitmentView{
    overflow: hidden;
    background: #fff;
    padding-bottom: 0.5rem;
}
.selectIcon:before{
    display: block;
    content: "\f0d7";
    overflow: hidden;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color:#999;
    font: normal normal normal 14px/1 FontAwesome;
    -webkit-font-smoothing: antialiased;
}
.formTip{
    padding: 0.25rem 0px;
    overflow: hidden;
    color:#999;
}
.formTip a{
    color:#d40000;
}
.warming{
    color:#d40000;
}

/*
* 视察预约 kis2
*/
.investQuery{
    overflow: hidden;
    font-size: 0.6rem;
    color:#666;
    line-height: 2.25rem;
    text-align: right;
    padding: 0px 0.5rem;
    background: #fff;
    position: relative;
}
.investQuery a{
    color:#55a66f;
}
.investQueryBox{
    overflow: hidden;
    padding: 0.5rem;
}
.investQueryCont{
    overflow: hidden;
}
.investQueryTxt{
    overflow: hidden;
    font-size: 0.6rem;
    color:#666;
    line-height: 1.25rem;
    padding-top: 0.5rem;
}

/*
* 走进人生就是博 kis2 顶部及二级
*/
.intoLogo{
    display: block;
    overflow: hidden;
    text-align: center;
    padding: 0.25rem 0px !important;
    line-height: 0px;
}
.intoLogo img{
    height: 1.75rem !important;
    display: inline-block !important;
}
.applyQuery_a span{
    background: url(/subsiteSrc/ynbyM/images/applyQuery.png) no-repeat center center !important;
    background-size: auto 0.85rem !important;
}
.foot_dl dd.hover .applyQuery_a span{
    background: url(/subsiteSrc/ynbyM/images/applyQuery_h.png) no-repeat center center !important;
    background-size: auto 0.85rem !important;
}
.goHome span{
    background: url(/subsiteSrc/ynbyM/images/intoFootLogo.png) no-repeat center center !important;
    background-size: auto 0.85rem !important;
}
.foot_dl dd.hover .goHome span{
    background: url(/subsiteSrc/ynbyM/images/intoFootLogo_h.png) no-repeat center center !important;
    background-size: auto 0.85rem !important;
}
.intoIntr{
    overflow: hidden;
    font-size: 0.6rem;
    color:#fff;
    padding: 0.5rem;
    line-height: 1.25rem;
}
.intoIntr i{
    font-size: 14px;
    font-weight: bold;
}
#selectApplyNum{
    height: 7.8rem;
}
.selectApplyNum_dl{
    padding: 0.5rem 0px;
    overflow: hidden;
}
.selectApplyNum_dl dd{
    overflow: hidden;
    position: relative;
    padding: 0px 0.5rem;
}
.selectApplyNum_dl dd:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    -o-transform: scaleY(0.5);
    transform: scaleY(0.5);
}
.selectApplyNum_dl dd:last-child:after{
    /*display: none;*/
}
.selectApplyNum_dl dd a{
    display: block;
    overflow: hidden;
    padding-left: 1.0rem;
    font-size: 0.7rem;
    color:#666;
    line-height: 2.25rem;
    background: url(/subsiteSrc/ynbyM/images/radio.png) no-repeat left center;
    background-size: auto 0.75rem;
}
.selectApplyNum_dl dd.selected a{
    background: url(/subsiteSrc/ynbyM/images/radio_h.png) no-repeat left center;
    background-size: auto 0.75rem;
}
.selectDiv{
    overflow: hidden;
    width: 5.0rem;
    margin-right: 0.5rem;
}
.applyQueryResult,
.applyQueryTxt{
    overflow: hidden;
    padding: 0.5rem;
    overflow: hidden;
    text-align: center;
    font-size: 0.7rem;
    color:#666;
    line-height: 1.25rem;
}
.applyQueryTit{
    color:#333;
    overflow: hidden;
}
.applyQueryTit span{
    color:#f19751;
}
.zfwInfo,
.applyQueryIntr{
    overflow: hidden;
    font-size: 0.7rem;
    color:#666;
    line-height: 1.25rem;
    text-align: center;
}
.applyQueryIntr{
    padding-top: 0.5rem;
}
.serviceVoice{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    left: 0px;
    top: 0px;
    background: rgba(0,0,0,0.7);
    z-index: 999;
}
.serviceCont{
    overflow: hidden;
    position: relative;
    width: 80%;
    height: 80%;
    background: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    padding: 0.5rem;
    margin: 0px auto;
}
.serviceIntr{
    overflow: hidden;
    overflow-y: scroll;
    font-size: 0.7rem;
    color:#666;
    line-height: 1.25rem;
    height: calc(100% - 2.5rem);
}
.closeServiceBt{
    display: block;
    overflow: hidden;
    height: 2.0rem;
    line-height: 2.0rem;
    font-size: 0.7rem;
    color:#666;
    background: #eee;
    -webkit-border-radius: 0.15rem;
    -moz-border-radius: 0.15rem;
    -ms-border-radius: 0.15rem;
    -o-border-radius: 0.15rem;
    border-radius: 0.15rem;
    text-align: center;
}
.closeServiceBt.hover{
    background: #f19751;
    color:#fff;
}


.activeUser{
    padding: 0.5rem 0.25rem;
    overflow: hidden;
    display: flex;
}
.activeUserDiv{
    display: block;
    overflow: hidden;
    padding-top: 2.0rem;
    position: relative;
    flex: 1;
    margin: 0px 0.25rem;
}
.activeUserIcon{
    width: 100%;
    height: 3.5rem;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
}
.five{
    background: url(/subsiteSrc/ynbyM/images/five.png) no-repeat center center;
    background-size: auto 3.5rem;
}
.moreFive{
    background: url(/subsiteSrc/ynbyM/images/moreFive.png) no-repeat center center;
    background-size: auto 3.5rem;
}
.activeUserDeta{
    padding-top: 1.75rem;
    overflow: hidden;
    background: #f3f8fa;
    padding-bottom: 1.0rem;
    text-align: center;
}
.activeUserDeta span{
    display: block;
    overflow: hidden;
    line-height: 1.5rem;
    font-size: 0.8rem;
    color:#333;
}
.activeUserDeta i{
    display: block;
    height: 1.0rem;
    line-height: 1.0rem;
    font-size: 0.6rem;
    color:#999;
    overflow: hidden;
}
.activeUserBt{
    display: block;
    overflow: hidden;
    font-size: 0.7rem;
    color:#ecac01;
    text-align: center;
    line-height: 1.0rem;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.tab{
    overflow: hidden;
    text-align: center;
    margin: 0px 10px;
    font-size: 0px;
    height: 1.7rem;
    position: relative;
}
.tab_dl{
    display: inline-block;
    overflow: hidden;
}
.tab_dl dd{
    float: left;
    display: inline;
    overflow: hidden;
    padding: 0px 1.0rem;
    margin: 0px 0.25rem;
    border-bottom: none;
    position: relative;
    -webkit-border-radius: 0.15rem 0.15rem 0px 0px;
    -moz-border-radius: 0.15rem 0.15rem 0px 0px;
    -ms-border-radius: 0.15rem 0.15rem 0px 0px;
    -o-border-radius: 0.15rem 0.15rem 0px 0px;
    border-radius: 0.15rem 0.15rem 0px 0px;
    z-index: 4;
}
.tab_dl dd:after{
    display: block;
    content: "";
    overflow: hidden;
    width: 200%;
    height: 200%;
    border: 1px solid #ddd;
    border-bottom: none;
    position: absolute;
    left: 0px;
    top:0px;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    -ms-border-radius: 0.3rem;
    -o-border-radius: 0.3rem;
    border-radius: 0.3rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform-origin: 0px 0px;
    -moz-transform-origin: 0px 0px;
    -ms-transform-origin: 0px 0px;
    -o-transform-origin: 0px 0px;
    transform-origin: 0px 0px;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    z-index: 2;
}
.tab_dl dd a{
    display: block;
    height: 1.75rem;
    line-height: 1.75rem;
    overflow: hidden;
    font-size: 0.6rem;
    color:#666;
    text-align: center;
}
.tab_dl dd.hover{
    background: #fff;
}
.tab_dl dd.hover a{
    color:#55a66f;
}
.tabCont{
    overflow: hidden;
}
.queryTabCont{
    display: none;
}
/*
* 股票信息 kis2
*/
.stock{
    overflow: hidden;
    position: relative;
    line-height: 1.25rem;
    font-size: 0.6rem;
    color:#666;
    padding: 0.5rem 1.0rem;
    text-align: left;
    font-size: 0px;
    height: 3.0rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.stock em{
    font-size: 0.6rem;
    display: block;
    line-height: 1.0rem;
}
.stock span{
    font-size: 0.8rem;
    display: block;
    float: left;
    padding-right: 1.0rem;
    line-height: 1.0rem;
    font-weight: bold;
}
.stock i{
    font-size: 0.6rem;
    display: block;
    float: left;
    line-height: 1.0rem;
}
.stock p{
    overflow: hidden;
    display: inline-block;
}
.up span{
    color:#d6121b;
    background: url(/subsiteSrc/ynbyM/images/up.png) no-repeat calc(100% - 0.25rem) center;
    background-size: auto 0.7rem;
}
.up i{
    color:#d6121b;
}
.down span{
    color:#55a66f;
    background: url(/subsiteSrc/ynbyM/images/down.png) no-repeat calc(100% - 0.25rem) center;
    background-size: auto 0.7rem;
}
.ewmLayerCodeBox{
	width: 6rem;
	height: 6rem;
	background-color: #f5f5f5;
	margin: 0.75rem auto;
}
.ewmLayerCodeBox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ewmLayerCodeText{
	text-align: center;
	font-size: 0.65rem;
}
.down i{
    color:#55a66f;
}