@charset "utf-8";
.pop-layer .pop-container {
  padding:0;
}

.pop-layer p.ctxt {
  color: #666;
  line-height: 25px;
}

.pop-layer .btn-r {
  width: 100%;
  margin: 10px 0 20px;
  padding-top: 10px;
  border-top: 1px solid #DDD;
  text-align: right;
}

.pop-layer {
  padding:60px;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: auto;
  background-color: #fff;
  z-index: 10;
}

.pop-layer h2{
	font-size:40px;
	font-weight:800;
	color:#333;
	text-align:center;
	padding: 0px 0 60px 0;
}

.pop-layer p{
	font-size:16px;
	letter-spacing:-1px;
}

.pop-layer p.close{
	position: absolute;
    right: 10%;
    top: -5px;
}

.pop-layer p strong{
	font-weight:700;
}

.dim-layer {
  display: none;
  position: fixed;
  _position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.dim-layer .dimBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .5;
  filter: alpha(opacity=50);
}

.dim-layer .pop-layer {
	display: block;
	border:none;
}

a.btn-layerClose {
	position:relative;
	display:inline-block;
	font-size:40px;
	color:#333;
}

a.btn-layerClose:before {
	position:absolute;
	font-family:'FontAwesome';
	content:'\f00d';
	top:0;
}


@media screen and (max-width: 1020px) { 
	.pop-layer{
		width: 720px;
	}
}

@media screen and (max-width: 750px) { 
	.pop-layer{
		width: 80%;
		padding:20px;
	}

	.pop-layer h2{
		font-size:24px;
		padding: 0px 0 20px 0;
	}

	.pop-layer p{
		font-size:13px;
	}

	.pop-layer p.close{
		right: 13%;
	}

	a.btn-layerClose {
		font-size:30px;
	}
}

