<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
padding: 0;
margin: 0;
}
.head {
position: relative;
width: 350px;
height: 350px;
background-color: #00acd5;
border-radius: 50%;
margin: 100px auto;
}
.head div {
position: absolute;
}
.eye {
width: 85px;
height: 96px;
border-radius: 45px;
background-color: #fff;
top:50px ;
left: 80px;
border: 3px solid #111;
box-sizing: border-box;
z-index: 1;
}
.eye1 div {
width: 17px;
height: 17px;
border-radius: 50%;
background-color: #111;
top: 50px;
left: 50px;
}
.eye2 {
left: 165px;
}
.eye2 div {
width: 17px;
height: 17px;
border-radius: 50%;
background-color: #111;
top: 50px;
right: 50px;
}
.face {
width:306px ;
height:213px ;
border-radius: 100px;
background-color: #fff;
top: 100px;
left: 22px;
}
.face .nose {
width: 36px;
height: 36px;
background-color: tomato;
border-radius: 50%;
top: 29px;
left: 123px;
border: 3px solid #111;
}
.face .nose .guang {
width: 12px;
height: 12px;
background-color: #fff;
border-radius:50% ;
filter: blur(2px);
right: 1px;
top: 11px;
}
.mouth {
width:252px ;
height: 252px;
border-radius: 50%;
border-bottom:5px solid #343434 ;
background-color: transparent;
left: 20px;
bottom: 32px;
box-sizing: border-box;
}
.nose1 {
width: 111px;
height: 111px;
border-right: 5px solid #343434;
background-color: transparent;
top: 65px;
left: 30px;
}
</style>
</head>
<body>
<div class="head">
<div class="eye eye1">
<div></div>
</div>
<div class="eye eye2">
<div></div>
</div>
<div class="face">
<div class="nose1"></div>
<div class="mouth"></div>
<div class="nose">
<div class="guang"></div>
</div>
</div>
</div>
</body>
</html>