 body {
        background: #f8f8f8;
        margin: 0;
}

#header {
    height: 100px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    background-color: #16a085;
}

#mainContent {
    /* height: 700px; */
    min-height: 700px;
    position: relative;
}

#footer {
    height: 80px;
    color: #222222;
    line-height: 80px;
    font-size: 18px;
    background-color: #f1f1f1;
}

.content {
    width: 818px;
    margin: 0 auto;
}

#search {
    width: 70%;
    margin: 0 auto;
    height: 100px;
    display: flex;
    align-items: center;
}

#search div {
    height: 40%;
    width: 80%;
    margin: auto;
}

#search div input, #search div button {
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 16px;
    border-radius: 4px;
}

#search div input {
    width: 75%;
    text-align: center;
    border: 1px solid #16a085;
}

#search div input:focus {
    outline: none;
}

#search button {
    border: 0;
    width: 23%;
    background-color: #16a085;
    color: white;
}

#search button:hover {
    background-color: #16a085dd;
}

/* table */

table {
    width: 100%; 
    table-layout: fixed;
    margin-top: 20px;
    border: none;
    border-collapse: collapse;
}

table thead tr {
    color: #16a085;
    font-size: 18px;
    height: 48px;
}

table tbody tr {
    color: #444444;
    font-size: 16px;
    height: 38px;
}

table tbody tr:hover {
    background-color: #f1f1f1;
}

table tbody tr td {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    border: none;
}

table tbody tr td button {
    border: 0;
    border-radius: 4px;
    background-color: #16a085;
    color: white;
    font-size: 14px;
    padding: 8px;
}

table tbody tr td button:hover {
    background-color: #16a085dd;
}

#pageNubmer {
    height: 80px;
    position: absolute;
    bottom: 0;
    width: 818px;
    display: flex;
    align-items: center; /* 内部元素垂直居中 */
    justify-content: center; /* 内部元素水平居中 */
}

#pageNubmer button {
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    color: #16a085;
    margin-right: 10px;
    font-size: 16px;
    background-color: #f0f0f0;
}

#pageNubmer button:hover {
    background-color: #16a085;
    color: white;
}

.currentPageNubmer, .currentPageNubmer:hover {
    border: 0 !important;
    background-color: transparent !important;
    color: #16a085 !important;
}

/* 全屏遮罩 */
#mask {
    width: 100%;
    height: 100%;
    background-color: #f8f8f8aa;
    z-index: 5;	
    padding: 0 auto;
    margin: 0 auto;
    border: 0;
    outline: none;
}

#mask div {
    color: red;
    height: 100px;
    text-align: center;
    align-content: center;
    font-size: 24px;
    width: 100%;
    font-weight: bold;
}

#info {
    width: 818px !important;
    background-color: #f8f8f8;
    margin: 85px auto;
    border-radius: 8px;
    height: fit-content !important;
}

#info table {
    margin: 18px auto;
    width: 95%;
}

#info table tr, #info table thead tr th {
    text-align: start;
}

#info div {
    display: flex;
    float: left;
    height: 40px;
}

#mask button {
    border: 0 ;
    width: 98px;
    height: 38px;
    outline: none;
    font-size: 16px;
    color: white;
    border-radius: 8px;
    margin-top: 5px;
    margin-right: 10px;
    background-color: #16a085;
}

#infoTitle {
    width: 75%;
    height: 38px;
    font-size: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    line-height: 38px;
    margin-left: 18px;
    color: #333333;
    text-align: start;
    font-weight: bold;
}

#mask button:hover {
    opacity: 0.8;
}

#header div.content {
    position: relative;
}

#shared {
    position: absolute;
    right: 0;
}

#shared a {
    color: #444444;
    margin-left: 10px;
    text-decoration: none;
}

#shared a:hover {
    color: white;
}