/*默认css*/
@charset "utf-8";
*{
	margin:0px;
    padding:0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
ul,li{
	list-style:none;
}
a{
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
}
img{
	border:0px;
}
body{
    font-family: Source Han Sans;
    font-weight: 400;
    margin: 0;
    padding: 0;
    background-image: url(/image/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
::-webkit-scrollbar {/* 隐藏滚动条 */
    display: none;
}
input{
    outline: none;
    border: none;
}
button{
    margin: 0px;
    padding: 0px;
    border: 0px;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}
input::-webkit-input-placeholder {/* WebKit browsers */
    color: #999999;
}
input:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
    color: #999999;
}
input::-moz-placeholder {/* Mozilla Firefox 19+ */
    color: #999999;
}
input::-ms-input-placeholder {/* Internet Explorer 10+ */
    color: #999999;
}
/* 颜色 */
.white{
    color: #ffffff;
}
/* 公用 */