/*公共样式*/
*{
	margin: 0px;
	padding: 0px;
}

body{
	background: black;
}

/*三勾玉写轮眼*/

.video{
	
	border: 1px red solid;
}
.all{
	width: 1000px;
	height: 600px;
	margin: 50px auto;
	border: 1px solid;
}

/*左眼部分*/

.left{
	width: 200px;
	height: 108px;
	background: white;
	border-radius: 50%;
	margin: 160px 100px;
	position: relative;top: 35px;
	border:1px solid;
}

.lcircle1{
	width: 100px;
	height: 100px;
	border: 5px solid;
	margin: 20px auto;
	border-radius: 50%;
	background: black;
	position: relative;bottom:19px;
}

.lcircle2{
	width: 80px;
	height: 80px;
	border: 5px solid;
	margin: 20px auto;
	background: #E90708;
	border-radius: 50%;
	/*animation:sport .6s infinite;*/
	position: absolute;top:-15px;left: 6px;
}

.lcircle3{
	width: 50px;
	height: 50px;
	border: 1px solid;
	border-radius: 50%;
	position: relative;top: 15px;left: 15px;
	animation:sport 2s ease-in-out;
	/*animation-iteration-count:3;*/
	-webkit-animation:sport 2s infinite;
}

.yu1{
	position: relative;left: 18px;bottom: 13px;
}

.yu2{
	position: relative;right: 10px;
}

.yu3{
	position: relative;left: 40px;bottom: 20px;
}

.lcircle4{
	width: 15px;
	height: 15px;
	border:1px solid;
	border-radius: 50%;
	background: black;
	position: absolute;left: 93px;top: 47px;
}

/*右眼部分*/

.right{
	width: 200px;
	height: 108px;
	background: white;
	border-radius: 50%;
	margin: 160px 100px;
	position: absolute;left: 800px;bottom: 33%;
}

.rcircle1{
	width: 180px;
	height: 90px;
	border: 1px solid;
    border-radius: 50%;
    background: #AE91CB;
    position: relative;
}

.rcircle2{
	width: 160px;
	height: 80px;
	border:1px solid;
	border-radius: 50%;
	position: absolute;left: 10px;top: 3px;
}

.rcircle3{
	width: 140px;
	height: 70px;
	border:1px solid;
	border-radius: 50%;
	position: absolute;left: 10px;top: 3px;
}

.rcircle4{
	width: 120px;
	height: 60px;
	border:1px solid;
	border-radius: 50%;
	position: absolute;left: 10px;top: 3px;

}

.rcircle5{
	width: 100px;
	height: 50px;
	border:1px solid;
	border-radius: 50%;
	position: absolute;left: 10px;top: 5px;
}

.rcircle6{
	width: 40px;
	height: 40px;
	border:2px solid;
	border-radius: 50%;
	background: #9876C3;
	position: absolute;left: 28px;top: 5px;
}

.rcircle7{
	width: 12px;
	height: 12px;
	border:2px solid;
	border-radius: 50%;
	background: black;
	position: absolute;left: 13px;top: 13px;

}
@keyframes sport{
	0%{
		transform:rotate(0deg);
	}

	/*50%{
		transform:rotate(180deg);
	}*/

	100%{
		transform:rotate(360deg);
	}

}