@charset "utf-8";
/* ----------重置样式---------- */
html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
object,
code,
legend,
button,
input,
textarea,
label,
th,
td,
a,
img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  /*font: inherit;*/
  vertical-align: baseline;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
dd,
dl,
dt,
ul,
ul li {
  list-style: none;
  display: block;
}
/*设置默认字体*/
:focus {
  outline: 0;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
  -webkit-touch-callout: none;
}
/* -- form表单 -- */
/* placeholder */
input.input-bd::-webkit-input-placeholder,
textarea.input-bd::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
}
input.input-bd:-moz-placeholder,
textarea.input-bd:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
input.input-bd::-moz-placeholder,
textarea.input-bd::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
input.input-bd:-ms-input-placeholder,
textarea.input-bd:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
}
/* ----------表单样式---------- */
.clearfix:after,
.clearfix:before {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}
.fl {
  float: left;
}
.fr {
  float: right;
}

.common-form-modal .form .input-bd {
  float: left;
  margin-bottom: 16px;
  margin-right: 13px;
  display: block;
  width:300px;
  height: 48px;
  line-height: 48px;
  background: #F0F2F4;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 16px;
  color: #615b6f;
  border: none;
}
.common-form-modal .form .input-bd.user-input {
  padding-left: 30px;
  background: #fff url(../images/user.png) 10px no-repeat;
  background-size: 18px 19px;
}
.common-form-modal .form .input-bd.phone-input {
  padding-left: 30px;
  background: #fff url(../images/phone.png) 10px no-repeat;
}
.common-form-modal .form .input-bd.w50 {
    width: 48%;
}
.common-form-modal .form .select-wrap {
  position: relative;
}
.common-form-modal .form .select-wrap .input-bd {
  color: #999;
  margin-top: 0px;
}
.common-form-modal .form .select-wrap .input-bd.selected {
  color: #666;
}
.common-form-modal .form .select-wrap.active .input-bd:before {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.common-form-modal .form .select-wrap.active .select-dropdown {
  display: block;
}
.common-form-modal .form .select-wrap.w50 {
  width: 48%;
}
.common-form-modal .form .select-wrap .input-bd {
  padding: 0 30px 0 20px;
  position: relative;
}
.common-form-modal .form .school-select-wrap .input-bd{
  width:355px;
}
.common-form-modal .form .select-wrap .input-bd:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 7px;
  top: 18px;
  right: 10px;
  background: url(../images/Triangle.png) no-repeat;
  background-size: 12px 7px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
}
.common-form-modal .form .select-wrap .select-dropdown {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50px;
  z-index: 35;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
}
.common-form-modal .form .select-wrap .select-dropdown .select-list {
  overflow-y: auto;
  overflow-x: auto;
  max-height: 180px;
}
.common-form-modal .form .select-wrap .select-dropdown .select-list.select-list-school {
  width: 50%;
}
.common-form-modal .form .select-wrap .select-dropdown .select-list.select-list-school:nth-child(1) .option {
  background: #fff url(../images/arrow.png) top 12px right 10px no-repeat;
  background-size: 5px 7px;
}
.common-form-modal .form .select-wrap .select-dropdown .select-list.select-list-school:nth-child(1) .option:hover {
  background: #fff url(../images/arrow-red.png) top 12px right 10px no-repeat;
  background-size: 5px 7px;
}
.common-form-modal .form .select-wrap .select-dropdown .select-list.select-list-school:nth-child(1) .option.active {
  background: #f3f3f3 url(../images/arrow-red.png) top 12px right 10px no-repeat;
  background-size: 5px 7px;
}
.common-form-modal .form .select-wrap .select-dropdown .select-list .option {
  margin: 0;
  line-height: 30px;
  padding: 0px 16px;
  clear: both;
  color: #999;
  font-size: 12px!important;
  white-space: nowrap;
  list-style: none;
  cursor: default;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
}
.common-form-modal .form .select-wrap .select-dropdown .select-list .option:hover {
  color: #5e3420;
}
.common-form-modal .form .select-wrap .select-dropdown .select-list .option.active {
  color: #5e3420;
  background: #f3f3f3;
}
.common-form-modal .submit-btn {
  float: left;
  border-radius: 6px;
  background: #E9705D;
  box-shadow: 0px 4px 14.56px 1.44px rgba(233,112,93,0.31);
  width: 355px;
  height: 48px;
  line-height: 48px;
  color: #FFFFFF;
  text-align: center;
  cursor: pointer;
}

.common-form-modal.form-modal .commonFormPc {
  margin: -222px auto 0;
  padding: 0 36px 0 50px;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0px 6px 27px 0px rgba(46,79,199,0.31);
  width: 1080px;
  height: 274px;

}
.common-form-modal.form-modal .commonFormPc .modal-close-btn {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 0px;
  right: 0px;
  background: url(../images/ico-close.png) top 15px left 15px no-repeat;
  background-size: 16px 16px;
  cursor: pointer;
}
.common-form-modal.form-modal .commonFormPc .form {

}
.common-form-modal.form-modal .commonFormPc .form .tit-con {
  text-align: center;
}
.common-form-modal.form-modal .commonFormPc .form .tit-con .tit {
  padding: 40px 0 38px 0;
  color: #333;
  font-size: 32px;
  text-align: center;


}
.common-form-modal.form-modal .commonFormPc .promise {
  font-size: 14px;
  font-weight: 300;
  color: #2d2d2d;
  text-align: center;
}
.common-form-modal.form-float {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 20;
  padding: 20px 0 10px;
}

.common-form-modal.form-float .form {
  text-align: center;
}
.common-form-modal.form-float .form .input-bd,
.common-form-modal.form-float .form .select-wrap,
.common-form-modal.form-float .form .submit-btn {
  display: inline-block;
  width: 150px;
  text-align: left;
  margin-top: 0;
}
.common-form-modal.form-float .form .input-bd.school-select-wrap,
.common-form-modal.form-float .form .select-wrap.school-select-wrap,
.common-form-modal.form-float .form .submit-btn.school-select-wrap {
  width: 270px;
}
.common-form-modal.form-float .form .input-bd.school-select-wrap .input-bd,
.common-form-modal.form-float .form .select-wrap.school-select-wrap .input-bd,
.common-form-modal.form-float .form .submit-btn.school-select-wrap .input-bd {
  width: 100%;
}
.common-form-modal.form-float .form .submit-btn {
  text-align: center;
}
.common-form-modal.form-float .form .select-wrap .select-dropdown {
  top: auto!important;
  bottom: 70px!important;
}

.common-form-modal.form-float .input-bd{
  margin-bottom: 0px;
}
.form-float .submit-btn{
  width: 169px;
  height: 50px;
  background: #ff7c4e;
  color: #fff;
  font-size: 18px;
  text-align:center;
  line-height: 50px;
  margin-top: 19px;
  border-radius: 3px;
}