123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <template>
- <view class="background1">
- <view class="background2">
- <view class="wenben">
- <view class="wenben1">
- {{$t('introduce.a1')}}
- </view>
- <view class="wenben4">
- {{$t('introduce.a4')}}
- </view>
-
- <view class="xian"></view>
- <view class="item">
- <view class="text">
- {{$t('introduce.a3')}}
- </view>
- </view>
- <view class="wenben1 margin-t-30">
- {{$t('introduce.a6')}}
- </view>
- <view class="wenben4">
- {{$t('introduce.a2')}}
- </view>
- <view class="xian"></view>
- <view class="item">
- <view class="text">
- {{$t('introduce.a5')}}
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- onLoad() {
- uni.setNavigationBarTitle({
- title: this.$t("tab.a4"),
- });
- }
- };
- </script>
- <style lang="scss">
- .background1 {
- position: relative;
- height: calc(100vh - var(--status-bar-height));
- background: url("../../static/shouye/beijing1.png");
- background-size: 100% 100%;
- background-position: 50% 50%;
- background-repeat: no-repeat;
- }
- .background2 {
- background-image: url("../../static/shouye/beijing2.png");
- position: absolute;
- background-size: 100% 100%;
- width: 650rpx;
- height: 1000rpx;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -60%);
- }
- .wenben1 {
- text-align: center;
- margin-top: 87rpx;
- font-size: 36rpx;
- font-weight: bold;
- color: #201809;
- line-height: 36rpx;
- }
- .xian {
- width: 200rpx;
- height: 8rpx;
- color: #000000;
- }
- .text {
- font-size: 24rpx;
- font-weight: bold;
- color: #211808;
- background-color: #FAEDD6;
- text-align: left;
- margin: 0 50rpx;
- padding: 30rpx;
- border-radius: 20rpx;
- margin-bottom: 20rpx;
- }
- .wenben4 {
- text-align: center;
- margin-top: 50rpx;
- font-size: 37rpx;
- font-weight: bold;
- color: #D7BB80;
- }
- </style>
|