.pop-bottom{}
.pop-bottom .pop-bg {
	position:fixed;
	top:0;
	bottom:0;
	right:0;
	width:100%;
	background-color:rgba(0,0,0,0.55);
	z-index:999;
}
.pop-bottom .pop-content{
	/*position:fixed;
	left:0;
	bottom:0;*/
	width:100%;
	background-color:#fff;
	z-index:9999;
	padding:0px 0px 0px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius:10px 10px 0 0 ;
	overflow:hidden;
}
.pop-bottom .pop-body{
	padding:5px;
}
.pop-bottom .pop-title{
	padding: 10px;
	color:#000;
	font-size:14px;
	font-weight:bold;
	text-align:center;
}
.pop-bottom .pop-close{
	width:20px;
	height:20px;
	position:absolute;
	right:10px;
	top:10px;
}

.pop-bottom .pop-field{
	padding:8px 0px 8px 0px;
	border-bottom:1px solid #ddd;
	display: flex;
	justify-content: space-between;
	align-items:center;
}
.pop-bottom .pop-field label{
	font-size:14px;
}
.pop-bottom .pop-field input{
	border:none;
	
	height:26px;
	line-height:26px;
	font-size:14px;
	flex:1;
}
.pop-bottom .pop-field textarea{
	border:none;
	height:60px;
	line-height:26px;
	font-size:14px;
	flex:1;
	background-color:#f4f4f4;
}
.pop-bottom .pop-field input:focus-visible {
	outline-width:0px;
}


.pop-bottom .btn-create{
	width: 94%;
	padding:10px 0;
	margin: 10px auto;
	text-align: center;
	color: #fff;
	background-color:#000; 
	cursor:pointer;
	font-size:14px;
	border-radius:0px;
	text-decoration:none;
	display:block;
}


.pop-bottom  .btn-save{
	width: 100%;
	height: 34px;
	line-height:34px;
	margin: 0px auto 10px;
	text-align: center;
	color: #fff;
	background-color:#000 ; 
	cursor:pointer;
	border-radius:0px;
	font-size:12px;
	border:none;
}

.pop-bottom .btn-saveing{
	width: 100%;
	height: 34px;
	line-height:34px;
	margin: 0px auto 10px;
	text-align: center;
	color: #fff;
	background-color:#ddd ; 
	cursor:pointer;
	border-radius:0px;
	font-size:12px;
	border:none;
}

.popToast{
	text-align: center;
	position: fixed;
	top:50%;
	left: 50%;
	z-index: 10000;
	background:rgba(0,0,0,0.9);
	padding:13px 20px;
	transform:translate(-50%,-50%);
	border-radius:8px;
}
.popToast-title{
	margin-top:5px;
	color:#fff;
	font-size:13px;		
}