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.
33 lines
529 B
33 lines
529 B
1 year ago
|
<script lang="ts" setup>
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="nvoice-task-box">
|
||
|
<div class="title">
|
||
|
新手任务
|
||
|
</div>
|
||
|
<div class="contant"></div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.nvoice-task-box {
|
||
|
width: 95%;
|
||
|
.title {
|
||
|
font-size: 13px;
|
||
|
font-family: PingFang-SC, PingFang-SC;
|
||
|
font-weight: bold;
|
||
|
color: #000000;
|
||
|
line-height: 22px;
|
||
|
letter-spacing: 1px;
|
||
|
margin: 16px 0;
|
||
|
}
|
||
|
.contant {
|
||
|
width: 100%;
|
||
|
height: 200px;
|
||
|
background-color: red;
|
||
|
}
|
||
|
}
|
||
|
</style>
|