|
@ -1,7 +1,9 @@ |
|
|
<template> |
|
|
<template> |
|
|
<div class="about_us_card_container"> |
|
|
<div class="about_us_card_container"> |
|
|
<HeadLine themeTitle="关于" title="我们" line1="ABOUT US" /> |
|
|
|
|
|
<div class="tag"><span class="fontscale">专业从事研发13年</span></div> |
|
|
|
|
|
|
|
|
<HeadLine themeTitle="关于" title="我们" line1="ABOUT US" :theme="theme" /> |
|
|
|
|
|
<div :class="theme ? 'theme_color tag' : 'tag'"> |
|
|
|
|
|
<span class="fontscale">专业从事研发13年</span> |
|
|
|
|
|
</div> |
|
|
<article class="article"> |
|
|
<article class="article"> |
|
|
产品梦工厂作为一家资深的研发公司,主导了大量产品从需求→产品定义→策划→外 |
|
|
产品梦工厂作为一家资深的研发公司,主导了大量产品从需求→产品定义→策划→外 |
|
|
观→结构→硬件→嵌软→软件→全功能样机→模具→批量→灰度测试→产能爬坡全流 |
|
|
观→结构→硬件→嵌软→软件→全功能样机→模具→批量→灰度测试→产能爬坡全流 |
|
@ -14,6 +16,12 @@ |
|
|
|
|
|
|
|
|
<script setup> |
|
|
<script setup> |
|
|
import HeadLine from 'cpns/HeadLine' |
|
|
import HeadLine from 'cpns/HeadLine' |
|
|
|
|
|
const props = defineProps({ |
|
|
|
|
|
theme: { |
|
|
|
|
|
type: Boolean, |
|
|
|
|
|
default: false, |
|
|
|
|
|
}, |
|
|
|
|
|
}) |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
<style lang="scss" scoped> |
|
@ -26,7 +34,7 @@ import HeadLine from 'cpns/HeadLine' |
|
|
.tag { |
|
|
.tag { |
|
|
width: 90px; |
|
|
width: 90px; |
|
|
height: 17px; |
|
|
height: 17px; |
|
|
background: #f94622; |
|
|
|
|
|
|
|
|
background: $home-color; |
|
|
display: flex; |
|
|
display: flex; |
|
|
align-items: center; |
|
|
align-items: center; |
|
|
justify-content: center; |
|
|
justify-content: center; |
|
@ -40,6 +48,9 @@ import HeadLine from 'cpns/HeadLine' |
|
|
white-space: nowrap; |
|
|
white-space: nowrap; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
.theme_color { |
|
|
|
|
|
background: $theme-color; |
|
|
|
|
|
} |
|
|
.article { |
|
|
.article { |
|
|
font-family: Source Han Sans CN; |
|
|
font-family: Source Han Sans CN; |
|
|
font-weight: 300; |
|
|
font-weight: 300; |
|
|