* {
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    /* 移除外边距 */
    padding: 0;
    /* 移除内边距 */
    font-size: inherit;
    /* 使用父元素的字体大小 */
    font-weight: normal;
    /* 设置字体为正常粗细 */
}

.content {
    width: 100%;
    min-width: 1820px;
    min-height: 73.9vh;
}

/* 去除所有input元素的默认样式 */
input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}

textarea {
    /* 去除默认样式 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    background: none;
    box-shadow: none;

    /* 禁止调整大小 */
    resize: none;
}

button {
    /* 去除所有默认样式 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    box-shadow: none;
    border-radius: 0;
}

/* 去除a标签的下划线 */
a {
    text-decoration: none;
    color: inherit;
    /* 继承父元素颜色 */
}

/* 去除未被访问的a标签的下划线 */
a:link {
    text-decoration: none;
}

.pager{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;

}
.pager .layui-btn{
    width: 40px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    color: #d8b261;
    margin: 0 5px;
    border: 1px solid #d8b261;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
}
.pager .layui-btn-primary{
    width: 40px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    color: #666!important;
    margin: 0 5px;
    border: 1px solid #666!important;
    border-radius: 5px;
    display: inline-block;
}
.pager .layui-btn-disabled{
    width: 40px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    color: #cccccc;
    margin: 0 5px;
    border: 1px solid #cccccc!important;
    border-radius: 5px;
    display: inline-block;
}