index.vue 5.3 KB

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