/* 隐藏底部的 OJS/PKP 默认 Logo */
.pkp_brand_footer {
    display: none !important;
}





/* ==========================================
   SCPE 首页简介 (紧凑卡片 + 实心高级徽章版)
   ========================================== */

/* 1. 约束首段文本 */
section.homepage_about > p {
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 25px !important;
    color: #444 !important;
}

/* 2. 列表容器：缩小卡片之间的间距，显得紧凑 */
section.homepage_about ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important; /* 缩小间距，告别松散 */
}

/* 3. 卡片本体：大幅缩小内留白，解决"太宽/臃肿"的问题 */
section.homepage_about ul li {
    background-color: #ffffff !important;
    border: 1px solid #eef0f5 !important;
    border-left: 4px solid #0c3670 !important; 
    border-radius: 6px !important; /* 圆角稍微收敛 */
    padding: 12px 16px !important; /* 极大地缩小了留白，卡片瞬间精致 */
    box-shadow: 0 2px 6px rgba(0,0,0,0.02) !important;
    margin-bottom: 0 !important;
    transition: all 0.2s ease !important;
}

/* 悬停动效 */
section.homepage_about ul li:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
    border-color: #e0e6ed !important;
}

/* 4. 修复段落文字，解决文字换行难看的问题 */
section.homepage_about ul li p {
    display: block !important; 
    margin: 0 !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: #555 !important;
}

/* 5. 【点睛之笔】实心深蓝徽章：极具视觉冲击力和权威感 */
section.homepage_about ul li strong,
section.homepage_about ul li strong span {
    display: inline-block !important; 
    background-color: #0c3670 !important; /* 直接用品牌深蓝做底色 */
    color: #ffffff !important; /* 字体反白 */
    padding: 2px 8px !important; /* 缩小徽章本身的臃肿感 */
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    border: none !important; /* 坚决去掉廉价的边框 */
    margin-right: 6px !important; 
    margin-bottom: 2px !important;
    vertical-align: baseline !important; /* 完美对齐后面的文字，不再错乱 */
    box-shadow: 0 1px 3px rgba(12, 54, 112, 0.2) !important; /* 微弱的高级立体阴影 */
}

/* 6. 保护首段介绍里的加粗字（如 2005）不变成徽章 */
section.homepage_about > p strong,
section.homepage_about > p strong span {
    display: inline !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    color: #222 !important;
    box-shadow: none !important;
}