﻿.ImgBox {
    overflow: hidden;
    display: block;
    margin-top:10px;
}

.quesImg {
    width: 100px;
    height: 100px;
}

.ImgBox p {
    float: left;
    position: relative;
}

    .ImgBox p + p {
        margin-left: 20px;
    }

    .ImgBox p b {
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        width: 16px;
        height: 16px;
        background-color: red;
        cursor: pointer;
    }

        .ImgBox p b:after {
            position: absolute;
            line-height: 16px;
            right: 4px;
            top: 0;
            content: "x";
            font-size: 16px;
            color: white;
            display: block;
        }
