/* 清除内外边距 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
lengend,
button,
input,
textarea,
th,
td {
    margin: 0;
    padding: 0;
    cursor:default;
   
}

/* 设置默认字体 */
body,
button,
input,
select,
textarea {
    /* for ie */
    font: 12px/1 ;
    /* font: 12px/1.3 "Microsoft YaHei", Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; */
    /* 用 ascii 字符表示，使得在任何编码下都无问题 */
    color: #333;
}

h1 {
    font-size: 18px;
    /* 18px / 12px = 1.5 */
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 14px;
}

h4,
h5,
h6 {
    font-size: 100%;
}

address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}

/* 将斜体扶正 */
b,
strong {
    font-weight: normal;
}

/* 将粗体扶细 */
code,
kbd,
pre,
samp,
tt {
    font-family: "Courier New", Courier, monospace;
}

/* 统一等宽字体 */
small {
    font-size: 12px;
}

/* 小于 12px 的中文很难阅读，让 small 正常化 */

/* 重置列表元素 */
ul,
ol {
    list-style: none;
}
a:visited{
    color: none;
}
a:link{text-decoration:none;   /* 指正常的未被访问过的链接*/}

a:visited{text-decoration:none; /*指已经访问过的链接*/}

a:hover{text-decoration:none;/*指鼠标在链接*/}

a:active{text-decoration:none;/* 指正在点的链接*/ }
/* 重置文本格式元素 */
a {
    text-decoration: none;
   
}

/* a:hover {
    color: rgb(79, 76, 212) !important;
} */

/* 重置表单元素 */
legend {
    color: #000;
}

/* for ie6 */
fieldset,
img {
    border: none;
}

button,
input,
select,
textarea {
    font-size: 100%;
    /* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
    white-space: pre-line;
}

/* 重置 hr */
hr {
    border: none;
    height: 1px;
}

.clearFix::after {
    content: "";
    display: block;
    clear: both;
}

/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html {
    overflow-y: scroll;
}

/* 清除浮动 */
.clearfix::after {
    display: block;
    height: 0;
    content: "";
    clear: both;
    visibility: hidden;
}

/* #app,
body {
    min-width: 1024px;
} */
li{
     display: -webkit-box;
     /*作为弹性伸缩盒子模型显示*/
     -webkit-line-clamp: 1;
     /*显示的行数；如果要设置2行加...则设置为2*/
     overflow: hidden;
     /*超出的文本隐藏*/
     text-overflow: ellipsis;
     /* 溢出用省略号*/
     -webkit-box-orient: vertical;
     /*伸缩盒子的子元素排列：从上到下*/
}

.el-notification {
    width: 330px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 2px;
    position: fixed;
    right: -330px;
    top: 16px;
    z-index: 2000;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .2), 0 0 8px rgba(0, 0, 0, .04);
    /* transition: opacity .3s, transform .3s, right .3s, top .4s; */
    transition: all .2s linear;
    transform: translateX(-346px);
    overflow: hidden;
}

.el-notification__icon {
    width: 41px;
    height: 41px;
    float: left;
    position: relative;
    top: 3px;
    background-image: url(./images/warning.png);
}

.el-notification__group.is-with-icon {
    margin-left: 55px;
}

.el-notification__title {
    font-weight: 400;
    font-size: 16px;
    color: #1f2d3d;
    margin: 0;
}

.el-notification__content {
    font-size: 14px;
    line-height: 21px;
    margin: 10px 0 0;
    color: #8391a5;
    text-align: justify;
}

.el-notification__closeBtn {
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
    position: absolute;
    cursor: pointer;
    color: #bfcbd9;
    background-image: url(./images/close.png);
}