index.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. <script>
  2. import cookies from 'js-cookie'
  3. export default {
  4. middleware: 'user',
  5. data() {
  6. return {
  7. indexActive: 1,
  8. showCookie: false
  9. }
  10. },
  11. head() {
  12. return {
  13. title: '17PDF Reader 一起阅读 - 移动端PDF阅读器 + 免费在线PDF转档',
  14. meta: [
  15. {
  16. name: 'keywords',
  17. hid: 'keywords',
  18. content: 'PDFReader,pdfreader,17PDF Reader,pdf软件,PDF阅读器,文件扫描'
  19. },
  20. {
  21. hid: 'description',
  22. name: 'description',
  23. content: '17PDF Reader是行走的PDF阅读器和文件扫描仪,并提供免费的PDF文件格式转换工具,支持pdf转word,pdf转doc,pdf转ppt,pdf转图片等。17PDF Reader被用户誉为“亚洲的Adobe”,拥有自主产权的PDF核心技术,为商务精英、教育族群及企业提供全方位的PDF文件解决方案。'
  24. }
  25. ]
  26. }
  27. },
  28. methods: {
  29. // elementui走马灯组件bug:item只有两个时变换的方向有问题
  30. // fix:多增加一份item,自定义轮播点
  31. handlerCarouselChange (cur) {
  32. if(cur === 1 || cur === 3) {
  33. this.indexActive = 2
  34. }else {
  35. this.indexActive = 1
  36. }
  37. },
  38. openInterface (){
  39. this.$store.commit('OPEN_LOGIN', true)
  40. this.$store.commit('SET_INTERFACE', 'register')
  41. },
  42. next(index){
  43. if(index-1){
  44. this.$refs.carousel.next()
  45. }else{
  46. this.$refs.carousel.prev()
  47. }
  48. },
  49. changeShowCookie(){
  50. this.showCookie = false
  51. cookies.set('17pdf_cookie','true')
  52. }
  53. },
  54. mounted() {
  55. if( cookies.get('17pdf_cookie') ){
  56. this.showCookie = false
  57. }else{
  58. this.showCookie = true
  59. cookies.set('17pdf_cookie','',{expires:14})
  60. }
  61. },
  62. }
  63. </script>
  64. <template>
  65. <div class="page-home">
  66. <el-carousel ref="carousel" indicator-position="none" trigger="click" :interval="4000" loop height="100vh" @change="handlerCarouselChange">
  67. <el-carousel-item>
  68. <div class="home-banner banner ">
  69. <div class="bg"><img src="~/assets/images/common/pic_home_banner00.png" /></div>
  70. <div class="slogan">
  71. <h2 class="tittle">17PDF Reader</h2>
  72. <h3 class="subtitle">阅轻松·阅简单·阅快捷</h3>
  73. <p class="info">行业领先的阅读引擎,精准快速的格式转换,让移动无纸化办公轻松易行!</p>
  74. <a class="power-sdk" href="https://www.compdf.com?utm_source=anroidapp&utm_medium=17pdfweb&utm_campaign=pdfsdk" target="_blank">由 ComPDFKit 提供技术支持 <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12.9567L10.714 8.24261L6 3.52856" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg></a>
  75. </div>
  76. </div>
  77. </el-carousel-item>
  78. <el-carousel-item>
  79. <div class="home-banner converter-banner banner">
  80. <div class="slogan">
  81. <h2 class="tittle">在线格式转换</h2>
  82. <h3 class="subtitle">轻松拖拽/一键转档/批量转换</h3>
  83. <p>支持多种常用格式转档,先进的转换引擎,精准快速,超乎想象。</p>
  84. <a href="/converter">立即体验</a>
  85. </div>
  86. <div class="bg"><img src="~/assets/images/common/pic_home_banner02.png" /></div>
  87. </div>
  88. </el-carousel-item>
  89. <el-carousel-item>
  90. <div class="home-banner banner">
  91. <div class="bg"><img src="~/assets/images/common/pic_home_banner00.png" /></div>
  92. <div class="slogan">
  93. <h2 class="tittle">17PDF Reader</h2>
  94. <h3 class="subtitle">阅轻松·阅简单·阅快捷</h3>
  95. <p class="info">行业领先的阅读引擎,精准快速的格式转换,让移动无纸化办公轻松易行!</p>
  96. <a class="power-sdk" href="https://www.compdf.com?utm_source=anroidapp&utm_medium=17pdfweb&utm_campaign=pdfsdk" target="_blank">由 ComPDFKit 提供技术支持 <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12.9567L10.714 8.24261L6 3.52856" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg></a>
  97. </div>
  98. </div>
  99. </el-carousel-item>
  100. <el-carousel-item>
  101. <div class="home-banner converter-banner banner">
  102. <div class="slogan">
  103. <h2 class="tittle">在线格式转换</h2>
  104. <h3 class="subtitle">轻松拖拽/一键转档/批量转换</h3>
  105. <p>支持多种常用格式转档,先进的转换引擎,精准快速,超乎想象。</p>
  106. <a href="/converter">立即体验</a>
  107. </div>
  108. <div class="bg"><img src="~/assets/images/common/pic_home_banner02.png" /></div>
  109. </div>
  110. </el-carousel-item>
  111. </el-carousel>
  112. <!-- 自定义轮播点 -->
  113. <ul class="indicators">
  114. <li v-for="index in 2" :key="index" :class="index === indexActive?'is-active':''" class="indicator cursor-pointer" @click="next(index)">
  115. </li>
  116. </ul>
  117. <div class="home_info">
  118. <div class="item white">
  119. <div class="left"><img src="http://cn-file.17pdf.com/website/home/pic_home_file_converter.png" /></div>
  120. <div class="right">
  121. <div class="cotent">
  122. <h3>格式转换</h3>
  123. <p>PDF高效格式转换,支持PDF to Word、PPT、Excel、TXT、JPG/PNG,一键转档,批量转换,突破格式壁垒。</p>
  124. <a href="/converter">立即使用</a>
  125. </div>
  126. </div>
  127. </div>
  128. </div>
  129. <div class="home_function">
  130. <h3>更多强大功能 · 助力效率提升</h3>
  131. <ul class="clear">
  132. <li>
  133. <div class="list">
  134. <img src="http://cn-file.17pdf.com/website/home/ic_home_more_eyes.png" />
  135. <div class="wrap">
  136. <h4>文件阅读</h4>
  137. <p>优质的阅读引擎带来流畅、稳定的阅读体验,轻松阅读无干扰。</p>
  138. </div>
  139. </div>
  140. </li>
  141. <li>
  142. <div class="list">
  143. <img src="http://cn-file.17pdf.com/website/home/ic_home_more_mark.png" />
  144. <div class="wrap">
  145. <h4>文件注释</h4>
  146. <p>支持高亮、下划线、波浪线、手写等注释方式,可插入图片及语音笔记。</p>
  147. </div>
  148. </div>
  149. </li>
  150. <li>
  151. <div class="list">
  152. <img src="http://cn-file.17pdf.com/website/home/ic_home_more_manage.png" />
  153. <div class="wrap">
  154. <h4>文件管理</h4>
  155. <p>文件移动复制、压缩删除,PDF文件密码保护,并可将PDF文件生成链接方便分享。</p>
  156. </div>
  157. </div>
  158. </li>
  159. <li>
  160. <div class="list">
  161. <img src="http://cn-file.17pdf.com/website/home/ic_home_more_edit.png" />
  162. <div class="wrap">
  163. <h4>页面编辑</h4>
  164. <p>可将PDF任意页面进行删除、旋转、排序、拆分并另存为新的PDF,还能对多个PDF文件进行合并。</p>
  165. </div>
  166. </div>
  167. </li>
  168. <li>
  169. <div class="list">
  170. <img src="http://cn-file.17pdf.com/website/home/ic_home_moer_mode.png" />
  171. <div class="wrap">
  172. <h4>阅读模式</h4>
  173. <p>日间模式/夜间模式/护眼模式自由切换,缓解视觉疲劳。</p>
  174. </div>
  175. </div>
  176. </li>
  177. <li>
  178. <div class="list">
  179. <img src="http://cn-file.17pdf.com/website/home/ic_home_more_search.png" />
  180. <div class="wrap">
  181. <h4>搜索索引</h4>
  182. <p>从PDF文档中提取、选择、搜索和检索文本,以最快的速度搜索索引PDF文本信息。</p>
  183. </div>
  184. </div>
  185. </li>
  186. <li>
  187. <div class="list">
  188. <img src="http://cn-file.17pdf.com/website/home/ic_home_more_scan.png" />
  189. <div class="wrap">
  190. <h4>文件扫描</h4>
  191. <p>支持拍照扫描文件、图片并保存为PDF文件,可调整图片边缘及使用滤镜,抠图精准。</p>
  192. </div>
  193. </div>
  194. </li>
  195. <li>
  196. <div class="list">
  197. <img src="http://cn-file.17pdf.com/website/home/ic_home_more_read.png" />
  198. <div class="wrap">
  199. <h4>文件朗读</h4>
  200. <p>支持文字转语音(TTS),朗读PDF文件内容,解放双眼,让耳朵“读”文件。</p>
  201. </div>
  202. </div>
  203. </li>
  204. </ul>
  205. </div>
  206. <div class="home_user_say">
  207. <h3>5年口碑 · 品质之选</h3>
  208. <client-only>
  209. <el-carousel class="user_say_carousel">
  210. <el-carousel-item class="item">
  211. <ul class="clear">
  212. <li>
  213. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_01.png" /><span>Leon Reed</span>
  214. <p>绝对是最好用的PDF阅读器,没有之一,强力推荐!</p>
  215. <div>---来自百度的用户说</div>
  216. </li>
  217. <li>
  218. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_02.png" /><span>Ella Pope</span>
  219. <p>支持切白边,没广告,好用!</p>
  220. <div>---来自VIVO的用户说</div>
  221. </li>
  222. <li>
  223. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_03.png" /><span>tube244</span>
  224. <p>用着很方便,可以横屏,比iReader好。</p>
  225. <div>---来自OPPO的用户说</div>
  226. </li>
  227. </ul>
  228. </el-carousel-item>
  229. <el-carousel-item class="item">
  230. <ul class="clear">
  231. <li>
  232. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_04.png" /><span>lemo</span>
  233. <p>解压功能非常好,谷歌风设计,流畅,读书方便。</p>
  234. <div>---来自360的用户说</div>
  235. </li>
  236. <li>
  237. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_05.png" /><span>wing 。</span>
  238. <p>真的适合学习勾画重点呀。赞!</p>
  239. <div>---来自华为的用户说</div>
  240. </li>
  241. <li>
  242. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_06.png" /><span>378java</span>
  243. <p>格式转档功能非常强大,是刚需!</p>
  244. <div>---来自小米的用户说</div>
  245. </li>
  246. </ul>
  247. </el-carousel-item>
  248. <el-carousel-item class="item">
  249. <ul class="clear">
  250. <li>
  251. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_01.png" /><span>Leon Reed</span>
  252. <p>绝对是最好用的PDF阅读器,没有之一,强力推荐!</p>
  253. <div>---来自百度的用户说</div>
  254. </li>
  255. <li>
  256. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_02.png" /><span>Ella Pope</span>
  257. <p>支持切白边,没广告,好用!</p>
  258. <div>---来自VIVO的用户说</div>
  259. </li>
  260. <li>
  261. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_03.png" /><span>tube244</span>
  262. <p>用着很方便,可以横屏,比iReader好。</p>
  263. <div>---来自OPPO的用户说</div>
  264. </li>
  265. </ul>
  266. </el-carousel-item>
  267. <el-carousel-item class="item">
  268. <ul class="clear">
  269. <li>
  270. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_04.png" /><span>lemo</span>
  271. <p>解压功能非常好,谷歌风设计,流畅,读书方便。</p>
  272. <div>---来自360的用户说</div>
  273. </li>
  274. <li>
  275. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_05.png" /><span>wing 。</span>
  276. <p>真的适合学习勾画重点呀。赞!</p>
  277. <div>---来自华为的用户说</div>
  278. </li>
  279. <li>
  280. <img src="http://cn-file.17pdf.com/website/home/pic_home_head_06.png" /><span>378java</span>
  281. <p>格式转档功能非常强大,是刚需!</p>
  282. <div>---来自小米的用户说</div>
  283. </li>
  284. </ul>
  285. </el-carousel-item>
  286. </el-carousel>
  287. </client-only>
  288. </div>
  289. <div class="free_signup">
  290. <p>开启17PDF Reader高效办公学习旅程</p>
  291. <span>现在注册即送10张格式转换券!</span>
  292. <a class="cursor-pointer" @click="openInterface">立即注册</a>
  293. </div>
  294. <!-- 底部cookie -->
  295. <div class="cookie fixed bottom-0 w-full bg-[#000000cc] min-h-42px items-center justify-center z-99999 py-14px px-18px" style="display: flex;" v-if="showCookie">
  296. <p class="text-[#fff] tracking-[-0.3px] text-[14px] leading-[1.428571429] m-0">
  297. 该网站使用cookie。使用本网站,即表示您同意我们按照
  298. <a href="/privacy" class="ml-5px text-[14px] text-[#fff] underline">隐私政策</a>
  299. 中所述使用cookie。
  300. </p>
  301. <div class="btn inline-flex items-center h-30px min-w-60px text-[#fff] pl-13px bg-transparent align-middle text-[14px] leading-[1.428571429] cursor-pointer border-2 border-solid border-white rounded-20px" @click="changeShowCookie">
  302. 确认
  303. </div>
  304. </div>
  305. </div>
  306. </template>
  307. <style lang="scss">
  308. .page-home {
  309. position: relative;
  310. z-index: 1;
  311. top: -80px;
  312. margin-bottom: -80px;
  313. .el-carousel {
  314. border-bottom: 1px solid #dcdcdc;
  315. .el-carousel__arrow {
  316. display: none;
  317. }
  318. }
  319. .home_banner_wrap{
  320. border-bottom: 1px solid #dcdcdc;
  321. position: relative;
  322. top: -80px;
  323. z-index: 1;
  324. }
  325. .home-banner {
  326. display: flex;
  327. height: 100%;
  328. width: 100%;
  329. cursor: pointer;
  330. background:rgb(240,241,243);
  331. .bg{
  332. height: 100%;
  333. width: 50%;
  334. img{
  335. width: 100%;
  336. max-width: 770px;
  337. margin-top: 28%;
  338. }
  339. }
  340. .slogan {
  341. padding-top: 19%;
  342. padding-left: 70px;
  343. width: 50%;
  344. .tittle {
  345. color: rgb(26, 26, 26);
  346. font-size: 68px;
  347. padding-bottom: 10px;
  348. font-weight: normal;
  349. }
  350. .subtitle {
  351. color: rgb(77, 77, 77);
  352. font-size: 33px;
  353. }
  354. .info {
  355. color: rgb(77, 77, 77);
  356. opacity: 0.8;
  357. font-size: 22px;
  358. padding-top: 10px;
  359. max-width: 450px;
  360. }
  361. .power-sdk {
  362. display: flex;
  363. align-items: center;
  364. margin-top: 20px;
  365. color: #4D4D4D;
  366. font-size: 16px;
  367. line-height: 22px;
  368. font-weight: 600;
  369. svg {
  370. margin-left: 8px;
  371. }
  372. &:hover {
  373. color: #FF4F4F;
  374. text-decoration: underline;
  375. }
  376. }
  377. .home-btn {
  378. background-color: rgb(255, 255, 255);
  379. font-size: 18px;
  380. padding: 8px 38px;
  381. margin-top: 35px;
  382. position: absolute;
  383. border-radius: 4px;
  384. a {
  385. color: rgb(235, 64, 26);
  386. &:hover, &:active {
  387. text-decoration: none;
  388. }
  389. }
  390. &:hover {
  391. background-color: #FFE8E8;
  392. }
  393. }
  394. }
  395. }
  396. .indicators {
  397. display: flex;
  398. justify-content: center;
  399. position: relative;
  400. align-items: center;
  401. bottom: 45px;
  402. z-index: 3;
  403. .indicator {
  404. width: 10px;
  405. height: 10px;
  406. margin-left: 5px;
  407. background-color: white;
  408. border-radius: 10px;
  409. border: 1px solid rgba(0,0,0,0.87);
  410. &.is-active {
  411. width: 12px;
  412. height: 12px;
  413. border-radius: 12px;
  414. background-color: black;
  415. }
  416. }
  417. }
  418. .converter-banner {
  419. cursor: pointer;
  420. background-color: #fff;
  421. .bg {
  422. text-align: right;
  423. }
  424. .slogan {
  425. max-width: 470px;
  426. padding: 17% 0px 0px;
  427. margin-left: 12%;
  428. .tittle {
  429. font-size: 48px;
  430. color: rgb(51,51,51);
  431. margin:0px;
  432. font-weight: normal;
  433. padding-bottom: 0px;
  434. }
  435. .subtitle{
  436. font-size: 32px;
  437. color: rgb(77,77,77);
  438. margin: 30px 0px 12px;
  439. }
  440. p{
  441. font-size: 24px;
  442. color: rgb(77,77,77);
  443. }
  444. a{
  445. width: 160px;
  446. height: 52px;
  447. background: rgb(255,79,79);
  448. color: #fff;
  449. font-size: 24px;
  450. border-radius: 4px;
  451. display: block;
  452. margin-top: 48px;
  453. line-height: 52px;
  454. text-align: center;
  455. &:hover{
  456. background:rgba(255,79,79,0.9);
  457. }
  458. }
  459. }
  460. .bg img {
  461. margin-top: 26%;
  462. }
  463. }
  464. .home_info{
  465. width: 100%;
  466. .item{
  467. height: 418px;
  468. padding:0px 10%;
  469. text-align: center;
  470. .right{
  471. width: 50%;
  472. float: left;
  473. }
  474. .left{
  475. width: 50%;
  476. float: left;
  477. }
  478. img{
  479. width: 394px;
  480. margin-top: 75px;
  481. }
  482. .cotent{
  483. width: 394px;
  484. display: inline-block;
  485. h3{
  486. font-size: 36px;
  487. color: rgba(0,0,0,0.87);
  488. margin:126px 0px 16px;
  489. text-align: left;
  490. }
  491. p{
  492. font-size: 18px;
  493. color: rgba(0,0,0,0.87);
  494. text-align: left;
  495. }
  496. a{
  497. font-size: 18px;
  498. display: block;
  499. color: rgb(255,79,79);
  500. width: 124px;
  501. height: 40px;
  502. border:1px solid rgb(255,79,79);
  503. border-radius: 4px;
  504. line-height: 40px;
  505. margin-top: 32px;
  506. &:hover{
  507. background: rgb(255,79,79);
  508. color: #fff;
  509. }
  510. }
  511. }
  512. &.white{
  513. background: #fff;
  514. }
  515. &.gray{
  516. background: rgb(250,250,250);
  517. }
  518. }
  519. }
  520. .home_function{
  521. width: 100%;
  522. background-color: #fafafa;
  523. h3{
  524. height: 50px;
  525. line-height: 50px;
  526. margin-bottom: 100px;
  527. padding-top: 70px;
  528. font-size: 36px;
  529. color: rgb(51,51,51);
  530. text-align: center;
  531. }
  532. ul{
  533. padding:0px 10%;
  534. margin: 0;
  535. &::after {
  536. visibility: hidden;
  537. display: block;
  538. font-size: 0;
  539. content: " ";
  540. clear: both;
  541. height: 0;
  542. }
  543. li{
  544. list-style: none;
  545. height: 110px;
  546. width: 50%;
  547. float: left;
  548. margin-bottom: 20px;
  549. text-align: center;
  550. .list{
  551. width: 460px;
  552. display: inline-block;
  553. }
  554. img{
  555. float: left;
  556. width: 96px;
  557. height: 96px;
  558. }
  559. .wrap{
  560. max-width:324px;
  561. float: left;
  562. margin-left: 40px;
  563. h4{
  564. font-size: 24px;
  565. color: rgba(0,0,0,0.87);
  566. margin: 6px 0px 6px;
  567. text-align: left;
  568. }
  569. p{
  570. font-size: 16px;
  571. line-height: 24px;
  572. color: rgb(102,102,102);
  573. text-align: left;
  574. }
  575. }
  576. }
  577. }
  578. }
  579. .home_user_say{
  580. padding-top: 40px;
  581. h3{
  582. font-size: 36px;
  583. color: rgb(51,51,51);
  584. height: 50px;
  585. line-height: 50px;
  586. text-align: center;
  587. margin: 0;
  588. }
  589. .user_say_carousel{
  590. width: 100%;
  591. .item{
  592. ul{
  593. padding-top: 40px;
  594. width: 100%;
  595. min-width: 1240px;
  596. height: 100%;
  597. text-align: center;
  598. font-size: 0;
  599. li + li {
  600. margin-left: 107px;
  601. }
  602. li{
  603. position: relative;
  604. list-style: none;
  605. width: 298px;
  606. height: 160px;
  607. display: inline-block;
  608. border-radius:4px;
  609. box-shadow:1px 1px 6px 0px rgba(153,153,153,0.3);
  610. background: #fff;
  611. padding: 23px 14px 0px;
  612. text-align: left;
  613. vertical-align: top;
  614. img{
  615. margin-right: 12px;
  616. width: 42px;
  617. height: 42px;
  618. display: inline;
  619. border-radius: 20px;
  620. }
  621. span{
  622. font-size: 14px;
  623. color: rgb(51,51,51);
  624. }
  625. p{
  626. padding: 8px 0px 12px;
  627. font-size: 16px;
  628. line-height: 26px;
  629. color: rgb(51,51,51);
  630. text-align: left;
  631. }
  632. div{
  633. position: absolute;
  634. right: 14px;
  635. bottom: 23px;
  636. font-size: 14px;
  637. color: rgb(102,102,102);
  638. text-align: right;
  639. }
  640. }
  641. }
  642. }
  643. .el-carousel__indicators {
  644. display: none;
  645. }
  646. }
  647. }
  648. .free_signup{
  649. width: 100%;
  650. height: 359px;
  651. background: url(http://cn-file.17pdf.com/website/home/pic_home_bg.png) no-repeat;
  652. background-size: 100% 100%;
  653. color: #fff;
  654. text-align: center;
  655. margin-bottom: -2px;
  656. p{
  657. font-size: 36px;
  658. padding:96px 0px 10px;
  659. }
  660. span{
  661. display: block;
  662. margin-bottom: 30px;
  663. font-size: 22px;
  664. opacity:0.7;
  665. }
  666. a{
  667. width: 200px;
  668. height: 48px;
  669. background: rgb(255,79,79);
  670. color: #fff;
  671. display: inline-block;
  672. border-radius: 8px;
  673. line-height: 48px;
  674. font-size: 18px;
  675. outline: none;
  676. &:hover{
  677. background: rgb(243,69,69);
  678. }
  679. }
  680. }
  681. }
  682. </style>