.flex{
    max-width:1240px ;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
}
.flex-left .banner img{
    border-radius: 15px;
}
.flex-right{
    width:400px;
    flex-shrink: 0;
}
.map{
    padding: 20px 0;
    background-color: #fff;
    border-bottom: 1px solid #ececec;
    font-family: "Quicksand", sans-serif;
}
.map ul{
    display: flex;
    align-items: center;
    font-weight: 700;
}
.map ul li .iconfont{
    font-size:9px;
    margin:0 8px;
    position: relative;
}
.map ul li a{
    color:var(--theme);
}
.map ul li:first-child .iconfont{
    font-size:18px;
    color:var(--theme);
    margin: 0;
}
.map ul li:last-child{
    color:#7E7E7E;
}

.login{
    
}
.login .title{
    color: #41464c;
    font-weight: 700;
    font-size:28px;
    margin-bottom: 30px;
}
.login .row{
    margin:15px 0;
}
.login .row input[type="text"],.login .row input[type="password"]{
    width:100%;
    background: #fff;
    border: 1px solid #ececec;
    outline: none;
    height: 48px;
    line-height: 48px;
    border-radius: 8px;
    padding:0 12px;
    font-size:15px;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
}
.login .row input[type="text"].on,.login .row input[type="password"].on{
    box-shadow: 0px 0px 0px 3px rgba(123, 48, 71, 0.3);
    border-color:#fff;
}
.login .other{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.login .other .item{
    display: flex;
    color:#687188;
}
.login .other .item input[type=checkbox]{
    position: relative;
    top:1px;
    margin-right: 5px;
}
.login .other .item a{
    color:#687188;
}
.login .other .item a:hover{
    color:var(--theme);
}
.login .submit{
    background-color: #253D4E;
    border-color: #253D4E;
    font-weight: 700;
    border: 0;
    color:#fff;
    padding:17px 40px;
    border-radius: 10px;
    font-size:17px;
    line-height: 17px;
    cursor: pointer;
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
    position: relative;
}
.login .submit:hover{
    background-color: #29A56C;
    top:0px;
}
.login .submit .wait{
    display: none;
}
.login .submit.active{
    pointer-events: none; 
    opacity: 0.7; 
    cursor: not-allowed; 
}
.login .submit.active .wait{
    display: block !important;
}
.login .submit.active .def{
    display: none !important;
}

.login .bottom{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top:20px;
}
.login .bottom .snslogin{
    display: flex;
    align-items: center;
}
.login .bottom .snslogin .lable{
    color:#999;
    margin-right: 15px;
}
.login .bottom .snslogin .list .iconfont{
    font-size:36px;
    cursor: pointer;
}
.login .bottom .snslogin .list .green{
    color:#07c160;
}