/* 商品ID */
.product_id {
    width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 更多按钮 */
.more-btn-container {
    margin-left: 10px;
    position: relative;
    display: inline-block;
}

/* .layui-table-cell {
    white-space: normal; 允许内容换行
    word-wrap: break-word; 长单词或URL换行
    height: auto; 高度自适应
    overflow: visible; 显示溢出的内容
    text-overflow: inherit; 继承父元素的text-overflow属性
    line-height: normal; 行高自适应
} */

.layui-table-fixed .layui-table-body {
    overflow: visible;
}

.layui-table-col-special .layui-table-cell {
    overflow: visible;
}

.more-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 130px;
    display: none;
    padding: 8px 0;
    overflow: hidden;
}

.more-dropdown a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #4a5568;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.2s;
}

.more-dropdown a i {
    margin-right: 8px;
    width: 18px;
    text-align: center;
}

.more-dropdown a:hover {
    background: #f0f7ff;
    color: #1e9fff;
}

.color-fish {
    color: #F59A23;
}