introduce.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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="wenben4">
  9. {{$t('introduce.a4')}}
  10. </view>
  11. <view class="xian"></view>
  12. <view class="item">
  13. <view class="text">
  14. {{$t('introduce.a3')}}
  15. </view>
  16. </view>
  17. <view class="xian"></view>
  18. <view class="item">
  19. <view class="text">
  20. {{$t('introduce.a5')}}
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {};
  31. },
  32. onLoad() {
  33. uni.setNavigationBarTitle({
  34. title: this.$t("tab.a4"),
  35. });
  36. }
  37. };
  38. </script>
  39. <style lang="scss">
  40. .background1 {
  41. position: relative;
  42. height: calc(100vh - var(--status-bar-height));
  43. background: url("../../static/shouye/beijing1.png");
  44. background-size: 100% 100%;
  45. background-position: 50% 50%;
  46. background-repeat: no-repeat;
  47. }
  48. .background2 {
  49. background-image: url("../../static/shouye/beijing2.png");
  50. position: absolute;
  51. background-size: 100% 100%;
  52. width: 650rpx;
  53. height: 1000rpx;
  54. top: 50%;
  55. left: 50%;
  56. transform: translate(-50%, -60%);
  57. }
  58. .wenben1 {
  59. text-align: center;
  60. margin-top: 87rpx;
  61. font-size: 36rpx;
  62. font-weight: bold;
  63. color: #201809;
  64. line-height: 36rpx;
  65. }
  66. .xian {
  67. width: 200rpx;
  68. height: 8rpx;
  69. color: #000000;
  70. }
  71. .wenben3 {
  72. display: flex;
  73. justify-content: center;
  74. align-items: center;
  75. width: 528rpx;
  76. height: 138rpx;
  77. }
  78. .text {
  79. font-size: 24rpx;
  80. font-weight: bold;
  81. color: #211808;
  82. background-color: #FAEDD6;
  83. text-align: left;
  84. margin: 0 50rpx;
  85. padding: 30rpx;
  86. border-radius: 20rpx;
  87. margin-bottom: 20rpx;
  88. }
  89. .wenben4 {
  90. text-align: center;
  91. margin-top: 50rpx;
  92. font-size: 37rpx;
  93. font-weight: bold;
  94. color: #D7BB80;
  95. }
  96. </style>