form.acss 1.99 KB
.form-comp {
  background: url('/images/form/form-bg-1.png') center no-repeat;
  background-size: 100% 100%;
  width: 723rpx;
  height: 691rpx;
  padding-top: 60rpx;
  box-sizing: border-box;
  text-align: center;
}

.form-comp-2 {
  background: url('/images/form/form-bg-2.png') center no-repeat;
  background-size: 100% 100%;
  width: 723rpx;
  height: 1021rpx;
}

.form-comp .number {
  font-size: 52rpx;
  font-weight: bold;
  letter-spacing: 1.29rpx;
  color: #131313;
}

.form-comp .tit {
  font-size: 40rpx;
  font-weight: bold;
  text-align: center;
  color: #ff027c;
  margin: 14rpx auto 0;
}

.form-comp .tips {
  font-size: 23rpx;
  font-weight: 600;
  color: #727272;
  margin: 14rpx auto 0;
}

.form {
  margin: 32rpx auto 0;
}

.form-item {
  width: 647rpx;
  height: 86rpx;
  border-radius: 16rpx;
  border: solid 1rpx #787878;
  background-color: #fcf8ff;
  margin: 0 auto 24rpx;
  padding: 0 32rpx;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.form-item .label {
  display: flex;
  width: 150rpx;
  font-weight: bold;
  font-size: 32rpx;
}

.form-item .label .requrie {
  color: #f00;
  font-weight: 500;
}

.form-item .ipt {
  background-color: transparent;
  flex: 1;
  font-size: 28rpx;
}

.form-comp .submit-btn {
  background: url('/images/form/submit-btn.png') center no-repeat;
  background-size: 100% 100%;
  width: 630rpx;
  height: 102rpx;
  margin: 40rpx auto 0;
}

.form-comp .submit-tips {
  margin: 20rpx auto 0;
  font-size: 23rpx;
  font-weight: 600;
  text-align: center;
  color: #727272;
}

.form-comp .func {}

.form-comp .func .icon {
  background: url('/images/form/icon-question.png') center no-repeat;
  background-size: 100% 100%;
  width: 30rpx;
  height: 30rpx;
}


.untouch {
  pointer-events: none;
}

.ani-heart {
  animation: ani-heart-key 1.2s linear infinite;
}

@keyframes ani-heart-key {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}