guidePersonalAccount.blade.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta
  6. name="viewport"
  7. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
  8. />
  9. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  10. <title>扫码送礼</title>
  11. <style>
  12. html,
  13. body {
  14. margin: 0 auto;
  15. padding: 0.2rem 0.4rem;
  16. max-width: 450px;
  17. font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue",
  18. "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI",
  19. "Microsoft YaHei", Arial, sans-serif;
  20. }
  21. .title {
  22. font-size: 22px;
  23. line-height: 1.4;
  24. margin-bottom: 15px;
  25. }
  26. .title .name {
  27. margin-top: 15px;
  28. font-size: 16px;
  29. }
  30. .small_title {
  31. color: #c00000;
  32. font-size: 28px;
  33. text-align: center;
  34. margin-top: 80px;
  35. letter-spacing: 5px;
  36. }
  37. .qrcode_box {
  38. text-align: center;
  39. margin-top: 30px;
  40. }
  41. .qrcode {
  42. width: 300px;
  43. }
  44. .qrcode_tips {
  45. margin-top: 15px;
  46. text-align: center;
  47. font-size: 18px;
  48. line-height: 30px;
  49. }
  50. .add_tips {
  51. color: red;
  52. letter-spacing: normal;
  53. max-width: 100% !important;
  54. margin-bottom: 10px;
  55. font-size: 17px;
  56. }
  57. /*# sourceMappingURL=jt.css.map */
  58. </style>
  59. </head>
  60. <body>
  61. <main class="main_box">
  62. <strong>
  63. <div class="small_title">扫一扫 关注此客服号 领取200书币 继续看书</div>
  64. </strong>
  65. <div class="qrcode_box">
  66. <img src="{{$img}}" class="qrcode" />
  67. </div>
  68. <div class="qrcode_tips">
  69. <p>客服号微信</p>
  70. <p>(长按图片,识别二维码)</p>
  71. </div>
  72. </main>
  73. </body>
  74. </html>