<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.content {
  padding: .26rem .3rem;
  background: #fff;
  box-shadow: 0 .16rem .14rem 0 rgba(99, 75, 75, 0.06);
  margin: .4rem 0;
}

form {
  padding: .51rem .5rem;
}

.label {
  display: inline-block;
  font-size: .16rem;
  line-height: .18rem;
  color: #333333;
  width: .8rem;
  text-align: right;
  margin-right: .12rem;
}

input,
textarea {
  padding: .12rem;
  border-radius: .02rem;
  border: .01rem solid #DCDFE2;
  width: calc(100% - 1.5rem);
}

.form-control {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}

.form-control label {
  position: absolute;
  bottom: -20px;
  left: 100px;
  color: red;
}

.btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .16rem;
  margin-top: 1.32rem;
}

.submit {
  width: 1.66rem;
  height: .44rem;
  border-radius: 2px;
  background: #CF201A;
  border: none;
  font-size: .18rem;
  line-height: .26rem;
  color: #FFFFFF;
  padding: 0;
  cursor: pointer;
}

.submit:hover,
.reset:hover {
  background-color: rgba(207, 32, 26, 0.3);
}

.reset {
  width: 1.66rem;
  height: .44rem;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #CF201A;
  font-size: .18rem;
  line-height: .26rem;
  color: #CF201A;
  padding: 0;
  text-align: center;
  cursor: pointer;
}

.required {
  position: relative;
}

.required::after {
  content: '*';
  position: absolute;
  right: -.1rem;
  top: .04rem;
  font-size: .14rem;
  color: #CF201A;
}</pre></body></html>