/* Write your styles */
body{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px;
    color: #666;
    margin: 0;
    font-size: 14px;
    overflow-y: auto;
    background: url(../img/background.jpg) 50% 0 no-repeat;
    font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", iconfont, sans-serif;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    cursor: pointer;
    color: #999;
    text-decoration: none;
}
a:hover {
    color: #666;
}
input {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
    height: 32px;
    line-height: 30px;
    color: #666;
    border-radius:4px;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #eee;
}
input[placeholder]{
    color: #999;
}
input.hidden {
    background: none;
    border: none;
}
input[readonly]:hover,
input[readonly]:focus,
input[disabled]:hover,
input[disabled]:focus{
    border-color: #eee;
    outline: 0;
}
input[type="text"]::-ms-clear{
    display:none;
}
input[type="text"]::-ms-reveal{
    display:none;
}
button {
    width: 200px;
    display: inline-block;
    margin-top: 15px;
    padding: 8px 12px;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    border-radius: 4px;
    color: #fff;
    background: #009b72;
    border: 1px solid #009b72;
    cursor: pointer;
    outline: 0;
}
button ~ button {
    width: 120px;
}
button:hover {
    background: #008B66;
}
button:active{
    background: #1a9b76;
}
button[disabled],button.disabled{
    background: #4DB99C;
    border-color: #4DB99C;
    color: #fff;
    cursor: not-allowed;
}
input.default,
button.default {
    background: #FFFFFF;
    color: #666;
    cursor: pointer;
    border-color: #ddd;
}
input.default:hover,
button.default:hover {
    border-color: #009b72;
    color: #009b72;
}
input:disabled.default,
input:disabled.default:hover,
input:disabled.default:active{
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
}

.container {
    border-top:15px solid #009b72;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -250px;
    width: 600px;
    margin-left: -300px;
    min-height: 500px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
    box-sizing: border-box;
}
.title {
    margin: 25px auto;
    text-align: center;
    font-size: 1.2em;
}
.title p {
    margin-top: 10px;
    font-size: 14px;
}
.title p span {
    margin: 0 4px;
    font-weight: bold;
    color: #00946d;
}
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    line-height: 60px;
    padding: 0 40px;
    color: #ccc;
    font-size: 12px;
    text-align: right;
    border-top: 1px solid #eeeeee;
}

form {
    width: 420px;
    margin: 0 auto;
}

form .form-group {
    position: relative;
    text-align: center;
    margin-bottom: 15px;
}
.form-group.btns button{
    width: 120px;
}
.form-group .form-label,
.form-group #authCode {
    float: left;
}

.form-group .form-label{
    font-size: 14px;
    width: 30%;
    text-align: right;
    font-weight: normal;
    line-height: 32px;
    vertical-align: middle;
    padding-right: 15px;
}

.form-group input.shortInput{
    display: inline-block;
    float: left;
    width: 50%;
}

.form-group .authCode {
    position: relative;
    float: left;
    width: 50%;
    padding-left: 6px;
    display: inline-block;
}

.form-group .authCode:hover {
    cursor: pointer;
}

.form-group .authCode:hover .authCodeBlur{
    display: inline-block;
}

.tip{
    font-size: 12px;
}

.tip input[type="checkbox"] {
    width: auto;
    float: none;
    height: 12px;
    display: inline-block;
    border: none;
}

.tip a {
    margin-left: 5px;
    color: #00946d;
}

.tip a.disabled {
    color: #999;
    cursor: default;
}

.tip i {
    font-size: 12px;
    color: #009B72;
}

.form-group.alias .chosen-container {
    margin-left: 2%;
    float: left;
}

.form-group input.am-field-valid{
    border-color: #11cd6e;
}

.form-group input.am-field-error{
    border-color: #ea8010;
}

span.remark {
    display: block;
    font-size: 12px;
    color: #ea8010;
    text-align: center;
}

.form-group span.remark1 {
    display: block;
    font-size: 12px;
    text-align: left;
    padding-left: 30%;
    color: #11cd6e;
}
.form-group .label {
    font-size: 12px;
    text-align: left;
    padding-left: 30%;
    color: #999;
    margin-top: 4px;
}
.form-group .label span.remark {
    padding: 0;
}

.form-group .selecticon{
    position: absolute;
    line-height: 30px;
    right: 4px;
    margin: 1px;
    padding-left: 3px;
    background: #fff;
}

.tip p{
    margin: 0;
}

.modal {
    display: none;
    position: absolute;
    top:0;
    bottom: 0;
    width: 100%;
    background: #fff;
    filter:alpha(opacity=50); /*IE滤镜，透明度50%*/
    -moz-opacity:0.5; /*Firefox私有，透明度50%*/
    opacity:0.5;/*其他，透明度50%*/
    z-index: 9999;
    opacity: 0.8;
    color: #009b72;
    text-align: center;
}

.modal .item {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -24px;
    margin-top: -49px;
}

.result {
    margin: 0 auto;
    text-align: center;
    width: 250px;
    display: none;
}
.result1 {
    display: block;
    width: 360px;
}
.result .icon i{
    font-size: 100px;
}

.result p.res{
    font-size: 20px;
    margin: 0 0 16px;
}

.result.zhengque .icon i,
.result.zhengque  p.res{
    color: #11cd6e;
}

.result.cuowu .icon i,
.result.cuowu  p.res{
    color: #ea8010;
}

.result p.tip{
    font-size: 14px;
    margin: 0;
    color: #999;
    text-align: left;
}

/** 验证身份 **/
.info {
    text-align: left;
}

.info p {
    font-size: 14px;
    margin:0 0 6px;
}

.info span {
    font-size:12px;
    color:#999999;
}

.spinner {
    width: 100px;
    height: 55px;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
}

.spinner > div {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    background-color: #009B72;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0.0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
    0%, 80%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 40% {
          transform: scale(1.0);
          -webkit-transform: scale(1.0);
      }
}

.operation {
    text-align: left;
    margin-top: 16px;
}

.operation .weixin{
  width: 175px;
  padding: 40px 15px 40px 0;
  border-right: 1px solid #eee;
  float: left;
  text-align: center;
}

.operation .weixin .img-round {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.operation .weixin p {
  margin-bottom: 8px;
}

.operation .weixin span {
  font-size: 12px;
  color: #999;
}

.operation .form-item{
  display: inline-block;
  width: 230px;
  padding: 20px 0 20px 15px;
}

.operation .form-item .form-group:last-child {
  margin-bottom: 0;
}
