_passport-captcha.css 1013 Bytes
/*  验证码 css
-----------------------------------
结构:
div.passport-captch
    input
    div
       img
       button

emmet:
div.passport-captch>input+div>img+button 

*/

.passport-captcha {
    text-align: left;

    input {
        display: inline-block;
        width: 50%;
        position: relative;
        padding-left: 15px;
        height: 52PX;
        font-size: 20PX;
        background-color: #575757;
        border: 1px solid #606060;
        border-radius: 5PX;
        color: #fff;
    }
}

.passport-captcha-img {
    width: 50%;
    float: right;
    text-align: right;

    img {
        display: inline-block;
        margin-right: 30px;
        background-color: #fff;
        height: 52PX;
        width: 90PX;
        vertical-align: bottom;
    }
} 

.passport-captcha-refresh {
    display: inline-block;
    text-decoration: underline;
    font-size: 18px;
    color: #ff1901;
    background-color: transparent;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
}