/* 基础样式 */
.table_body,.v_table_body {
    display: flex;
    flex-direction: row;
    gap: 5%;
    width: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    box-sizing: border-box;
}
#v_table1 td,#v_table2 td{
    word-wrap: break-word;
    max-width:100px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

/* 表格标题样式 */
caption {
    caption-side: top; /* 设置标题显示在表格顶部 */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px; /* 与表格头部保持一定距离 */
    padding: 10px;
    background-color: #009879; /* 与表头背景颜色一致 */
    color: #ffffff; /* 文本颜色为白色 */
    text-align: left;
}

/* 表头和单元格样式 */
th, td {
    padding: 12px 15px;
}

thead tr {
    background-color: #009879;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}

tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

tbody tr:nth-of-type(odd) {
    background-color: #ffffff;
}

tbody tr:hover {
    background-color: #f1f1f1;
}

/* 边框样式 */
th {
    border-bottom: 2px solid #dddddd;
}

td {
    border-bottom: 1px solid #dddddd;
}

/* 第一列（选择按钮）样式 */
tbody td:first-child input[type="checkbox"] {
    margin-right: 10px; /* 与单元格内容保持一定距离 */
}

/* |主界面|设置选中单词按钮的样式 */
.checkbox_btn{
    transform: scale(1.7);
}