product-intradermik.scss 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. @media screen and (min-width: 768px) {
  2. .main {
  3. .about {
  4. .cover {
  5. img {
  6. display: block;
  7. width: 470px;
  8. height: 480px;
  9. }
  10. }
  11. .info {
  12. width: 660px;
  13. padding-top: 65px;
  14. .name {
  15. font-size: 50px;
  16. color: #5ba9ad;
  17. font-weight: bold;
  18. }
  19. .subname {
  20. font-size: 30px;
  21. margin-top: 15px;
  22. }
  23. .line {
  24. width: 36px;
  25. height: 7px;
  26. background: #5ba9ad;
  27. margin: 20px 0 30px;
  28. }
  29. .description {
  30. text-align: justify;
  31. word-break: break-all;
  32. font-weight: lighter;
  33. line-height: 36px;
  34. p {
  35. margin-top: 24px;
  36. font-size: 20px;
  37. }
  38. }
  39. }
  40. }
  41. .about-device {
  42. .content {
  43. img {
  44. display: block;
  45. width: 100%;
  46. }
  47. }
  48. }
  49. .therapy {
  50. .content {
  51. .section {
  52. background: #eeeeee;
  53. padding: 24px 24px 24px 56px;
  54. display: -webkit-box;
  55. display: -ms-flexbox;
  56. display: flex;
  57. -webkit-box-pack: justify;
  58. -ms-flex-pack: justify;
  59. justify-content: space-between;
  60. -webkit-box-orient: horizontal;
  61. -webkit-box-direction: reverse;
  62. -ms-flex-direction: row-reverse;
  63. flex-direction: row-reverse;
  64. margin-top: 20px;
  65. &:first-child {
  66. margin-top: 0;
  67. }
  68. .info {
  69. margin-right: 24px;
  70. -webkit-box-flex: 1;
  71. -ms-flex: 1;
  72. flex: 1;
  73. -ms-flex-negative: 0;
  74. flex-shrink: 0;
  75. text-align: justify;
  76. word-break: break-all;
  77. .cover {
  78. img {
  79. display: block;
  80. width: 560px;
  81. }
  82. }
  83. .title {
  84. font-size: 36px;
  85. color: #5ba9ad;
  86. font-weight: bold;
  87. }
  88. .subtitle {
  89. font-size: 16px;
  90. color: #434343;
  91. font-weight: lighter;
  92. text-transform: uppercase;
  93. margin-top: 4px;
  94. }
  95. .desc {
  96. font-size: 27px;
  97. color: #434343;
  98. line-height: 38px;
  99. margin-top: 50px;
  100. }
  101. .row {
  102. margin-top: 68px;
  103. .label {
  104. font-size: 29px;
  105. color: #434343;
  106. font-weight: bold;
  107. }
  108. .text {
  109. font-size: 25px;
  110. line-height: 38px;
  111. color: #434343;
  112. margin-top: 10px;
  113. }
  114. .item {
  115. font-size: 22px;
  116. color: #434343;
  117. font-weight: lighter;
  118. margin-top: 32px;
  119. line-height: 1.5;
  120. }
  121. }
  122. }
  123. &.therapy-2 {
  124. .row {
  125. margin-top: 130px;
  126. }
  127. }
  128. &.therapy-3 {
  129. .row {
  130. margin-top: 80px;
  131. .item {
  132. line-height: 38px;
  133. }
  134. }
  135. .desc{
  136. line-height: 42px;
  137. }
  138. }
  139. &.therapy-4 {
  140. .row {
  141. margin-top: 50px;
  142. .label {
  143. margin-bottom: 16px;
  144. }
  145. .item {
  146. margin-top: 12px;
  147. }
  148. }
  149. }
  150. }
  151. }
  152. }
  153. .device {
  154. .content {
  155. position: relative;
  156. .swiper-container {
  157. width: 1100px;
  158. margin: 0 auto;
  159. img {
  160. display: block;
  161. width: 100%;
  162. }
  163. }
  164. .swiper-prev,
  165. .swiper-next {
  166. position: absolute;
  167. left: 0;
  168. top: 50%;
  169. -webkit-transform: translateY(-50%);
  170. transform: translateY(-50%);
  171. width: 48px;
  172. height: 72px;
  173. background-color: rgba(55, 55, 55, 0.6) !important;
  174. z-index: 5;
  175. cursor: pointer;
  176. background: url(/img/icon-arrow-left.png) no-repeat center;
  177. }
  178. .swiper-next {
  179. left: unset;
  180. right: 0;
  181. background: url(/img/icon-arrow-right.png) no-repeat center;
  182. }
  183. }
  184. }
  185. }
  186. }
  187. @media screen and (max-width: 768px) {
  188. .main {
  189. .about {
  190. .content {
  191. display: -webkit-box;
  192. display: -ms-flexbox;
  193. display: flex;
  194. -webkit-box-orient: vertical;
  195. -webkit-box-direction: reverse;
  196. -ms-flex-direction: column-reverse;
  197. flex-direction: column-reverse;
  198. -webkit-box-align: center;
  199. -ms-flex-align: center;
  200. align-items: center;
  201. .cover {
  202. margin-top: 0.4rem;
  203. img {
  204. display: block;
  205. width: 5.46rem;
  206. height: 5.57rem;
  207. }
  208. }
  209. .info {
  210. width: 6.5rem;
  211. margin: 0 auto;
  212. .name {
  213. font-size: 0.34rem;
  214. color: #5ba9ad;
  215. text-align: center;
  216. font-weight: bold;
  217. }
  218. .subname {
  219. font-size: 0.26rem;
  220. margin-top: 0.16rem;
  221. text-align: center;
  222. }
  223. .line {
  224. width: 0.4rem;
  225. height: 0.06rem;
  226. background: #5ba9ad;
  227. margin: 0.32rem auto;
  228. }
  229. .description {
  230. text-align: justify;
  231. word-break: break-all;
  232. color: #333333;
  233. text-align: center;
  234. p {
  235. font-size: 0.26rem;
  236. line-height: 0.48rem;
  237. }
  238. }
  239. }
  240. }
  241. }
  242. .about-device {
  243. width: 6.86rem;
  244. margin: 0 auto;
  245. .content {
  246. img {
  247. display: block;
  248. width: 100%;
  249. }
  250. }
  251. }
  252. .therapy {
  253. .content {
  254. .section {
  255. width: 6.86rem;
  256. margin: 0 auto;
  257. background: #eeeeee;
  258. padding: 0.4rem;
  259. margin-top: 0.32rem;
  260. -webkit-box-sizing: border-box;
  261. box-sizing: border-box;
  262. &:first-child {
  263. margin-top: 0;
  264. }
  265. .cover {
  266. img {
  267. display: block;
  268. width: 100%;
  269. }
  270. }
  271. .info {
  272. text-align: center;
  273. word-break: break-all;
  274. .title {
  275. font-size: 0.3rem;
  276. color: #5ba9ad;
  277. font-weight: bold;
  278. margin-top: 0.4rem;
  279. }
  280. .subtitle {
  281. font-size: 0.24rem;
  282. color: #333;
  283. margin-top: 0.16rem;
  284. }
  285. .desc {
  286. font-size: 0.26rem;
  287. color: #333;
  288. line-height: 0.48rem;
  289. margin-top: 0.32rem;
  290. }
  291. .row {
  292. margin-top: 0.4rem;
  293. .label {
  294. font-size: 0.26rem;
  295. color: #434343;
  296. font-weight: bold;
  297. }
  298. .text {
  299. font-size: 0.26rem;
  300. line-height: 0.48rem;
  301. color: #434343;
  302. }
  303. .item {
  304. font-size: 0.26rem;
  305. color: #333;
  306. margin-top: 0.16rem;
  307. line-height: 1.5;
  308. }
  309. }
  310. }
  311. &.therapy-2 {
  312. .row {
  313. margin-top: 0.32rem;
  314. }
  315. }
  316. &.therapy-3 {
  317. .row {
  318. margin-top: 0.4rem;
  319. }
  320. }
  321. &.therapy-4 {
  322. .row {
  323. margin-top: 0.48rem;
  324. }
  325. }
  326. }
  327. }
  328. }
  329. .device {
  330. .scroll-box {
  331. img {
  332. width: 1.77rem;
  333. height: 2.27rem;
  334. margin-right: 0.24rem;
  335. &:first-child {
  336. margin-left: 0.32rem;
  337. }
  338. &:last-child {
  339. margin-right: 0.32rem;
  340. }
  341. }
  342. }
  343. }
  344. }
  345. }