/**录取查询样式**/

/* 容器 */
.luqu-container {
  /* max-width: 500px; */
  margin: 0 auto;
  /* padding: 40px 20px; */
}

/* 表单 */
.luqu-form {
  background: #fff;
  border-radius: 16px;
}

/* 头部 */
.luqu-header {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid #FFF5F3;
}

.luqu-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #aa0707;
  margin: 0 0 10px 0;
}

.luqu-desc {
  font-size: 14px;
  color: #999;
  margin: 0;
}

/* 表单组 */
.luqu-form-group {
  margin-bottom: 22px;
}

.luqu-label {
  display: block;
  font-size: 0.18rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.15rem;
}

/* 输入框 */
.luqu-input {
  width: 100%;
  height: 0.48rem;
  padding: 0 0.16rem;
  border: 0.01rem solid #E8E8E8;
  border-radius: 0.1rem;
  font-size: 0.16rem;
  color: #333;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background: #FAFAFA;
}

.luqu-input:focus {
  outline: none;
  border-color: #BB4B39;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(187, 75, 57, 0.1);
}

.luqu-input::placeholder {
  color: #CCC;
}

/* 验证码区域 */
.luqu-captcha {
  margin-bottom: 28px;
}

.captcha-box a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.captcha-box img{
  display: inline-block;
  height: 0.48rem;
  border-radius: 0.1rem;
  overflow: hidden;
  border: 0.01rem solid #E8E8E8;
  CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
  float: right;
}


.captcha-box input {
  flex: 1;
  width: 100%;
  height: 0.48rem;
  padding: 0 16px;
  border: 0.01rem solid #E8E8E8;
  border-radius: 0.1rem;
  font-size: 0.16rem;
  color: #333;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background: #FAFAFA;
  float: left;
  margin-right: .2rem;
}
.captcha-box input:focus {
  outline: none;
  border-color: #BB4B39;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(187, 75, 57, 0.1);
}

.captcha-img-link {
  display: inline-block;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #E8E8E8;
  transition: all 0.3s ease;
}

.captcha-img-link:hover {
  border-color: #BB4B39;
}

.captcha-img-link img {
  height: 100%;
  width: auto;
  vertical-align: middle;
}

/* 提交按钮 */
.luqu-submit {
  width: 100%;
  height: 52px;
  background: #aa0707;
  border: none;
  border-radius: 26px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.luqu-submit input{
  color: #fff;
  background: none;
  text-align: center;
  display: block;
  width: 100%;
  line-height: 0.52rem;
  font-size: 0.24rem;
  letter-spacing: 0.1rem;
}

.luqu-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(187, 75, 57, 0.35);
}

.luqu-submit:active {
  transform: translateY(0);
}

/* 提示信息 */
.luqu-tip {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid #F0F0F0;
}

/**移动端适配**/
@media screen and (max-width: 768px) {
  .luqu-container {
    padding: 20px 15px;
  }
  
  .luqu-form {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .luqu-header h1 {
    font-size: 22px;
  }
  
  .luqu-desc {
    font-size: 12px;
  }
  
  .luqu-input {
    height: 44px;
    font-size: 14px;
  }
  
  .captcha-box {
    flex-direction: column;
  }
  
  .captcha-input {
    max-width: 100%;
    margin-bottom: 10px;
  }
  
  .captcha-img-link {
    align-self: flex-start;
  }
  
  .luqu-submit {
    height: 48px;
    font-size: 16px;
  }
  
  .luqu-tip {
    font-size: 12px;
  }
}
