@charset "UTF-8";
#questionList .queItem {
    position: relative;
}

#questionList .queItem::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);*/
    box-shadow: 0 5px 15px rgba(214, 214, 214, 1);
    transition: opacity .3s;
}

#questionList > a {
    /*position: absolute;*/
    bottom: -3em;
    background-color: #2d6ea4;
    color: white;
}

#questionList > a:hover {
    background-color: #2f86be;
    color: white;
}

#questionList .queItem:hover::after {
    opacity: 1;
}

@media screen and (max-width: 767px) {
}

@media screen and (min-width: 768px) and (max-width: 991px) {
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #questionList {
        margin-top: 5em;
        position: relative;
        margin-bottom: 5em;
    }

    #questionList .queItem {
        margin: 0 4.15%;
    }

    #questionList .queItem a {
        display: inline-block;
        width: 100%;
        height: auto;
        text-decoration: none;
        cursor: pointer;
    }

    #questionList .queItem .media .media-middle img {
        width: 8vw;
        height: 8vw;
    }

    #questionList .queItem .media .media-body h4 {
        width: 100%;
        height: 4vw;
        font-size: 2.8em;
        line-height: 4vw;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        color: black;
    }

    #questionList .queItem .media .media-body p {
        width: 100%;
        height: 4vw;
        font-size: 2.6em;
        color: #666;
        line-height: 4vw;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

}

@media (min-width: 1200px) {
    #questionList {
        margin-top: 5em;
        position: relative;
        margin-bottom: 5em;
    }

    #questionList .queItem {
        margin: 0 4.15%;
    }

    #questionList .queItem a {
        display: inline-block;
        width: 100%;
        height: auto;
        text-decoration: none;
        cursor: pointer;
    }

    #questionList .queItem .media .media-middle img {
        width: 5vw;
        height: 5vw;
    }

    #questionList .queItem .media .media-body h4 {
        width: 100%;
        height: 2.5vw;
        font-size: 2.3em;
        line-height: 2.5vw;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        color: black;
    }

    #questionList .queItem .media .media-body p {
        width: 100%;
        height: 2.5vw;
        font-size: 2em;
        color: #666;
        line-height: 2.5vw;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

}