GetProduct.vue 1.2 KB

1234567891011121314151617181920212223
  1. <template>
  2. <div class="wrapper py-90px <lg:pt-24px <lg:pb-40px">
  3. <div class="container text-center text-white">
  4. <h3 class="lg:text-xl font-bold <lg:text-20px <lg:leading-24px">ComPDFKit团队在线为您服务</h3>
  5. <div class="mt-16px opacity-60 lg:mb-28px lg:text-20px lg:leading-32px <lg:text-12px <lg:leading-16px <lg:mb-24px">联系我们获取PDF SDK各产品的免费试用、报价详情、或开发技术支持。我们将会有专人为您服务。</div>
  6. <div class="flex justify-center">
  7. <LinkButton type="bgWhite" bold href="https://www.pdfreaderpro.com/" class="mr-24px text-brand-0 text-sm font-bold lg:max-w-200px <lg:max-w-152px <lg:max-h-48px">免费试用</LinkButton>
  8. <LinkButton type="bgWhite" bold href="/" class="text-brand-0 text-sm font-bold lg:max-w-200px <lg:max-w-152px <lg:max-h-48px">技术支持</LinkButton>
  9. </div>
  10. </div>
  11. </div>
  12. </template>
  13. <style lang="scss" scoped>
  14. .wrapper {
  15. background: url('/images/home/banner_bottom@2x.jpg') center/cover no-repeat;
  16. }
  17. @media screen and (max-width: 767px) {
  18. .wrapper {
  19. background-image: url('/images/home/banner_bottom.jpg');
  20. }
  21. }
  22. </style>