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.
35 lines
683 B
35 lines
683 B
<template>
|
|
<div class="design_concept_container">
|
|
<div class="header_wrap">
|
|
<HeadLine title="独有的设计理念" />
|
|
</div>
|
|
<div class="cards">
|
|
<div class="card">card</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import HeadLine from 'cpns/HeadLine'
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.design_concept_container {
|
|
.header_wrap {
|
|
padding: 27px 0;
|
|
background: #dde4f1;
|
|
}
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
</style>
|