join-us.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <view class="join-us">
  3. <view class="ewm-container">
  4. <view class="qrcode"></view>
  5. <view class="message">
  6. <view class="row">长按识别二维码</view>
  7. <view class="row">加微信获取优惠福利</view>
  8. </view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {}
  14. </script>
  15. <style lang="scss" scoped>
  16. .join-us{
  17. @extend .cm-flex-center;
  18. width: 100%;
  19. height: 100vh;
  20. background: url(https://static.caimei365.com/app/mini-hehe/icon/bg-join.png) no-repeat center;
  21. background-size: 100% auto;
  22. background-color: #fff;
  23. .ewm-container{
  24. position: relative;
  25. width: 622rpx;
  26. height: 766rpx;
  27. background: #FFFFFF;
  28. border-radius: 16rpx;
  29. &::after{
  30. content: "";
  31. position: absolute;
  32. bottom: 0;
  33. left: 50%;
  34. transform: translateX(-50%);
  35. display: block;
  36. width: 48rpx;
  37. height: 8rpx;
  38. background: #FF457B;
  39. border-radius: 8rpx 8rpx 0px 0px;
  40. }
  41. .qrcode{
  42. width: 500rpx;
  43. height: 500rpx;
  44. margin: 61rpx 61rpx 0;
  45. background: #000;
  46. border-radius: 8rpx;
  47. }
  48. .message{
  49. margin-top: 48rpx;
  50. text-align: center;
  51. font-size: 40rpx;
  52. color: #333333;
  53. .row{
  54. &:first-child{
  55. font-weight: bold;
  56. }
  57. &:last-child{
  58. margin-top: 8rpx;
  59. font-size: 32rpx;
  60. color: #666666;
  61. }
  62. }
  63. }
  64. }
  65. }
  66. </style>