* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "微软雅黑", "Arial", Verdana, Arial, Helvetica, sans-serif;
}

/* 底部菜单样式 */
.menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 2px 8px #ccc;
}

.menu div {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #B3BBC7;
    font-size: 13px;
}

.menu div img {
    width: 24px;
    height: 24px;
}

/* 选中菜单样式 */
.menu div.selected {
    color: #3676FC;
}

.pagination {
    margin: 10px;
    display: flex;
    list-style: none;
    align-items: center;
    font-size: 12px;
    justify-content: center;
}

.pagination > li {
    width: 40px;
    height: 40px;
    border: 1px solid #EBF1FF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #3676FC;
}

.pagination .pageIndexS {
    display: flex;
}

.pagination .pageIndexS > li {
    width: 40px;
    height: 40px;
    border: 1px solid #EBF1FF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #3676FC;
}