/* 搜索框样式 */
.search-container {
    margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
}
 /* 放大镜搜索按钮 */
        .search-btn {
            padding: 8px 16px;
            background-color: #4096ff;
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #3086e8;
        }
        /* 放大镜图标（用Unicode实现，无需额外图片） */
        .search-icon {
            font-size: 16px;
        }
#companySearch {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}
#companySearch:focus {
    outline: none;
    border-color: #4096ff;
    box-shadow: 0 0 0 2px rgba(64, 150, 255, 0.1);
}

/* 表格容器样式 */
.cuslist {
    overflow-x: hidden;
    height: 212px;
    width: 500px;
    position: fixed;
    top: 346.5px;
    left: 703px;
    display: none;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    padding: 16px;
    box-sizing: border-box;
    width: auto !important;
}

/* 表格样式 */
.cuslist{
	overflow-x:hidden !important;
}
.cuslist .tablelist {
    width: 500px;
    border-collapse: collapse;
    font-size: 13px;
    color: #333;
}
.cuslist .tablelist thead th {
    background-color: #f5f7fa;
    color: #666;
    font-weight: 500;
    padding: 0px 8px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}
.cuslist .tablelist tbody tr {
    transition: background-color 0.2s;
    cursor: pointer;
}
.cuslist .tablelist tbody td {
    padding: 10px 8px;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cuslist .tablelist tbody tr:hover {
    background-color: #fafafa;
}
.cuslist .tablelist tbody tr:last-child td {
    border-bottom: none;
}
.cuslist2{
	width: auto !important;
	overflow-x:hidden !important;
}
.cuslist2 .tablelist {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    color: #333;
}
.cuslist2 .tablelist thead th {
    background-color: #f5f7fa;
    color: #666;
    font-weight: 500;
    padding: 0px 8px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}
.cuslist2 .tablelist tbody tr {
    transition: background-color 0.2s;
    cursor: pointer;
}
.cuslist2 .tablelist tbody td {
    padding: 10px 8px;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cuslist2 .tablelist tbody tr:hover {
    background-color: #fafafa;
}
.cuslist2 .tablelist tbody tr:last-child td {
    border-bottom: none;
}




/* 书签样式提示框容器 */
.bookmark-container {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    max-width: 320px;
}

/* 书签夹部分 - 类似书签的三角部分 */
.bookmark-tab {
    background-color: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 0 0 0 8px;
    cursor: pointer;
    display: inline-block;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.bookmark-tab:hover {
    background-color: #c0392b;
}

/* 提示框内容 - 类似书签展开的页面 */
.bookmark-content {
    background-color: white;
    border-radius: 0 0 0 8px;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 2px;
    /* 默认显示 */
    max-height: 500px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* 收起状态 */
.bookmark-content.collapsed {
    max-height: 0;
    opacity: 0;
    transform: translateX(100%);
    padding: 0 20px;
}

.bookmark-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f1f1;
}

.bookmark-title {
    font-weight: 600;
    color: #2d3436;
    font-size: 18px;
}

.toggle-btn {
    background: none;
    border: none;
    color: #b2bec3;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.toggle-btn:hover {
    color: #e74c3c;
}

.bookmark-body {
    color: #636e72;
    margin-bottom: 16px;
    line-height: 1.6;
}

.bookmark-list {
    margin-bottom: 20px;
    list-style: none;
}

.bookmark-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.bookmark-list li:before {
    content: "•";
    color: #e74c3c;
    font-weight: bold;
    margin-right: 10px;
    margin-top: 3px;
}

.bookmark-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.bookmark-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

