.yp_win {
	position: fixed;
	z-index: 999;
}

.yp_win.ani_show {
	-webkit-animation: ani_show .15s ease-in both;
	-o-animation: ani_show .15s ease-in both;
	animation: ani_show .15s ease-in both;
}

.yp_win.ani_hide {
	-webkit-animation: ani_hide .1s ease-in both;
	-o-animation: ani_hide .1s ease-in both;
	animation: ani_hide .1s ease-in both;
}

.yp_wins_overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 998;
	background: #000;
	opacity: .4;
}

.yp_wins_tips {
	padding: 15px 25px;
	background: #fff;
	border: solid 2px #1FCF6D;
	box-shadow: 0px 0px 15px rgba(173, 173, 173, 0.5);
}

.yp_wins_tips i {
	width: 32px;
	height: 32px;
	float: left;
	background: url(../../images/yp_tipBoxes/yp-tips-sprite.png) no-repeat;
}

.yp_wins_tips span {
	line-height: 32px;
	padding-left: 10px;
	font-family: "microsoft yahei";
	color: #252525;
	font-size: 16px;
}

.yp_wins_tips.tip {
	border-color: #1FCF6D;
}

.yp_wins_tips.error {
	border-color: #FD533B;
}

.yp_wins_tips.warn {
	border-color: #F0BA00;
}

.yp_wins_tips.tip i {
	background-position: 0 0;
}

.yp_wins_tips.error i {
	background-position: -50px 0;
}

.yp_wins_tips.warn i {
	background-position: -100px 0;
}

.yp_wins_alert {
	width: 250px;
	border: 1px solid #E2E2E2;
	background: #fff;
	border-radius: 6px;
}

.yp_wins_alert p {
	padding: 25px 10px;
	line-height: 1.3;
	font-size: 16px;
	color: #252525;
	font-family: "microsoft yahei";
	text-align: center;
}

.yp_wins_alert div a.close {
	display: block;
	width: 100%;
	position: relative;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #1fcf6d;
	font-size: 16px;
	font-family: "microsoft yahei";
	text-decoration: none;
	border-top: 1px solid #E2E2E2;
}

.yp_wins_confirm {
	width: 250px;
	border: 1px solid #E2E2E2;
	background: #fff;
	border-radius: 6px;
}

.yp_wins_confirm p {
	padding: 25px 10px;
	line-height: 1.3;
	font-size: 16px;
	color: #252525;
	font-family: "microsoft yahei";
	text-align: center;
}

.yp_wins_confirm div a {
	float: left;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #1fcf6d;
	font-size: 16px;
	font-family: "microsoft yahei";
	text-decoration: none;
	border-top: 1px solid #E2E2E2;
}

.yp_wins_confirm div a.true {
	width: 125px;
}

.yp_wins_confirm div a.false {
	color: #7b7b7b;
	width: 124px;
	border-left: 1px solid #E2E2E2;
}

.yp_wins_prompt {
	width: 250px;
	border: 1px solid #E2E2E2;
	background: #fff;
	border-radius: 6px;
}

.yp_wins_prompt p {
	padding: 25px 10px 0px;
	line-height: 1.3;
	font-size: 16px;
	color: #252525;
	font-family: "microsoft yahei";
	text-align: center;
}

.yp_wins_prompt input {
	width: 155px;
	height: 30px;
	border: solid 1px #D1D1D1;
	outline: 0;
	display: block;
	margin: 20px auto;
	padding: 0 5px;
	font-size: 14px;
	color: #666;
	font-family: 'microsoft yahei';
}

.yp_wins_prompt div a.close {
	display: block;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #1fcf6d;
	font-size: 16px;
	font-family: "microsoft yahei";
	text-decoration: none;
	border-top: 1px solid #E2E2E2;
}

/*动画 ani_show*/
@-webkit-keyframes ani_show {
	0% {
		transform: scale(0.7, 0.7);
		-ms-transform: scale(0.7, 0.7);
		-moz-transform: scale(0.7, 0.7);
		-webkit-transform: scale(0.7, 0.7);
		-o-transform: scale(0.7, 0.7);
		opacity: .5;

	}

	70% {
		transform: scale(1.08, 1.08);
		-ms-transform: scale(1.08, 1.08);
		-moz-transform: scale(1.08, 1.08);
		-webkit-transform: scale(1.08, 1.08);
		-o-transform: scale(1.08, 1.08);
		opacity: 1
	}

	100% {
		transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		opacity: 1;
	}
}



/*动画 ani_hide*/
@-webkit-keyframes ani_hide {
	0% {
		transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		opacity: 1;
	}

	30% {
		transform: scale(1.05, 1.05);
		-ms-transform: scale(1.05, 1.05);
		-moz-transform: scale(1.05, 1.05);
		-webkit-transform: scale(1.05, 1.05);
		-o-transform: scale(1.05, 1.05);
		opacity: 1;
	}

	100% {
		transform: scale(0.5, 0.5);
		-ms-transform: scale(0.5, 0.5);
		-moz-transform: scale(0.5, 0.5);
		-webkit-transform: scale(0.5, 0.5);
		-o-transform: scale(0.5, 0.5);
		opacity: 0;

	}

	/* 100%{ 
		transform:scale(0,0);
		-ms-transform:scale(0,0); 	
		-moz-transform:scale(0,0); 	
		-webkit-transform:scale(0,0); 
		-o-transform:scale(0,0);
		opacity: 0;
	 }*/
}


/*
.yp_wins_tip.ani_show{-webkit-animation: ani_show 2s ease-in both;-o-animation: ani_show 2s ease-in both;animation: ani_show 2s ease-in both;}



/*动画*/
/*@-webkit-keyframes ani_show {
	0%{ 
		transform:scale(0.1,0.1);
		-ms-transform:scale(0.1,0.1); 	
		-moz-transform:scale(0.1,0.1); 	
		-webkit-transform:scale(0.1,0.1); 
		-o-transform:scale(0.1,0.1);
		opacity: .8;

	 }
	1%{ 
		transform:scale(0.1,0.1);
		-ms-transform:scale(0.1,0.1); 	
		-moz-transform:scale(0.1,0.1); 	
		-webkit-transform:scale(0.1,0.1); 
		-o-transform:scale(0.1,0.1);
		opacity: .8;

	 }
	7%{ 
		transform:scale(1.1,1.1);
		-ms-transform:scale(1.1,1.1); 	
		-moz-transform:scale(1.1,1.1); 	
		-webkit-transform:scale(1.1,1.1); 
		-o-transform:scale(1.1,1.1);
		opacity: 1
	 }
	 10%{ 
		transform:scale(1,1);
		-ms-transform:scale(1,1); 	
		-moz-transform:scale(1,1); 	
		-webkit-transform:scale(1,1); 
		-o-transform:scale(1,1);
		opacity: 1;
	 }
	 90%{ 
		transform:scale(1,1);
		-ms-transform:scale(1,1); 	
		-moz-transform:scale(1,1); 	
		-webkit-transform:scale(1,1); 
		-o-transform:scale(1,1);
		opacity: 1;
	 }
	 100%{ 
		transform:scale(.1,.1);
		-ms-transform:scale(.1,.1); 	
		-moz-transform:scale(.1,.1); 	
		-webkit-transform:scale(.1,.1); 
		-o-transform:scale(.1,.1);
		opacity: 0;
	 }
}

*/
.yp_win {
	position: fixed;
	z-index: 999;
}

.yp_win.ani_show {
	-webkit-animation: ani_show .15s ease-in both;
	-o-animation: ani_show .15s ease-in both;
	animation: ani_show .15s ease-in both;
}

.yp_win.ani_hide {
	-webkit-animation: ani_hide .1s ease-in both;
	-o-animation: ani_hide .1s ease-in both;
	animation: ani_hide .1s ease-in both;
}

.yp_wins_overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 998;
	background: #000;
	opacity: .4;
}

.yp_wins_tips {
	padding: 15px 25px;
	background: #fff;
	border: solid 2px #1FCF6D;
	box-shadow: 0px 0px 15px rgba(173, 173, 173, 0.5);
}

.yp_wins_tips i {
	width: 32px;
	height: 32px;
	float: left;
	background: url(../../images/yp_tipBoxes/yp-tips-sprite.png) no-repeat;
}

.yp_wins_tips span {
	line-height: 32px;
	padding-left: 10px;
	font-family: "microsoft yahei";
	color: #252525;
	font-size: 16px;
}

.yp_wins_tips.tip {
	border-color: #1FCF6D;
}

.yp_wins_tips.error {
	border-color: #FD533B;
}

.yp_wins_tips.warn {
	border-color: #F0BA00;
}

.yp_wins_tips.tip i {
	background-position: 0 0;
}

.yp_wins_tips.error i {
	background-position: -50px 0;
}

.yp_wins_tips.warn i {
	background-position: -100px 0;
}

.yp_wins_alert {
	width: 250px;
	border: 1px solid #E2E2E2;
	background: #fff;
	border-radius: 6px;
}

.yp_wins_alert p {
	padding: 25px 10px;
	line-height: 1.3;
	font-size: 16px;
	color: #252525;
	font-family: "microsoft yahei";
	text-align: center;
}

.yp_wins_alert div a.close {
	display: block;
	width: 100%;
	position: relative;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #1fcf6d;
	font-size: 16px;
	font-family: "microsoft yahei";
	text-decoration: none;
	border-top: 1px solid #E2E2E2;
}

.yp_wins_confirm {
	width: 250px;
	border: 1px solid #E2E2E2;
	background: #fff;
	border-radius: 6px;
}

.yp_wins_confirm p {
	padding: 25px 10px;
	line-height: 1.3;
	font-size: 16px;
	color: #252525;
	font-family: "microsoft yahei";
	text-align: center;
}

.yp_wins_confirm div a {
	float: left;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #1fcf6d;
	font-size: 16px;
	font-family: "microsoft yahei";
	text-decoration: none;
	border-top: 1px solid #E2E2E2;
}

.yp_wins_confirm div a.true {
	width: 125px;
}

.yp_wins_confirm div a.false {
	color: #7b7b7b;
	width: 124px;
	border-left: 1px solid #E2E2E2;
}

.yp_wins_prompt {
	width: 250px;
	border: 1px solid #E2E2E2;
	background: #fff;
	border-radius: 6px;
}

.yp_wins_prompt p {
	padding: 25px 10px 0px;
	line-height: 1.3;
	font-size: 16px;
	color: #252525;
	font-family: "microsoft yahei";
	text-align: center;
}

.yp_wins_prompt input {
	width: 155px;
	height: 30px;
	border: solid 1px #D1D1D1;
	outline: 0;
	display: block;
	margin: 20px auto;
	padding: 0 5px;
	font-size: 14px;
	color: #666;
	font-family: 'microsoft yahei';
}

.yp_wins_prompt div a.close {
	display: block;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #1fcf6d;
	font-size: 16px;
	font-family: "microsoft yahei";
	text-decoration: none;
	border-top: 1px solid #E2E2E2;
}

/*动画 ani_show*/
@-webkit-keyframes ani_show {
	0% {
		transform: scale(0.7, 0.7);
		-ms-transform: scale(0.7, 0.7);
		-moz-transform: scale(0.7, 0.7);
		-webkit-transform: scale(0.7, 0.7);
		-o-transform: scale(0.7, 0.7);
		opacity: .5;

	}

	70% {
		transform: scale(1.08, 1.08);
		-ms-transform: scale(1.08, 1.08);
		-moz-transform: scale(1.08, 1.08);
		-webkit-transform: scale(1.08, 1.08);
		-o-transform: scale(1.08, 1.08);
		opacity: 1
	}

	100% {
		transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		opacity: 1;
	}
}



/*动画 ani_hide*/
@-webkit-keyframes ani_hide {
	0% {
		transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		opacity: 1;
	}

	30% {
		transform: scale(1.05, 1.05);
		-ms-transform: scale(1.05, 1.05);
		-moz-transform: scale(1.05, 1.05);
		-webkit-transform: scale(1.05, 1.05);
		-o-transform: scale(1.05, 1.05);
		opacity: 1;
	}

	100% {
		transform: scale(0.5, 0.5);
		-ms-transform: scale(0.5, 0.5);
		-moz-transform: scale(0.5, 0.5);
		-webkit-transform: scale(0.5, 0.5);
		-o-transform: scale(0.5, 0.5);
		opacity: 0;

	}

	/* 100%{ 
		transform:scale(0,0);
		-ms-transform:scale(0,0); 	
		-moz-transform:scale(0,0); 	
		-webkit-transform:scale(0,0); 
		-o-transform:scale(0,0);
		opacity: 0;
	 }*/
}


/*
.yp_wins_tip.ani_show{-webkit-animation: ani_show 2s ease-in both;-o-animation: ani_show 2s ease-in both;animation: ani_show 2s ease-in both;}



/*动画*/
/*@-webkit-keyframes ani_show {
	0%{ 
		transform:scale(0.1,0.1);
		-ms-transform:scale(0.1,0.1); 	
		-moz-transform:scale(0.1,0.1); 	
		-webkit-transform:scale(0.1,0.1); 
		-o-transform:scale(0.1,0.1);
		opacity: .8;

	 }
	1%{ 
		transform:scale(0.1,0.1);
		-ms-transform:scale(0.1,0.1); 	
		-moz-transform:scale(0.1,0.1); 	
		-webkit-transform:scale(0.1,0.1); 
		-o-transform:scale(0.1,0.1);
		opacity: .8;

	 }
	7%{ 
		transform:scale(1.1,1.1);
		-ms-transform:scale(1.1,1.1); 	
		-moz-transform:scale(1.1,1.1); 	
		-webkit-transform:scale(1.1,1.1); 
		-o-transform:scale(1.1,1.1);
		opacity: 1
	 }
	 10%{ 
		transform:scale(1,1);
		-ms-transform:scale(1,1); 	
		-moz-transform:scale(1,1); 	
		-webkit-transform:scale(1,1); 
		-o-transform:scale(1,1);
		opacity: 1;
	 }
	 90%{ 
		transform:scale(1,1);
		-ms-transform:scale(1,1); 	
		-moz-transform:scale(1,1); 	
		-webkit-transform:scale(1,1); 
		-o-transform:scale(1,1);
		opacity: 1;
	 }
	 100%{ 
		transform:scale(.1,.1);
		-ms-transform:scale(.1,.1); 	
		-moz-transform:scale(.1,.1); 	
		-webkit-transform:scale(.1,.1); 
		-o-transform:scale(.1,.1);
		opacity: 0;
	 }
}

*/