/* 选择所有标签，但是排除 <i> 标签 */
* {
    font-family: Arial, Helvetica, sans-serif;
}
/* 如果你只想针对 p 标签、a 标签替换 font-family，可以这样写 */
a, p {
    font-family: Arial, Helvetica, sans-serif !important;
}
/* 排除 <i> 标签 */
i {
    font-family: FontAwesome !important;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: ' '; */
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    vertical-align: top;
    outline-width: 0ch;
}

.ml_mb_nav i {
    position: relative;
}

.ml_mb_nav i::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    left: -11px;
    background-color: var(--main-color);
    top: 0px;
}