@charset "UTF-8";

/* weixin */
.hp-share-mask{
	display:none;
	position:absolute;
	top:0;
	left:0;
	z-index:1000;
	background:#000;
	opacity:0.3;
	filter:alpha(opacity=30);
}
.hp-pop-share{
	position:absolute;
	top:0;
	left:0;
	z-index:1001;
	width:450px;
	padding:15px 20px;
	background:#fff;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	-webkit-animation:showPanel 0.5s ease;
	-moz-animation:showPanel 0.5s ease;
	animation:showPanel 0.5s ease-in;
}
.hp-pop-share .hd{
	padding-bottom:15px;
}
.hp-pop-share h3{
	font:18px/30px "Microsoft Yahei";
	text-align:center;
}
.hp-pop-share .btn-close{
	position:absolute;
	top:6px;
	right:10px;
	font-size:16px;
	color:#444;
	font-family:tahoma,arial;
	text-decoration:none;
}
.hp-pop-share .btn-close:hover{
	text-decoration:none;
	color:#ca0002;
}
.voice-pop-in-share{
	-webkit-animation:hidePanel 0.5s ease;
	-moz-animation:hidePanel 0.5s ease;
	animation:hidePanel 0.5s ease;
}
@-webkit-keyframes showPanel {
	0% {
		-webkit-transform:scale(0.75);
		opacity:0.0;
	}
	50% {
		-webkit-transform:scale(1.05);
		opacity:1.0;
	}
	100% {
		-webkit-transform:scale(1);
		opacity:1.0;
	}
}
@-moz-keyframes showPanel {
	0% {
		-moz-transform:scale(0.75);
		opacity:0.0;
	}
	50% {
		-moz-transform:scale(1.05);
		opacity:1.0;
	}
	100% {
		-moz-transform:scale(1);
		opacity:1.0;
	}
}
@keyframes showPanel {
	0% {
		transform:scale(0.75);
		opacity:0.0;
	}
	50% {
		transform:scale(1.05);
		opacity:1.0;
	}
	100% {
		transform:scale(1);
		opacity:1.0;
	}
}
@-webkit-keyframes hidePanel {
	0% {
		-webkit-transform:scale(1);
		opacity:1.0;
	}
	100% {
		-webkit-transform:scale(0.98);
		opacity:0.0;
	}
}
@-moz-keyframes hidePanel {
	0% {
		-moz-transform:scale(1);
		opacity:1.0;
	}
	100% {
		-moz-transform:scale(0.98);
		opacity:0.0;
	}
}
@keyframes hidePanel {
	0% {
		transform:scale(1);
		opacity:1.0;
	}
	100% {
		transform:scale(0.98);
		opacity:0.0;
	}
}