/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p,
blockquote,header,footer,section,nav, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li,
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea,
table,thead,th,tr,td,small,nav,aside,
img{    
    margin: 0;
    padding: 0;
}
body,html{
	width:100%;
	/*height: 100%;*/
	height: 100vh;
	height: auto;
	color:#FFF;
	background: #090234;
	-webkit-font-smoothing: antialiased; 
	-moz-osx-font-smoothing: inherit | grayscale;
}
html,
button,
input,
select,
textarea {
	color: #FFF;
}
/* 设置默认字体 */
body, button, input, select, textarea { font:0.8750em/1.6 "PingFang SC", "Microsoft YaHei", arial, "\5b8b\4f53", sans-serif, tahoma}
/** 设置默认字体 **/
h1, h2, h3, h4, h5, h6 { font-size: 100%; }
address, cite, dfn, em, var { font-style:normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family:courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size:12px; } /* 小于 12px 的中文很难阅读，让 small 正常化 */

/* Resetting HTML5! */
section, article, aside, header, footer, nav, dialog, figure ,
details, figcaption, hgroup, main, menu,summary { /*display: block; */ }
audio, canvas, progress, video { 
　　　/*display: inline-block;*/ 
} 
audio:not([controls]) { 
　　　display: none;
　　　height: 0; 
} 
/** 重置表格元素 **/
table { 
	border-collapse: collapse; 
	border-spacing: 0; 
}
img {
    display:block;
    width:100%;max-width:100%;
    height:auto;
    width: auto\9; /* “\9″在IE6/IE7/IE8/IE9/IE10下生效,“\0”在 IE8/IE9/IE10下生效,“\9\0” 在IE9/IE10下生效 */
    -ms-interpolation-mode:bicubic;/*防止windows平台，缩放图片失真现象象*/
    vertical-align:middle;
    border:medium none;/*不显示边框*/
}

fieldset{border:0;}
input, textarea, select, button {
    font-size: 0.9375em;
    font-weight: normal;
    border: 0;
}
input[type="button"], input[type="submit"], input[type="reset"] { /*清除手机自带样式*/
    -webkit-appearance: none;
}
input ,select{
    outline: none
}
select {
/*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/

/*很关键：将默认的select选择框样式清除*/
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
/*将背景改为红色*/
background:#FFF;
/*加padding防止文字覆盖*/
padding-right: 14px;
}
/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand { display: none; }

[placeholder] {  font-family: 'Microsoft YaHei';  }
input::-webkit-input-placeholder{
    color:#ccc;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color:#ccc;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color:#ccc;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
    color:#ccc;
}
/*input:focus{
	padding:2px;
}*/
ol,ul, li, dl, dt, dd {
    list-style-type: none;
}

a {
    text-decoration: none;
    outline: none;
    display: block;
    font-style:normal;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	cursor:pointer;	
}
a:hover {
	text-decoration: none;
}
area,a:focus,button{
	outline: none;
}

b{font-weight: normal;}
