recommend-content-five.vue 889 Bytes
<template>
    <div class="recommend-content-five">
        <a v-for="item in floor" :key="item.src" v-blk-href="item.url" :title="item.title">
            <img v-img-src="{src: item.src, width: 375, height: 375}">
        </a>
    </div>
</template>

<script>
    export default {
        props: ['floor']
    };
</script>

<style>
    .recommend-content-five {
        width: 100%;
        font-size: 0;

        a {
            display: inline-block;
            width: 46%;

            /* height: 375px; */

            margin-bottom: 20px;

            &:nth-child(odd) {
                margin-left: 2.6%;
                margin-right: 1.3%;
            }

            &:nth-child(even) {
                margin-left: 1.3%;
                margin-right: 2.6%;
            }
        }

        img {
            width: 100%;

            /* height: 100%; */
        }
    }
</style>