index.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. <template>
  2. <div class="page">
  3. <div class="page-top">
  4. <div class="club-info">
  5. <img
  6. class="logo"
  7. src="https://static.caimei365.com/www/authentic/pc/ldm-logo-circle.png"
  8. />
  9. <div class="name">德国WELLCOMET LDM<sup>®</sup></div>
  10. </div>
  11. </div>
  12. <div class="page-content">
  13. <div class="info">
  14. <div class="title">
  15. 德国LDM<sup>®</sup>带您开启非入侵式护肤美容新时代
  16. </div>
  17. <div class="subtitle">
  18. Bring you into a new era <br />
  19. of high-tech non-invasive beauty care
  20. </div>
  21. </div>
  22. <div class="entry">
  23. <div class="section">查询授权商家</div>
  24. <div class="section">查询官方培训师</div>
  25. </div>
  26. </div>
  27. <div class="page-footer flex flex-col justify-center">
  28. <div class="name mb-1">需要帮助吗?</div>
  29. <div class="contact">联系我们 +86 1382160616</div>
  30. </div>
  31. </div>
  32. </template>
  33. <script>
  34. export default {
  35. layout: 'app-ldm',
  36. methods: {
  37. toDetail() {
  38. this.$router.push('/ldm/approve/personnel/operate/detail')
  39. },
  40. },
  41. }
  42. </script>
  43. <style scoped lang="scss">
  44. @media screen and (min-width: 768px) {
  45. .page-top {
  46. position: relative;
  47. height: 750px;
  48. background: url(https://static.caimei365.com/www/authentic/pc/ldm-bg-approve.png)
  49. no-repeat center;
  50. background-size: auto 596px;
  51. background-position-y: top;
  52. .club-info {
  53. width: 100%;
  54. position: absolute;
  55. bottom: 0;
  56. text-align: center;
  57. .logo {
  58. display: block;
  59. width: 158px;
  60. height: 158px;
  61. margin: 0 auto;
  62. border-radius: 50%;
  63. box-shadow: 0 4px 9px rgba(0, 0, 0, 0.34);
  64. }
  65. .name {
  66. font-size: 40px;
  67. font-weight: bold;
  68. color: #000000;
  69. margin-top: 21px;
  70. }
  71. }
  72. }
  73. .page-content {
  74. min-height: calc(100vh - 750px - 100px);
  75. .info {
  76. padding: 81px;
  77. .title {
  78. font-size: 27px;
  79. color: #000;
  80. text-align: center;
  81. margin-bottom: 34px;
  82. font-weight: bold;
  83. }
  84. .subtitle {
  85. text-align: center;
  86. margin: 0 auto;
  87. font-size: 20px;
  88. color: #221815;
  89. text-transform: uppercase;
  90. }
  91. }
  92. .entry {
  93. text-align: center;
  94. margin-bottom: 169px;
  95. .section {
  96. display: inline-block;
  97. width: 291px;
  98. height: 76px;
  99. background: #000000;
  100. color: #fff;
  101. text-align: center;
  102. line-height: 76px;
  103. font-size: 24px;
  104. cursor: pointer;
  105. &:first-child {
  106. margin-right: 197px;
  107. }
  108. }
  109. }
  110. }
  111. .page-footer {
  112. position: relative;
  113. height: 100px;
  114. padding-left: 194px;
  115. background: linear-gradient(to bottom, #f1f1f1, #fdfdfd, #f1f1f1);
  116. .name {
  117. font-size: 24px;
  118. color: #9d9d9d;
  119. }
  120. .contact {
  121. font-size: 19px;
  122. color: #9d9d9d;
  123. }
  124. &::before {
  125. position: absolute;
  126. left: 120px;
  127. top: 50%;
  128. transform: translateY(-50%);
  129. content: '';
  130. display: block;
  131. width: 56px;
  132. height: 56px;
  133. background: url(https://static.caimei365.com/www/authentic/h5/ldm-icon-contact1.png)
  134. no-repeat center;
  135. background-size: 56px auto;
  136. }
  137. }
  138. }
  139. @media screen and (max-width: 768px) {
  140. .page-top {
  141. position: relative;
  142. height: 83vw;
  143. background: url(https://static.caimei365.com/www/authentic/h5/ldm-bg-approve.png)
  144. no-repeat;
  145. background-size: auto 59.6vw;
  146. background-position-y: top;
  147. .club-info {
  148. width: 100%;
  149. position: absolute;
  150. bottom: 0;
  151. text-align: center;
  152. .logo {
  153. display: block;
  154. width: 29.5vw;
  155. height: 29.5vw;
  156. margin: 0 auto;
  157. border-radius: 50%;
  158. box-shadow: 0 0.4vw 0.9vw rgba(0, 0, 0, 0.34);
  159. }
  160. .name {
  161. font-size: 4vw;
  162. font-weight: bold;
  163. color: #000000;
  164. margin-top: 3.7vw;
  165. }
  166. }
  167. }
  168. .page-content {
  169. min-height: calc(100vh - 83vw - 15.4vw);
  170. .info {
  171. padding: 22vw 2.4vw;
  172. .title {
  173. font-size: 4vw;
  174. color: #000;
  175. text-align: center;
  176. margin-bottom: 5.1vw;
  177. font-weight: bold;
  178. }
  179. .subtitle {
  180. text-align: center;
  181. margin: 0 auto;
  182. font-size: 3vw;
  183. color: #221815;
  184. text-transform: uppercase;
  185. }
  186. }
  187. .entry {
  188. .section {
  189. width: 62.8vw;
  190. height: 11.4vw;
  191. background: #000000;
  192. color: #fff;
  193. text-align: center;
  194. line-height: 11.4vw;
  195. margin: 0 auto;
  196. margin-bottom: 3.7vw;
  197. font-size: 3.5vw;
  198. }
  199. }
  200. }
  201. .page-footer {
  202. position: relative;
  203. height: 15.4vw;
  204. padding-left: 12.5vw;
  205. background: linear-gradient(to bottom, #f1f1f1, #fdfdfd, #f1f1f1);
  206. .name {
  207. font-size: 3.2vw;
  208. color: #9d9d9d;
  209. }
  210. .contact {
  211. font-size: 2.6vw;
  212. color: #9d9d9d;
  213. }
  214. &::before {
  215. position: absolute;
  216. left: 2.4vw;
  217. top: 50%;
  218. transform: translateY(-50%);
  219. content: '';
  220. display: block;
  221. width: 7.5vw;
  222. height: 7.5vw;
  223. background: url(https://static.caimei365.com/www/authentic/h5/ldm-icon-contact1.png)
  224. no-repeat center;
  225. background-size: 7.4vw auto;
  226. }
  227. }
  228. }
  229. </style>