﻿ 
@font-face {
    font-family: '百度综艺简体';
    src: url('../fonts/百度综艺简体.ttf') format('truetype');
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    background: url('../img/login/login_bg.png') fixed;
    background-size: cover; /*只支持IE9+*/
    -webkit-background-size: cover; /*webkit核心*/
    -moz-background-size: cover; /*FF核心*/
    -o-background-size: cover; /*Opera核心*/
}

.wrapper {
    text-align: center; /*让div内部文字居中*/
    border-radius: 20px;
    width: 850px;
    min-width: 850px;
    height: 450px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/login/login.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -moz-background-size: 100% 100%;
}

.wrapper_tips {
    font-family: "微软雅黑";
    text-align: left;
    width: 370px;
    height: 80px;
    position: absolute;
    top: 140px;
    left: 30px;
    font-size: 28px;
    color: #fff;
}

.container {
    width: 300px;
    height: 350px;
    position: absolute;
    top: 40px;
    right: 70px; /*css溢出法*/
    margin: auto;
}

    .container .logo h1 {
        font-family: '百度综艺简体';
        padding-top: 2px;
        padding-left: 15px;
        float: left;
        font-size: 42px;
        font-weight: bold;
        color: #acdef5;
    }

form {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-top: 85px;
    border-radius: 5px;
}

    form input,select {
        font-size: 14px;
        outline: 0;
       min-height: 42px;
        border: 1px solid #dcdcdc;
        background-color: #e8f0fe;
        width: 100%;
        border-radius: 5px;
        padding: 12px 15px;
        margin-bottom: 20px;
        display: block;
        text-align: left;
        /*color: #929191;*/
        -webkit-transition-duration: 0.25s;
        transition-duration: 0.25s;
        font-weight: 300;
    }

    form .row {
        position: relative;
        overflow: hidden;
    }

    form i {
        color: #cbcbcb;
        top: 13px;
        right: 6px;
        z-index: 99;
        position: absolute;
        display: block;
        width: 30px;
        height: 30px;
        text-align: center;
        font-size: 18px !important;
    }

    form .row .authcode {
        position: absolute;
        left: 105px;
        top: 10px;
    }

    form button {
        outline: 0;
        background: -webkit-linear-gradient(top left, #6eb1ff 0%, #0a60ff 100%);
        border: 0;
        padding: 10px 15px;
        color: #fff;
        border-radius: 5px;
        width: 300px;
        cursor: pointer;
        font: 24px/1.5 Lucida Grande,Lucida Sans Unicode,Helvetica Neue,Hiragino Sans GB,Microsoft Yahei,sans-serif;
    }

        form button:hover {
            opacity: 0.9;
        }
/*版权样式*/
.copyright {
    text-align: center;
    color: #294e70;
    position: absolute;
    top: 100%;
    margin-top: -60px;
    width: 97%;
    font-family: Microsoft Yahei;
    line-height: 25px;
    font-size: 14px;
}
/*错误提示样式*/
.login_tips {
    position: absolute;
    bottom: -15px;
    z-index: 99;
    width: 100%;
}

.tips_msg {
    height: 30px;
    line-height: 30px;
    color: red;
    margin: 0 auto;
    border-radius: 5px;
    width: 300px;
    font-size: 14px;
}

    .tips_msg i {
        position: relative;
        top: 0.5px;
        font-size: 15px;
        padding-right: 5px;
    }





button[disabled], button[disabled] button {
    color: #fff;
    opacity: 1;
    cursor: default;
}
