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.
25 lines
525 B
25 lines
525 B
<template>
|
|
<view class="btn-box">
|
|
<button class="login-button" type="primary">登录</button>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.btn-box{
|
|
padding: 0 165upx;
|
|
@include ctf(center);
|
|
}
|
|
.login-button{
|
|
@include clearBtn;
|
|
width: 100%;
|
|
height: 69.38upx;
|
|
border-radius: 35upx;
|
|
background-image: linear-gradient(180deg, #FCDA9E 12%, #F7B23E 100%);
|
|
@include flcw(26.39upx, 69.38upx, #fff, 500);
|
|
|
|
}
|
|
</style>
|