pdf.blade.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <link href="https://www.iamwawa.cn/Public/css/wawa.min.css?v=d8bbc6e8e0" rel="stylesheet">
  7. <style>
  8. .pinyin{
  9. font-size:3rem;
  10. /*background: linear-gradient(180deg, #DCEBFF 0%, #FFFFFF 100%);*/
  11. box-shadow: 0rpx 8rpx 16rpx -8rpx rgba(0,71,190,0.4);
  12. border-radius: 32px;
  13. overflow: hidden;
  14. width: 100%;min-height: 100vh;padding:25px;
  15. background-color: #DCEBFF;
  16. /*background-image:linear-gradient(to right, red, blue);*/
  17. }
  18. .pinyin span{
  19. display:inline-block;float:left;text-align: center;line-height: 3.5rem;
  20. }
  21. .pinyin sup{
  22. font-size:13px;display:block;padding: 0 5px;line-height: 3.5rem;
  23. }
  24. img{
  25. border-radius: 32px;
  26. }
  27. sup{
  28. font-size: 2rem!important;
  29. line-height: 3rem!important;
  30. border-radius: 5px;
  31. background-color: rgba(255,255,255,0);
  32. color: red;
  33. }
  34. h1{
  35. font-size: 48px;
  36. font-weight: bold;
  37. color: #333333;
  38. text-align: center;
  39. }
  40. </style>
  41. </head>
  42. <body>
  43. <div class="pinyin">
  44. <div id="tool-result" style="display: block;">
  45. <h1>{{$title}}</h1>
  46. <img style="width: 100%;float: left;margin-right: 10px;margin-bottom: 40px;margin-top:40px" src="{{$img}}"/>
  47. <div >{!! $data !!}</div>
  48. </div>
  49. </div>
  50. </body>
  51. </html>