@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../font/SourceHanSansCN-Regular.otf') format('truetype');
}


.part {
  width: 100%;
  background-color: #f2f6fb;
  padding: 80px 0;
  font-family: 'SourceHanSansCN';
}
.part .info {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'SourceHanSansCN';
}

.part .info p {
  display: flex;
  align-items: center;
  margin: 30px 0;
}
.part .info p img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
/* .info .code {
  margin-left: 80px;
} */
.right {
  width: 500px;
  height: auto;
  background-color: #fff;
  box-shadow: 0px 7px 8px 0px #dbe6f4;
  border-radius: 8px;
  font-family: 'SourceHanSansCN';
}
.form-container {
  width: 400px;
  margin-left: 35px;
  padding: 32px 24px;
  font-size: 14px;
  font-family: 'SourceHanSansCN';
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  background-size: 200% 100%;
}

.form-container button:active {
  scale: 0.95;
}

.form-container .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-container .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #717171;
  font-weight: 600;
  font-size: 12px;
}

.form-container .form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  color: #414141;
  font-family: inherit;
  background-color: transparent;
  border: 1px solid #414141;
  font-family: 'SourceHanSansCN';
}

.form-container .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  resize: none;
  color: #414141;
  height: 96px;
  border: 1px solid #414141;
  background-color: transparent;
  font-family: inherit;
}

.form-container .form-group input::placeholder {
  opacity: 0.5;
}

.form-container .form-group input:focus {
  outline: none;
  border-color: #3b8ee0;
}

.form-container .form-group textarea:focus {
  outline: none;
  border-color: #3b8ee0;
}

.form-container .form-submit-btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: flex-start;
  font-family: inherit;
  color: #fff;
  font-weight: 600;
  width: 40%;
  background: #3b8ee0;
  border: 1px solid #3b8ee0;
  padding: 12px 16px;
  font-size: inherit;

  gap: 8px;
  margin: 8px auto;
  cursor: pointer;
  border-radius: 6px;
}

.form-container .form-submit-btn:hover {
  background-color: #68a2e8;
  color: #fff;
  border-color: #68a2e8;
}
