index.html 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>听邦</title>
  9. <meta name="Keywords" content="听邦">
  10. <meta name="Description" content="听邦">
  11. <style>
  12. * {
  13. margin: 0;
  14. padding: 0;
  15. border: 0;
  16. box-sizing: border-box;
  17. font-family: PingFang SC, HYQiHei-FES, "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif;
  18. line-height: 1.42857143;
  19. font-weight: 400;
  20. -webkit-tap-highlight-color: transparent;
  21. -webkit-text-size-adjust: 100%;
  22. }
  23. a {
  24. text-decoration: none;
  25. -webkit-touch-callout: none;
  26. }
  27. input {
  28. outline: none;
  29. border: none;
  30. -webkit-appearance: none;
  31. }
  32. button {
  33. border: none;
  34. outline: none;
  35. background: transparent;
  36. }
  37. iframe {
  38. position: absolute;
  39. width: 0;
  40. height: 0;
  41. border: 0;
  42. z-index: -9999;
  43. }
  44. html,
  45. body {
  46. width: 100%;
  47. height: 100%;
  48. overflow-y: scroll;
  49. }
  50. html {
  51. -webkit-text-size-adjust: 100%
  52. }
  53. ul, li, ol {
  54. list-style: none;
  55. }
  56. i {
  57. font-style: normal;
  58. }
  59. input:-webkit-autofill,
  60. input:-webkit-autofill:hover,
  61. input:-webkit-autofill:focus,
  62. input:-webkit-autofill:active {
  63. -webkit-transition-delay: 99999s;
  64. -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
  65. }
  66. .w {
  67. width: 1190px;
  68. margin-left: auto;
  69. margin-right: auto;
  70. }
  71. .header {
  72. position: relative;
  73. left: 0;
  74. top: 0;
  75. width: 100%;
  76. padding: 122px 0 202px;
  77. background: linear-gradient(45deg, #000000 0%, #525050 100%);
  78. }
  79. .header .logo {
  80. display: block;
  81. width: 121px;
  82. height: 138px;
  83. margin: 0 auto;
  84. }
  85. .header a {
  86. display: block;
  87. width: 268px;
  88. height: 44px;
  89. background: #D32323;
  90. border-radius: 25px;
  91. margin: 51px auto 0;
  92. font-size: 16px;
  93. font-family: PingFangSC-Semibold, PingFang SC;
  94. font-weight: 600;
  95. color: #FFFFFF;
  96. line-height: 44px;
  97. letter-spacing: 1px;
  98. text-align: center;
  99. }
  100. .main {
  101. display: flex;
  102. justify-content: center;
  103. width: 100%;
  104. padding: 56px 0;
  105. }
  106. .main .album {
  107. display: block;
  108. width: 422px;
  109. height: 347px;
  110. }
  111. .main .explain {
  112. padding-top: 27px;
  113. margin-left: 44px;
  114. }
  115. .main .explain .label {
  116. font-size: 18px;
  117. font-family: PingFangSC-Semibold, PingFang SC;
  118. font-weight: 600;
  119. color: #333333;
  120. line-height: 30px;
  121. }
  122. .main .explain .value {
  123. font-size: 16px;
  124. color: #909090;
  125. line-height: 34px;
  126. }
  127. .main .label::after {
  128. content: '';
  129. display: block;
  130. width: 100%;
  131. height: 2px;
  132. border-bottom: 1px solid #979797;
  133. }
  134. </style>
  135. </head>
  136. <body>
  137. <div class="header">
  138. <div class="w">
  139. <img class="logo" src="./imgs/logo@2x.png" alt="">
  140. <a href="javascript:;">APP下载</a>
  141. </div>
  142. </div>
  143. <div class="main">
  144. <img class="album" src="./imgs/about@2x.png" alt="">
  145. <div class="explain">
  146. <p class="label">去 AF house 听歌</p>
  147. <p class="label">必须要下载的APP</p>
  148. <p class="value">·查看演出计划</p>
  149. <p class="value">·订座/点单</p>
  150. <p class="value">·积分/优惠</p>
  151. <p class="value">·现场互动</p>
  152. </div>
  153. </div>
  154. </body>
  155. </html>