therapy-2.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. <template>
  2. <div class="therapy-container">
  3. <!-- banner区域 start -->
  4. <div class="swiper-container banner" id="banner">
  5. <div class="swiper-wrapper">
  6. <div class="swiper-slide">
  7. <img src="/img/binary-therapy2-banner.jpg" alt="" />
  8. </div>
  9. </div>
  10. </div>
  11. <!-- banner区域 end -->
  12. <div class="therapy-title">
  13. <h3>电容电阻靶向透热疗法</h3>
  14. <div class="en">Diathermy in capacitive and resistive application</div>
  15. </div>
  16. <div class="container row1">
  17. <div class="title">透热疗法应用原理:</div>
  18. <div class="description">CAP电容式透热疗法结合RES电阻式透热疗法,应用448kHz特定频率实现细胞的平衡、修复和再生。</div>
  19. <div class="content">
  20. <div class="section">
  21. <div class="item">
  22. <div class="name">非热:</div>
  23. <div class="desc">刺激运动和离子交换<br />激活细胞营养并促进细胞代谢,从而产生生物刺激效果</div>
  24. </div>
  25. <div class="item">
  26. <div class="name">温热:</div>
  27. <div class="desc">引起血管舒张,刺激微循环<br />增加组织氧合作用,促进引流<br />生物刺激作用与循环刺激作用相结合</div>
  28. </div>
  29. <div class="item">
  30. <div class="name">高热:</div>
  31. <div class="desc">重组组织,加速新陈代谢<br />在皮肤层面,胶原蛋白回缩产生立竿见影的效果<br />同时逐渐重塑皮肤深层胶原蛋白,促进新弹性纤维形成</div>
  32. </div>
  33. </div>
  34. <div class="section">
  35. <div class="cover">
  36. <img src="/img/binary-therapy2-cover-1.png" alt="电阻探头(RES)" />
  37. <div class="name">电阻探头(RES)</div>
  38. <div class="desc">靶向治疗人体深层组织、改善人体脂肪组织、骨骼、肌腱、脏腑等问题</div>
  39. </div>
  40. <div class="cover">
  41. <img src="/img/binary-therapy2-cover-2.png" alt="电容探头(CAP)" />
  42. <div class="name">电容探头(CAP)</div>
  43. <div class="desc">靶向治疗人体浅层组织、改善皮肤和肌肉状态</div>
  44. </div>
  45. </div>
  46. </div>
  47. <div class="therapy-title">
  48. <h3>448kHz特定频率与ROS'S智能科技相融合</h3>
  49. <div class="en"><span>448kHz</span> specific frequency combined with ROS'S high technology</div>
  50. </div>
  51. <div class="container row2">
  52. <div class="description">
  53. <span>448kHz</span
  54. >特定频率得到了医学和理疗界的广泛认可。由内到外作用于细胞和组织,有效帮助离子进行跨膜运动,使细胞的正、负离子交换恢复正常。且该频率促使组织离子产生电荷运动,增强细胞的活性
  55. ,根据所施加的能量大小产生不同程度的热效应,进行各种阶段的护理。
  56. </div>
  57. <div class="section">
  58. <img src="/img/binary-therapy2-honor1.png" alt="" />
  59. <img src="/img/binary-therapy2-honor2.png" alt="" />
  60. <img src="/img/binary-therapy2-honor3.png" alt="" />
  61. </div>
  62. <div class="desc">医学文献证明:448kHz是维持细胞最健康状态的频率。</div>
  63. <div class="cover"><img src="/img/binary-therapy2-case.png" alt="" /></div>
  64. </div>
  65. </div>
  66. </div>
  67. </template>
  68. <script>
  69. export default {
  70. head() {
  71. return {
  72. title: '首页-艾斯佰丽官网-电容电阻靶向透热疗法',
  73. }
  74. },
  75. mounted() {
  76. new Swiper('#banner', {
  77. loop: false, // 循环模式选项
  78. })
  79. },
  80. }
  81. </script>
  82. <style lang="scss" scoped>
  83. @media screen and (min-width: 768px) {
  84. .therapy-container {
  85. margin-bottom: -120px;
  86. }
  87. .therapy-title {
  88. margin: 130px 0 104px;
  89. h3 {
  90. font-size: 42px;
  91. font-weight: bold;
  92. color: #000000;
  93. text-align: center;
  94. }
  95. .en {
  96. font-size: 21px;
  97. color: #000000;
  98. text-transform: uppercase;
  99. margin-top: 17px;
  100. text-align: center;
  101. span {
  102. text-transform: initial;
  103. }
  104. }
  105. }
  106. .container {
  107. .title {
  108. font-size: 33px;
  109. font-weight: bold;
  110. color: #000000;
  111. }
  112. .description {
  113. font-size: 29px;
  114. color: #000000;
  115. line-height: 42px;
  116. margin-top: 24px;
  117. span {
  118. font-weight: bold;
  119. }
  120. }
  121. &.row1 {
  122. .content {
  123. display: flex;
  124. justify-content: space-between;
  125. .item {
  126. margin-top: 88px;
  127. .name {
  128. font-size: 28px;
  129. font-weight: bold;
  130. color: #e98e19;
  131. line-height: 40px;
  132. }
  133. .desc {
  134. font-size: 28px;
  135. line-height: 40px;
  136. }
  137. }
  138. .cover {
  139. width: 343px;
  140. margin-top: 12px;
  141. img {
  142. display: block;
  143. }
  144. .name {
  145. font-size: 23px;
  146. font-weight: 500;
  147. color: #231815;
  148. text-align: center;
  149. }
  150. .desc {
  151. font-size: 20px;
  152. color: #231815;
  153. font-weight: lighter;
  154. margin-top: 19px;
  155. line-height: 38px;
  156. }
  157. }
  158. }
  159. }
  160. &.row2 {
  161. .desc {
  162. font-size: 20px;
  163. font-weight: 300;
  164. color: #000000;
  165. line-height: 74px;
  166. }
  167. .section {
  168. display: flex;
  169. margin-top: 76px;
  170. img {
  171. display: block;
  172. margin: 0 2px;
  173. }
  174. }
  175. .cover {
  176. img {
  177. display: block;
  178. width: 100%;
  179. }
  180. }
  181. }
  182. }
  183. }
  184. @media screen and (max-width: 768px) {
  185. .therapy-container {
  186. margin-bottom: -1rem;
  187. }
  188. .therapy-title {
  189. margin: 0.8rem 0 0.7rem;
  190. h3 {
  191. font-size: 0.34rem;
  192. font-weight: bold;
  193. color: #000000;
  194. text-align: center;
  195. }
  196. .en {
  197. font-size: 0.22rem;
  198. color: #000000;
  199. text-transform: uppercase;
  200. margin-top: 0.1rem;
  201. text-align: center;
  202. }
  203. }
  204. .container {
  205. .title {
  206. font-size: 0.26rem;
  207. font-weight: bold;
  208. color: #000000;
  209. text-align: center;
  210. }
  211. .description {
  212. font-size: 0.26rem;
  213. color: #000000;
  214. line-height: 0.48rem;
  215. text-align: center;
  216. width: 5.92rem;
  217. margin: 0.16rem auto 0;
  218. span {
  219. font-weight: bold;
  220. }
  221. }
  222. &.row1 {
  223. .content {
  224. .item {
  225. width: 5.92rem;
  226. margin: 0 auto;
  227. .name {
  228. font-size: 0.26rem;
  229. font-weight: bold;
  230. color: #e98e19;
  231. line-height: 0.48rem;
  232. text-align: center;
  233. margin: 0.4rem 0 0.16rem;
  234. }
  235. .desc {
  236. font-size: 0.26rem;
  237. line-height: 0.48rem;
  238. text-align: center;
  239. br {
  240. display: none;
  241. }
  242. }
  243. }
  244. .section:nth-child(2) {
  245. display: flex;
  246. justify-content: space-between;
  247. width: 6.88rem;
  248. margin: 0 auto;
  249. }
  250. .cover {
  251. width: 46%;
  252. img {
  253. display: block;
  254. width: 2.68rem;
  255. height: 2rem;
  256. }
  257. .name {
  258. font-size: 0.26rem;
  259. font-weight: 500;
  260. color: #231815;
  261. text-align: center;
  262. }
  263. .desc {
  264. font-size: 0.2rem;
  265. color: #999;
  266. margin-top: 0.16rem;
  267. line-height: 0.32rem;
  268. text-align: center;
  269. }
  270. }
  271. }
  272. }
  273. &.row2 {
  274. .description {
  275. span {
  276. display: none;
  277. }
  278. }
  279. .desc {
  280. font-size: 0.2rem;
  281. color: #999;
  282. line-height: 0.48rem;
  283. text-align: center;
  284. margin-top: 0.24rem;
  285. }
  286. .section {
  287. overflow-y: scroll;
  288. margin-top: 0.4rem;
  289. white-space: nowrap;
  290. font-size: 0;
  291. &::-webkit-scrollbar {
  292. display: none;
  293. }
  294. img {
  295. display: inline-block;
  296. margin-right: 0.12rem;
  297. height: 2.36rem;
  298. &:first-child {
  299. margin-left: 0.32rem;
  300. }
  301. &:last-child {
  302. margin-right: 0.32rem;
  303. }
  304. }
  305. }
  306. .cover {
  307. width: 6.8rem;
  308. margin: 0.4rem auto 0;
  309. img {
  310. display: block;
  311. width: 100%;
  312. }
  313. }
  314. }
  315. }
  316. }
  317. </style>