* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 100%;
}
.searchBox {
  margin: 0 auto;
  width: 1200px;
  height: 293px;
  background: #FFFFFF;
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.09);
  border-radius: 14px 14px 14px 14px;
  margin-top: 119px;
  padding: 30px 25px;
}
.searchBox h1 {
  margin-bottom: 15px;
}
.searchBox .box {
  width: 100%;
  display: flex;
  gap: 76px;
}
.searchBox .box input {
  width: 333px;
  height: 36px;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #AAAAAA;
  margin-top: 5px;
  padding-left: 10px;
}
.searchBox .box select {
  width: 333px;
  height: 36px;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #AAAAAA;
  margin-top: 5px;
  padding-left: 10px;
}
.searchBox p {
  margin: 10px 0px;
}
.searchBox p input {
  margin-left: 5px;
  margin-right: 5px;
}
.searchBox button {
  border: none;
  float: right;
  width: 130px;
  height: 41px;
  background: #165DFF;
  border-radius: 5px 5px 5px 5px;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  font-style: normal;
  text-transform: none;
}
.meetingBox {
  width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.meetingBox .meetingItem {
  width: 371px;
  height: 222px;
  background: #FFFFFF;
  box-shadow: 0px 4px 6px 0px rgba(82, 82, 82, 0.06);
  border-radius: 14px 14px 14px 14px;
  border: 1px solid #E5E5E5;
  padding: 23px 26px;
}
.meetingBox .meetingItem h1 {
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  text-align: left;
  font-style: normal;
  text-transform: none;
  height: 27px;
  line-height: 27px;
  margin-bottom: 14px;
}
.meetingBox .meetingItem h1 span {
  display: inline-block;
  width: 67px;
  height: 20px;
  line-height: 20px;
  background: #E7EEFF;
  border-radius: 49px 49px 49px 49px;
  font-weight: 400;
  font-size: 11px;
  color: #165DFF;
  text-align: center;
  font-style: normal;
  text-transform: none;
  float: right;
}
.meetingBox .meetingItem h1 span.item1 {
  background: #F0FDF4;
  color: #5fc184;
}
.meetingBox .meetingItem p {
  font-weight: 400;
  font-size: 12px;
  color: #868686;
  line-height: 18px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 8px;
}
.meetingBox .meetingItem p span {
  color: #f25757;
}
.meetingBox .meetingItem p button {
  float: right;
  width: 70px;
  height: 24px;
  background: #165DFF;
  border-radius: 4px 4px 4px 4px;
  font-weight: 400;
  font-size: 11px;
  color: #FFFFFF;
  text-align: center;
  font-style: normal;
  text-transform: none;
  border: none;
}
.bottomBox {
  width: 1200px;
  height: 400px;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid #E5E5E5;
  margin-top: 30px;
  padding: 20px;
}
.bottomBox table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
}
.bottomBox table tr {
  text-align: left;
}
.bottomBox table td,
.bottomBox table th {
  border-top: 1px solid #E5E5E5;
  border-left: none;
  border-right: none;
  color: #abadae;
}
.bottomBox table th {
  height: 40px;
  background-color: #f9fafb;
}
.bottomBox table th:first-child {
  padding-left: 15px;
}
.bottomBox table td {
  height: 85px;
}
.bottomBox table td:first-child {
  padding-left: 30px;
}
.bottomBox table td span.name {
  color: #333333;
}
.bottomBox table td span.item {
  display: inline-block;
  width: 67px;
  height: 20px;
  line-height: 20px;
  background: #E7EEFF;
  border-radius: 49px 49px 49px 49px;
  font-weight: 400;
  font-size: 11px;
  color: #165DFF;
  text-align: center;
  font-style: normal;
  text-transform: none;
}
.bottomBox table td span.item1 {
  background: #F0FDF4;
  color: #5fc184;
}
.bottomBox table td span.item2 {
  background: #f3e8ff;
  color: #762aa9;
}
.bottomBox table td button {
  border: none;
  background-color: #ffffff;
  color: #62a0ff;
}
