.request-body {
  background: fixed url(../images/request/bg.jpg) no-repeat center;
  background-size: cover;
}
.request-left > * {
  max-width: 522px;
}
.request-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1000px) {
  .request-left {
    display: none;
  }
  .request-right {
    justify-content: center;
  }
}
.request-body .h2-ai {
  margin: 0 5px;
  font-family:
    Microsoft YaHei UI,
    Microsoft YaHei UI;
  font-weight: bold;
  font-size: 26px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  background-image: linear-gradient(360deg, #2979fa 0%, #ff4ef3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.character-container {
  display: grid;
  /* 4列等分，基础网格 */
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 160px);
  gap: 10px;
}
.character-container > div {
  padding-top: 26px;
  padding-left: 30px;
  border-radius: 25px;
  overflow: hidden;
}
.character-container h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  background-image: linear-gradient(88deg, #ffffff 0%, #8d67ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.item-1 {
  background: url(../images/request/character-bg-1.webp) no-repeat center;
}
.item-2 {
  grid-row: span 2;
  background: url(../images/request/character-bg-2.webp) no-repeat center;
}
.item-3 {
  background: url(../images/request/character-bg-3.webp) no-repeat center;
}
.character-container .item-4 {
  padding-top: 0px;
  grid-column: span 2;
  background: url(../images/request/character-bg-4.webp) no-repeat center;
}

.form-wrap {
  max-width: 512px;
  width: 100%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 12px;
  box-sizing: border-box;
}
.form-wrap .title-tip {
  color: rgba(0, 0, 0, 0.6);
}
.form-wrap label {
  margin-bottom: 0px;
}
.form-wrap input {
  height: 36px;
  line-height: 36px;
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  padding: 0 12px;
  transition: all 0.3s ease-in-out;
}
.form-wrap input:hover,
.form-wrap input:focus {
  box-shadow: none;
  border: 1px solid #4618e5;
}
.form-wrap input::-webkit-input-placeholder {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
}
.form-wrap .get-sms-code {
  color: #ffffff;
  line-height: 18px;
  cursor: pointer;
  padding: 9px 18px;
  margin-left: 14px;
  background: #6a40fe;
  border-radius: 6px;
}
.form-wrap .get-sms-code:hover {
  box-shadow: 0 4px 15px 0px rgba(107, 108, 110, 0.16);
}
.canvas-code {
  width: 100px;
  height: 36px;
  cursor: pointer;
  border-radius: 6px;
  background-color: #d9d9d9;
}
.btn-submit {
  width: 100%;
  height: 48px;
  font-size: 18px;
  line-height: 48px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(90deg, #6a40fe 0%, #7a9cff 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:not(:disabled):hover {
  box-shadow:
    0 2px 10px 0 rgba(44, 50, 83, 0.01),
    0 4px 48px 0 rgba(44, 50, 83, 0.16);
}

.btn-submit:disabled {
  opacity: 0.7; /* 变淡 */
  cursor: pointer;
}

/* 定制化 Loading 旋转动画 (模拟GIF) */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px; /* 距离文字的间距 */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.agree-wrap {
  text-align: center;
  color: #666c75;
  font-size: 12px;
}

.agree-wrap a {
  color: #3370ff;
}
.agree-wrap a:hover {
  color: #457dff;
}
.agree-wrap a:active {
  color: #1149cb;
}

.foot-comInf-wrap {
  padding-top: 14px;
  padding-bottom: 14px;
}

.foot-comInf-wrap * {
  color: #667272;
}

.foot-comInf-wrap a:hover {
  color: #1d1d1f;
}

/*提示框*/
.promptDialog {
  max-width: 500px;
  width: 90vw;
  position: absolute;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-name: scalesmall-spring;
  top: 50%;
  left: 50%;
  box-shadow: 0px 2px 10px 1px rgba(19, 36, 32, 0.12);
  z-index: 9999;
}

.promptDialog .promptitle {
  color: #132420;
  font-size: 16px;
  line-height: 22px;
}

.promptDialog .promptText {
  padding: 26px 0;
  text-align: center;
  color: #132420;
  line-height: 22px;
}

.promptDialog .promptClose {
  display: inline-block;
  color: #ffffff;
  line-height: 18px;
  cursor: pointer;
  padding: 9px 18px;
  margin-left: 14px;
  background: #6a40fe;
  border-radius: 6px;
}

.promptDialog .promptClose:hover {
  box-shadow: 0 4px 15px 0px rgba(107, 108, 110, 0.16);
}

@keyframes scalesmall-spring {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.5);
  }

  80% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.register-red {
  color: red;
  font-size: 12px;
  display: block;
  margin-top: 10px;
}

.containerFluid {
  width: 400px;
  height: 400px;
  display: none;
  position: fixed;
  transform: translate(-50%, 0);
  top: 50%;
  left: 50%;
  z-index: 9999;
  margin: 0;
  padding: 0;
  margin-top: -238px;
  background-color: initial;
  box-shadow: initial;
}
.slidercaptcha .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slidercaptcha .register-alert-close {
  cursor: pointer;
}

.slidercaptcha .register-alert-close:after {
  content: "\d7";
  color: #6a40fe;
  font-size: 22px;
}

.containerFluid .register-alert-close:hover:after {
  opacity: 0.8;
}

.slidercaptcha {
  height: 286px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.125);
  background-color: #fff;
}

.slidercaptcha .card-body {
  padding: 1rem;
}

.slidercaptcha canvas:first-child {
  border-radius: 4px;
  border: 1px solid #e6e8eb;
}

.slidercaptcha.card .card-header {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.03);
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
