/* 小型股票展示样式 */
.stock-small-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    background-color: transparent;
}

.stock-bar {
    width: 100%;
    max-width: 600px;
    background-color: transparent;
    padding: 5px;
    box-sizing: border-box;
}

.stock-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    font-size: 16px;
    color: #333;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.stock-table td {
    border: none;
    padding: 2px 5px;
}

.symbol {
    font-size: 18px;
    font-weight: 700;
    color: #333333; 
    font-family: 'Montserrat', sans-serif;
    padding: 2px 0;
}

.label {
    font-size: 14px;
    color: #666;
    font-weight: 700;
    padding: 2px 0;
}

.price {
    font-size: 18px;
    font-weight: 700;
    padding: 2px 0;
}

.change {
    white-space: nowrap;
    padding: 2px 0;
    font-weight: 700;
}

.change .arrow-icon {
    margin-right: 4px;
    font-size: 16px;
    font-weight: 700;
}

.time {
    font-size: 12px;
    color: #888;
    padding: 2px 0;
    font-weight: 700;
}

.empty {
    width: 50%;
}

.stock-flash {
    background-color: #EEEEEE !important;
    transition: background-color 0.4s;
}