body * {
  box-sizing: border-box;
  flex-shrink: 0;
}
body {
  font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
    Arial, PingFang SC-Light, Microsoft YaHei;
}
input {
  background-color: transparent;
  border: 0;
}
button {
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  outline: none;
  background-color: transparent;
}

button:active {
  opacity: 0.6;
}
.flex1 {
  flex: 1;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.justify-start {
  display: flex;
  justify-content: flex-start;
}
.justify-center {
  display: flex;
  justify-content: center;
}

.justify-end {
  display: flex;
  justify-content: flex-end;
}
.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}
.justify-around {
  display: flex;
  justify-content: space-around;
}
.justify-between {
  display: flex;
  justify-content: space-between;
}
.align-start {
  display: flex;
  align-items: flex-start;
}
.align-center {
  display: flex;
  align-items: center;
}
.align-end {
  display: flex;
  align-items: flex-end;
}
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
}


.padding10 {
  padding: 10px;
}
.needTop {
  border-top: 1px solid #333;
}
.needBottom {
  border-bottom: 1px solid #333;
}
.metting-main {
  margin: 50px auto;
  width: 1000px;
  font-family: 'SourceHanSansCN-Bold-Alphabetic';
  font-size: 16px;
  flex-direction: column;
  border: 1px solid #333;
  /* min-width: 1000px; */
}
.titleTop {
  font-size: 22px;
  text-align: center;
}
.titleTop p {
  margin-top: 10px;
}
.leftDiv {
  width: 240px;
  text-align: center;
  border-right: 1px solid #333;
}
.timeLeft {
  width: 150px;
  border-right: 1px solid #333;
}
.flex1 p {
  padding: 5px 0;
}
.leftDiv p {
  padding: 5px 0;
}

@media screen and (max-width: 997px) {
  .metting-main {
    width: auto;
  }
}
@media screen and (max-width: 700px) {
  .leftDiv {
    width: 150px;
  }
}
@media screen and (max-width: 400px) {
  .leftDiv {
    width: 110px;
  }
  .leftDiv p {
    word-wrap: break-word;
  }
}