/** Fill in order **/
.overaly-pop{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	z-index: 101;
}
.fill-info{
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	width: 1100px;
	background: #fff;
	z-index: 102;
	border-radius: 8px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.fill-info .head{
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	color: #333;
	background: #f5f5f5;
	border-radius: 8px 8px 0 0;
}
.fill-info .head h3{
	float: left;
	font-size: 16px;
	font-weight: normal;
}
.fill-info .head .close{
	float: right;
	width: 19px;
	height: 19px;
	margin-top: 15px;
	background: url('../img/pop_close.png') center no-repeat;
	cursor: pointer;
	transition: all .3s;
}
.fill-info .head .close:hover{
	transform: rotate(180deg);
}
.fill-info .body .box{
  min-height: auto;
	padding: 20px 40px;
  border: none;
}
.fill-info .body .box-1 {
	border-bottom: 1px dashed #e6e6e6;
}
.fill-info .body .box .line-title{
  height: auto;
	padding: 0 0 15px;
	font-size: 20px;
	font-weight: normal;
	color: #2b83de;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.fill-info .body .box .line-info p{
	float: left;
	width: 240px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
}
.fill-info .body .box .line-info .value{
	color: #333;
}
.fill-info .body .box .line-info .num{
	font-weight: bold;
	color: #ff961b;
}
.fill-info .body .box .name{
	float: left;
	line-height: 30px;
}
.fill-info .body .box .line-info .select{
	display: block;
	max-width: 170px;
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	color: #333;
	border: 1px solid #e6e6e6;
	border-radius: 3px;
	box-sizing: border-box;
}
.fill-info .body .box .line-info .item{
	position: relative;
  float: left;
  height: 30px;
  line-height: 30px;
  margin-right: 10px;
}
.fill-info .body .box .line-info .item .radio{
	display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  filter: alpha(opacity=0);
}
.fill-info .body .box .line-info .item label{
	display: block;
  height: 28px;
  line-height: 28px;
  padding: 0 12px;
  font-size: 12px;
  white-space: nowrap;
  border: 1px solid #ccc;
  cursor: pointer;
}
.fill-info .body .box .line-info .item .radio:checked + label{
	border-color: #ff961b;
	background: url(../img/check_small.png) right bottom no-repeat;
}
.fill-info .body .box .layui-form-pane{
	float: left;
	width: 750px;
}
.fill-info .body .box .layui-form-pane .layui-form-item{
	float: left;
	margin-bottom: 10px;
	clear: none;
}
.fill-info .body .box .layui-form-pane .layui-form-item .layui-inline{
	width: 340px;
	position: relative;
	display: inline-block;
}
.fill-info .body .box .layui-form-pane .layui-form-label{
	display: block;
	float: left;
	width: auto;
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
  font-size: 12px;
  color: #666;
	border: 1px solid #e6e6e6;
  border-radius: 2px 0 0 2px;
  text-align: center;
  background-color: #FBFBFB;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.fill-info .body .box .layui-form-pane .layui-form-label span{
	line-height: 30px;
	margin-right: 2px;
	font-size: 14px;
  font-weight: bold;
  color: #ff961b;
}
.fill-info .body .box .layui-form-pane .layui-input-inline{
	display: inline-block;
	float: left;
	width: 150px;
	margin-right: 10px;
	margin-left: -1px;
	vertical-align: middle;
}
.fill-info .body .box .layui-form-pane .layui-input-inline .inline-box{
	float: left;
  width: 70px;
  height: 28px;
  padding-right: 10px;
  border: 1px solid #e6e6e6;
}
.fill-info .body .box .layui-form-pane input{
	width: 100%;
  height: 28px;
  line-height: 28px;
	padding-left: 10px;
  text-align: right;
  border: none;
	box-sizing: border-box;
}
.fill-info .body .box .layui-form-pane .unit{
	line-height: 30px;
  margin-left: 5px;
  font-size: 12px;
  color: #999;
}
.fill-info .foot{
	padding: 0 40px 40px;
	margin-top: -20px;
	text-align: right;
}
.fill-info .foot .btn{
	width: 94px;
	height: 38px;
	line-height: 38px;
  padding: 0;
	font-size: 14px;
	color: #fff;
	background: #bbb;
	border: none;
	border-radius: 2px;
	transition: background .2s;
	cursor: not-allowed;
	pointer-events: none;
}
.fill-info .foot .btn.enable{
	background: #ff762c;
	cursor: pointer;
	pointer-events: auto;
}
.fill-info .foot .btn.enable:hover{
	opacity: .9;
	filter: alpha(opacity=90);
}

//等级弹层
.layui-layer {
	border-radius: 8px !important;
}

.layui-layer-page .layui-layer-content {
	padding: 14px 30px;
	line-height: 22px;
}

.layui-layer-page .layui-layer-content .box {
  min-height: auto;
	padding: 86px 10px 10px;
	margin-bottom: 10px;
	font-size: 14px;
	text-align: center;
  border: none;
	border-bottom: 1px dashed #e6e6e6;
	background: url(../img/limit.png) center 10px no-repeat;
}

.layui-layer-page .layui-layer-content p {
	margin-bottom: 8px;
}

.layui-layer .layui-layer-btn {
	text-align: center;
	border-top: 1px dashed #e6e6e6;
}

.layui-layer .layui-layer-btn .layui-layer-btn0 {
	margin: 10px 0;
	background: #2b83de;
}
