index.vue 909 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <div class="p-renewal bg-gray">
  3. <h3 class="ptc-title">Renewal management</h3>
  4. <div class="ptc-block">
  5. <div class="cell">
  6. <span class="cell__label">Product Name:</span>
  7. <span class="cell__value">Lite</span>
  8. </div>
  9. <div class="cell">
  10. <span class="cell__label">Subscription method:</span>
  11. <span class="cell__value">Annual</span>
  12. </div>
  13. <div class="ptc-text">Unsubscribe ></div>
  14. </div>
  15. <div class="ptc-wrap mt48">
  16. <button class="ptc-button ptc-button--stroke">BACK</button>
  17. </div>
  18. </div>
  19. </template>
  20. <style lang="scss">
  21. .p-renewal {
  22. .cell {
  23. display: flex;
  24. font-size: 32px;
  25. line-height: 64px;
  26. &__label {
  27. margin-right: 8px;
  28. color: #999;
  29. }
  30. &__value {
  31. color: #333;
  32. }
  33. }
  34. .ptc-text {
  35. margin-top: 8px;
  36. font-weight: bold;
  37. font-size: 32px;
  38. }
  39. }
  40. </style>