guidePage.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <view class="guide-page">
  3. <view class="guide-item">
  4. <view class="guide-img">
  5. <image
  6. src="@/static/images/jobApplicant/woyaozhaogongzuo.svg"
  7. mode="aspectFix"
  8. />
  9. </view>
  10. <view class="guide-btn">我要找工作</view>
  11. </view>
  12. <view class="guide-item">
  13. <view class="guide-img">
  14. <image
  15. src="@/static/images/jobApplicant/woyaozhaoren.svg"
  16. mode="aspectFix"
  17. />
  18. </view>
  19. <view class="guide-btn">我要找工作</view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {};
  27. },
  28. };
  29. </script>
  30. <style scoped lang="scss">
  31. .guide-page {
  32. background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  33. position: absolute;
  34. left: 0;
  35. right: 0;
  36. top: 0;
  37. bottom: 0;
  38. padding: 120rpx 76rpx;
  39. display: flex;
  40. flex-direction: column;
  41. box-sizing: border-box;
  42. gap: 36rpx;
  43. .guide-item {
  44. width: 100%;
  45. height: 100%;
  46. border-radius: 28rpx;
  47. background: rgba(255, 255, 255, 0.851);
  48. display: flex;
  49. flex-direction: column;
  50. justify-content: center;
  51. align-items: center;
  52. padding: 0 56rpx;
  53. box-sizing: border-box;
  54. gap: 72rpx;
  55. .guide-img {
  56. width: 364rpx;
  57. height: 364rpx;
  58. overflow: hidden;
  59. image {
  60. width: 100%;
  61. height: 100%;
  62. }
  63. }
  64. .guide-btn {
  65. border-radius: 100rpx;
  66. background: rgba(255, 255, 255, 1);
  67. color: #016bf6;
  68. font-family: DM Sans;
  69. font-size: 32rpx;
  70. font-weight: 400;
  71. line-height: 48rpx;
  72. letter-spacing: 0%;
  73. text-align: center;
  74. width: 100%;
  75. padding: 16rpx;
  76. box-sizing: border-box;
  77. }
  78. }
  79. }
  80. </style>