@charset "utf-8";
*{
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    background: #f5f6f8;
    color: #515151;
    font-size: 14px;
    height: auto;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
.logreg-top-line{
     background: #2C82FC;
     width: 100%;
     height: 8px;
    display: none;
 }
.logreg-logo{
    background: url("../images/jimu-logo.png") center no-repeat;
    background-size: auto 100%;
    width: 100%;
    height:64px;
    margin-top: 36px;
}
.logreg-org-content{
    width: 100%;
    text-align: center;
}
.logreg-org-area{
    background: #ffffff;
    width: 550px;
    padding: 20px;
    padding-bottom: 36px;
    margin: 0 auto;
    box-shadow: 0px 0px 3px #dedede;
    position: relative;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.logreg-logo{
    width: 100%;
    text-align: center;
}
.logreg-logo img{
    width: 64px;
    height: 64px;
    margin-top: 16px;
}
.logreg-input,
.select-option{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: auto !important;
    outline: none;
    font-size: 14px !important;
    line-height: 16px;
    padding: 10px 5px !important;
    border: 1px solid #ddd !important;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    border-radius: 3px !important;
}
.select-option{
    background: url("../images/select-arrow-icon.jpg") center right no-repeat;
}
.logreg-input:focus{
    border-color: #2C82FC;
}
.logginorg-error-info{
    background: url("../images/loginorg-error-ico.jpg") left center no-repeat;
    text-indent: 20px;
    font-size: 12px;
    color: #cb3232;
    font-style: normal;
    display:inline-block;
}
.forget-password{
    position: absolute;
    right: 0;
    color: #2C82FC;
    font-size: 15px;
    bottom: -26px;
}
.forget-password:hover{
    color: #515151;
}
.submit-btn{
    background: #2C82FC;
    width: 320px;
    height: 40px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius:3px;
    font-size: 14px;
    color: #ffffff;
    margin: 0 auto;
    margin-top: 16px;
    display: block;
    border: 0;
    outline: none;
}
.submit-btn:hover{
    box-shadow: 0px 0px 7px #2C82FC;
    cursor: pointer;
}
.footer-info{
    width: 100%;
    margin-top: 15px;
    text-align: center;
    color: #999999;
    font-size: 14px;
}
.footer-info a{
    color: #2C82FC;
}
.footer-info a:hover{
    color: #515151;
}
/*
短信验证码*/
.sub-message{
     background: none;
    height:24px;
    line-height:24px;
    margin-left:12px;
    margin-right:12px;
    color: #2C82FC;
    border: 0;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    right: 2px;
    bottom: 3px;
    z-index: 10;
}
.sub-message:hover{
    color: #515151;
}
.sub-message:disabled{
    color: #cccccc;
}
/*
图片验证区域*/
.verification-img{
    width: 100%;
}

/*复选&单选公用样式*/
.checkbox-wrapper,.radio-button-wrapper {
	position: relative;
	display: inline-block;
	padding: 0;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	vertical-align: middle;
	margin: 3px 7px 0 0;
}
.selected-icon{
	cursor: pointer;
}
.radio-button-wrapper input[type=radio],.checkbox-wrapper input[type=checkbox]{
	position: absolute;
	left: -9999px;
	visibility: hidden;
}
.checkbox-wrapper input[type="checkbox"]+.selected-icon,.radio-button-wrapper input[type="radio"]+.selected-icon{
	display: inline-block;
	background: #FFF;
	border: 1px solid #aab2bd;
	-webkit-transition: background 0.28s ease;
	-o-transition: background 0.28s ease;
	transition: background 0.28s ease;
}
.checkbox-wrapper input[type="checkbox"]+.selected-icon:after,.radio-button-wrapper input[type="radio"]+.selected-icon:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
}
.checkbox-wrapper input[type="checkbox"]:checked+.selected-icon,.radio-button-wrapper input[type="radio"]:checked+.selected-icon{
	background-color: #2C82FC;
	border-color: #2C82FC;
}
/*单选样式*/

.radio-button-wrapper input[type="radio"]+.selected-icon {
	width: 16px;
	height: 16px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.radio-button-wrapper input[type="radio"]+.selected-icon:after {
	background: #FFF;
	width: 16px;
	height: 16px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}
.radio-button-wrapper input[type="radio"]:checked+.selected-icon:after {
	-webkit-transform: scale(0.4);
	-ms-transform: scale(0.4);
	-o-transform: scale(0.4);
	transform: scale(0.4);
}

/*复选*/
.checkbox-wrapper input[type="checkbox"]+.selected-icon{
	width: 16px;
	height: 16px;
	border-radius: 2px;
}
.checkbox-wrapper input[type="checkbox"]:checked+.selected-icon:after,.radio-button-wrapper input[type="checkbox"]:checked+.selected-icon:after {
	border-bottom-color: #FFF;
	border-right-color: #FFF;
}
.checkbox-wrapper input[type="checkbox"]+.selected-icon:after,.radio-button-wrapper input[type="checkbox"]+.selected-icon:after {
	top: 1px;
	left: -1px;
	width: 4px;
	height: 8px;
	border: 2px solid transparent;
	-webkit-transform: rotate(43deg);
	-ms-transform: rotate(43deg);
	-o-transform: rotate(43deg);
	transform: rotate(43deg);
	-webkit-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}