StepThree.vue 540 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="step-3">
  3. <div class="ptc-block mb48">
  4. <p class="text">
  5. Please enter a valid email address, we will send you the latest status
  6. of the order through this contact method。
  7. </p>
  8. <input class="ptc-input" placeholder="email address" />
  9. </div>
  10. <div class="ptc-wrap">
  11. <button class="ptc-button">$89 NEXT</button>
  12. </div>
  13. </div>
  14. </template>
  15. <style lang="scss" scoped>
  16. .text {
  17. margin-bottom: 48px;
  18. line-height: 44px;
  19. font-size: 32px;
  20. color: #333;
  21. }
  22. </style>