/* 
    文件描述 ：
    创建时间 ：2015-12-1, 16:18:30
    创 建 人 ：木林森

显示属性：display/list-style/position/float/clear …
自身属性（盒模型）：width/height/margin/padding/border
背景：background
行高：line-height
文本属性：color/font/text-decoration/text-align/text-indent/vertical-align/white-space/content…
其他：cursor/z-index/zoom/overflow
CSS3属性：transform/transition/animation/box-shadow/border-radius
如果使用CSS3的属性，如果有必要加入浏览器前缀，则按照 -webkit- / -moz- / -ms- / -o- / std的顺序进行添加，标准属性写在最后。
-webkit代表chrome、safari私有属性
-moz代表firefox浏览器私有属性
-ms代表IE浏览器私有属性
-o 代表opera浏览器私有属性
链接的样式请严格按照如下顺序添加： a:link -> a:visited -> a:hover -> a:active

*/


/* 基样式 */

html, body, div, p, ul, ol, li, h1, h2, h3, h4, h5 
{
  box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box;
}
div, p, ul, ol, li, h1, h2, h3, h4, h5 
{
  margin: 0;
  padding: 0; 
  box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box;
}

body 
{
  position: relative;
  color: #212121;
  font-family: SimSun;
}
ul, ol 
{
  list-style: none; 
}

a 
{
  cursor: pointer;
  text-decoration: none;
  color: #212121; 
}
.sui-font-normal
{
    font-size: 12px;
    font-weight:normal;
}
.sui-font-bold
{
    font-weight:bold;
}
 input::-ms-clear { display: none; }


/* 
    引用：Font Awesome 图标字体
    下载地址：http://www.bootcss.com/p/font-awesome/
*/
@font-face 
{
    font-family:'FontAwesome';
    src:url('./fonts/fontawesome-webfont.eot?v=3.2.1');
    src:url('./fonts/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),
        url('./fonts/fontawesome-webfont.woff?v=3.2.1') format('woff'),
        url('./fonts/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),
        url('./fonts/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');
    font-weight:normal;
    font-style:normal;
}
/*
    控件中的图标由统一的fontAwesome字体图标使用。
*/
.sui-icon 
{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: default;
    font-family: fontawesome !important; /* 拥有最高优先级*/
    font-size: 14px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    line-height: 18px;
    vertical-align: middle; 
}
/* 按钮或者链接图标显示鼠标状态 */
a .sui-icon, .sui-btn .sui-icon 
{
    cursor: pointer; 
}
/* 清除IE6、IE7 div右侧浮动问题 */
.sui-helper-clearfix 
{
  *zoom: 1; 
}
/* 清除IE6、IE7 div右侧浮动问题 */
.sui-helper-clearfix:after 
{
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden; 
}
/* ms-control 区域的{{}} 这种写法先出来后又隐藏问题 */
.ms-helper-hidden
{ 
    visibility: hidden 
} 
/* 常用图标 增删改查审*/
.sui-icon.icon-search:before{content:"\f002";}
.sui-icon.icon-plus:before{content:"\f067";}
.sui-icon.icon-edit:before{content:"\f044";}
.sui-icon.icon-remove:before{content:"\f00d";}
.sui-icon.icon-undo:before{content:"\f0e2";}
.sui-icon.icon-save:before{content:"\f0c7";}
.sui-icon.icon-ok:before{content:"\f00c";}
.sui-icon.icon-user:before{content:"\f007";}
.sui-icon.icon-angle-left:before{content:"\f104";}
.sui-icon.icon-angle-right:before{content:"\f105";}
.sui-icon.icon-angle-up:before{content:"\f106";}
.sui-icon.icon-angle-down:before{content:"\f107";}
.sui-icon.icon-insert:before{content:"\f016";}
.sui-icon.icon-update:before{content:"\f044";}
.sui-icon.icon-delete:before{content:"\f014";}
.sui-icon.icon-cancel:before{content:"\f0e2";}
.sui-icon.icon-lock:before{content:"\f023";}
.sui-icon.icon-unlock:before{content:"\f09c";}
.sui-icon.icon-print:before{content:"\f02f";}
.sui-icon.icon-publish:before{content:"\f064";}
.sui-icon.icon-unpublish:before{content:"\f112";}
.sui-icon.icon-test:before{content:"\f0ad";}