li {
    list-style: none;
}

ul {
    list-style: none;
}

.board {
    width: 100%;
    background-color: #fff;
}

.board-outer {
    background-color: #fff;
}

.board-box {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: #fff;
}

.board .board-list {
    padding: 0 1rem;

    width: 90%;

    margin: auto;

    position: relative;
}

.board .board-list_item {
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #eee;
}

.board .board-list_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: .5rem 0;
}

.board .board-item_single-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.board .board-item_single-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.board .board-item_title {
    color: #3e454f;
    overflow:hidden;
}

.board .board-item_pic {
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 60px;
    flex: 1 0 60px;
    max-width: 60px;
    height: 60px;
    margin-left: 1rem;
    border-radius: .5rem;
}

.board .board-item_pic:empty {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    margin-left: 0;
}

.board .board-item_pic span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.board .board-item_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #525252;
    font-size: 12px;
}

.board .board-item_info [class^='board-item_'] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: .5rem;
    color: #c4c4c4;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.board .board-item_info [class^='board-item_']:first-child {
    margin-left: 0;
}

.board .board-item_info [class^='board-item_'].on {
    color: #525252;
}

.board .board-item_info [class^='board-item_'] .icon {
    width: 20px;
    height: 20px;
    margin: 0 .25rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.board .board-item_data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #999;
    font-size: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .board .blog-title {
        font-weight: bold;
        font-size: 17px;
    }

    .board .board-item_pic {
        overflow: hidden;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 60px;
        flex: 1 0 60px;
        max-width: 60px;
        height: 60px;
        margin-left: 1rem;
        border-radius: .5rem;
    }

    .board .board-item_cont {
        max-height: 24px;
        overflow: hidden;
        margin-top: 0.25rem;
        color: dimgrey;
    }

    .board .board-item_info {
        padding-right: 18px;
    }
}

@media screen and (min-width: 769px) {
    .board .blog-title {
        font-weight: bold;
        font-size: 18px;
    }

    .board .board-item_pic {
        overflow: hidden;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 90px;
        flex: 1 0 90px;
        max-width: 90px;
        height: 90px;
        margin-left: 1rem;
        border-radius: .5rem;
        margin-top: 0.5rem;
    }

    .board .board-item_cont {
        max-height: 72px;
        overflow: hidden;
        margin-top: 0.25rem;
    }

    .board .board-item_info {
        padding-right: 32px;
    }
}
