@charset "utf-8";
@import url(//at.alicdn.com/t/font_390103_cgpz14bgws.css);
@font-face {
	font-family:'Bebas';
	src: url('../font/BEBAS_FONT.ttf') format('truetype');
	font-weight: normal; 
	font-style: normal;	 
}
/*login*/
body{
	font-size: 14px;
	color: #333;
}
a{
	text-decoration: none;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
hr {
    height: 1px;
    margin: 10px 0;
    border: 0;
    background-color: #e2e2e2;
    clear: both;
}
.ipad-hidden{
	display: none !important;
}
.noipad,.ipad-portrait {
	background-color: #393D49;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	
	display: none;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.ipad-portrait {
	z-index: 999998;
}
.noipad-text,.ipad-portrait-text{
	font-size: 14px;
	color: #fff;
	text-align: center;
	line-height: 40px;
}
.noipad .iconfont,.ipad-portrait .iconfont{
	font-size: 60px;
}
@media only screen and (max-device-width: 1024px) and (orientation:landscape) {  
	.ipad-portrait { 
		display: -webkit-box; 
		display: -ms-flexbox; 
		display: flex; 
	}  
} 

/*common*/
.mcui-show{
	display: block!important;
}
.mcui-hide{
	display: none!important;
}
.mcui-clear{
	clear: both;
}
.mcui-circle{border-radius:100%}
.ipad-btn{
	font-size: 14px;
	padding: 8px 20px;
	background-color: #ff5722;
	color: #fff;
	text-decoration: none;
	text-align: center;
	border-radius: 3px;
	cursor: pointer;
	border: none;
	display: inline-block;
}
.ipad-btn-danger {
	background-color: #FF5722;
}
.ipad-btn-warm {
	background-color: #F7B824;
}
.ipad-btn-black {
	background-color: #2F4056;
}
.ipad-btn-sm{
	padding: 5px 5px;
	border-radius: 2px;
	font-size: 14px;
}
.ipad-btn-lg{
	padding: 15px 30px;
	border-radius: 5px;
	font-size: 16px;
}
.mcui-btn-loading{
	cursor: not-allowed!important;
	position: relative;
}
.mcui-btn-loading:after{
	content: "\e77f";
	font-family: 'iconfont';
	font-size: 30px;

	position: absolute;
	right: 20px;
	
	-webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
	-webkit-animation-name: mcui-rotate;
    animation-name: mcui-rotate;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;


}
@-webkit-keyframes mcui-rotate{
     from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}
}
@keyframes mcui-rotate{
	from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
}

.ipad-btn-big{
	width: 100%;
	display: block;
}

/*login*/
.ipad-login-bg{
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;

	/*position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 9;*/
}
.ipad-login-box{
	border-radius: 3px;
	width: 500px;
	padding: 20px;
}
.ipad-login-logo{
	text-align: center;
	margin-bottom: 10px;
}
.ipad-login-logo img{
	width: 150px;
	/*border: rgba(0,0,0,0.3) 2px solid;*/
	/*box-shadow: 0px 0px 10px rgba(0,0,0,0.3);*/
}
.ipad-form-item{
	padding: 10px 0;
	overflow: hidden;
	clear: both;
}
.ipad-login-box .ipad-input {
    height: 50px;
    line-height: 1;
    border: none;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;
    display: block;
    width: 100%;
    padding-left: 40px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.ipad-input:focus{
	border-bottom-color: #009688;
}
.ipad-login-box .error-valid{
	border-bottom-color: #b63a09;
}
.ipad-login-box .ipad-input-box {
	width: 100%;
	position: relative;
}
.ipad-input-box .icon-clear{
	position: absolute;
	top: 14px;
	right: 5px;
	color: #c6c4c4;
	font-size: 24px;
	visibility: hidden;
	opacity: 0;
 -webkit-transition: all .3s linear;
 transition: all .3s linear;
}
.ipad-input-box .icon-clear.show{
	visibility: visible;
	opacity: 1;
}
.input-user:before{
	content: "\e62b";
	font-family: 'iconfont';
	font-size: 24px;
	color: #999;
	position: absolute;
	left: 0;
	top: 12px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.input-password:before{
	content: "\e6a9";
	font-family: 'iconfont';
	font-size: 24px;
	color: #999;
	position: absolute;
	left: 0;
	top: 12px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.input-box-focus:before{
	color: #009688;
}
.ipad-form-foot{
	margin: 20px 0;
}
.ipad-login-box .ipad-btn{
	font-size: 20px;
	padding: 0;
	height: 50px;
	line-height: 50px;
	background-color: #000;
}

.ipad-copyright{
	text-align: center;
	color: #999;
	font-size: 14px;
	line-height: 28px;
}
.ipad-login-link{
	text-align: right;
}
.ipad-login-link a{
	display: inline-block;
	padding: 4px 10px;
	background-color: #000;
	color: #fff;
	font-size: 12px;
	border-radius: 4px;
}
.l-remember{
	line-height: 30px;
}
.l-remember input{
	width: 20px;
	height: 20px;
	margin-right: 10px;
	vertical-align: middle;
}

/*selectServer*/
.ipad-header{
	width: 100%;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #000;
}
.ipad-header-logo{
	width: 200px;
    height: 50px;
    line-height: 48px;
    font-size: 23px;
    text-align: left;
    padding-left: 20px;
    color: #fff;
    float: left;
    font-weight: bold;
}
.ipad-header-logo img{
	height: 40px;
	margin: 5px 0;
	border-radius: 4px;
	display: block;
}
.ipad-header-loginfo{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	color: #fff;
	line-height: 50px;
	padding-right: 10px;
	
	display: -webkit-box;
	
	display: -ms-flexbox;
	
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.ipad-header-loginfo a{
	color: #fff;
}
.ipad-head-link{
	width: 40px;
	height: 50px;
	display: inline-block;
	line-height: 50px;
	text-align: center;
	position: relative;
}
.menuList{
	width: 100px;
	background-color: rgba(0,0,0,0.8);
	border-radius: 5px;
	position: absolute;
	right: -5px;
	top: 45px;
	z-index: 999;
	display: none;
}
.menuList.show{
	display: block;
}
.menuList:before{
	content: "";
	width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
	border-bottom: 5px solid rgba(255,255,255,0.1);
	position: absolute;
	right: 20px;
    top: -5px;
	z-index: 999;
}
.menuList li {
	position: relative;
}
.menuList li:after{
	content: '';
	width: 100%;
	height: 1px;
	width: 100%;
	background-color: rgba(255, 255, 255, .3);
	position: absolute;
	bottom: 0;
	left: 0;;
	-webkit-transform: scaleY(0.5);;
	        transform: scaleY(0.5);
}
.menuList li a{
	display: block;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #fff;
}
.menuList li a.logOut {
	color: #ff5722;
}
.ipad-head-link i{
	font-size: 18px;
}
.ipad-head-link i.icon-loginout{
	color: #aa2a08;
}
.menu { width: 30px; height: 30px; position: relative; text-align: center; margin: 10px auto;
	-webkit-transform: scale3d(0.85, 0.85, 0.85);
	        transform: scale3d(0.85, 0.85, 0.85);
}
.menu:before, .menu:after { 
	content: ""; 
	display: block; 
	width: 20px; 
	height: 1px; 
	background: #fff; 
	border-radius: 8px; 
	position: absolute; 
	right: 5px; 
	-webkit-transition: all 0.15s ease-in-out; 
	transition: all 0.15s ease-in-out; 
}
.menu:before { 
	top: 9px;
    -webkit-box-shadow: 0 6px #fff;
            box-shadow: 0 6px #fff;}
.menu:after { bottom: 8px; }
.menu.close:before { top: 15px; -webkit-box-shadow: none; box-shadow: none; -webkit-transform: rotate(225deg); transform: rotate(225deg); }
.menu.close:after { bottom: 14px; -webkit-transform: rotate(135deg); transform: rotate(135deg); }
.ipad-username{
	font-size: 14px;
	padding-right: 10px;
	vertical-align: top;
}
.header-photo{
	width: 40px;
	height: 40px;
	display: inline-block;
	margin-left: 10px;
	border-radius: 100%;
	vertical-align: middle;
}
.ipad-container{
	width: 100%;
	overflow: hidden;
	padding-bottom: 100px;
	background-color: #f9f9f9;
}
.ipad-pc-container{
	padding-top: 20px;
}
.ipad-nav{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background-color: #000;

}
.ipad-nav + .holderplace{
	height: 50px;
}
.ipad-nav ul{
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.ipad-nav li{
	width: 25%;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	text-align: center;
}
.ipad-nav li.ipad-nav-this{
	background-image: linear-gradient( 135deg, #FEB692 10%, #EA5455 100%);
}
.ipad-nav li .iconfont{
	margin-right: 10px;
	font-size: 20px;
	vertical-align: middle;
}
.ipad-nav li > a{
	display: block;
	color: #fff;
}
@media screen and (max-width: 750px){
	.ipad-nav li{
		padding: 5px 0;
	}
	.ipad-nav li .iconfont{
		margin-right: 0px;
	}
    .ipad-nav li > a span{
        display: block;
        margin-top: 3px;
    }
}
.ipad-step-box{
	width: 80%;
	height: 100px;
	background-color: #f9f9f9;
	border-radius: 3px;
	margin: 0 auto;
	padding: 30px 0;
}
.ipad-step{
	border:1px solid #E9E9E9;
	border-radius:5px;
	overflow:hidden;
	-webkit-box-shadow:0 0 4px #E9E9E9;
	        box-shadow:0 0 4px #E9E9E9;
	width: 100%;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;

}
.ipad-step .ipad-steps{
	display:inline-block;
	padding: 10px 0px 10px 50px;
	background:white;
	color:black;
	font-family:"Microsoft YaHei";
	position:relative;
	width:25%;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	float:left;
	-webkit-transition:all ease-in 0.5s;
	transition:all ease-in 0.5s;
	cursor:pointer;
}

.ipad-step .ipad-steps:first-child{
	padding-left: 50px;
}
.ipad-step .ipad-steps .iconfont{
	margin-right: 10px;
	vertical-align: middle;
}
.ipad-step .ipad-steps::after{
	position:absolute;
	content:"";
	display:block;
	height:30px;
	width:30px;
	background:white;
	top:5px;
	right:-15px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition:all ease-in 0.5s;
	transition:all ease-in 0.5s;
}

.ipad-step .ipad-steps:nth-child(1){
	z-index:3;
}
.ipad-step .ipad-steps:nth-child(2){
	z-index:2;
}

.ipad-step .ipad-steps:nth-child(3){
	z-index:1;
}
.ipad-step .ipad-steps:last-child::after{
	display:none;
}
.ipad-step .ipad-steps:hover,.ipad-step .ipad-steps:hover::after{
	background:#F0F0F0;
}
.ipad-step .ipad-steps:active,.ipad-step .ipad-steps:active::after{
	background:#8FA35D;
	color:white;
}
.ipad-step .ipad-steps.action{
	color:white;
	background-color: #000;
}
.ipad-step .ipad-steps.action::after{
	background-color: #000;
}
.ipad-step .ipad-steps:after{
	border-bottom:1px solid #E5E5E5;
	border-right:1px solid #E5E5E5;
}
.ipad-step .ipad-steps.disabled,.ipad-step .ipad-steps.disabled::after{
	color:#CBCBCB;
	background:white;
}
/*ipad-product-list*/
.ipad-pro-type{
	overflow: hidden;
	position: relative;
}
.ipad-pro-type .eyesee{
	font-size: 22px;
	position: absolute;
	right: 30px;
	top: 5px;
	color: #000;
	font-style: normal;
	cursor: pointer;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.ipad-pro-type .eyesee:before{
	content: '\e693';
	font-family: 'iconfont';
}
.ipad-pro-type .close{
	color: #ccc;
}
.ipad-pro-type .close:before{
	content: '\e694';
	font-family: 'iconfont';
}
.ipad-product-tag{
	width: 160px;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	color: #000;
	background-color: #ccc;
	border-radius: 20px;
	-webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.1);
	        box-shadow: 0px 3px 5px rgba(0,0,0,0.1);
	text-align: center;
	position: relative;
	margin-left: 30px;
	margin-bottom: 20px;
}

.ipad-product-list .col-sm-3{
	padding-left: 15px;
	padding-bottom: 30px;
	padding-top: 10px;
}
.ipad-product-list{
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding-left: 10px;
}
.ipad-product-item{
	background-color: #f2f2f2;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 20px;
	width: 180px;
	margin-right: 9px;
}
.ipad-new-item{
	position: relative;
}
.ipad-new-item:after{
	content: "\e60a";
	font-family: 'iconfont';
	position: absolute;
	top: -3px;
	right: 0;
	color: #FF5722;
	font-size: 50px;
}
.ipad-pro-img {
	width: 100%;
	position: relative;
}
.ipad-pro-img img{
	width: 100%;
	height: 240px;
	display: block;
}
.ipad-pro-img .pname{
	height: 40px;
	background-color: rgba(0,0,0,0.3);
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 10px;
    font-size: 12px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.countdown{
	color: #1aa81d;
	font-weight: bold;
	font-size: 26px;
	font-family: "Arial";
	position: absolute;
    bottom: 42px;
    left: 0;
    width: 100%;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.countdown.over{
	color: #aa2a08;
	-webkit-animation: glow 500ms ease-out infinite alternate;
    animation: glow 500ms ease-out infinite alternate;
}
@-webkit-keyframes glow {
    0% {
		color: #bd5f55;
        text-shadow: 0 0 5px rgba(193,67,54,.2);
    }    
    100% {
        color: #aa2a08;
        text-shadow: 0 0 20px rgba(193,67,54,.6);
    }
}
@keyframes glow {
    0% {
        color: #bd5f55;
        text-shadow: 0 0 5px rgba(193,67,54,.2);
    }    
    100% {
        color: #aa2a08;
        text-shadow: 0 0 20px rgba(193,67,54,.6);
    }
}
.ipad-pro-img .pname .ptext{
	text-align: center;
}
.ipad-pro-name{
	height: 40px;
	line-height: 40px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
}
.ipad-pro-bottom{
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.ipad-pro-price{
	text-align: center;
	line-height: 50px;
	border-top: #eeeeee 1px solid;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	font-size: 22px;
	color: #ff5722;
}
.ipad-pro-price i{
	font-style: normal;
	font-size: 12px;
	color: #666;
}
.ipad-pro-select{
	width: 90px;
	height: 50px;
	line-height: 50px;
	color: #fff;
	font-size: 18px;
	text-align: center;
}
.ipad-pro-select:after{
	content: "\e668";
	font-family: "iconfont";
	font-size: 25px;
	color: #000;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.ipad-pro-select.selected,.ipad-pro-select.selected1,.ipad-pro-select.selected2,.ipad-pro-select.selected3,.ipad-pro-select.selected4{
	background-color: #FF5722;
}
.nextStepBtn{
	text-align: center;
	width: 100%;
	position: fixed;
	bottom: 84px;
}
.nextStepBtn .ipad-btn{
	width: 150px;
	height: 50px;
	line-height: 50px;
	border-radius: 40px;
	font-size: 16px;
	padding: 0;
	padding-right: 10px;
	background-color: rgba(255, 87, 34, .8);
	display: inline-block;
	vertical-align: middle;
}
.nextStepBtn .ipad-btn .iconfont{
	font-size: 26px;
}
.nextStepBtn .next-back{
	width: 50px;
	border-radius: 100%;
	padding: 0;
	text-align: center;
	margin-right: 20px;
	color: #333;
	background-color: rgba(255, 255, 255, .5);
	-webkit-box-shadow: 0 0 30px rgba(9,9,9,.2);
	        box-shadow: 0 0 30px rgba(9,9,9,.2);
}
.nextStepBtn .next-back .iconfont{
	font-size: 20px;
}
.ipad-fill-other{
	padding: 20px;
	clear: both;
}
.ipad-label{
	height: 40px;
	line-height: 40px;
	min-width: 120px;
	text-align: right;
}
.ipad-input, .ipad-select{
	width: 100%;
	height: 40px;
	background-color: #fff;
	border: #ccc 1px solid;
	padding-left: 15px;
	border-radius: 3px;
}
.ipad-select-customer{
	padding: 0 50px;
}
.ipad-elem-field{
	margin-bottom: 10px;
    padding: 0;
    border: 1px solid #e2e2e2;
}
.ipad-elem-field legend {
    margin-left: 20px;
    padding: 0 10px;
    font-size: 20px;
    font-weight: 300;
}
.ipad-field-box {
    padding: 30px;
}
.get-custorm-info{
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.get-custorm-info .input-w{
	width: 300px;
}
.get-custorm-info .btn-w{
	width: 230px;
	padding-top: 3px;
	padding-left: 20px;
}
.get-custorm-info .btn-w .add-btn{
	background-color: #2F4056;
	margin-left: 30px;
}
.memInfo{
	padding: 20px;
	line-height: 30px;
	background-color: #fff;
	margin-top: 20px;
	clear: both;
}
.ipad-field-title {
    margin: 10px 0 20px;
    border: none;
    border-top: 1px solid #e2e2e2;
}
/*ipad-table*/
.ipad-table{
	width: 100%;
    margin: 10px 0;
	background-color: #fff;
	border-collapse: collapse;
}
.ipad-table td, .ipad-table th {
    position: relative;
    padding: 9px 15px;
    min-height: 20px;
    line-height: 20px;
    border: 1px solid #e2e2e2;
    font-size: 14px;
    text-align: center;
}
.ipad-table-black tr:first-child th{
	background-color: #000;
	color: #fff;
}
.ipad-table thead tr{
	background-color: #f2f2f2;
}
.ipad-table[ipad-skin=line] td, .ipad-table[ipad-skin=line] th {
    border-width: 0 0 1px;
}
.ipad-table[ipad-even] tr:nth-child(even) {
    background-color: #f8f8f8;
}
.ipad-product-ls{
	padding: 10px 30px;
}
.ipad-tb-bottom{
	padding: 10px 0;
	height: 50px;
	text-align: right;
}
.action-customer{
	background-color: #fff;
	padding: 20px 10px;
	line-height: 30px;
	overflow: hidden;
}
.action-customer.smepad-form .smepad-form-li{
	margin-bottom: 0;
}
.action-customer.smepad-form .smepad-form-li label{
	padding-right: 30px;
	text-align: right;
}
.ipad-action-btns{
	text-align: center;
	overflow: hidden;
}
.send-checkbox {
	margin-bottom: 10px;
}
.action-customer .radio {
	width: 120px;
	display: inline-block;
}
.action-customer .radio label:before {
	font-size: 24px;
}
/*ipad-badge*/
.ipad-badge{
	line-height: 18px;
    padding: 0 5px;
	min-width: 8px;
    height: 18px;
    text-align: center;
    border-radius: 9px;
    position: relative;
    display: inline-block;
    font-size: 12px;
    font-family: Arial;
    font-weight: bold;
    background-color: #FF5722;
    color: #fff;
}
/*ipad-tab-box*/
.ipad-tab-box{
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: #dedede 1px solid;
}
.ipad-tab-item{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	text-align: center;
	height: 50px;
	line-height: 50px;
	font-size: 14px;	
}
.ipad-tab-item a{
	color: #333;
	position: relative;
}
.ipad-tab-item a .ipad-badge{
	position: absolute;
    top: 50%;
    margin: -15px 6px 0;
}
.ipad-tab-skin{
	text-align: center;
}
.ipad-tab-skin .ipad-tab-item{
	width: 100px;
	display: inline-block;
	height: 30px;
	line-height: 30px;
	cursor: pointer;
	background-color: #f5f5f5;
	color: #333;
}
.ipad-tab-skin .ipad-tab-item.ipad-tab-active{
	background-color: #000;
	color: #fff;
}
.ipad-tab-box .ipad-tab-active{
	border-bottom: #009688 2px solid;
	
}
.ipad-tab-box .ipad-tab-active a{
	color:  #009688;
}
.ipad-tab-box .ipad-tab-item:last-child{
	border-right: none;
}
.ipad-tab-content{
	display: none;
}
.servicedatebox{
	width: 350px;
	margin: 20px auto;
	text-align: center;
	font-size: 16px;
	overflow: hidden;
}
.servicedatebox .col-sm-2{
	padding: 0;
}
.servicedatebox .ipad-btn{
	display: inline-block;
	height: 60px;
	line-height: 40px;
}
.ipad-order-info {
	padding: 10px 10px;
}
.ipad-order-info dd{
	line-height: 16px;
    padding-bottom: 5px;
	font-size: 12px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.ipad-order-info dd.red{
	color: #EA5455;
}
.ipad-order-info dd label{
	width: 40%;
	overflow: hidden;
	white-space: nowrap;
}
.ipad-order-info dd span{
	text-align: right;
	white-space: nowrap;
	overflow: hidden;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	text-overflow: ellipsis;
}
.ipad-order-btn{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	background-color: #009688;
	color: #fff;
	line-height: 40px;
	font-size: 12px;
	text-align: center;
}
.ipad-orderfail-btn{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	background-color: #666;
	color: #fff;
	line-height: 40px;
	font-size: 12px;
	text-align: center;
}
.ipad-pro-bottom .ipad-order-btn:last-child{
	border-left:rgba(255,255,255, .5) 1px solid;
	background-color: #ee4f2a;
}
/*ipad-elem-quote*/
.ipad-elem-quote {
	width: 90%;
    margin: 10px 0;
    padding: 15px;
    line-height: 22px;
    border-left: 5px solid #009688;
    border-radius: 0 2px 2px 0;
    background-color: #f2f2f2;
    font-size: 14px;
}
.ipad-quote-nm {
    border-color: #e2e2e2;
    border-style: solid;
    border-width: 1px 1px 1px 5px;
    background: 0 0;
}
.ipad-quote-danger{
	border-color: #FF5722;
    border-style: solid;
    border-width: 1px 1px 1px 5px;
    background: 0 0;
    color: #FF5722;
}
.ipad-quote-success{
	border-color: #009688;
    border-style: solid;
    border-width: 1px 1px 1px 5px;
    background: 0 0;
    color: #009688;
}
/*ipad-date-box*/
.ipad-date-box {
	padding: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.ipad-date-head{
	height: 50px;
	font-size: 16px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
}
.ipad-date-head .btns{
	width: 50px;
	text-align: center;
}
.ipad-date-Btn{
	width: 35px;
	height: 35px;
	display: inline-block;
	border-radius: 100%;
	line-height: 35px;
	text-align: center;
	background-color: #ddd;
}
.ipad-date-text{
	text-align: center;
	font-size: 18px;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.ipad-times{
	width: 100%;
	overflow: hidden;
}
.ipad-time-item{
	width: 33.33%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	border-bottom: rgba(255,255,255,0.5) 1px solid;
	float: left;
}
.ipad-time-noselect{
	background-color: #FFB800;
	color: #fff;
}
.ipad-time-select {
	background-color: #d2d2d2;
}
.selected{
	background-color: #ff5722;
	color: #fff;
	position: relative;
}
.selected:after{
	content: "\e702";
	font-family: 'iconfont';
	font-size: 25px;
	color: #fff;
	
}

/*ipad-payorder*/
.ipad-payorder{
	padding: 20px;
}
.ipad-payorder-base{
	line-height: 30px;
	overflow: hidden;
}
.ipad-payorder-payinfo .ipad-form-item{
	padding: 0;
	margin-bottom: 10px;
}
.ipad-payorder-base .col-sm-2,.ipad-payorder-payinfo .col-sm-2{
	text-align: right;
}
/*ipad-form*/
.ipad-form-label,.ipad-input-value{
	line-height: 40px;
}
/*moneynumber*/
.moneynumber{
	font-size: 20px;
	font-weight: bold;
	color: #FF5722;
}
.moneynumber::before{
	content: '￥';
	font-size: 12px;
}
/*ipad-payok*/
.ipad-payok{
	padding: 20px;
}

/*ipad-progress*/
.ipad-progress {
    position: relative;
    height: 6px;
    border-radius: 20px;
    background-color: #e2e2e2;
}
.ipad-bg-orange {
    background-color: #FFB800!important;
    color: #fff;
}
.ipad-progress-bar {
    position: absolute;
    width: 0;
    max-width: 100%;
    height: 6px;
    border-radius: 20px;
    text-align: right;
    background-color: #5FB878;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.ipad-progress-big, .ipad-progress-big .ipad-progress-bar {
    height: 18px;
    line-height: 18px;
}
.ipad-progress-big, .ipad-progress-big .ipad-progress-bar {
    height: 18px;
    line-height: 18px;
}
.ipad-progress-text {
    position: relative;
    top: -18px;
    line-height: 18px;
    font-size: 12px;
    color: #666;
}
.ipad-progress-big .ipad-progress-text {
    position: static;
    padding: 0 10px;
    color: #fff;
}
/*ipad-orderexcute*/
.ipad-orderexcute{
	padding: 20px;
}
.ipad-progress-box{
	height: 90px;
	padding: 0px 40px;
	
}
.ipad-progress-box h3{
	font-size: 18px;
	color: #333;
	padding-left: 5px;
	font-weight: bold;
	line-height: 40px;
}
/*ipad-autoform*/
.ipad-autoform {
	padding: 30px 0;
}
.ipad-autoform table{
	width: 100%;
}
.ipad-autoform td{
	padding: 10px 0;
	font-size: 14px;
}
.ipad-autoform .mcssform table td.lefttitle{
	width: 200px;
	text-align: right;
	padding-right: 20px;
}
.ipad-autoform .div_checkbox{
	margin-bottom: 10px;
	padding-top: 15px;
	width: 100% !important;
}
.ipad-autoform .div_checkbox .checkbox_label{
	margin-right: 20px;
}
.ipad-autoform .div_checkbox input[type='checkbox']{
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 5px;
	margin-bottom: 5px;
}
.ipad-autoform .div_radio .radio_label{
	margin-right: 20px;
}
.ipad-autoform .div_radio input[type='radio']{
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 5px;
	margin-bottom: 5px;
}
.ipad-autoform select{
	height: 30px;
}
.ipad-autoform .ipad-btn{
	margin-left: 10px;
	margin-top: 30px;
}
.ipad-autoform .ipad-btn-warm{
	margin-left: 200px;
}
.ipad-autoform input[type='text'] {
	height: 30px;
	padding-left: 10px;
	border-color: #ccc;
}

/*Modal*/
.modal-wrap{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: none;
}
.modal-wrap.modal-show{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
}
.modal-wrap.modal-show .modal-box{
	-webkit-animation: zoomIn .15s ease forwards;
    animation: zoomIn .15s ease forwards;
}
@-webkit-keyframes zoomIn {
	0% {
	    opacity: 0;
	    -webkit-transform: scale3d(0.3, 0.3, 0.3);
	    transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
	    opacity: 1;
	}
}
@keyframes zoomIn {
	0% {
	    opacity: 0;
	    -webkit-transform: scale3d(0.3, 0.3, 0.3);
	    transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
	    opacity: 1;
	}
}
.modal-box{
	width: 700px;
	min-height: 400px;
	background-color: #fff;
	padding: 30px 10px;
	border-radius: 10px;
	position: relative;
}
.modal-box-max{
	width: 100%;
	height: 95%;
	padding: 0 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.modal-body{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.modal-head{
	height: 60px;
	line-height: 60px;
	font-weight: bold;
	text-align: center;
	font-size: 18px;
}
.modal-foot{
	height: 80px;
	text-align: center;
	padding-top: 20px;
}
.modal-btn{
	display: inline-block;
	width: 140px;
	height: 40px;
	line-height: 40px;
	border-radius: 4px;
	background-color: #000;
	color: #fff;
	text-align: center;
	border-radius: 20px;
}
.modal-box .modal-close{
	font-size: 30px;
	position: absolute;
	right: 5px;
	top: 5px;
	color: #999;
}
.success-icon{
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
}
.success-icon b{
	text-align: center;
	display: block;
	margin-top: 10px;
}
.success-icon .iconfont{
	font-size: 80px;
	vertical-align: middle;
}

.modal-services .ipad-product-list{
	padding: 0;
	margin-bottom: 20px;
}
.modal-services .ipad-product-list .ipad-product-item{
	    margin-right: 5px;
}

.WorksContent{
	padding:20px 0;
}

.popup_htmlContent td{height: 40px;}

.number_ctrl{
	width: 100px;
	height: 30px;
	border: #ccc 1px solid;
	overflow: hidden;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
}
.number_ctrl .numButton{
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 27px;
	background-color: #f5f5f5;
	color: #333;
	font-weight: bold;
}
.number_ctrl .numInput{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	border-left: #ccc 1px solid;
	border-right: #ccc 1px solid;
}
.number_ctrl .numInput input{
	background-color: #fff;
	border: none;
	width: 100%;
	height: 100%;
	-webkit-appearance: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	        box-shadow: none;
	text-align: center;
	padding-left: 0;
	min-height: 29px;
    height: 29px;
}
/* 列表视图切换 */
.list-view-tab{
	text-align: right;
	width: 100%;
	padding-right: 20px;
	cursor: pointer;
}
.list-view-tab span{
	width: 80px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	display: inline-block;
	background-color: #f5f5f5;
	color: #666;
}
.list-view-tab span.active{
	color: #fff;
	background-color: #000;
}
.list-view-con{
	width: 100%;
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
[data-con="lb"]{
	padding-right: 10px;
}
.list-order-show{
	width: 100%;
	border-collapse: collapse;
	border: #ddd 1px solid;
}
.list-order-show tr th{
	border: #ddd 1px solid;
	font-weight: bold;
	padding: 20px;
	height:20px;
}
.list-order-show tr td{
	border: #ddd 1px solid;
	padding: 20px;
	text-align: center;
}

.list-order-show tr td:first-child{
	width: 100px;
	font-weight: bold;
}
.list-order-show tr:nth-child(even) td{
	background-color: #f6f6f6;
}
.list-order-show tr td .ipad-btn{
	display: inline-block;
	margin-bottom: 5px;
	font-size: 12px;
}
.list-order-show tr td .ipad-btn:first-child{
	background-color: #009688;
}
.timeTag{
	width: 70px;
	display: inline-block;
	line-height: 22px;
	text-align: center;
	margin-right: 10px;
	font-size: 12px;
	font-style: normal;
	margin-bottom: 5px;
	padding: 5px 0;
}
.timeTag h3{
	font-size: 14px;
}
.timeTag.timetag_rs{
	background-color: #1fca23;
	color: #fff;
}
.timeTag.timetag_ex{
	
	background-color: #ec5034;
	color: #fff;
}
.timetag_rs p{
	color: #aa2a08;
}
.timetag_fs{
	background-color: #fff;
	border: #ddd 1px solid;
	color: #333;
}
.list-order-show .rest{
	color: #999;
	text-align: center;
}

/* HelpModal */
.helpModal{
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: rgba(0,0,0,0.4);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: none;
}
.helpMoalBox{
	width: 80%;
	min-height: 500px;
	background-color: #fff;
	border-radius: 5px;
	overflow-y: auto;
	position: relative;
}
.helpMoalBox .helpModal-close{
	position: absolute;
	top: 8px;
	right: 8px;
	font-size: 30px;
	color: #999;
}
.helpModalContent{
	margin: 40px 0;
	padding: 0 30px;
}

/* 时间区间 */
.dateTimeSwiper{
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	margin-top: 10px;
}
.dateTimeSwiper::-webkit-scrollbar { 
	width: 0 !important;
	height: 0 !important;
	opacity: 0;
}
.dateTimeSlider{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.dateTimeSlider .swiper-slide{
	height: 85px;
	text-align: center;
	border-bottom: #ddd 1px solid;
	border-top: #ddd 1px solid;
	border-left: #ddd 1px solid;
}
.dateTimeSlider .swiper-slide a{
	display: block;
	height: 100%;
	color: #333;
}
.dateTimeSlider .swiper-slide a span{
	display: block;
	line-height: 26px;
}
.dateTimeSlider .swiper-slide a span i{
	font-style: normal;
	color: #b63a09;
}
.dateTimeSlider .active a{
	background-color: #000;
	color: #f5f5f5;
}

/* 客户评价 */
.servicePingjiaModal .modal-box{
	padding: 0;
	width: 350px;
}
.pingjia-type{
	margin-bottom: 20px;
	text-align: center;
}
.pingjia-type span{
	width: 80px;
	height: 30px;
	display: inline-block;
	line-height: 30px;
	text-align: center;
	color: #333;
	border: #ddd 1px solid;
	border-radius: 50px;
	margin-left: 10px;
	margin-right: 10px;
	font-size: 14px;
}
.pingjia-type span.active{
	background-color: #000;
	color: #fff;
}
.pingjia-star{
	margin: 0 auto;
	margin-bottom: 30px;
}
.pingjia-tag{
	padding-left: 30px;
	display: none;
}
.pingjia-tag span{
	display: inline-block;
	width: 128px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	margin-right: 30px;
	margin-bottom: 10px;
	border: #ddd 1px solid;
}
.pingjia-tag span.active{
	background-color: #009688;
	color: #fff;
}
.pingjia-text {
	padding: 0 20px;
}
.pingjia-text textarea{
	width: 100%;
	height: 80px;
	padding: 10px;
	border: #ddd 1px solid;
	resize: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	border-radius: 0;
}
.pingjia-button{
	padding: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.pingjia-button button{
	width: 100%;
	height: 40px;
	background-color: #000;
	color: #fff;
	border: none;
	display: inline-block;
	font-size: 14px;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.pingjia-button button:last-child{
	margin-left: 10px;
	background-color: #009688;
}
.servicePingjiaModal .z_photo{
	padding: 10px;
}
.servicePingjiaModal .z_file .add-img, .servicePingjiaModal .upimg-div .up-section{
	width: 80px;
	height: 80px;
}
.servicePingjiaModal .up-section .close-upimg {
	top: -14px;
    right: -15px;
}
.order-list-wrap{
	padding-top: 20px;
	padding-bottom: 60px;
}
/* 订单状态按钮 */
.order-status-group{
	width: 360px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	height: 55px;
	position: fixed;
	bottom: 70px;
    left: 50%;
	z-index: 99;
	background-color: #3d3d3d;
	border: #ccc 1px solid;
	border-radius: 40px;
	overflow: hidden;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.order-status-group a{
	display: block;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	text-align: center;
	line-height: 50px;
	color: #fff;
	border-right: rgba(255,255,255,.1) 1px solid;
	font-size: 18px;
}
.order-status-group a.active{
	background-color: #ee4f2a;
}
.order-status-group a:last-child{
	border-right: 0;
}
.order-status-group a .ipad-badge{
	margin-left: 8px;
	vertical-align: middle;
}

.barbers-types{
	padding: 20px 0px;
}

.payConfirm p{
	padding: 5px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.payConfirm p label{
	width: 100px;
	text-align: right;
}
.payConfirm p span{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding-left: 5px;
}
.payConfirm p .pwd-control{
	-webkit-box-flex: 1;
	-ms-flex: 1;
		flex: 1;
}
.payConfirm p input{
	border-radius: 0;
	height: 30px;
	width: 100%;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.payConfirm p .code-btn{
	height: 30px;
	width: 60px;
	background-color: #009688;
	color: #fff;
}
.memberMoney{
	padding: 10px 0;
	text-align: center;
	font-size: 14px;
	border: #f1f1f1 1px solid;
	background-color: #f9f9f9;
	margin-bottom: 20px;
}

.inputPasswordModal .popup .title{
	width: 100%;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.inputPasswordModal .title .mtab{
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	display: block;
	cursor: pointer;
	text-align: center;
	line-height: 48px;
}
.inputPasswordModal .title .mtab.active{
	background-color: #000;
	color: #fff;
}
.inputPasswordModal .popup .text{
	padding-bottom: 14px;
}
.inputPasswordModal .payConfirm p{
	padding: 4px 0;
	line-height: 30px;
}
.inputPasswordModal .payConfirm p label{
	min-width: 80px;
	width: 80px;
}

/* pwdInput */
.pwd-control .box{
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.pwd-control .box .flex-1{
	display: block;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	width: 0;
}
.pwd-control {
	text-align: center;
}
.pwd-control .item {
	margin: 0 2px;
	position: relative;
}
.pwd-control .item.circle:after {
	content: "";
	width: 8px;
	height: 8px;
	background: #000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -4px;
	margin-left: -4px;
}
.pwd-control .normal input {
	color: #000;
}
.pwd-control input {
	display: block;
	width: inherit;
	border-radius: 3px;
	text-align: center;
	border: 1px solid #888;
	width: 100%;
	color: #fff;
	line-height: 35px
}
.pwd-control input:focus {
	-webkit-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.4);
	        box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.4);
}