*{
	margin:0;
	padding:0;
}
html,body{
	height:100%;
    text-align:center;
}
.cl{
	clear:both;
}
.body{
    margin:0px auto;
	transition: all .5s;
    width:96%;
    max-width:800px;
}
.vli{
	width: 94%;
	margin: 0px auto;
	display:table;
	position: relative;
	min-height:484px;
}
.vli > div {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	min-height:400px;
	height:400px;
}
.vli button{
 	letter-spacing: 1px;
 	font-size: 16px;
	background: transparent;
	display: inline-block;
	padding: 8px 28px;
	border: 2px solid #fff;
	border-radius: 50px;
	background-clip: padding-box;
	position: relative;
	color: #FFF;
	transition: all .25s;
}
.vli button.btn{
	border-color: #ff4931;
	background: #ff4931;
}
.vli .move button.btn{
	border-color: #ffa500;
	background: #ffa500;
}
.vli .splits p{
	font-size: 18px;
}
.vli button:active{
	box-shadow: none;			
}
.vli button:focus{
	outline: none;			
}
.vli  .wrapper {
 	border-radius: 6px;
	max-width: 40%;
	height: 120%;
	background: #fff;
	border: 1px solid rgba(0,0,0,.14);
	transition: all .5s;
	color: #303030;
	overflow: hidden;
}
.vli .wrapper > div{
	padding: 12px 12px;
	transition: all .5s;
	background: #fff;
	width: 100%;
	box-sizing: border-box;
}
.vli .wrapper #login{
	padding-top:12%;
}
#login .btn{
	margin-bottom: 15px;
}
#login p, #register p {
    position: absolute;
    left: 2px;
}
.vli .wrapper div div {
	position: relative;
	margin-bottom: 2px;
	box-sizing: border-box;
}
    .vli .wrapper div div.arrow{position:absolute}
   
.vli .wrapper h3{
	margin-bottom: 20px;
	margin-top: 5px;
}
.vli .wrapper .input{
	height: 40px;
	padding: 5px 15px;
	width: 100%;
	border: solid 1px #ddd;
	border-radius: 3px;
	color: #353434;
	box-sizing: border-box;
}
.vli .wrapper .input:focus{
	outline: none;
	border-color: #ff4931;
}
.vli > .wrapper.move input:focus{
	border-color: #ffa500;
}
#check{
	overflow: hidden;
	margin-bottom:20px;
}
#check *{
	float:left;
}
#check label{
	pointer-events: auto;
	padding-top:5px;
}
#check input{
	width:14px;
	position: absolute;
	left: 0px;
	top: -17px;
}
#check a{
	padding-left: 110px;
	margin-top: -4px;
}
#register .pho{
	width: 60%;
	float: left;
}
#register .pcd{
	width: 40%;
	float: left;
}
.marb0{
	margin-bottom: 0px!important;
}
.cl1{
	clear:both;
	margin-bottom:0px!important;
}
.msg_tips {
    padding: 0px 0px;
    width: 100%;
    text-align: left;
    position: relative;
}

   .Validform_checktip {
       text-align:left;
        width:100%;
        display:block;
        font-size: 12px;
      
    }
    .Validform_wrong {
        color: red;
    }
    .Validform_right {
        color: #1e8f31;
        display:none;
    }

/*--相关的单选复选按钮--*/
@keyframes hover-color {
    from {
        border-color: #c0c0c0;
    }

    to {
        border-color: #3e97eb;
    }
}

.magic-radio,
.magic-checkbox {
    position: absolute;
    display: none;
}

    .magic-radio[disabled],
    .magic-checkbox[disabled] {
        cursor: not-allowed;
    }

    .magic-radio + label,
    .magic-checkbox + label {
        position: relative;
        display: inline-block;
        padding-left: 30px;
        cursor: pointer;
        vertical-align: middle;
        font-size:13px;
    }

        .magic-radio + label:hover:before,
        .magic-checkbox + label:hover:before {
            animation-duration: 0.4s;
            animation-fill-mode: both;
            animation-name: hover-color;
        }

        .magic-radio + label:before,
        .magic-checkbox + label:before {
            position: absolute;
            top: 0;
            left: 0;
            display: inline-block;
            width: 20px;
            height: 20px;
            content: '';
            border: 1px solid #c0c0c0;
        }

        .magic-radio + label:after,
        .magic-checkbox + label:after {
            position: absolute;
            display: none;
            content: '';
        }

    .magic-radio[disabled] + label,
    .magic-checkbox[disabled] + label {
        cursor: not-allowed;
        color: #e4e4e4;
    }

        .magic-radio[disabled] + label:hover, .magic-radio[disabled] + label:before, .magic-radio[disabled] + label:after,
        .magic-checkbox[disabled] + label:hover,
        .magic-checkbox[disabled] + label:before,
        .magic-checkbox[disabled] + label:after {
            cursor: not-allowed;
        }

            .magic-radio[disabled] + label:hover:before,
            .magic-checkbox[disabled] + label:hover:before {
                border: 1px solid #e4e4e4;
                animation-name: none;
            }

        .magic-radio[disabled] + label:before,
        .magic-checkbox[disabled] + label:before {
            border-color: #e4e4e4;
        }

    .magic-radio:checked + label:before,
    .magic-checkbox:checked + label:before {
        animation-name: none;
    }

    .magic-radio:checked + label:after,
    .magic-checkbox:checked + label:after {
        display: block;
    }

    .magic-radio + label:before {
        border-radius: 50%;
    }

    .magic-radio + label:after {
        top: 7px;
        left: 7px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #3e97eb;
    }

    .magic-radio:checked + label:before {
        border: 1px solid #3e97eb;
    }

    .magic-radio:checked[disabled] + label:before {
        border: 1px solid #c9e2f9;
    }

    .magic-radio:checked[disabled] + label:after {
        background: #c9e2f9;
    }

    .magic-checkbox + label:before {
        border-radius: 3px;
    }

    .magic-checkbox + label:after {
        top: 2px;
        left: 7px;
        box-sizing: border-box;
        width: 6px;
        height: 12px;
        transform: rotate(45deg);
        border-width: 2px;
        border-style: solid;
        border-color: #fff;
        border-top: 0;
        border-left: 0;
    }

    .magic-checkbox:checked + label:before {
        border: #3e97eb;
        background: #3e97eb;
    }

    .magic-checkbox:checked[disabled] + label:before {
        border: #c9e2f9;
        background: #c9e2f9;
    }