html {
  font-size: 16px;
  /* 修改根元素字体大小 */
}

.terms_confirmation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.terms_confirmation .terms_confirmation_pop {
  width: 280px;
  background: #fff;
  border-radius: 20px;
  border: solid 2px #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.terms_confirmation .terms_confirmation_pop .tc_title {
  font-size: 17px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

.terms_confirmation .terms_confirmation_pop .tc_desc {
  padding: 20px 25px;
  font-size: 14px;
  min-height: 100px;
  display: flex;
  align-items: center;
}
.terms_confirmation .terms_confirmation_pop .tc_desc p {
  text-align: justify;
  line-height: 20px;
}

.terms_confirmation .terms_confirmation_pop .tc_desc i {
  color: #3085f8;
  font-style: normal;
}

.terms_confirmation .terms_confirmation_pop .btn_box {
  border-top: 1px solid #ededed;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.terms_confirmation .terms_confirmation_pop .btn_box button {
  width: 100%;
  outline: none;
  border: 0;
  background: none;
  height: 100%;
}

.terms_confirmation .terms_confirmation_pop .btn_box button:nth-child(2) {
  color: #3085f8;
  border-left: 1px solid #ededed;
}