hx-school.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <view>
  3. <view class="list">
  4. <view class="u-flex">
  5. <image style="width: 92rpx;height: 92rpx;" src="" mode=""></image>
  6. <view class="">
  7. <text class="fontsty">北京大学2023夏季校园招聘简章</text>
  8. <view class="font">
  9. <text>活动时间:</text>
  10. <text>2023.05.20-07.3</text>
  11. </view>
  12. </view>
  13. </view>
  14. <view class="border">
  15. <button class="btn">查看活动</button>
  16. </view>
  17. </view>
  18. <view class="list">
  19. <view class="u-flex">
  20. <image style="width: 92rpx;height: 92rpx;" src="" mode=""></image>
  21. <view class="">
  22. <text class="fontsty">北京大学2023夏季校园招聘简章</text>
  23. <view class="font">
  24. <text>活动时间:</text>
  25. <text>2023.05.20-07.3</text>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="border">
  30. <button class="btn">查看活动</button>
  31. </view>
  32. </view>
  33. <view class="list">
  34. <view class="u-flex">
  35. <image style="width: 92rpx;height: 92rpx;" src="" mode=""></image>
  36. <view class="">
  37. <text class="fontsty">北京大学2023夏季校园招聘简章</text>
  38. <view class="font">
  39. <text>活动时间:</text>
  40. <text>2023.05.20-07.3</text>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="border">
  45. <button class="btn">查看活动</button>
  46. </view>
  47. </view>
  48. </view>
  49. </template>
  50. <script >
  51. export default {
  52. data() {
  53. return {
  54. }
  55. },
  56. methods: {
  57. }
  58. }
  59. </script>
  60. <style lang="scss" scoped>
  61. .list{
  62. padding: 32rpx 20rpx 24rpx 28rpx;
  63. background: #fff;
  64. border-radius: 16rpx;
  65. margin-top: 20rpx;
  66. .fontsty{
  67. font-size: 32rpx;
  68. font-family: SFPro-Medium, SFPro;
  69. font-weight: 500;
  70. color: #222222;
  71. }
  72. .font{
  73. font-size: 24rpx;
  74. font-family: SFPro-Regular, SFPro;
  75. font-weight: 400;
  76. color: #555555;
  77. }
  78. .border{
  79. margin-top: 28rpx;
  80. border-top: 2rpx solid #F3F3F3;
  81. }
  82. .btn{
  83. width: 164rpx;
  84. height: 68rpx;
  85. line-height: 68rpx;
  86. margin-top: 22rpx;
  87. background: #0C66C2;
  88. border-radius: 10rpx;
  89. font-size: 28rpx;
  90. font-family: PingFangSC-Regular, PingFang SC;
  91. font-weight: 400;
  92. color: #FFFFFF;
  93. margin-right: 0 !important;
  94. }
  95. }
  96. </style>