index.blade.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <!DOCTYPE html>
  2. <!-- saved from url=(0027)http://hfydhome.leyuee.com/ -->
  3. <html>
  4. <head>
  5. <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  6. <meta content="IE=edge" http-equiv="X-UA-Compatible">
  7. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  8. <title>
  9. 掌维科技- {{ $title }}
  10. </title>
  11. </head>
  12. <body>
  13. <div class="page">
  14. <div class="head">
  15. <img class="icon" src="{{$logo}}" />
  16. <div class="title">
  17. <div class="app-name">
  18. {{$title}}
  19. </div>
  20. <div class="title-desc">
  21. {{$desc}}
  22. </div>
  23. </div>
  24. </div>
  25. <div class="app-banner">
  26. @foreach ($desc_img as $img )
  27. <img class="icon" src="{{$img}}" />
  28. @endforeach
  29. </div>
  30. <div class="app-desc">
  31. <div class="desc-txt">
  32. 应用简介
  33. </div>
  34. <p>
  35. {{$title}}读为女生提供海量的言情、古装、生活、玄幻、悬疑、历史 等题材的书库,并且提供完善得易识别易操作的分类,还为读者提供舒适的阅读体验,多种阅读背景随意切换,连载小说内容实时更新,完结内容任性挑选。
  36. </p>
  37. </div>
  38. <div class="footer">
  39. <h3 style="margin-bottom: 10px;">
  40. 杭州掌维科技有限公司
  41. </h3>
  42. <a href="https://beian.miit.gov.cn/#/Integrated/index" style="font-size: 16px; margin-bottom: 10px;">
  43. ICP备案号:浙ICP备11007072号-8
  44. </a>
  45. <p style="font-size: 16px;">
  46. <span>
  47. 公司地址:杭州市滨江区南环路4028号3号楼C座101室
  48. </span>
  49. <span>
  50. 电话:0571-56680189
  51. </span>
  52. </p>
  53. </div>
  54. </div>
  55. </body>
  56. <style type="text/css">
  57. html * {
  58. outline: 0;
  59. -webkit-text-size-adjust: none;
  60. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  61. box-sizing: border-box;
  62. }
  63. html, body {
  64. width: 100%;
  65. height: 100%;
  66. font-family: Arial, Helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  67. background-color: #f2f2f2;
  68. }
  69. .page {
  70. margin: 50px 40px 0px 40px;
  71. padding: 20px 30px;
  72. display: flex;
  73. flex-direction: column;
  74. background-color: #ffffff;
  75. border-radius: 40px;
  76. }
  77. .head {
  78. width: 100%;
  79. display: flex;
  80. margin-bottom: 50px;
  81. }
  82. .icon {
  83. filter: drop-shadow(2px 2px 6px #000a);
  84. width: 64px;
  85. height: 64px;
  86. border-radius: 50%;
  87. margin-right: 20px;
  88. }
  89. .title {
  90. display: flex;
  91. flex-direction: column;
  92. justify-content: space-between;
  93. align-items: flex-start;
  94. }
  95. .app-name {
  96. font-size: 24px;
  97. font-weight: bold;
  98. color: black;
  99. }
  100. .title-desc {
  101. color:rgba(0, 0, 0, 0.5);
  102. font-size: 16px;
  103. font-weight: 600;
  104. }
  105. .app-banner {
  106. width: 100%;
  107. display: flex;
  108. flex-wrap: wrap;
  109. margin-bottom: 50px;
  110. }
  111. .app-banner img {
  112. margin-right: 10px;
  113. border-radius: 5px;
  114. height: auto;
  115. width: 200px;
  116. max-width: 100%;
  117. max-height: 100%;
  118. object-fit: contain;
  119. filter: drop-shadow(2px 2px 6px #000a);
  120. }
  121. .app-desc {
  122. width: 100%;
  123. display: flex;
  124. flex-direction: column;
  125. }
  126. .desc-txt {
  127. color:black;
  128. font-size: 20px;
  129. font-weight: 600;
  130. }
  131. .app-desc h3 {
  132. font-size: large;
  133. font-weight: bold;
  134. text-align: left;
  135. color: black;
  136. }
  137. .app-desc h5 {
  138. color:rgba(0, 0, 0, 0.6);
  139. font-size: medium;
  140. text-align: left;
  141. font-weight: 600;
  142. }
  143. .footer {
  144. margin-top: 50px;
  145. width: 100%;
  146. display: flex;
  147. flex-direction: column;
  148. justify-content: center;
  149. align-items: center;
  150. }
  151. </style>
  152. </html>