﻿/*! *SmartSite  * Copyright 20170401 za//*! loginStyle.css v2.0.1 */
* { box-sizing: border-box;margin: 0;padding: 0;font-weight: 300;}
body { font-family: 'Source Sans Pro', sans-serif; font-size: 12px;}

/*类body容器*/
.wrapper {
    position: absolute;
    left: 0;
    top: 0;
    /*right:0;*/
    /*bottom:0;*/
    height: 100%;
    width: 100%;
    background: url(/Style/images/Login/bg.png) no-repeat;
    opacity: 0.9;
    filter: Alpha(opacity=90);
    /*background-size: cover;*/ /*把背景图片放大到适合元素容器的尺寸，图片比例不变*/
    background-size: 100% 100%; /*按容器比例撑满，图片变形*/
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='bg-login.png',sizingMethod='scale'); /*IE*/
    overflow: hidden;
    zoom: 0;/*IE*/
}
/*输入框容器*/
.container {
    text-align: center;
    position: absolute;
    /*z-index: 2;*/
    top: 0;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: 619px;
    height: 360px;
    background: url(/Style/images/Login/ct-bg.png) no-repeat right;
    /*box-shadow: 0 0 10px rgba(0,0,0,.1);*/
}

/*表单容器*/
form {
    position: absolute;
    bottom: 10px;
    top: 50px;
    left: 300px;
    right: 50px;
    text-align: left;
}
/*用户名*/
.userAccount {
    width: 100%;
    height: 35px;
    background: url(/Style/images/Login/user1.png) no-repeat;
    background-size:100%;
    background-position-y: 3px;
    padding-left: 25px;
    margin-bottom: 25px;
}
/*密码*/
.userPassword {
    width:  100%;
    height: 35px;
    background: url(/Style/images/Login/pass1.png) no-repeat;
     background-size:100%;
    background-position-y: 3px;
    padding-left: 25px;
    margin-bottom: 25px;
}
/*登录按钮*/
.userLogin {
    margin-top: 40px;
    padding: 0px 15px;
}

/*表单输入框*/
form  input {
    font-family: 'Microsoft YaHei';
    font-size: 14px;
    width: 100%;
    height: 25px;

    outline: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: #fff;
    border-radius: 5px;
    display: block;
    text-align: left;
    color: #999;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    font-weight: 300;
 }
/*表单按钮*/
  form button {
    outline: 0;
    background-color: #E8AD2C;
    border: 0;
    padding: 5px 10px;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font: 16px/1.5 Lucida Grande,Lucida Sans Unicode,Helvetica Neue,Hiragino Sans GB,Microsoft Yahei,sans-serif;
}
/*表单按钮*/
form button:hover {
        opacity: 0.9;
 }

/*错误提示*/
.login_tips {
    height: 30px;
    line-height: 30px;
    color: red;
    border-radius: 5px;
    font-size: 14px;
    font-family: "Microsoft YaHei";
    margin-top: 5px;
    text-align: center;
}
/*错误提示中的图标*/
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-right: 5px;
}
.fa-question-circle:before {
    content: "\f059";
}

/*底部*/
.copyright {
    color: #fff;
    font-family: "Microsoft YaHei";
    font-size: 14px;
    position: absolute;
    bottom: 40px;
    /*left: 0;
    right: 0;*/
    width: 100%;
    text-align: center;
    z-index: -1;
}

/*摘取bootstrap.min.css中提示图标*/
@font-face {
    font-family: 'FontAwesome';
    src: url('/Style/fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('/Style/fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype');
    font-weight: normal;
    font-style: normal;
}

