product-intradermik.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .main {
  2. .title {
  3. font-size: 24px;
  4. font-weight: bold;
  5. }
  6. .about {
  7. .cover {
  8. width: 614px;
  9. height: 412px;
  10. background-color: pink;
  11. }
  12. .container {
  13. position: relative;
  14. }
  15. .content {
  16. position: absolute;
  17. bottom: 0;
  18. right: 0;
  19. width: 518px;
  20. .title {
  21. font-size: 34px;
  22. text-transform: uppercase;
  23. }
  24. .detail {
  25. font-size: 14px;
  26. line-height: 40px;
  27. text-align: justify;
  28. }
  29. .tags {
  30. margin-top: 36px;
  31. display: flex;
  32. .tag {
  33. padding: 8px 14px;
  34. font-size: 16px;
  35. color: #0688d2;
  36. background: #eff9ff;
  37. }
  38. }
  39. .line {
  40. margin: 32px 0;
  41. width: 32px;
  42. height: 2px;
  43. background: #d8d8d8;
  44. }
  45. }
  46. }
  47. .service {
  48. margin-top: 180px;
  49. margin-bottom: 80px;
  50. .cover {
  51. width: 640px;
  52. height: 480px;
  53. box-sizing: border-box;
  54. padding: 24px;
  55. background-color: pink;
  56. }
  57. .content {
  58. width: 560px;
  59. background: #0688d2;
  60. }
  61. }
  62. }