_editorial.css 2.06 KB
.editorial-container {
    $bigImgWidth: 390px;
    $smallImgWidth: 360px;
    $smallImgHeight: 240px;
    $space: 10px;

    @extend .resource-container;

    .news-container {
        height: calc($smallImgHeight*2+$space+2px);
    }

    .news {
        display: inline-block;
        box-sizing: border-box;

        .box {
            height: calc($smallImgHeight*2+$space+10px);
            display: inline-block;
            position: relative;
            width: $bigImgWidth;

            &.bottom-space {
                margin-bottom: 20px;
            }

            &.right-space {
                margin-right: 15px;
            }
        }

        .editorial-title {
            width: 100%;
            height: 70px;
            position: absolute;
            bottom: -1px;
            background: resolve("channel/jb-bg.png") repeat-x;
            color: #fff;
            font-size: 14px;
            line-height: 70px;
            padding: 0 $space;
            border: 0 !important;
            background-position-y: -1px;

            div {
                line-height: 1.6;
                display: inline-block;
                vertical-align: middle;
                margin-top: 15px;
            }

            p {
                width: 100%;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                word-break: break-all;
                overflow: hidden;
            }
        }

        img {
            @extend .cursor-pointer;

            display: inline-block;
        }

        &.left {
            width: $bigImgWidth;
            float: left;
            height: calc($smallImgHeight*2+$space+10px);

            img {
                width: $bigImgWidth;
                height: calc($smallImgHeight*2+$space+10px);
            }
        }

        &.right {
            width: calc($smallImgWidth*2+$space*2);
            float: right;

            img,
            .box {
                width: $smallImgWidth;
                height: $smallImgHeight;
            }
        }
    }
}