﻿/**
 *
 * 个人中心 登录、注册、修改密码 公共样式(移动端)
 *    
**/
.login-box >a:link,
.login-box >a:visited,
.login-box >a:hover,
.login-box >a:active{
    color:#fff;
}

/*几种箭头位置及相应样式*/
.icon-left{
    border-right: 8px solid;
    border-left: 8px solid;
    border-top: 5px solid;
    border-bottom: 5px solid;
    border-color:transparent rgb(168, 212, 168) transparent transparent;
    left: -14px;
    top: 7px;
}
.icon-right{
    border-right: 8px solid;
    border-left: 8px solid;
    border-top: 5px solid;
    border-bottom: 5px solid;
    border-color:transparent transparent transparent rgb(249, 160, 130);
    right: -14px;
    top: 7px;
}
.icon-left-bottom{
    border-right: 5px solid;
    border-left: 5px solid;
    border-top:  8px solid;
    border-bottom: 8px solid;
    border-color:  rgb(168, 212, 168) transparent transparent transparent;
    left: 20px;
    top: 24px;
}
.icon-right-bottom{
    border-right: 5px solid;
    border-left: 5px solid;
    border-top:  8px solid;
    border-bottom: 8px solid;
    border-color:  rgb(249, 160, 130) transparent transparent transparent;
    right: 20px;
    top: 24px;
}

.bodies{
    margin: 0 10px;
    padding-top: 65px;
}
.login-box{
    width: 100%;
    height: auto;
    padding: 10px ;
    margin-top: 50px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    background:#fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
}
.login, .register{
    display: inline-block;
    width: 49%;
    height: 26px;
    text-decoration: none;
    text-align: center;
    line-height: 26px;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.login{
    background-color: rgb(168, 212, 168);
}
.register{
    background-color:  rgb(249, 160, 130);
}
.login-icon{
    position: absolute;
}

form{
    color: #5b5b5b;
    font-size: 14px;
}
.form-control{
    padding: 0 10px;
    margin:0;
    height: 30px;
    display: inline-block;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border:1px solid #e0e0e0;
    box-shadow: none;
}
label{
    width:15%;
    min-width:50px;
    margin: 20px 0 0 0;
    color: #aaa;
}
#Phone, #Pwd, #Nick_Name{
    width: 80%;
}
#verification{
    width: 40%;
}


/*各元素的transition动画效果设置*/
.radio-style:before,
#agree~label:before{
    transition:all .15s linear;
    -webkit-transition:all .15s linear;
    -moz-transition:all .15s linear;
    -ms-transition:all .15s linear;
    -o-transition:all .15s linear;
}

/*重写单选框、复选框样式（使用::before伪类）*/
.radio-style{
    width:auto;
    margin-right:15px;
    line-height:22px;
    background:#fff;
    cursor:pointer;
}
.radio-style:before,
#agree~label:before{
    display:inline-block;
    height:16px;
    width:16px;
    margin:1px 6px 1px 0;
    border:1px solid #e0e0e0;
    border-radius:3px;
    content:"";
    font-size:14px;
    color:#fff;
    overflow:hidden;
    vertical-align:middle;
}

/*单选框、复选框的选中样式*/
#agree~label:before{margin-top:-1px;}
input[type="radio"], #agree{
    display:none;
}
input[type="radio"]:checked+label:before,
#agree:checked+label:before{
    text-align:center;
    font-weight:bold;
    background:#0aa5ff url(../resources/pic-resources/chioce_icon.jpg) no-repeat;
    background-size:15px 15px;
}

.get-code{
    display: inline-block;
    height:28px;
    width:38.5%;
    margin-top:20px;
    padding: 0 5px;
    line-height: 28px;
    text-align:center;

    text-decoration: none;
    background-color: skyblue;
    color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
}


.agreement{text-align:center;}
#agree{
    display: none;
}
#agree~label{
    margin-right:-5px;
}

.submit-box{
    text-align:center;
}
.send{
    display:block;
    margin:10px auto;
    margin-top:2px;
    width: 67%;
    height: 25px;
    border: none;
    outline:none;
    background-color: skyblue;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.tips{
    margin-left:55px;
    color:#f00;
}

