.lsl-search-container { width: 100%; box-sizing: border-box; position: relative; }
.lsl-input-wrapper { position: relative; display: flex; align-items: center; }

#lsl-search-input {
    width: 100%; padding: 12px 40px 12px 15px;
    border: 2px solid #e0e0e0; border-radius: 8px;
    font-size: 15px; outline: none; transition: 0.3s;
}
#lsl-search-input:focus { border-color: #0073aa; box-shadow: 0 0 10px rgba(0,115,170,0.1); }

/* 加载动画小圈圈 */
.lsl-loader {
    position: absolute; right: 15px;
    width: 18px; height: 18px;
    border: 2px solid #f3f3f3; border-top: 2px solid #0073aa;
    border-radius: 50%; display: none;
    animation: lsl-spin 0.8s linear infinite;
}
@keyframes lsl-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.lsl-dropdown {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-radius: 8px; margin-top: 5px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: none; z-index: 10000; overflow: hidden;
}

.lsl-item {
    display: flex; justify-content: space-between; padding: 12px 15px;
    color: #333; text-decoration: none; border-bottom: 1px solid #f9f9f9;
}
.lsl-item:hover { background: #f4faff; color: #0073aa; }
.lsl-views { font-size: 11px; color: #bbb; align-self: center; }