html,
body {
  width: 100%;
  height: 100%;
}
body {
  box-sizing: border-box;
  padding: 10px;
}
.baseBox .row {
  display: flex;
}
.baseBox .row > span {
  flex: 1;
  text-align: center;
}
.baseBox {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 5px #000;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 15px;
}
.baseBox .header {
  display: flex;
  height: 40px;
  align-items: center;
}
.baseBox .header input,
.baseBox .header select {
  width: 200px;
  height: 30px;
  margin-right: 15px;
}
.baseBox .title {
  box-sizing: border-box;
  border: 1px solid #222;
  height: 30px;
  line-height: 30px;
  font-weight: 800;
  font-size: 14px;
  background-color: #238c81;
  color: #fff;
}
.baseBox .title span {
  border-right: 1px solid #222;
}
.baseBox .title span:last-child {
  border-right: 0px solid #222;
}
.baseBox .main {
  flex: 1;
  overflow: hidden;
}
.baseBox .main .one {
  line-height: 24px;
  border: 1px solid #222;
  border-top: none;
  box-sizing: border-box;
}
.baseBox .main .one span {
  border-right: 1px solid #222;
}
.baseBox .main .one span:last-child {
  border-right: 0px solid #222;
}
.father {
  display: flex;
}
.box.baseBox {
  box-shadow: none;
}
.box.baseBox .row > span:nth-child(1) {
  flex: 0.15;
}
.box.baseBox .row > span:nth-child(2) {
  flex: 0.3;
}
.box.baseBox .row > span:nth-child(3) {
  flex: 0.5;
}
.header > span {
  flex: 1;
  padding-left: 10px;
  font-size: 24px;
}
