* {
margin: 0;
padding: 0;
}
.d {
display: flex;
width: 100%;
height: 200px;
}
.box1 {
width: 200px;
height: 100%;
background-color: rgb(88, 121, 80);
}
.box2 {
/* flex: 1; */
flex-grow: 1; /* 重点 */
height: 100%;
background-color: rgb(173, 119, 119)
}