/* 清除内外边距 */
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;
}
html {
}
body {
}

/* 覆盖Element UI默认的聚焦颜色 */
.el-input__inner:focus {
    border-color: #ea582d !important; /* 例如，将边框颜色改为蓝色 */
}
/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
/* html { overflow-y: scroll; } */
 