generated from maochaoying/dreamworks-frontend-template
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
811 B
39 lines
811 B
<template>
|
|
<div class="design_concept_container">
|
|
<HeadLine
|
|
title="独有的"
|
|
themeTitle="设计理念"
|
|
:flip="true"
|
|
line1="DESIGN CONCEPT"
|
|
/>
|
|
<div class="cards">
|
|
<div class="card">card</div>
|
|
<div class="card">card</div>
|
|
<div class="card">card</div>
|
|
<div class="card">card</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import HeadLine from 'cpns/HeadLine'
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.design_concept_container {
|
|
.cards {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
grid-template-rows: repeat(2, 1fr);
|
|
.card {
|
|
width: 100%;
|
|
height: 146px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #ddd;
|
|
}
|
|
}
|
|
}
|
|
</style>
|