svg.sidebar_logo path,
svg.sidebar-logo path,
svg[class*="sidebar"] path {
    display: none !important;
}


svg.sidebar_logo,
svg.sidebar-logo,


/* 隐藏 Halo 相关的版权信息 */
div.text-50.text-center.text-sm {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

/*狙击目标 2：Halo 后台/登录页的标准页脚 */
footer, 
.halo-login-footer,
.halo-footer-copyright,
.layout-footer,
div[class*="text-center"]:has(a[href*="halo.run"]) {
    display: none !important;
}

body {
    padding-bottom: 50px !important; 
    box-sizing: border-box !important;
}

body::after {
    content: "© 2026 SJY官网 版权所有"; 
    
    /* 布局设置 */
    display: block;
    width: 100%;
    height: 30px;      /* 固定高度，防止太高遮太多 */
    line-height: 30px; /* 让文字垂直居中 */
    
    /* 文字样式 */
    text-align: center;
    font-size: 12px;
    color: #ee1c4a;
    background-color: rgba(249, 249, 249, 0.518); /* 半透明背景 */
    border-top: 1px solid #eee;
    
    /* === 核心定位 === */
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99999;

    pointer-events: none; 
}

/* --- A. 设置全屏背景图 --- */
/* --- A. 隐藏“手机验证码登录”及分割线 --- */

/* 1. 隐藏“其他登录方式”那条分割线 */
.divider-wrapper {
    display: none !important;
}

/* 2. 隐藏下面的按钮列表 (手机验证码就在这里面) */
ul.pill-items {
    display: none !important;
}


/* --- B. 设置全屏精美背景 --- */

/* 给整个页面加背景图 */
body.gateway-page {
    background-image: url('https://sjy1218.com/upload/Green.png') !important;
    
    /* 背景图设置：铺满、居中、固定不动 */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}


/* --- C. 登录框“卡片化”设计 --- */


.gateway-wrapper {

    background-color: rgba(255, 255, 255, 0.85) !important;
    
    /* 加圆角 */
    border-radius: 12px !important;
    
    /* 增加阴影 */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    
    /* 增加内部间距，呼吸感更强 */
    padding: 40px !important;
    
    /* 限制宽度，防止在大屏幕上太宽 */
    max-width: 400px !important;
    margin: 0 auto !important;
    
    /* 磨砂玻璃特效 */
    backdrop-filter: blur(10px); 
}


.halo-input, input {
    border-radius: 6px !important;
}

/* === 5. 登录页营销文案 (增加注册转化率) === */

/* 在登录框内容的最前面插入一段文字 */
.halo-form-wrapper::before {
    /* \A 代表换行，你可以修改引号里的文案 */
    content: "🔒 提示：本站部分工具或文章仅提供给注册用户 \A 使用邮箱注册登录后即可无限制使用！";
    
    /* 样式设置 */
    white-space: pre-wrap; /* 允许换行 */
    display: block;
    text-align: center;
    color: #4a5568; /* 深灰色文字 */
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 25px; /* 和下面输入框拉开距离 */
    line-height: 1.6;
    
    /* 加个淡红色的背景框提醒一下 (可选) */
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #c53030;
    padding: 10px;
    border-radius: 8px;
}

