*{  
    /* 浏览器初始化设置 */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
    /* 解决苹果手机浏览器按钮边角过圆 */
    appearance:none !important;
    -webkit-appearance:none !important;
    border-radius: 5 !important;
    -webkit-border-radius: 5 !important;  
}


    /* 设置让页面自适应浏览器高度 */
html,body {
    height: 100%;
}
a{
	    text-decoration:none;
        color: inherit;
}
    /* 登录页面的容器 */
.box{
    width: 100%;
    height: 100%;
    max-width: 800px;
    min-width: 360px;
    margin: auto;
    background: url("../img/beijing.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
	position: relative;
}
    /* 存放logo容器 */
.logo{
    width: 150px;
    height:150px;
    margin: auto;
    margin-top: 50px;

}
    /* 网站名称或文字logo */
.logo-text{
    width: 300px;
    height: 50px;
    margin: auto;
    margin-top: 10px;
    background: url("../img/logo-wenzi.png") no-repeat;
}
    /* 存放表单控件的容器 */
.biaodan{
    width: 300px;
    /* height: 400px; */
    /* background-color: blue; */
    margin: auto;
    overflow: hidden;
    padding-top: 50px;
}
    /* 文本框样式 */
.user{
    display: block;
    width:260px;
    height:40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: auto;
    margin-bottom: 20px;
    font-size: 14px;
    background-image: url('../img/longin_user.png');
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: 8px 11px;
    padding-left: 40px;
    outline: none; /* 清楚文本框选中状态 */
    box-sizing: border-box;/* 为了内边距设置的同时不撑开文本框，加上怪异盒模型 */
    
}
     
    /* 密码框左边图标 */

.pass{
    background-image: url('../img/longin_pass.png');
}
    /* 按钮样式 */
.anniu{

    display: block;
    width: 260px;
    height:40px;
    font-size: 18px;
    letter-spacing:5px; 
    border: 1px solid #c3b009;
    border-radius: 10px;
    background-color: #c3b009;
    margin: auto;
    cursor: pointer;
    margin-bottom: 50px;
    color: #ffffff;
}
    /* 底部版权备案信息 */
.dibu{
    width:300px;
    height: 40px;
    /* background-color: #fff; */
    margin: auto;
    font-size: 14px;
    color: #fff;
    text-align: center;
	padding-top:150px;
}


