1234567891011121314151617181920212223 |
- <template>
- <div class="wrapper py-90px <lg:pt-24px <lg:pb-40px">
- <div class="container text-center text-white">
- <h3 class="lg:text-xl font-bold <lg:text-20px <lg:leading-24px">ComPDFKit团队在线为您服务</h3>
- <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>
- <div class="flex justify-center">
- <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>
- <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>
- </div>
- </div>
- </div>
- </template>
- <style lang="scss" scoped>
- .wrapper {
- background: url('/images/home/banner_bottom@2x.jpg') center/cover no-repeat;
- }
- @media screen and (max-width: 767px) {
- .wrapper {
- background-image: url('/images/home/banner_bottom.jpg');
- }
- }
- </style>
|