/* animation */
@-webkit-keyframes scale{
	0%{
		-webkit-transform: scale(1.4);
	}
	100%{
		-webkit-transform: scale(1);
	}
}
@keyframes scale{
	0%{
		transform: scale(1.4);
	}
	100%{
		transform: scale(1);
	}
}
body {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}
.miandl {
    position: relative;
    width: 750px;
    height: 1204px;
    margin: 0px auto;
    background: url("../img/predl.jpg") 50% 50% no-repeat;
}

.tipbox {
    position: absolute;
    width: 100%;
    top: 10px;
}
.img-logo{
    width: 136px;
    height: 136px;
    display: block;
    margin: 10px auto;
}
.tipbox .tipbox-words {
    width: 590px;
    text-align: center;
    font: bold 28px/56px '';
    margin: 0 auto;
    color: #434343;
}
.rocket {
    background: url("../img/rocket.jpg") no-repeat scroll 10px 0;
    height: 56px;
    padding: 14px 60px;
    width: 49px;
}
.red{color: #e60012}

.tipbox .friendTip {
    position: relative;
    width: 294px;
    margin: 32px auto 0;
}
.friendTip p{
	font: 24px/34px "";
	color: #9d9d9d;
}
.friendTip a {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 16px;
}
.friendTip .a1 {
    right: 30px;
    background: rgb(202, 200, 199);
    transition: all 0.5s linear;
    animation: scale 1s linear 1s infinite alternate;
}
.friendTip .a2 {
    right: 10px;
    background: rgb(153, 156, 157);
    transition: all 0.5s linear;
    animation: scale 1s linear 2s infinite alternate;
}
.friendTip .a3 {
    right: -10px;
    background: rgb(65, 70, 73);
    transition: all 0.5s linear;
    animation: scale 1s linear 3s infinite alternate;
}
.mask{
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
}
.pop{
    background: url("../img/pop.jpg") no-repeat;
    width: 681px;
    height: 745px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -340px;
    margin-top: -310px;
}
.close{
    width: 88px;
    height: 88px;
    display: block;
    position: absolute;
    top: 480px;
    right: 300px;
    background: url(../img/close.png) no-repeat;
}
.none{
    display: none;
}