register.vue 630 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. 请选择您的注册身份
  5. </view>
  6. <view class="txt">
  7. 可以选择您的身份倾向,方便我们更精确的帮助到每一个需要帮助的人
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default{
  13. data(){
  14. return{
  15. }
  16. },
  17. methods:{
  18. }
  19. }
  20. </script>
  21. <style lang="scss">
  22. .content{
  23. line-height: 1;
  24. .top{
  25. font-size: 50rpx;
  26. font-weight: bold;
  27. color: #323232;
  28. padding: 100rpx 0 0 60rpx;
  29. }
  30. .txt{
  31. font-size: 30rpx;
  32. font-weight: bold;
  33. color: #878787;
  34. margin:45rpx 108rpx 80rpx 60rpx;
  35. line-height: 45rpx;
  36. }
  37. }
  38. </style>