.wukong {
				position: fixed;
				right: 0;
				bottom: 200px;
				z-index: 999999;
				animation: mymove 5s infinite ease-in-out;
			}

			@keyframes mymove {
				0% {
					bottom: 200px;
				}

				50% {
					bottom: 250px;
				}

				100% {
					bottom: 200px;
				}
			}

			.message {
				padding: 5px 20px;
				color: #000;
				font-size: 15px;
				position: absolute;
				top: -50px;
				right: 50px;
				background-color: #f3e100;
				white-space: nowrap;
			}

			.message:before {
				content: '';
				position: absolute;
				right: 10px;
				top: 100%;
				margin-left: 10px;
				float: left;
				width: 0;
				height: 0;
				border-width: 8px;
				border-style: solid;
				border-color: #f3e100 transparent transparent transparent;
			}

			.wukong .wukong-img {
				width: 150px;
				height: 150px;
				overflow: hidden;
			}

			.wukong-img img {
				width: 150px;
				height: 150px;
			}