.main{
	height: 100%;
	-webkit-box-orient: vertical;
	-webkit-flex-flow: column;
		   flex-flow: column;
}
.flex-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
}
.flex-con {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	position:relative;
	z-index:1;
}
.tbox > * {
	display:table-cell;
	vertical-align: middle;
	white-space: nowrap;
}
.tbox > .width100{
    white-space: normal;
    width: 100%;
    position: relative;
}
.box-s{
	box-shadow: 0px 0px 0.25rem rgba(190,190,190,.1);
	background: #fff;
    position: relative;
}
.content {
	-webkit-overflow-scrolling: touch;
	overflow: auto;
}
/* 文字对齐 */
.text-left {
	text-align: left !important;
}
.text-center {
	text-align: center !important;
}
.text-justify {
	text-align: justify !important;
}
.text-right {
	text-align: right !important;
}
/* 自动隐藏文字 */
.ellipsis-1 {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.ellipsis {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-all;
	white-space: normal !important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.ellipsis-2 {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-all;
	white-space: normal !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.arrow{
	position: relative;
}
.arrow:before{	
	content: ""; 
	display: inline-block;
	width:0.4rem;
	height:0.4rem;
	border:1px solid #ccc;
	border-width:1px 1px 0 0;
	position: absolute;
	top:50%;
	right:0px;
	margin-top:-0.20rem;
	-webkit-transform:rotate(45deg);
			transform:rotate(45deg);
}
.arrowRight {
    position: relative;
}

    .arrowRight:before {
        content: "";
        display: inline-block;
        width: 0.7rem;
        height: 0.4rem;
        border: 1px solid #2ea7e0;
        border-width: 1px 1px 0 0;
        position: absolute;
        top: 50%;
        right: 0px;
        margin-top: -0.20rem;
        -webkit-transform: rotate(120deg);
        transform: rotate(120deg);
    }
/* 对齐，显示，隐藏等 */
.fr {
	float: right !important;
}
.fl {
	float: left !important;
}
.hide {
	display: none !important;
}
.show {
	display: block !important;
}
.invisible {
	visibility: hidden;
}
.inline {
	display: inline-block;
	vertical-align: top;
}
/* 文字 */
h1,h2,h3,h4,h5,h6 {
	font-weight: 400;
}
h1 {
	font-size: 1.2rem;
}
h2 {
	font-size: 1rem;
}
h3 {
	font-size: 0.8rem;
}
h4 {
	font-size: 0.75rem;
}
h5 {
	font-size: 0.7rem;
	font-weight: normal;
}
h6 {
	font-size: 0.6rem;
	font-weight: normal;
	color: #757575;
}
h1 small,h2 small,h3 small,h4 small {
	font-weight: normal;
	line-height: 1;
}
h5 small,h6 small {
	font-weight: normal;
	line-height: 1;
}
h1 small,h2 small,h3 small {
	font-size: 65%;
}
h4 small,h5 small,h6 small {
	font-size: 85%;
}
/* 栅格类 */
.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-5,.col-xs-12 {
	position: relative;
	float: left;
}
.col-xs-12 {
	width: 100%;
	position: relative;
}
.col-xs-11 {
	width: 91.66666667%;
}
.col-xs-10 {
	width: 83.33333333%;
}
.col-xs-9 {
	width: 75%;
}
.col-xs-8 {
	width: 66.66666667%;
}
.col-xs-7 {
	width: 58.33333333%;
}
.col-xs-6 {
	width: 50%;
}
.col-xs-5 {
	width: 41.66666667%;
}
.col-xs-4 {
	width: 33.33333333%;
}
.col-xs-3 {
	width: 25%;
}
.col-xs-2 {
	width: 16.66666667%;
}
.col-xs-1 {
	width: 8.33333333%;
}
.col-5 {
	width: 20%;
}
/* 边框样式 */
.border-t,
.border-b,
.border-l,
.border-r,
.border-tb,
.border {
    position: relative;
}
.border-t:after,
.border-b:after,
.border-l:after,
.border-r:after,
.border-tb:after,
.border:after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: scale(1);
    pointer-events: none;
}
.border-l:after {
    border-left: 1px solid #eee;
}
.border-r:after {
    border-right: 1px solid #eee;
}
.border-t:after {
    border-top: 1px solid #eee;
}
.border-b:after {
    border-bottom: 1px solid #eee;
}
.border-tb:after {
	border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.border:after {
    border:1px solid #eee;
}
@media screen and (-webkit-min-device-pixel-ratio:1.5) {
    .border-t:after,
    .border-b:after,
    .border-l:after,
    .border-r:after,
    .border-tb:after,
    .border:after {
        right: -100%;
        bottom: -100%;
        -webkit-transform: scale(0.5);
    }
}
/*表单类\输入框*/
input[type="text"],
input[type="password"],
input[type="search"],
input[type="email"],
input[type="month"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="time"],
input[type="number"],
select,
textarea {
    border: none;
    background: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    color: #424242;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-user-select: text;
            user-select: text;
    -webkit-appearance: none;
            appearance: none;
}
input[type="search"]::-webkit-search-cancel-button {
	display: none;
}
input[type="file"] {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
/* 空 */
.none{
    text-align: center;
    line-height: 2;
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-75%);
    z-index: 2;
    color: #bbb;
}
.none i{
    display: inline-block;
    font-size: 3.6rem;
    line-height: 1;
    vertical-align: top;
    text-shadow: 0px 1px 0px rgba(255,255,255,1);
}
.none p{
    color: #bbb;
    font-size: 0.7rem;
    text-shadow: 0px 1px 0px rgba(255,255,255,1);
}
/* 按钮 */
.btn {
    position: relative;
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 400;
    font-family: inherit;
    text-decoration: none;
    text-align: center;
    vertical-align: top;
    margin: 0;
    background: #f1f1f1;
    padding: 0 0.6rem;
    border-radius: 0.2rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-user-select: none;
            user-select: none;
}
.g-btn{
    background: #28b0a9;
    color: #fff;
}
.b-btn{
    background: #2ea7e0;
    color: #fff;
}
.w-btn {
    background: #fff;
    border: 1px solid #f1f1f1;
}

.r-btn {
    background: #FF5722;
    color: #fff;
}
/* 弹窗 */
.mask-transition {
    display: none;
    position: fixed;
    z-index: 3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    -webkit-transition: background .3s;
    transition: background .3s;
}
.fade-toggle {
    background: rgba(0, 0, 0, 0.6);
}
.actionsheet {
    position: fixed;
    left: 0;
    bottom: 0;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 4;
    width: 100%;
    background-color: #fff;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}
.actionsheet-toggle {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.actionsheet-n h5{
    line-height: 3.2;
    position: relative; 
}
.actionsheet-n h5 i{
    position: absolute;
    padding:0 0.75rem;
    display: inline-block;
    line-height: 2.2rem;
    right: 0;
    font-size: 0.9rem;
    color: #757575;
}
.choselist{
    padding: 0 0.6rem;
    font-size: 0.7rem;
    line-height: 2.0rem;
    max-height: 15.0rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/*2019年11月15日16:00:56 修改切换CRF菜单*/
.actionsheet-n .layui-nav-tree {
    width: auto;
}
.choselist li:first-child:after{
    border-top: 0;
}
.choselist .on{
    color: #2ea7e0;
}
.mask{
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}
.dialog {
    position: fixed;
    z-index: 3;
    width: 80%;
    top: 50%;
    left: 50%;
    -webkit-transition-property: -webkit-transform,opacity;
    transition-property: transform,opacity;
    -webkit-transform: translate3d(-50%,-55%,0) scale(1.185);
    transform: translate3d(-50%,-55%,0) scale(1.185);
    background-color: #fff;
    text-align: center;
    border-radius: 4px;
    opacity: 0;
}
.dialog-in {
    display: block;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: translate3d(-50%,-55%,0) scale(1);
    transform: translate3d(-50%,-55%,0) scale(1);
    opacity: 1;
}
.dialog-tit{
    line-height: 2.0rem;
}
.dialog-tit b{
    font-weight: 500;
    font-size: 0.75rem;
}
.dialog-ft a.btn-dialog{
    display: block;
    line-height: 2.6;
    font-size: 0.7rem;
}
.dialog-ft a.btn-dialog.cancel{
    color: #888;
}
.circle {
    right: 0.75rem;
    bottom: 3.25rem;
    line-height: 1;
    padding-top: 0.25rem;
}
.circle i {
    font-size: 1.2rem;
    display: inline-block;
    padding-bottom: 0.1rem;
}
.circle{
    -webkit-animation:fadeInRight 1s .2s ease both;
    position: fixed;
    background: #2ea7e0;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.1);
}
.circle p{
    color: #fff;
    font-size: 0.6rem;
}
@-webkit-keyframes fadeInRight{
    0%{opacity:0;
    -webkit-transform:translateX(2rem)}
    100%{opacity:1;
    -webkit-transform:translateX(0)}
}
.radio,.checkbox {
    width: 0.9rem;
    height:0.9rem;
    position: relative;
    margin: 0 0.3rem 0 0;
    background: #ffffff;
    border-radius: 50%;
    float: left;
    -webkit-appearance: none;
            transition: background-color ease 0.1s;
}
.checkbox{
    border-radius: 0.2rem;
}
.radio:after,.checkbox:after{
    pointer-events: none;
}
.radio:checked,
.radio.checked {
    background-color: #2ea7e0;
    text-align: center;
}
.radio:checked:before,
.radio.checked:before,
.checkbox:checked:before,
.checkbox.checked:before {
    position: absolute;
    line-height: 1rem;
    left:0.05rem;
    top:-0.05rem;
    font-size: 0.8rem;
    font-family: "iconfont";
    content: "\e687";
    color: #3e9f59;
}

.radio:checked:before,
.radio.checked:before{
    color: #fff;
}
.radio.border:after{
    border-radius: 100%;
}
.hidden {
    display:none !important;
}