/*base样式说明：
1,字体直接使用bootstrap的字体，不再特意去指定，并且“microsoft yahei”这个字体，在组合框中，会导致左边的qt和输入框中的3333无法对齐
2,这里只是基础样式，不定义任何工具类、组建类样式
 */
html {
    margin: 0; 
    padding: 0; 
    min-height: 100%;  
    position: relative;/*底部版权效果：内容够高则显示在内容下面，不够高则显示在屏幕最下方*/
}
body {
    font-size: 12px;
    color: #333;
    min-height: 400px;
    background-color: #fff;
}

/*清除边距：浏览器对td等元素默认间距是1px，需要清空*/ 
body,article,section,h1,h2,h3,h4,h5,h6,p,blockquote, /* structural elements 结构元素 */
dl,dt,dd,ul,ol,li, /* list elements 列表元素 */
form,fieldset,legend,button,input,textarea, /* form elements 表单元素 */
th,td /* table elements 表格元素 */ {margin:0;padding:0;}

/*清除鼠标放上去后的黑边效果*/
button,input{outline:none;} 

/** 重置列表元素 **/
ul, ol ,li{
    list-style: none;
}

/*i、em设置正常样式字体，而不是斜体*/
i, em {
    font-style: normal;
}


/*标签*/
label {
    font-weight: normal;
    max-width: none;
    margin-bottom:0;/*取消bs的下间隔*/
}

/*超链接*/
a {
    color: #333333;
    text-decoration: none;
}

a:hover {
    color: #299cf8; /*f59711*/    
    text-decoration: none;
} 

/**滚动条**/
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 0;
    background: rgba(0,0,0,0.1);
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.2);
}

::-webkit-scrollbar-thumb:hover {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.4);
}
