/* 股票下拉列表样式 */
.stock-input-container {
    position: relative;
    display: inline-block;
}

.stock-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    max-height: 250px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.stock-dropdown.show {
    display: block;
}

.stock-item {
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
}

.stock-item:last-child {
    border-bottom: none;
}

.stock-item:hover, .stock-item.active {
    background-color: #f5f5f5;
}

.stock-item .stock-code {
    width: 60px;
    font-family: monospace;
    font-weight: bold;
}

.stock-item .stock-name {
    width: 100px;
    margin-left: 8px;
}

.stock-item .stock-date {
    margin-left: auto;
    color: #666;
    font-size: 0.9em;
}

.no-results {
    padding: 8px;
    text-align: center;
    color: #999;
    font-size: 12px;
}