| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view class="content">
- <view class="top">
- 请选择您的注册身份
- </view>
- <view class="txt">
- 可以选择您的身份倾向,方便我们更精确的帮助到每一个需要帮助的人
- </view>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
-
- }
- },
- methods:{
-
- }
- }
- </script>
- <style lang="scss">
- .content{
- line-height: 1;
- .top{
- font-size: 50rpx;
- font-weight: bold;
- color: #323232;
- padding: 100rpx 0 0 60rpx;
- }
- .txt{
- font-size: 30rpx;
- font-weight: bold;
- color: #878787;
- margin:45rpx 108rpx 80rpx 60rpx;
- line-height: 45rpx;
- }
- }
- </style>
|