﻿/*信息障碍*/
.pop {
	display: none;
	width: 380px;
	height: 135px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	padding: 20px 25px 15px 25px;
	z-index: 130;
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 0 3px 18px rgba(100, 0, 0, .5);
	position: fixed;
}
.pop-content {
	text-align: center;
}

.pop-content p {
	font-size: 18px;
	line-height: 45px;
	color: #333;
}

.pop-foot {
	line-height: 55px;
	border-top: 2px #E5E5E5 solid;
	text-align: center;
}

.pop-foot a:hover{
	background: #ff4d4d;
	color: #fff;
}

.pop-cancel,
.pop-ok {
	padding: 5px 20px;
	margin: 15px 5px;
	border: none;
	border-radius: 5px;
	background-color: #337AB7;
	color: #fff;
	cursor: pointer;
}

.pop-cancel {
	background-color: #FFF;
	border: 1px #CECECE solid;
	color: #000;
}


.bgPop {
	display: none;
	position: absolute;
	z-index: 129;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	position: fixed;
}

