huangjinming 76fd6ce5cb fix
2023-03-20 15:45:03 +08:00

115 lines
2.4 KiB
Vue

<template>
<div class="whitepaper">
<div class="whitepaper-bg">
<img src="@/assets/img/about/whitepaper-bg.png" alt="" />
</div>
<div class="whitepaper-bottom-boder">
<img src="@/assets/img/about/whitepaper-bottom-boder.png" alt="" />
</div>
<div class="content">
<div class="title">Whitepaper</div>
<div class="title-boder">
<img src="@/assets/img/about/roadmap-title-boder.png" alt="" />
</div>
<div class="slogan">
CEBG is the first blockchain-based animation game which consists of
Moba, Battleroyal; funded by more than 7 institutional investors.
</div>
<div class="more">
<a href="#">
Learn more about our studio mission
<span class="more-right">>></span></a
>
</div>
</div>
</div>
</template>
<script setup></script>
<style lang="scss" scoped>
.whitepaper {
position: relative;
padding-top: 75px;
padding-bottom: 327px;
.whitepaper-bg {
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
z-index: -10;
img {
width: 100%;
height: 100%;
}
}
.whitepaper-bottom-boder {
position: absolute;
left: 0;
bottom: -1px;
right: 0;
width: 100%;
height: 234px;
z-index: -10;
img {
width: 100%;
height: 100%;
}
}
.content {
// width: 1440px;
// margin: 0 auto;
.title {
font-size: 60px;
text-align: center;
font-family: "Big John";
font-weight: 400;
color: #ffffff;
}
.title-boder {
margin: 0 auto;
width: 707px;
height: 71px;
}
.slogan {
width: 707px;
margin: 0 auto;
height: 104px;
margin-top: 86px;
// margin-left: 64px;
margin-bottom: 81px;
font-size: 26px;
font-family: Arial;
font-weight: 400;
color: #ffffff;
line-height: 42px;
}
.more {
border: 2px solid #ec2e5b;
color: #4bffe5;
width: 710px;
margin: 0 auto;
text-align: center;
height: 81px;
line-height: 81px;
// margin-left: 64px;
font-size: 34px;
font-family: Arial;
font-weight: bold;
color: #4bffe5;
// line-height: 26px;
a {
color: #4bffe5;
}
}
.more-right {
font-size: 34px;
color: #ec2e5b;
}
}
}
</style>