.popbg{
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	background:rgba(0,0,0,0.7);
	z-index:9999;
	display:none;
}
.pop{
	position:relative;
	top:20%;
	left:0;
	right:0;
	margin:0 auto;
	width: 400px;
    height: 350px;
	overflow: hidden;
}
.pop>img{
	position:absolute;
	z-index:1;
}
.popwin{
    position: relative;
    top: 10%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    height: 80%;
    overflow: hidden;
    border-radius: 10px;
	border: 5px solid #e4a100;
    background: -webkit-gradient(linear, left top, right bottom, from(#fbeecd), to(#fee9b7), color-stop(0.5, #fdcd6d));
}
.popheader{
    position: absolute;
    background-color: #e4a100;
    height: 40px;
    line-height: 40px;
    width: 200px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    letter-spacing: 5px;	
}
.popheader::before {
	content: '';
    position: absolute;
    top: 0;
    left: -1rem;
    width: 1rem;
    height: 1rem;
    background: transparent;
    border-top-right-radius: 50px;
    box-shadow: 15px -15px 0 15px #e4a100;
}
.popheader::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1rem;
    width: 1rem;
    height: 1rem;
    background: transparent;
    border-top-left-radius: 50px;
    box-shadow: -15px -15px 0 15px #e4a100;
}
.popbody{
	position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80%;
    height: 60%;
    text-align: center;
    z-index: 2;
}
.popbody p{
	font-size:30px;
	font-weight:700;
	color:#d72f46;
    letter-spacing: 5px;
	margin: 5px;	
}
.popBtn{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    border: 3px solid #e0c00b;
    border-radius: 20px;
    width: 150px;
    height: 40px;
    line-height: 35px;
    margin: 0 auto;
	cursor:pointer;
    background: linear-gradient(45deg,#ffd900 20%,#fff1d3);
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-user-select: none;
	-moz-user-focus: none;
	-moz-user-select: none;
}
.popBtn:active{
    bottom: 2px;
    background: linear-gradient(45deg,#fff1d3 20%,#ffd900);
}
#popTxt{
	font-size: 1.3rem;
    margin-top: 5%;
}
/* 移动端适配 */
@media screen and (max-width: 700px) {
	.pop{width:90%}
}