Files
2026-09-10 10:57:40 +08:00

18 lines
825 B
Plaintext

<template>
<view class="brand-logo">
<view class="brand-symbol">
<text class="letter-a">A</text><view class="brand-dot"></view><text class="letter-i">i</text>
</view>
<text class="brand-name">融资</text>
</view>
</template>
<style>
.brand-logo { flex-direction: row; align-items: center; }
.brand-symbol { width: 96rpx; height: 68rpx; flex-direction: row; align-items: flex-end; position: relative; }
.letter-a { color: #0871ff; font-size: 70rpx; line-height: 70rpx; font-weight: 900; }
.letter-i { color: #102557; font-size: 55rpx; line-height: 62rpx; font-weight: 900; }
.brand-dot { position: absolute; width: 11rpx; height: 11rpx; border-radius: 50%; background-color: #ff5b35; left: 66rpx; top: 2rpx; }
.brand-name { color: #102557; font-size: 42rpx; line-height: 58rpx; font-weight: 900; }
</style>