introduce.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <template>
  2. <view class="background1">
  3. <view class="background2">
  4. <view class="wenben">
  5. <view class="wenben1">
  6. {{$t('introduce.a1')}}
  7. </view>
  8. <view class="wenben2">
  9. {{$t('introduce.a2')}}
  10. </view>
  11. <view class="xian"></view>
  12. <view class="weben3">
  13. <view class="tet">
  14. {{$t('introduce.a3')}}
  15. </view>
  16. </view>
  17. <view class="wenben4">
  18. {{$t('introduce.a4')}}
  19. </view>
  20. <view class="xian"></view>
  21. <view class="weben5">
  22. <view class="te">
  23. {{$t('introduce.a5')}}
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {};
  34. },
  35. };
  36. </script>
  37. <style lang="scss">
  38. .background1 {
  39. position: relative;
  40. // width: 100vw;
  41. height: calc(100vh - var(--status-bar-height));
  42. background: url("/index/static/shouye/beijing1.png");
  43. background-size: 100% 100%;
  44. background-position: 50% 50%;
  45. background-repeat: no-repeat;
  46. }
  47. .background2 {
  48. background-image: url("/index/static/shouye/beijing2.png");
  49. position: absolute;
  50. background-size: 100% 100%;
  51. width: 650rpx;
  52. height: 1000rpx;
  53. top: 50%;
  54. left: 50%;
  55. transform: translate(-50%, -60%);
  56. }
  57. .wenben1 {
  58. text-align: center;
  59. margin-top: 87rpx;
  60. font-size: 36rpx;
  61. font-weight: bold;
  62. color: #201809;
  63. line-height: 36rpx;
  64. }
  65. .wenben2 {
  66. margin-top: 90rpx;
  67. height: 35rpx;
  68. font-size: 37rpx;
  69. text-align: center;
  70. font-weight: bold;
  71. color: #D7BB80;
  72. line-height: 10rpx;
  73. }
  74. .xian {
  75. width: 200rpx;
  76. height: 8rpx;
  77. color: #000000;
  78. }
  79. .wenben3 {
  80. display: flex;
  81. justify-content: center;
  82. align-items: center;
  83. width: 528rpx;
  84. height: 138rpx;
  85. }
  86. .tet {
  87. margin-left: 62rpx;
  88. margin-top: 40rpx;
  89. padding-top: 30rpx;
  90. font-size: 24rpx;
  91. // font-family: Source Han Sans CN;
  92. font-weight: bold;
  93. color: #211808;
  94. line-height: 42rpx;
  95. width: 528rpx;
  96. height: 148rpx;
  97. background-color: #FAEDD6;
  98. text-align: center;
  99. }
  100. .wenben4 {
  101. text-align: center;
  102. margin-top: 50rpx;
  103. height: 35rpx;
  104. font-size: 37rpx;
  105. font-weight: bold;
  106. color: #D7BB80;
  107. line-height: 10rpx;
  108. }
  109. .wenben5 {
  110. display: flex;
  111. justify-content: center;
  112. align-items: center;
  113. // width: 528rpx;
  114. // height: 138rpx;
  115. }
  116. .te {
  117. margin-left: 62rpx;
  118. margin-top: 40rpx;
  119. padding-top: 40rpx;
  120. font-size: 24rpx;
  121. font-family: Source Han Sans CN;
  122. font-weight: bold;
  123. color: #211808;
  124. line-height: 42rpx;
  125. width: 528rpx;
  126. height: 100%;
  127. background-color: #FAEDD6;
  128. text-align: center;
  129. }
  130. </style>