#s-part1,
#s-part2,
#s-part3 {
    height: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#s-part1>div {
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
}

#s-part1 #part1-01 {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
}

#part1-1 {
    width: 110%;
    height: 60%;
}

.tbhalf {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#s-part1 #part1-2,
#s-part1 #part1-3,
#s-part1 #part1-4,
#s-part1 #part1-5 {
    width: 40%;
    height: 100%;
}


/* part2 */

#s-part2 {
    padding: 0 1%;
    height: 400px;
    display: flex;
    justify-content: center;
}

#s-part2 #part2-1 {
    width: 35%;
    height: 100%;
}

#s-part2 #part2-2 {
    width: 60%;
    height: 100%;
}

/* part3 */
#s-part3 {
    width: 94%;
    height: 1200px;
    margin: 0 auto;
}


#part3-1 {
    width: 40%;
    height: 100%;
}

#part3-2 {
    width: 60%;
    height: 100%;
    display: flex;
    padding: 136px 0px;
}

#part3-2>div {
    width: 25%;
    height: 100%;
    /* border: 1px solid #ccc; */
}

#part3-2>div:first-child {
    width: 50%;
}

/* part4 table1-table2 */
/* #scRNA-table,
#TCGA-table {
    width: 94%;
    max-height: 800px;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 15px auto;
    text-align: center;
    font-size: 12px;
    border: 1px solid #ccc;
} */
/* ========== 表格通用容器与工具栏 ========== */
.table-panel {
    width: 94%;
    max-height: 800px;
    margin: 0px auto 40px auto;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-bottom: 2px solid #1B3351;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

/* 工具栏行：左侧下载，右侧搜索 */
.table-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px 10px 0px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
    flex-shrink: 0;
}

.table-toolbar .btn-download {
    background: #1B3351;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 5px 14px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.table-toolbar .btn-download:hover {
    background: #f0f0f0;
    border-color: #999;
}

.table-toolbar .search-box {
    display: flex;
    align-items: center;
    gap: 5px;
}

.table-toolbar .search-box input {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 5px 10px;
    font-size: 12px;
    width: 200px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s;
}

.table-toolbar .search-box input:focus {
    outline: none;
    border-color: #2866d1;
    box-shadow: 0 0 0 2px rgba(40, 102, 209, 0.1);
}

/* 表格滚动区域 */
.table-scroll {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    /* 内部表格宽度由 colgroup 控制，这里不用设置 */
}

/* ---------- 学术期刊风格表格 ---------- */
.journal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    color: #222;
    table-layout: fixed;
    background: white;
}

.journal-table thead th {
    position: sticky;
    top: 0;
    background: #1B3351;
    border-bottom: 2px solid #aaa;
    padding: 8px 6px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #fff;
    text-align: center;
    word-wrap: break-word;
    white-space: normal;
    z-index: 2;
}

.journal-table tbody td {
    padding: 6px 8px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 0.15s;
}

/* 斑马条纹（可选，学术期刊常用轻微间隔色） */
.journal-table tbody tr:nth-child(even) td {
    background: rgba(132, 140, 161, 0.13);
}

.journal-table tbody tr:hover td {
    background: #d8e0f5;
}

/* 搜索高亮单元格 */
.journal-table td.highlight {
    transition: all 0.3s;
    background-color: rgb(67 139 240 / 28%) !important;
    /* 淡黄色背景 */
    /* 若想要蓝色边框可以加： */
    box-shadow: inset 0 0 0 2px #fff3cd41;
}

#s-part3~.stastictitle {
    width: 94% !important;
    margin: 0px auto !important;
    padding: 20px;
    color: black;
    font-size: 18px;
    border: 1px solid gainsboro;
    border-bottom: none;
}