index.vue 706 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="select-country-main-wrap">
  3. <view class="top-header"></view>
  4. <view class="content"></view>
  5. <view class="bottom-footer"></view>
  6. </view>
  7. </template>
  8. <script setup lang="ts"></script>
  9. <style lang="scss" scoped>
  10. .select-country-main-wrap {
  11. box-sizing: border-box;
  12. padding: 0 32rpx;
  13. .bottom-footer {
  14. box-sizing: border-box;
  15. display: flex;
  16. flex: 1 0 0;
  17. align-items: center;
  18. justify-content: center;
  19. height: 84rpx;
  20. padding: 10rpx 66rpx;
  21. background: var(
  22. --ff-4-c-1-bfc-7-b-1-c,
  23. linear-gradient(270deg, $shop-primary 0%, $shop-help 100%)
  24. );
  25. border-radius: 160rpx;
  26. }
  27. }
  28. </style>