body {
    margin: 0;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #f6f6f6;
    color: #111;
}

/* ===== Reset ===== */
ul,
li,
em {
    list-style: none;
    font-style: normal;
}

a,body,dd,div,dl,dt,em,form,h1,h2,h3,html,i,img,input,li,p,span,ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:hover {
    color: #23c268 !important;
}

i {
    font-style: normal;
}

/* ====== 面包屑 ====== */
.breadcrumb-box {
    font-size: 14px;
    color: #999;
    line-height: 1;
    background-color: #FBFBFB;
    padding: 12px 0 12px 12px;
    border-bottom: 1px solid #efefef;
}

.breadcrumb-box a,.breadcrumb-box span {
    color: #999;
    text-decoration: none;
    font-size: 12px;
}

.breadcrumb-box i {
    font-size: 7px;
    color: #999;
    margin: 0 6px;
    position: relative;
    top: -1px;
}

/* ===== 顶部 ===== */
.header-mobile {
    width: 100%;
    background: #23c268;
    padding: 10px 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-mobile .logo img {
    height: 24px;
    display: block;
}

/* 顶部图标按钮 */
.header-mobile .top-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-mobile .top-actions i {
    font-size: 18px;
    color: #ffffff;
}

.header-mobile .top-actions i:nth-child(2) {
    font-size: 24px;
    transform: translateY(-1px);
}

/* ===== 右侧菜单 ===== */
.mobile-menu-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: none;
    z-index: 999;
}

.mobile-menu-panel {
    position: fixed;
    right: -70%;
    top: 0;
    width: 35%;
    height: 100%;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    transition: all .35s ease;
    z-index: 1000;
    padding: 15px;
    box-sizing: border-box;
}

.mobile-menu-close {
    font-size: 16px;
    text-align: right;
    padding-bottom: 10px;
}

.mobile-menu-close i {
    cursor: pointer;
}

.mobile-menu-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333333;
    text-decoration: none;
}

/* ===== 底部 ===== */
.footer-mobile {
    background: #333333;
    padding: 14px 0;
    text-align: center;
}

.footer-mobile p {
    color: #9a9a9a;
    font-size: 12px;
    margin: 0;
}