|
|
@ -1,11 +1,14 @@ |
|
|
|
<template> |
|
|
|
<div class="wrap"> |
|
|
|
<div class="empty" v-if="showEmpty"></div> |
|
|
|
<div class="flex_center"> |
|
|
|
<div class="recruit_container" id="recruit_container"> |
|
|
|
<div class="contract_title" id="post_page_title_ani"> |
|
|
|
<p class="line"></p> |
|
|
|
<p class="title"> |
|
|
|
产品梦工厂不只做产品,<span class="blue_font">也成就工程师的梦想</span> |
|
|
|
产品梦工厂不只做产品,<span class="blue_font" |
|
|
|
>也成就工程师的梦想</span |
|
|
|
> |
|
|
|
</p> |
|
|
|
<p class="detail">大量的项目实战,成就未来的你,欢迎您的加入</p> |
|
|
|
</div> |
|
|
@ -33,6 +36,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup> |
|
|
@ -66,13 +70,18 @@ const showEmpty = ref(true) |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
flex-direction: column; |
|
|
|
.empty { |
|
|
|
min-height: 90px; |
|
|
|
} |
|
|
|
.flex_center { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
flex: 1; |
|
|
|
.recruit_container { |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
|
|
|
|
// width: 100%; |
|
|
|
// height: 100%; |
|
|
|
.contract_title { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
@ -120,7 +129,8 @@ const showEmpty = ref(true) |
|
|
|
width: 100%; |
|
|
|
box-sizing: border-box; |
|
|
|
padding-bottom: 80px; |
|
|
|
// padding: 0 76px 80px 76px; |
|
|
|
padding: 0 76px 50px 76px; |
|
|
|
box-sizing: border-box; |
|
|
|
position: relative; |
|
|
|
display: grid; |
|
|
|
grid-template-columns: 311px 311px 415px 311px 311px; |
|
|
@ -142,4 +152,5 @@ const showEmpty = ref(true) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |