.category {
    display: flex;
}

.category-item {
    padding-right: 24px;
    padding-bottom: 12px;
    font-size: 14px;
}

.category-item:hover {
    color: #007dff;
}

.app-lists {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.app-item {

    display: flex;
    padding: 15px 0;
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
    text-decoration: none;
}

@media only screen and (min-width: 768px) {
    .app-item:nth-child(odd) {
        margin-right: 8%;
    }
}

.app-item:hover {
    background-color: #f2f2f2;
    border-radius: 15px;
}

.app-item:hover .button {
    background-color: #e2e2e2;
}

.app-info {
    position: relative;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', Arial, "PingFang SC", "微软雅黑", sans-serif;
}

.item-logo {
    width: 100%;
    margin-right: 7px;
    margin-left: 6px;

}

.app-item .app-info .name {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000;
    padding-top: 7px;
}

.app-item .app-info .content {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #6d6d6d;
    font-size: 13px;
    position: absolute;
    bottom: 7px;
}

.app-item .button {
    width: 60px;
    height: 28px;
    line-height: 28px;
    font-size: 13px;
    border-radius: 14px;
    color: #007dff;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    outline: none;
    text-align: center;
    background-color: #efefef;
}