.mask {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0,0,0,0.5);
		z-index: 10;
	}
	.pop {
		display: none;
		width: 94%;
		max-width: 500px;
		height: auto;
		position: fixed;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		box-shadow: 0 2px 6px rgba(0,0,0,0.2);
		border-radius: 5px;
		background: #fff;
		z-index: 11;
		padding: 5px 5px 15px;
	}
	.pop h2 {
		padding: 12px 15px;
		line-height: 1.5;
		font-size: 15px;
		font-weight: bold;
		border-bottom: 1px solid #eee;
		color: #c40000;	
	}
	.pop .content {
		padding: 10px 15px;
		line-height: 1.6;
		text-align: center;
		font-size: 15px;
	}
	.pop .btns {
		text-align: right;
		padding-right: 15px;
		margin-top: -30px;
	}
	.btn-ok {
		display: inline-block;
		width: 80px;
		line-height: 2;
		color: #fff;
		text-align: center;
		border-radius: 2px;
		background: #2196F3;
		cursor:pointer;
	}
	.btn-cancel {
		display: inline-block;
		width: 80px;
		line-height: 2;
		color: #888;
		text-align: center;
		border-radius: 2px;
		background: transparent;
		cursor:pointer;
	}
	.mini-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 1.5;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    background: rgba(0, 0, 0, 0.85);
    text-align: center;
    padding: 10px 0;
	}
	.mini-bar a {
	display: inline-block;
    width: 80px;
    text-align: center;
    border: 1px solid #f00;
    line-height: 1.8;
    font-size: 14px;
    color: #fff;
    background: #f00;
    border-radius: 3px;
    margin: 0 10px;
	}
	#minibarImg {
		cursor: pointer;
	}