/* 板块样式 */
.plate-cell {
    color: #01bcdd !important;
    cursor: default;
    position: relative;
    text-align: left !important;
    display: inline-block;
    width: 100%;
    margin-left: 0;
}

/* 板块 悬浮窗样式 */
.tooltip {
    display: none;
    position: absolute;
    background-color: #0e1b2c;
    border-radius: 3px;
    padding: 0;
    z-index: 9999;
    width: 300px;
    min-width: 300px;
    max-width: 600px;
    height: auto;
    box-shadow: 0 4px 8px #00000080;
    color: #ddd;
    font-size: 13px;
    line-height: 1.4;
}

.tooltip h4 {
    margin: 0;
    color: #FFA500;
    border-bottom: 1px solid #555555;
    padding: 0;
}

.tooltip p {
    margin: 0;
}

.tooltip .plate-reason {
    margin: 0;
    padding: 0;
}

.plate-container {
    display: none;
    /* 初始隐藏，避免闪屏 */
    flex-direction: column;
    margin: 0;
    padding: 0px;
    background: #13253C;
    /*市场指标   */
    border-bottom: 0px solid #3a3a3a;
    align-items: stretch;
    /* 修改为stretch让子元素填充宽度 */
    width: 100%;
    /* 确保容器宽度为100% */
    transition: opacity 0.3s ease-out;
    /* 添加透明度过渡 */
}

.plates-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 5px 0 0px 0px;
    /* 指标区域整体外边距：上5px 右0 下5px 左5px */
    padding: 3px 0;
    overflow-x: auto;
    white-space: nowrap;
}

.plate-checkbox {
    display: flex;
    align-items: center;
    margin: 0 2px;
}

.plate-checkbox label {
    margin-left: 4px;
    font-size: 12px;
    cursor: default;
    color: var(--color-text-plate);
}
