

/*表单获取*/

.form_box {

  width: 100%;

  background-color: #fff;

}

.form_box .form_center {

  width: 1200px;

  margin: 0 auto;

  overflow: hidden;

  padding: 50px 0;

}

.form_box .form_center .title {

  text-align: center;

  font-size: 28px;

  font-weight: normal;

  color: #333;

  margin-top: 30px;

}

.form_box .form_center .subtitle {

  font-size: 20px;

  font-weight: normal;

  color: #999;

  text-align: center;

  margin-top: 10px;

}

.form_box .form_center .form_content {

  padding: 50px 0;

}

.form_box .form_center .form_content img {

  width: 500px;

  float: left;

}

.form_box .form_center .form_content .form_submit {

  float: left;

  width: 600px;

  padding: 20px 50px 0;

  background: #fff;

  box-sizing: content-box;

}

.form_submit .input{

  margin-bottom: 26px;

  position: relative;

}

.form_submit .input:last-child{
  margin-bottom: 0;
}

.form_submit .input span.name{

  display: inline-block;

  width: 88px;

  height: 40px;

  line-height: 40px;

  text-align: right;

  padding-right: 12px;

  font-size: 14px;

  color: #606266;

}

.form_submit .input span.info{

  font-size: 12px;

  color: red;

  position: absolute;

  bottom: -20px;

  left: 110px;

  transition: all 1s ease;

  opacity: 0;

}

.form_submit .input input{

  width: 490px;

  height: 36px;

  line-height: 36px;

  outline: none;

  border: 1px solid #c0c4cc;

  font-size: 14px;

  text-indent: 16px;

  color: #606266;

  transition: all 1s ease;

}

.form_submit .input .subButton{

  width: 490px;

  height: 36px;

  line-height: 36px;

  border: none;

  background-color: #409eff;

  color: #fff;

  vertical-align: top;

  cursor: pointer;

}



/*验证码*/

.position_code {

  position: relative;

}



#veriftycode {

  width: 120px;

  height: 36px;

  line-height: 36px;

  position: absolute;

  top: 2px;

  right: 5px;

  background: #ccc;

  text-align: center;

  color: blue;

  font-style: oblique;

  letter-spacing: 10px;

  font-family: "Fixedsys";

  cursor: pointer;

  font-size: 14px;

}



/*提示弹窗*/

.ppopupBg{

  position: fixed;

  top: 0;

  left: 0;

  width:100%;

  height: 100%;

  background: rgba(0,0,0,.5);

  z-index: 999;

  display: none;

}

.ppopup_centxt{

  position: fixed;

  z-index: 1000;

  top: 50%;

  left: 50%;

  background: #fff;

  width:340px;

  transform: translate(-50%,-50%);

  border-radius: 8px;

  display: none;

}

.ppopup_centxt h1{

  text-align: center;

  font-size: 20px;

  color: #333;

  line-height: 60px;

}

.ppopup_centxt h1 i{

  font-size: 20px;

  margin-right: 5px;

  color: #e55252;

}

.ppopup_centxt span{

  display: block;

  text-align: center;

  font-size: 16px;

}

.ppopup_centxt button{

  border: none;

  border-radius: 5px;

  width: 80px;

  height: 28px;

  line-height: 28px;

  text-align: center;

  background: #409eff;

  color: #fff;

  margin: 10px 0 15px 240px;

  cursor: pointer;

  outline: none;

}

@media all and (max-width: 640px) {

  .form_box .form_center{

    width: 100%;

    padding:0; 

    margin-bottom: 50px;

  }

  .form_box .form_center .title{

    font-size: 16px;

  }

  .form_box .form_center .form_content{

    padding: 15px 0;

    overflow: hidden;

    width: 100%;

    display: flex;

    justify-content: center;

  }

  .form_box .form_center .form_content img{

    display: none;

  }

  .form_box .form_center .form_content .form_submit{

    width: 90%;

    padding: 0;

    margin: 0 auto;

    display: block;

  }

  .form_submit .input{

    margin-bottom: 20px;

  }

  .form_submit .input span.name{

    width: 20%;

  }

  .form_submit .input input{

        width: calc(74% - 2px);

  }

  

  .form_submit .input .subButton{

    width: 75%;

  }

  .form_submit .input span.info{

    font-size: 0.1rem;

    color: red;

    position: absolute;

    bottom: -15px;

    left: 88px;

    transition: all 1s ease;

    opacity: 0;

  }

}