/**
* 新建状态样式
*/
.label-status-new {
	background-color: #f0ad4e;
}

/**
* 出车状态样式
*/
.label-status-rentout {
  background-color: #428bca;
}

/**
* 还车状态样式
*/
.label-status-recive {
  background-color: #5bc0de;
}

/**
* 完成状态样式
*/
.label-status-finish {
  background-color: #5cb85c;
}

/**
* 取消状态样式
*/
.label-status-cencel {
  background-color: #999;
}

/**
* 主框架
*/
.main-panel {
	margin-left: 10px;
	margin-right: 10px;
}


/** layui自定义样式  start**/
.layui-layer-btn .layui-layer-btn0 {
	border-color: #1ab394;
    background-color: #1ab394;
    color: #fff;
}
/** layui自定义样式  end**/

.ibox-top {
    margin-top: 5px;
}

.form-group-left-10 {
	width:10%;
}

.form-text {
	padding-top: 7px;
	margin-bottom: 0;
	text-align: left;
	padding-right: 2px;
   	padding-left: 2px;
}

.form-text-center {
	padding-top: 7px;
	margin-bottom: 0;
	text-align: center;
	padding-right: 2px;
   	padding-left: 2px;
}

.full-content {
	width: 100%;
	height: 100%;
	margin: 0;
}

.color-change{            
    	display: block;            
    	width: 100%;            
    	height: 100%;
    	font-weight:600;
    	font-size:13px;
    	/*渐变背景            
    	background-image: -webkit-linear-gradient(left, #3498db, #f47920 10%, #d71345 20%, #f7acbc 30%, #ffd400 40%, #3498db 50%, #f47920 60%, #d71345 70%, #f7acbc 80%, #ffd400 90%, #3498db);
    	*/
    	background-image: -webkit-linear-gradient(left, #23c6c8, #23c6c8 20%);
    	color: #23c6c8; /*文字填充色为透明transparent*/            
    	-webkit-text-fill-color: #23c6c8;/*transparent*/
    	-webkit-background-clip: text;          
    	/*背景剪裁为文字，只将文字显示为背景*/            
    	background-size: 200% 100%;            
    	/*背景图片向水平方向扩大一倍，这样background-position才有移动与变化的空间*/            
    	/* 动画 */            
    	animation: masked-animation 4s infinite linear; 
    }        
    @keyframes masked-animation {            
    	0% {                
    		background-position: 0 0;   
    		/*background-position 属性设置背景图像的起始位置。*/           
    	}            
    	100% {                
    		background-position: -100% 0;            
    	}        
    }