.jq-alert *{
	margin: 0;
	padding:0;
	list-style: none;
	font-size: 16px;
	color: rgba(0,0,0,.8);
}
.jq-alert a{
	text-decoration: none;
}

/*jq-alert弹出层封装样式*/
.jq-alert{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,.3);
	z-index: 999;
}
/*动画显示遮罩*/
.jq-alert.in{
	-webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-name: bgFadeIn;
    animation-name: bgFadeIn;
}
/*动画隐藏遮罩*
.jq-alert.out{
	-webkit-animation-duration: 600ms;
    animation-duration: 600ms;
    -webkit-animation-name: bgFadeOut;
	animation-name: bgFadeOut;
}
*/

.jq-alert .alert{
	background-color: #FFF;
	height:auto;
	border-radius: 4px;
	overflow: hidden;
	width:70%;
	max-width:250px;
	position: fixed;
	left: 50%;
    top: 50%;
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    letter-spacing: 1.3px;
}
/*动画显示弹窗alert*/
.jq-alert.in .alert{
    -webkit-animation-name: contentZoomIn;
    animation-name: contentZoomIn;
}
/*动画隐藏弹窗alert*
.jq-alert.out .alert{
    -webkit-animation-name: contentZoomOut;
    animation-name: contentZoomOut;
}
*/

.jq-alert .alert .title{
	position: relative;
	margin: 0;
	font-size: 16px;
	height: 40px;
	line-height: 50px;
	text-align: center;
	font-weight: bold;
	color: rgba(0,0,0,.8);
}
.jq-alert .alert .alert_content{
	padding: 10px 15px;
	font-size: 14px;
	color: #555;
	text-align: center;
}
.jq-alert .alert .alert_content .prompt{
	width:100%;
}
.jq-alert .alert .alert_content .prompt .prompt-content{
	font-size: 15px;
	color: rgba(0,0,0,.54);
}
.jq-alert .alert .alert_content .prompt .prompt-text{
	background:none;
	border:none;
	outline: none;
	width: 100%;
	height: 40px;
	font-size: 15px;
	line-height: 35px;
	box-sizing: border-box;
	margin-top: 10px;
	background-color: #FFF;
	border:1px solid #ddd;
	text-indent:5px;
}
.jq-alert .alert .alert_content .prompt .prompt-text:focus{
	border: 1px solid #2196F3;
}
.jq-alert .alert .fd-btn{
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	justify-content: center;
	align-items: center;
}
/* 
/*确认按钮*/
.jq-alert .alert .fd-btn:after{
	position: absolute;
	content: "";
	top:0;
	left:0;
	width:100%;
	height: 1px;
	background-color: #F3F3F3;
}
.jq-alert .alert .fd-btn a{
	width:100%;
	height: 40px;
	font-size: 14px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	color: rgba(0,0,0,.8);
}
.jq-alert .alert .fd-btn a.cancel_btn{
	position: relative;
	color: #333;
}
.jq-alert .alert .fd-btn a.cancel_btn:active{
	font-weight: bold;
}
.jq-alert .alert .fd-btn a.cancel_btn:after{
	content: "";
	position: absolute;
	top:5px;
	right:0;
	width: 1px;
	height: 30px;
	background-color: #F3F3F3;
}
.jq-alert .alert .fd-btn a.confirm_btn{
	color: #2196F3;
}
/*确认按钮被点击时的样式*/
.jq-alert .alert .fd-btn a.confirm_btn:active{
	/*background-color: #2196F3;*/
	/*color: #FFF;*/
	font-weight: bold;
}

/*toast弹出层*/
.jq-toast{
	z-index: 999;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
}
.jq-toast .toast{
	max-width: 80%;
	padding: 7px 12px;
	background-color: rgba(0,0,0,.9);
	color: #FFF;
	border-radius: 4px;
	font-size: 14px;
	letter-spacing: 1.3px;
}