html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

p {
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main {
    width: 720px;
    height: 406px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px 0px rgba(221, 221, 221, 0.25), 0px -4px 10px 0px rgba(221, 221, 221, 0.25);
}

.mainLeft, .mainRight {
    width: 50%;
    height: 100%;
}

.mainLeft {
    background: url("/web/static/images/login/bg1.png") no-repeat;
    background-size: 100%;
}

.logo {
    margin: 20px 28px 32px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.logo img {
    width: 36px;
    height: 36px;
    margin-right: 12px;
}

.logoName {
    font-size: 16px;
    font-weight: 600;
    color: #e1e1e1;
}

.textTitle {
    margin: 0 28px 40px;
    font-size: 18px;
    color: #fff;
}

.list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-items: flex-start;
    flex-wrap: wrap;
    margin:0 14px;
}

.item {
    padding: 10px 28px;
    background: rgba(0, 111, 221, 0.46);
    box-shadow: 0px 2px 4px 0px rgba(236, 233, 233, 0.04);
    border-radius: 4px;
    border: 1px solid rgba(10, 43, 222, 0.5);
    margin:0 13px 30px;
}
.item img{
    width: 16px;
    height: 16px;
    margin-right: 3px;
    vertical-align: middle;
}
.item span{
    font-size: 14px;
    color:#e1e1e1;
}
.mainRight {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.rightContainer{
    margin:44px 0 0;
    width: 260px;
}
.title{
    font-size: 16px;
    color: #031B4E;
    font-weight: 500;
}
.inputList{
    margin-top:16px;
    border:1px solid #E1E4EA;
    border-radius: 2px;
    height: 36px;
}
.inputList input{
    background:#fff;
	outline:none;
	border:none;
    width: calc(100% - 12px);
    height: 36px;
    padding: 0 0 0 12px;
}
.inputList input:focus{
	border:none;
}
.error{
    font-size: 12px;
    color: #E01515;
    margin-top:5px;
    display: none;
}
.forgetBtn{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.forgetBtn a{
    font-size: 12px;
    color: #999999;
    text-decoration: none;
}
.forgetBtn .fa{
    width: 14px;
    height: 14px;
    color: #999;
}
.pageBtn{
    width: 100%;
    height: 36px;
    background: #0486FE;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
}
.loginBtn{
    margin-top: 36px;
}
.resetBtn{
    margin-top: 16px;
}
.btText{
    width: 100%;
    height: 55px;
    line-height: 55px;
    border-top:1px solid #E4E7ED;
    color:#999 ;
    font-size: 13px;
    text-align: center;
}
.btText a{
    color: #0486FE;
    text-decoration: none;
}
.record{
    font-size: 14px;
    color: #666666;
    margin-top: 15px;
}
.fixedBottom{
    position: fixed;
    left: 0;
    bottom: 0;

}
.fixedTop{
    position: fixed;
    top: 0;
    right: 0;
}
.fixedBottom img,.fixedTop img{
    width: 300px;
}
input.getCodeText{
    width:60%
}
.getCode{
    background: transparent;
    outline: none;
    float: right;
    border:1px solid #0486FE;
    border-radius: 4px;
    height: 36px;
    line-height: 36px;
    /*padding: 0 14px;*/
    color: #0486FE;
    font-size: 12px;
    cursor: pointer;
    width: 30%;
    text-align: center;
}
.getCodeMain{
    border-radius:0 4px 4px 0 ;
}