奇点
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
1.6 KiB

<template>
<view class="max_box">
<view class="title_box">
铸造藏品需要申请成为艺术家
</view>
<view>
<view class="titl">发布流程:</view>
<view>
<view>
<view>1</view>
<view>添加管理员微信xxxx</view>
</view>
<view>
<view>2</view>
<view>提交作品</view>
</view>
<view>
<view>3</view>
<view>审核....</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style lang="scss">
page{
padding-top: 50upx;
}
.max_box{
width: 682upx;
height: 432upx;
background-color: #23262F;
border-radius: 12upx;
margin: auto;
>.title_box{
width: 682upx;
height: 88upx;
background: linear-gradient(351deg, #9735DC 0%, #570CDC 100%);
border-radius: 12upx;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 34upx;
}
>view:nth-of-type(2){
display: flex;
flex-direction: column;
margin-left: 130upx;
>.titl{
font-size: 34upx;
color: #ffffff;
margin-top: 30upx;
}
>view{
display: flex;
flex-direction: column;
color: #ffffff;
margin-bottom: 10upx;
>view{
display: flex;
align-items: center;
margin-bottom: 10upx;
>view:nth-of-type(1){
width: 36upx;
height: 36upx;
background: linear-gradient(351deg, #9735DC 0%, #570CDC 100%);
border-radius: 16upx 16upx 0upx 16upx;
display: flex;
align-items: center;
justify-content: center;
margin-right: 26upx;
}
}
}
}
}
</style>