百富门答题小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
1.1 KiB

2 weeks ago
  1. <template>
  2. <view class="page">
  3. <image :src="configList.img_1"
  4. class="page-bg"
  5. mode="aspectFill"></image>
  6. <image :src="configList.img_6"
  7. class="logo"
  8. mode="widthFix"></image>
  9. <view class="service">
  10. <view class="top4">
  11. 专属品鉴之旅告一段落
  12. </view>
  13. <view class="title">
  14. Genius Journey Club
  15. </view>
  16. <view class="stext">
  17. 期待与您的
  18. <br />
  19. 再次见面
  20. <br />
  21. ...
  22. </view>
  23. </view>
  24. <image :src="configList.img_7"
  25. class="logo"
  26. style="margin: 75rpx;"
  27. mode="widthFix"></image>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. }
  35. },
  36. onLoad() {
  37. },
  38. methods: {
  39. }
  40. }
  41. </script>
  42. <style scoped lang="scss">
  43. .page{
  44. .logo{
  45. width: 600rpx;
  46. margin: 150rpx 75rpx;
  47. }
  48. .service{
  49. display: flex;
  50. flex-direction: column;
  51. align-items: center;
  52. text-align: center;
  53. color: #6A3F1F;
  54. .img_2{
  55. margin: 0 auto;
  56. width: 100rpx;
  57. }
  58. .title{
  59. font-weight: 900;
  60. margin: 30rpx 0;
  61. }
  62. .stext{
  63. width: 600rpx;
  64. margin-bottom: 150rpx;
  65. line-height: 50rpx;
  66. font-size: 26rpx;
  67. color: #777;
  68. }
  69. }
  70. }
  71. </style>