#bg {
    position: absolute;
    width: 100%;
    height: 100px;
    background-image: linear-gradient(#FFF7F4, white);
}

/* bootstrap布局间分隔 */
.row > [class*="col-"] {
    padding: 1rem;
}

/* 题目外面的大框 */
#paper-box {
    border-radius: 0.5rem;
    box-shadow: 0rem 0rem 0.1rem 0.2rem #FFF7F4;
}

/* 分页部分 */
.page-btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 上一页按钮 */
#last-page-btn {
    border: 1px solid #F75A23;
    color: #F75A23;
    background-color: white;
    padding: 1rem 2rem 1rem 2rem;
    margin: 1rem;
}

/* 下一页按钮 */
#next-page-btn {
    color: white;
    background-color: #F75A23;
    padding: 1rem 2rem 1rem 2rem;
    margin: 1rem;
}

/* 页数的父元素 */
#page-numb-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 页数 */
#page-numb {
    text-align: center;
}

/* 右侧部分 */
#search-input {
    color: #828282;
    border-radius: 5px;
    border: 1px solid #F75A23;
    background-color: #F4E2DB;
}

/* 搜索按钮 */
#search-btn {
    cursor: pointer;
    position: relative;
}

/* 搜索按钮图标 */
#search-img {
    position: relative;
    top: 0.2rem;
}

/* 热门 */
#hot {
    padding: 1rem;
    background-color: #FFF7F4;
}

/* 热门文章文字 */
#hot-rmwz {
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
}

/* 热门题库内容 */
.hot-detail {
    color: #828282;
}

/* 热门题库内容鼠标悬停样式 */
/* 去下载APP的鼠标悬停样式 */
.hot-detail:hover, #go-down-load:hover {
    cursor: pointer;
    text-decoration: underline;
}

/* 去下载APP的连接字体 */
#go-down-load {
    color: #F75A23;
}