.shortcut {
	position: fixed;
	top: 145px;
	left: 0px;
	width: 52px;

	z-index: 9999;



}

.shortcut .box-icon {
	position: relative;
	background: url(../images/shortcut/s-bg.png) top center no-repeat;
	height: 453px;
	z-index: 1;


	width: 66px;
}

.shortcut ul {
	margin: 0;
	padding: 0;
	padding-top: 6px;
	/* padding-left: 5px; */
}

.shortcut ul li {
	padding: 0;
	margin: 0;
	padding-bottom: 6px;
	text-align: center;
}

.start-rocket {
	-ms-transform: rotate(0deg);
	/* IE 9 */
	-webkit-transform: rotate(0deg);
	/* Chrome, Safari, Opera */
	transform: rotate(0deg);

	-webkit-animation: rocket 7s;

	animation: rocket 7s;
}

.smoke {
	width: 100px;
	height: 290px;
	position: absolute;
	top: 439px;
	left: -32px;
	z-index: -1;
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	background: url(../images/shortcut/Smoke.gif) top center no-repeat;
	background-size: cover;
	opacity: 0.5;
	filter: alpha(opacity=50);
}

@-webkit-keyframes rocket {
	0% {
		top: 900px;
		left: 300px;
		-ms-transform: rotate(-10deg scale(0.3, 0.3));
		/* IE 9 */
		-webkit-transform: rotate(-10deg) scale(0.3, 0.3);
		/* Chrome, Safari, Opera */
		transform: rotate(-10deg) scale(0.3, 0.3);

		opacity: 0.3;
		filter: alpha(opacity=30);
		/* For IE8 and earlier */
	}

	100% {
		top: 85px;

	}
}