body{
	height: 100vh;
}
.main{
	height: calc(100% - 45px);
	overflow: auto;
}
#pop {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(1,1,1,0.5);
	z-index: 999;
}

#pop .pop_box{
	width: 320px;
	max-height: 450px;
	background: #FFFFFF;
	box-shadow: 7px -8px 15px 1px rgba(0,0,0,0.0800);
	border-radius: 10px;
	margin: 0 auto;
	margin-top: 34vh;
}

#pop .pop_box h3{
	position: relative;
	height: 30px;
	background: #188bd8;
	border-radius: 10px 10px 0px 0px;
	line-height: 30px;
	font-size: 15px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: #FFFFFF;
	text-align: center;
}

#pop .pop_box h3 span{
	font-size: 17px;
	color: white;
	position: absolute;
	right: 10px;
}

#pop .pop_box #pop_content{
	font-size: 11px;
	font-family: Source Han Sans CN;
	font-weight: 400;
	color: #333333;
	padding: 15px;
}

#pop .pop_box #pop_content > div{
	max-height: 350px;
	overflow: auto;
}

#pop .pop_box p{
	margin-bottom: 10px;
}