/* 基础样式 */
body {
  background-color: #0e74bb;
  background: url(../img/group/bg.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
/* 响应式控制 */
@media (max-width: 768px) {
  .pc-visable {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-visable {
    display: none !important;
  }
}

/* PC端可见元素样式 */
.pc-visable {
  display: block;
}


/* 主容器样式 */
#main {
  width: 19.2rem;
  margin: 0 auto;

  position: relative;
}

#main img {
  max-width: 100%;
  max-height: 100%;
}

/* 头部样式 */
#main .header {
  line-height: 1;
  /* padding-top: 1rem;
  margin-bottom: 0.6rem; */
  font-size: 0;
  text-align: center;
}

#main .header img {
  display: block;
  margin: 0 auto;
}

.form-title {
  text-align: center;
  padding: 10px;
  position: relative;
  top: -20px;
}

@media (max-width: 768px) {
 
.form-title {
  position: relative;
  top: 0px;
}

}

/* 标题文字样式 */
#main .title-text {
  font-weight: 600;
  font-size: 70px;
  color: #ffeb0c;
  position: relative;
  display: inline-block;
  padding: 0 20px;
  margin: 0 auto;
}

#main .title-text .lt-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 6px solid #ffeb0c;
  border-left: 6px solid #ffeb0c;
}

#main .title-text .rb-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-bottom: 6px solid #ffeb0c;
  border-right: 6px solid #ffeb0c;
}

@media (max-width: 768px) {
  #main .title-text {
    font-size: 30px;
  }
}
#main .title1 {
  margin-top: 50px;
}

/* 表单容器 */
#main .form-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto 50px;
  padding-top: 20px;
}

/* 响应式控制 */
@media (max-width: 768px) {
  /* 表单容器 */
  #main .form-box {
    margin: 10px;
  }
}

/* 表单元素 */
#main .form-box .form-item {
  margin-bottom: 20px;
}

#main .form-box .input-box {
  position: relative;
  width: 100%;
}

/* 输入框样式 */
#main .form-box .input-box input {
  border: 2px solid #fff;
  outline: none;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 34px;
  font-size: 20px;
  color: #fff;
  background-color: transparent;
  border-radius: 30px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* 占位符样式 */
input::-webkit-input-placeholder {
  color: #fff;
}
input::-moz-placeholder {
  color: #fff;
}
input:-moz-placeholder {
  color: #fff;
}
input:-ms-input-placeholder {
  color: #fff;
}

/* 按钮样式 */
#main .form-box .input-box button {
  position: absolute;
  top: -2px;
  right: 0;
  background-color: #ffeb0c;
  color: #052693;
  border: 0;
  font-weight: 900;
  width: 200px;
  height: 64px;
  font-size: 24px;
  border-radius: 35px;
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.3);
}

/* 响应式控制 */
@media (max-width: 768px) {
  #main .form-box .input-box input {
    font-size: 14px;
  }
  #main .form-box .input-box button {
    position: absolute;
    top: -2px;
    right: 0;
    background-color: #ffeb0c;
    color: #052693;
    border: 0;
    font-weight: 900;
    width: 120px;
    height: 64px;
    font-size: 20px;
    border-radius: 35px;
    box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.3);
  }
}

#main .form-box .input-box button:active {
  opacity: 0.95;
}

#main .form-box .btn-submit {
  background: url(../img/query/btn-tjxc.png) no-repeat center;
  background-size: 100%;
  font-size: 0;
  border: 0;
  font-weight: 900;
  width: 205px;
  height: 65px;
}

#main .form-box .btn-submit:hover {
  opacity: 0.9;
}
#main .form-box .btn-submit:active {
  opacity: 0.8;
}

/* 页脚样式 */
#main .footer {
  text-align: center;
  position: relative;
  color: #fff;
  margin: 0.5rem;
}
