.wrap {
  background-color: #daf0ff;
}
.ftable {
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #D7D7D7;
  border-left: solid 1px #D7D7D7;
  background-color: #fff;
}
.ftable .fth {
  font-size: 16px;
  font-weight: normal;
  color: #333;
}
.ftable .ftd {
  font-size: 14px;
  font-weight: normal;
  color: #333333;
}
.ftable .frow {
  display: flex;
  justify-content: start;
}
.ftable .fth,
.ftable .ftd {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #D7D7D7;
  border-right: solid 1px #D7D7D7;
  line-height: 26px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.ftable .fth {
  width: 226px;
  background-color: #f0f7fc;
  justify-content: center;
}
@media (max-width: 600px) {
  .ftable .fth {
    width: 120px;
  }
}
.ftable .ftd {
  flex: 1;
  padding-left: 40px;
  padding-right: 40px;
  word-break: break-all;
  text-align: justify;
}
@media (max-width: 992px) {
  .ftable {
    width: 100%;
  }
  .ftable .frow {
    width: 100% !important;
  }
}
