a{ text-decoration: none; }
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
*{ padding:0;margin:0; }
.scroller{ overflow: hidden; }
.scroller-nei {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.scroller-nei a{ text-align: center; display: inline-block; }
.el{ display:none; }
.list-group-item:hover .el{ display:block; }
/* ----------------------
   CSS: 提醒模态框样式
   ---------------------- */
#adblock-modal {
    display: none; /* 初始隐藏，JS会将其设为 'flex' */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    z-index: 99999; 
    /* 使用 Flexbox 实现内容完美居中 */
    display: flex; 
    justify-content: center; 
    align-items: center; 
    
    color: white;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* 模态框内部内容样式 */
.modal-content-adblock { /* 使用一个独特的类名避免与 Bootstrap 冲突 */
    background-color: #dc3545; /* 醒目的颜色 */
    padding: 40px;
    border-radius: 8px;
    max-width: 550px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}