@charset "utf-8";
* {
    margin:0;
    padding:0;
    font-family: "Microsoft YaHei UI";
}
table {
    border-collapse:collapse; /*让表格边框细线*/
    border-spacing:0; /*清除边框间距*/
}
img {
    border:0 none; /*有些浏览器默认这些标签有边框，所以要清除默认边框*/
    display:block;
}
address,caption,cite,code,dfn,em,i,u,b,strong,th,var {
    font-style:normal;
    font-weight:normal; /*清除标签默认文本样式和加粗*/
}
input,textarea{
    outline:0 none;/*去掉文本框的默认轮廓线*/
}
ol,ul,li {
    list-style:none; /*清除列表默认样式*/
}
a{
    text-decoration:none;/*大部分页面中的链接没有下划线*/
}
button {
    cursor: pointer;
}
textarea{
    resize:none;
}
.clearfix:after {
    height:0;
    content:" ";
    display:block;
    overflow:hidden;
    clear:both;
}
.clearfix {
    zoom:1;/*IE低版本浏览器不支持after伪类所以要加这一句*/
}
/*number类型*/
input[type=number] {
    -moz-appearance:textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
}
/** 常用样式 */
.cur{cursor: pointer;}
.fr{float: right}
.fl{float: left}
.color-blue{color: #0092DC}

/*控制行高*/
.datagrid-btable tr {
    height: 30px;
}
.el-table th, .el-table td{
    text-align: center !important;
}
.datagrid-header .datagrid-cell {
    height:30px;
    line-height: 30px;
}
/*内容超出显示省略*/
.ContentBeyond{
  overflow: hidden;/*超出部分隐藏*/
  text-overflow:ellipsis;/* 超出部分显示省略号 */
  white-space: nowrap;/*规定段落中的文本不进行换行 */
}
div{word-wrap:break-word;word-break:break-all!important;}
span{word-wrap:break-word;word-break:break-all!important;}/*不要在这里加inline-block,影响其他页面样式*/
