﻿/*css reset*/
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img { margin: 0; padding: 0; }
fieldset, img { border: 0; }
address, caption, cite, code, dfn, th, var { font-style: normal; font-weight: normal; }
ul, ol { list-style: none; }
input { margin: 0; padding: 0; border: 0; outline: none; font-family: sans-serif,Tahoma,Helvetica; font-size: 14px; }
input::-moz-focus-inner { margin: 0; padding: 0; border: 0; outline: none; }
select, input { vertical-align: middle; }
select, input, textarea { margin: 0; padding: 0; border: 0; outline: none; }
input[type="text"], input[type="password"], textarea { outline: none; outline-style: none; -webkit-appearance: none; }
textarea { resize: none; }
table { border-collapse: collapse; border-spacing: 0px; }
img { vertical-align: top; /*4px错误修正，display:block;会导致text-align:center;失效，所以用 vertical-align: top;*/ }
/*css reset*/
/*css common*/
html { width: 100%; height: 100%; display: block; }
body { width: 100%; height: 100%; display: block; background-color: #FFF; min-width: 800px; min-height: 600px; color: #000000; font-size: 14px; letter-spacing: 1px; font-family: sans-serif,Tahoma,Helvetica; }
a { color: #000000; font-size: 14px; letter-spacing: 1px; text-decoration: none; font-family: sans-serif,Tahoma,Helvetica; }
a:hover { color: #B7B4B4; }
/*css common*/
/*左右栏中，左标题和右时间不在一条水平线上，有可能是字体导致的，已验证！*/

/* 清除IE10及以上版本input的叉叉（X）和密码输入框的眼睛图标 */
input::-ms-clear { display: none; }
input::-ms-reveal { display: none; }
/*清除谷歌浏览器下的 search 叉号 */
input[type=search]::-webkit-search-cancel-button { -webkit-appearance: none; }
/*清除IE下的 search 叉号 */
input[type=search]::-ms-clear { display: none; }
/*去掉移动端点击元素后的浅蓝色背景*/
* { -webkit-tap-highlight-color: transparent; }
/*滚动条样式*/
::-webkit-scrollbar { /*滚动条整体样式*/ width: 5px; /*高宽分别对应横竖滚动条的尺寸*/ height: 5px; }
::-webkit-scrollbar-thumb { /*滚动条里面小方块*/ background-color: #808080; }
::-webkit-scrollbar-track { /*滚动条里面轨道*/ background-color: transparent; }
::-webkit-scrollbar-corner { width: 0px; height: 0px; background-color: transparent; }
::-webkit-scrolLbar-button { width: 0px; height: 0px; background-color: transparent; }
