.box {
    scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
    /* 第一个方块颜色，第二个轨道颜色(用于更改火狐浏览器样式) */
    scrollbar-width: thin;
    /* 火狐滚动条无法自定义宽度，只能通过此属性使滚动条宽度变细 */
    -ms-overflow-style: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.box::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.box .selBtn {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 10px;
}

.que_sen {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    background: #fff;
}

.que_sen img {
    width: 500px;
}