12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view class="pages">
- <view class="" style="font-size: 36rpx;font-weight: 700;">
- 专属森林向导提醒您
- </view>
- <view class="content">
- 旅行过程中使用的所有物品都必须装在行李中。行李的大小、重量、数量需要根据季节、距离、行程长短等因素,本着细心、简单的原则来决定。出行项目细致,一定要仔细考虑细节。如果能在旅途中补给,尽量不要从起点带走;而且一些应急物品一定要提前准备好。旅行需要一个小的贴身包和一个大行李箱。
- </view>
- <view class="" style="font-size: 36rpx;font-weight: 700;">
- 您的专属森林向导
- </view>
- <view class="image">
-
- </view>
- <view class="submit">
- 保存二维码到相册
- </view>
- </view>
- </template>
- <script>
- </script>
- <style lang="less">
- page{
- background-color: #F4F4F4;
- font-size: 28rpx;
- }
- .pages{
- margin: 40rpx 30rpx;
- .content{
- margin: 24rpx 0 94rpx;
- }
- .image{
- width: 200rpx;
- height: 200rpx;
- background-color: pink;
- margin: 40rpx auto 73rpx;
- }
- .submit{
- margin: 0 auto;
- box-sizing: border-box;
- text-align: center;
- color: #FFFFFF;
- width: 654rpx;
- height: 92rpx;
- line-height: 92rpx;
- background: #1E9F6A;
- border-radius: 8rpx 16rpx 8rpx 16rpx;
- }
- }
- </style>
|