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;
}
.box.baseBox {
  box-shadow: none;
}
.box.baseBox .row > span:nth-child(1) {
  flex: 0.03;
}
.box.baseBox .row > span:nth-child(2) {
  flex: 0.12;
}
.box.baseBox .row > span:nth-child(3) {
  flex: 0.1;
}
.box.baseBox .row > span:nth-child(4) {
  flex: 0.5;
  box-sizing: border-box;
  padding: 6px;
  text-align: left;
}
.box.baseBox .row > span:nth-child(5) {
  flex: 0.08;
}
.box.baseBox .row > span:nth-child(6) {
  flex: 0.06;
}
.box.baseBox .row > span:nth-child(7) {
  flex: 0.15;
}
