.article_module {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 200px;
    margin: 10px 0;
    padding: 20px 50px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.article_module_img, .article_module_img .bg_img_height_repeat {
    height: 160px;
    width: 240px;
}

.article_module_text {
    flex-grow: 1;
    margin-left: 30px;
    position: relative;
    height: 100%;
    padding-top: 10px;
    font-size: 14px;
}

.article_module_text > div {
    position: absolute;
    bottom: 10px;
}

.article_module_text > a, .article_module_2 > .title > a {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5em;
}

.article_module_text > div > p, .article_module_2 > .info > p {
    margin-right: 20px;
    display: inline;
}

.article_module_text .share, .article_module_2 .share {
    position: relative;
    display: inline-block;
}

.article_module_text .share:hover > div, .article_module_2 .share:hover > div {
    display: block;
}

.article_module_text .share > div, .article_module_2 .share > div {
    display: none;
    position: absolute;
    top: 0;
    left: 25px;
    width: 100px;
    height: 120px;
    border-radius: 5px;
    border: 1px solid black;
    background: white;
    z-index: 100;
}

.article_module_text .share > div > canvas, .article_module_2 .share > div > canvas {
    width: 90px;
    height: 90px;
    margin: 4px;
}

.article_module_text .share > div > p, .article_module_2 .share > div > p {
    width: 100px;
    height: 20px;
    text-align: center;
    position: absolute;
    bottom: 5px;
}

.article_module_2 {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 145px;
    margin: 10px 0;
    padding: 20px 50px;
    display: flex;
    flex-flow: column nowrap;
}

.article_module_2 > .title {
    flex-grow: 1;
}

.article_module_2 > .info {
    height: 25px;
}


