hjyd
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.
 
 
 
 
 

92 lines
2.1 KiB

<template>
<div class="cooperation_container">
<div class="empty"></div>
<div class="contract_title">
<p class="line"></p>
<p class="title">合作<span class="blue_font">客户</span></p>
<p class="detail">互联网公司 生产制造公司 智能硬件公司</p>
<img class="img" :src="Back" alt="back" />
</div>
<div class="contract">
<div class="real_img"></div>
</div>
</div>
</template>
<script setup>
import Back from '@/assets/img/hezuo/biaotiback.png'
</script>
<style scoped lang="scss">
.cooperation_container {
width: 100%;
min-width: 1560px;
height: 100%;
background: $common_bg;
display: flex;
flex-direction: column;
justify-content: space-between;
.empty {
min-height: 90px;
}
.contract_title {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: 'SourceHanSans';
background-size: 100% 100%;
padding: 89px;
box-sizing: border-box;
position: relative;
white-space: nowrap;
transform-style: preserve-3d;
.line {
width: 39px;
height: 5px;
background: #283fe7;
border-radius: 3px;
margin-bottom: 12px;
}
.img {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%) translateZ(-1px);
width: 543px;
height: 61px;
}
.title {
font-size: 30px;
font-weight: bold;
color: #000000;
margin-bottom: 21px;
.blue_font {
color: $theme_color;
}
}
.detail {
font-size: 18px;
font-weight: 300;
color: #646a73;
}
}
.contract {
flex: 1;
padding: 62px 149px;
box-sizing: border-box;
display: flex;
background: url(../../../../assets/img/hezuo/back.png);
background-size: 100% 100%;
object-fit: contain;
align-items: center;
justify-content: center;
.real_img {
width: 100%;
height: 100%;
background: url(../../../../assets/img/hezuo/all.png);
background-size: 100% 100%;
}
}
}
</style>