login.css 2.3 KB
* {
    margin: 0;
    padding: 0;
    font-family: "微软雅黑";
    color: #576477;
    list-style: none;
}

img {
    border: 0;
    display: block;
}

a {
    outline: none;
    color: #fff;
    text-decoration: none;
}

br {
    clear: both;
    font-size: 0;
    line-height: 0;
}

html {
    -webkit-text-size-adjust: none;
}

html,
body {
    min-width: 1024px;
    height: 100%;
    overflow: visible;
    background: #ecf8ff;
}

#wrap {
    width: 100%;
    background: url(../images/login/wrap_bg.jpg) no-repeat center top;
}

#main {
    width: 100%;
    height: 360px;
    background: url(../images/login/main_bg.png) repeat-x left bottom;
    padding: 10% 0 0 0;
}

#main_inner {
    height: 360px;
    background: url(../images/login/main_inner_bg.png) no-repeat center 0;
}

.login_box {
    width: 400px;
    margin: 0 0 0 15%;
}

.login_box .title {
    height: 150px;
    background: url(../images/login/title.png) no-repeat 0 0;
}

.login_box .entry {
    margin: 40px 0;
}

.loginLayout {
    border-collapse: collapse;
}

.loginLayout tr {
    height: 40px;
}

.loginLog {
    background: url(../images/login/entry_logo.png) no-repeat 0 0;
    height: 80px;
    width: 80px;
    margin: -5px 5px 0 0;
}

/** 登录按钮 */

#btnLogin {
    display: inline-block;
    height: 32px;
    width: 108px;
    background: url(../images/login/login.png) no-repeat 0 0;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
}

#btnLogin .login_btn_text {
    font-size: 20px;
    height: 20px;
    line-height: 20px;
    color: white;
    vertical-align: baseline;
}

/** 自定义的textbox组件 */

.custom-textbox {
    display: inline-block;
    position: relative;
}

.custom-textbox .custom-textbox__icon {
    height: 36px;
    width: 36px;
    display: inline-block;
    position: absolute;
    top: -1px;
    left: 1px;
}

.custom-textbox .custom-textbox__text {
    padding-left: 2px;
    width: 220px;
    height: 34px;
    line-height: 34px;
    margin-left: 36px;
    border-width: 0;
}

.icon_user {
    background: url(../images/login/number.png) no-repeat 0 0;
}

.icon_password {
    background: url(../images/login/password.png) no-repeat 0 0;
}

#footer {
    width: 100%;
    height: 30px;
    position: fixed;
    bottom: 0;
    left: 0;
}

#footer p {
    text-align: center;
    font-size: 100%;
}