@charset "UTF-8";

/***
** common.css
** 注册页面公共样式
***/

body{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  background: #f5f7fc url("../images/bg.png") center 0 no-repeat;
}

input:focus{ background: #fff;}

button{
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  transition: all .2s;
}

button:hover{
  background: #2a99f6;
}

.inner{
  width: 1000px;
  margin: 0 auto;
}

.wrapper{
  padding-bottom: 50px;
}

.wrapper .body{
  width: 520px;
  /*height: 800px;*/
  padding: 30px 60px;
  margin: 50px auto 0;
  box-sizing: border-box;
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px 16px 0px rgba(0,0,0,.1);
  -moz-box-shadow: 0 1px 16px 0px rgba(0,0,0,.1);
  -ms-box-shadow: 0 1px 16px 0px rgba(0,0,0,.1);
  box-shadow: 0 1px 16px 0px rgba(0,0,0,.1);
}

.wrapper .body .hd{
  position: relative;
  height: 32px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: normal;
  color: #45a5f6;
}

.wrapper .body .hd h3{
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 120px;
  margin-left: -60px;
  font-size: 22px;
  font-weight: normal;
  color: #45a5f6;
  text-align: center;
  background: #fff;
}

.wrapper .body .hd span {
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #daedfd;
}

.wrapper .body .bd .part{
  margin-bottom: 12px;
}

.wrapper .body .bd .part-one{
  padding-bottom: 8px;
  margin-bottom: 18px;
  border-bottom: 1px dashed #e6e6e6;
}

.wrapper .body .bd .title{
  height: 18px;
  line-height: 18px;
  padding-left: 6px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #9b9b9b;
  border-left: 3px solid #e0e0e0;
}

.wrapper .body .bd .form-box{
  margin-bottom: 12px;
}

.wrapper .body .bd .form-box .form-input{
  width: 378px;
  height: 30px;
  line-height: 30px;
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  transition: all .2s;
}

.wrapper .body .bd .form-box .form-input-col{
  float: left;
  width: 260px;
}

.wrapper .body .bd .form-box .form-btn-col{
  float: right;
  width: 110px;
  height: 44px;
  font-size: 14px;
  color: #fff;
  background: #45a5f6;
  border: none;
  box-sizing: border-box;
}

.wrapper .body .bd .form-box .disabled{
  color: #c9c9c9;
  background: #FBFBFB;
  border: 1px solid #e6e6e6;
  cursor: not-allowed;
}

.wrapper .body .bd .form-box .disabled:hover{
  background: #FBFBFB;
}

.wrapper .body .bd .form-box .code-img {
  float: right;
  width: 110px;
  height: 44px;
  cursor: pointer;
}

.wrapper .body .bd .form-box .form-input:focus{
  border-color: #8fc9fa;
}

.wrapper .body .bd .tips{
  color: #ccc;
}

.wrapper .body .bd .protocol{
  height: 20px;
  line-height: 20px;
  padding: 10px 0;
  color: #888;
}

.wrapper .body .bd .protocol a{
  color: #45a5f6;
}

.wrapper .body .bd .protocol label{
  position: relative;
  height: 20px;
  text-align: left;
  padding-left: 2px;
}

.wrapper .body .bd .protocol input{
  opacity: 0;
  filter: alpha(opacity=0);
}

.wrapper .body .bd .protocol label:before{
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: url("../images/check_box1.png") center no-repeat;
}

.wrapper .body .bd .protocol input:checked+label:before{
  background: url("../images/check_box2.png") center no-repeat;
}

.wrapper .body .bd .btn-submit{
  width: 100%;
  height: 46px;
  font-size: 16px;
  color: #fff;
  background: #45a5f6;
  border: none;
}

.wrapper .body .bd .btn-submit:hover,
.wrapper .body .bd .form-btn-col:hover{
  background: #1f8eeb;
}

.wrapper .body .bd .login{
  padding-top: 5px;
  text-align: right;
  font-size: 14px;
}

.wrapper .body .bd .login a{
  margin-left: 2px;
  color: #45a5f6;
}

.wrapper .footer{
  padding-top: 40px;
}
.wrapper .footer p{
  text-align: center;
  font-size: 16px;
  color: #999;
}
.clause-dialog{
  padding: 20px;
}














