/*
    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;}
body{
    font-family:Helvetica;
    background:#f5f5f5;
    font-size:0.6rem;
    color:#666; 
    overflow:hidden;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

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);}
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;}
input, textarea{-webkit-tap-highlight-color: rgba(255,255,255,0);}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{
    color: #8d92a1; /* placeholder颜色  */
    font-size:0.7rem; /* placeholder字体大小  */
}
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;
}
.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;
}

/*
* 图片处理 
*/
.object{
    overflow:hidden;
    position:relative;
    padding-top: 100%;
    border-radius: 100%;
}
.object img{
    display: block;
    width: 100%;
    height: 100%;
    position:absolute;
    left: 0px;
    top: 0px;
}
.fill img{ object-fit: fill; }/*填充：不保持图片比例*/
.contain img{ object-fit: contain; }/*包含: 保持比例以最大边填满空间，最小边空白会留有*/
.cover img{ object-fit: cover; }/*覆盖：保持比例以最小边填满空间,超出部分截取*/
.none img{ object-fit: none; }
.scale-down img{ object-fit: scale-down; }
.txt-r{
    text-align: right;
}
.txt-c{
    text-align: center;
}
.txt-l{
    text-align: left;
}

.autoImg{
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: #fafafa;
    z-index: 5;
}
.autoImg img{
    max-width: 100%;
    max-height: 100%;
    left: 50%;
    top: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

/*
* 内容垂直居中
*/
.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;
    right: 0px;
    bottom: 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;
    transform: scale(0.5);
    z-index: 2;
}
.default{ background: #e5e5e5 url(../images/default.png) no-repeat center center;}/* 设置默认图 */
/*
* 列表共用部分
*/
.list_a{
    display: block;
    overflow: hidden;
    position: relative;
}
.pic{
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 66.6666667%;
}
.pic 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.65rem;
    color:#999;
    line-height: 1.0rem;
    overflow: hidden;
}
.listDeta{
    position: relative;
    overflow: hidden;
}
.listIntr{
    overflow: hidden;
    font-size: 0.65rem;
    color:#999;
    line-height: 1.0rem;
}
/*
* 各种弹窗
*/
.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;
    position: relative;
    z-index: 5;
}
.moveHeadTit{
    line-height: 2.25rem;
    height: 2.25rem;
    display: block;
    overflow: hidden;
    font-size: 0.8rem;
    color:#666;
    text-align: center;
}
.moveBody{
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    position: relative;
}
.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{
    display: flex;
    overflow: hidden;
    padding: 0.5rem 0.25rem;
}
a.moveBt{
    display: block;
    overflow: hidden;
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    color:#666;
    position: relative;
    background: #f5f5f5;
    border-radius: 0.15rem;
    line-height: 2.0rem;
    height: 2.0rem;
    margin: 0px 0.25rem;
}
.moveBt.flex-2{
    flex: 2 0 0;
}
.moveBt.enable{
    color:#fff;
    background: #00b195;
}
.moveBtBox.full{
    padding: 0px;
}
.full .moveBt{
    margin: 0px;
    border-radius: 0px;
}
.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(../images/close.png) no-repeat center center;
    background-size: 0.5rem 0.5rem;
}
.headClose{
    display: block;
    width: 2.25rem;
    height: 2.25rem;
    overflow: hidden;
    z-index: 9;
    position: relative;
}
.absolute{
    position: absolute;
    left: 0px;
    top: 0px;
}
.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(../images/close.png) no-repeat center center;
    background-size: auto 0.7rem;
}
.moveSearchIcon span{
    background: url(../images/search.png) no-repeat center center;
    background-size: auto 0.85rem;
}
.moveSearchIcon_h span{
    background: url(../images/search_h.png) no-repeat center center;
    background-size: auto 0.85rem;
}
.screenIcon_h span{
    background: url(../images/screen_h.png) no-repeat center center;
    background-size: auto 0.85rem;
}
.moveSearchIcon:after{
    display: block;
    content: "";
    width: 1px;
    height: 0.75rem;
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%) scaleX(0.5);
    background: #ddd;
}
.moveSearchIcon_h:after{
    display: block;
    content: "";
    width: 1px;
    height: 0.75rem;
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%) scaleX(0.5);
    background: rgba(255,255,255,0.8);
}
.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);
}
#menuBg,#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;
}
.moveSearch{
    background: #fff;
    overflow: hidden;
    width: 100%;
    z-index: 4;
    -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    padding: 0.5rem 0.25rem;
    transition: all 0.3s linear;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*position: absolute;
    left: 0px;
    top: 2.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.0rem);*/
}
.moveSearch.show{
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}
.moveSearchDiv{
    overflow: hidden;
    padding: 0.35rem 0.25rem;
    position: relative;
}
.moveSearchInp{
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 4;
    width: 100%;
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 0.6rem;
    color:#999;
    background: none;
    outline: none;
    border:none;
    padding: 0px 0.5rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.moveSearchBt{
    display: block;
    overflow: hidden;
    margin: 0px 0.25rem;
    padding: 0px 0.5rem;
    font-size: 0.6rem;
    color:#fff;
    background: #00b195;
    border-radius: 0.15rem;
    line-height: 1.5rem;
}
.showBg{
    position: absolute;
    left: 0px;
    top: 2.25rem;
    overflow: hidden;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    z-index: 5;
}

.gearArea,.gearDate, .gearDatetime, .gearTime{
    z-index: 99999999 !important;
}

/*
* 尺寸 
*/
.aykj-l-1{
    width: 8.3333333%;
    width: calc(1/12*100%);
}
.aykj-l-2{
    width: 16.6666667%;
    width: calc(1/6*100%);
}
.aykj-l-2p{
    width: 20%;
    width: calc(1/5*100%);
}
.aykj-l-3{
    width: 25%;
    width: calc(1/4*100%);
}
.aykj-l-4{
    width: 33.3333333%;
    width: calc(1/3*100%);
}
.aykj-l-5{
    width: 41.66666667%;
    width: calc(5/12*100%);
}
.aykj-l-6{
    width: 50%;
    width: calc(1/2*100%);
}
.aykj-l-7{
    width: 58.3333333%;
    width: calc(7/12*100%);
}
.aykj-l-8{
    width: 66.6666667%;
    width: calc(2/3*100%);
}
.aykj-l-9{
    width: 75%;
    width: calc(3/4*100%);
}
.aykj-l-10{
    width: 83.3333333%;
    width: calc(5/6*100%);
}
.aykj-l-11{
    width: 91.6666667%;
    width: calc(11/12*100%);
}
.aykj-l-12{
    width: 100%;
}
