.content {
    background-color: #fff;
    padding-bottom: 40px;
}

#tablelist {
    width: 100%;
    /* 例如，设定父容器宽度 */
    overflow-x: auto;
    /* 允许水平方向上的滚动 */
    overflow-y: hidden;
    /* 禁止垂直方向上的滚动 */
}


.content .logo {
    margin: 0 auto 16px;
    width: 103px;
    height: 110px;
    display: block;
}

.content .title {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}

.content .form {
    margin: 0 auto;
    margin-top: 40px;
    width: 40%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.content .form input {
    padding: 12px 24px;
    border: 1px solid #052F93;
    font-size: 16px;
    color: #aaa;
}

.content .form .submit {
    text-align: center;
    background-color: #052F93;
    color: #fff;
    font-size: 20px;
    padding: 12px 0;
}

.table {
    width: 100%;
    border: 1px solid #eee;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 20px auto;
}

.table thead {
    background-color: #f4f4f4;
}


.table thead th {
    line-height: 45px !important;
    text-align: center !important;
    padding: 0 !important;
    font-size: 16px;
    font-weight: 400;
    border-bottom: none !important;
}

.table tbody td {
    font-size: 14px;
    color: #777;
    text-align: center !important;
    border-bottom: none !important;
    border-top: none !important;
    white-space: nowrap;
    /* 防止文本换行 */
    overflow: hidden;
    /* 隐藏溢出的内容 */
    text-overflow: ellipsis;
    /* 显示省略号 */
}

/**
手机端样式
*/
@media (max-width:768px) {
    .content {
        margin-top: 20px;
    }

    .table {
        width: 200%;
        max-width: 750px;
    }

    .content .title {
        font-size: 20px;
    }

    .content .form {
        width: 100%;
    }

    .content .logo {
        margin: 0 auto 16px;
        width: 51px;
        height: 55px;
        display: block;
    }

}