@charset "utf-8";

/* =========================
   input 基础优化
========================= */
.input {
    padding: .55em .9em;
    border: 1px solid #e6e6e6;
    width: 100%;
    line-height: 1.5;
    display: block;
    border-radius: 6px;
    outline: 0;
    background-color: #fff;
    transition: all .25s ease;
    font-size: 14px;
}

.input:focus {
    border-color: #459d51;
    box-shadow: 0 0 0 3px rgba(69,157,81,0.12);
}

/* =========================
   modal overlay
========================= */
#lean_overlay{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    z-index: 9998 !important;
}

/* =========================
   modal container
========================= */
#loginmodal {
    position: fixed;
    z-index: 9999 !important;
}

/* 盒子主体升级 */
.popup-login-box {
    position: relative;
    z-index: 10000 !important;
    pointer-events: auto;

    width: 380px;
    background: #fff;
    border-radius: 10px;
    padding: 26px 24px 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* =========================
   close button
========================= */
.popup-login-box i.e-guanbi{
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    transition: 0.2s;
}

.popup-login-box i.e-guanbi:hover{
    color: #333;
}

/* =========================
   title
========================= */
.popup-login-box .title{
    padding: 6px 0 18px;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

/* =========================
   form item
========================= */
.popup-login-box .row-item{
    margin-bottom: 16px;
    position: relative;
}

/* input style refine */
.popup-login-box .row-item input{
    border-radius: 6px;
    padding: 10px 12px;
}

/* placeholder */
.popup-login-box .row-item input::placeholder{
    font-size: 13px;
    color: #aaa;
}

/* captcha */
.popup-login-box .row-item .addon img{
    position: absolute;
    right: 3px;
    top: 3px;
    height: 36px;
    width: 110px;
    border-radius: 4px;
}

/* =========================
   button
========================= */
.popup-login-box .row-item .button{
    text-align: center;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    color: #fff;
    background: linear-gradient(135deg, #45a049, #3c8d40);
    border: none;
    display: block;
    padding: 10px 12px;
    cursor: pointer;
    transition: all .2s ease;
}

.popup-login-box .row-item .button:hover{
    opacity: 0.92;
}

/* =========================
   links
========================= */
.popup-login-box .row-item a{
    font-size: 13px;
    color: #666;
}

.popup-login-box .row-item a:hover{
    color: #459d51;
}

/* =========================
   footer
========================= */
.popup-login-box .popup-footer {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 44px;
    padding: 0 18px;
    margin-top: 16px;
    left: 0;
    right: 0;
    bottom: -44px;

    background-color: #f5f5f5;
    border-radius: 0 0 10px 10px;
}

.popup-login-box .popup-footer .popup-footer-l span{
    font-size: 13px;
    color: #999;
    margin-right: 8px;
}

.popup-login-box .popup-footer .popup-footer-l a i{
    font-size: 18px;
    color: #459d51;
}

.popup-login-box .popup-footer .popup-footer-l a i:hover{
    opacity: 0.8;
}