problem.vue 847 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view class="page">
  3. <view class="">
  4. <view class="u-flex">
  5. <view class="icon">
  6. </view>
  7. <text class="title">关于怎样才能注册账号?</text>
  8. </view>
  9. <view class="font1">
  10. 1.打开百度爱采购首页(b2b.baid
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. };
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. .page {
  25. min-height: 100vh;
  26. padding: 40rpx 28rpx 0;
  27. border-top: 2rpx solid #EBEBEB;
  28. ;
  29. }
  30. .font1 {
  31. font-size: 24rpx;
  32. font-family: SFPro, SFPro;
  33. font-weight: 400;
  34. color: #333333;
  35. margin-top: 26rpx;
  36. }
  37. .icon {
  38. width: 8rpx;
  39. height: 32rpx;
  40. background: #06A971;
  41. }
  42. .title {
  43. height: 40rpx;
  44. font-size: 28rpx;
  45. font-family: PingFangSC, PingFang SC;
  46. font-weight: 500;
  47. color: #333333;
  48. margin-left: 12rpx;
  49. }
  50. </style>