<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>xiaomi</title>
<style>
.dafather{
width: 1200px;
height: 1200px;
background-color: green;
display:flex;
}
.father1{
display:flex;
width:1000px ;
height: 1200px;
background-color: red;
flex-direction: column;
}
.father2 {
display: flex;
width: 200px;
height: 1200px;
background-color: blue;
justify-content:space-around;
aligen-content:space-around;
flex-wrap:wrap;
}
.son1,
.son2,
.son3,
.son4,
.son5,
.son6
{
display:flex;
aligen-content:space-between;
width: 200px;
height: 200px;
flex-wrap:wrap;
background-color: purple;
justify-content:space-between;
}
</style>
</head>
<body>
<div class="yizhnegye">
<span class="daohang">
<span claa="tubiao">xiaomitubiao</span>
<a>xiaomi</a>
<a>xiaomi</a>
<a>xiaomi</a>
<a>xiaomi</a>
<a>xiaomi</a>
<a>xiaomi</a>
<a>xiaomi</a>
<a>xiaomi</a>
<a>xiaomi</a>
<a>xiaomi</a>
<input>
<div class="shudaohang"></div>
</div>
<div class="dafather">
<div class="father2">
<div class="son1">son1</div>
<div class="son2">son1</div>
<div class="son3">son1</div>
<div class="son4">son1</div>
<div class="son5">son1</div>
<div class="son6">son1</div>
</div>
<div class="father1"></div>
</div>
</body>
</html>