case.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. @media screen and (min-width: 768px) {
  2. .title {
  3. font-size: 34px;
  4. text-align: center;
  5. margin-top: 100px;
  6. }
  7. .main {
  8. .case {
  9. -webkit-box-sizing: border-box;
  10. box-sizing: border-box;
  11. &:nth-child(1) {
  12. padding-top: 80px !important;
  13. }
  14. &:nth-child(odd) {
  15. height: 690px;
  16. padding: 120px 0;
  17. .cover {
  18. width: 668px;
  19. height: 410px;
  20. }
  21. }
  22. &:nth-child(even) {
  23. height: 720px;
  24. padding: 162px 0;
  25. background: url(/img/case-bg.png) no-repeat center;
  26. background-size: auto 720px;
  27. .cover {
  28. width: 568px;
  29. height: 397px;
  30. }
  31. }
  32. .cover {
  33. background: pink;
  34. }
  35. .content {
  36. position: relative;
  37. background: skyblue;
  38. width: 490px;
  39. height: 410px;
  40. margin-top: 50px;
  41. img {
  42. display: block;
  43. width: 580px;
  44. height: 516px;
  45. position: absolute;
  46. left: 50%;
  47. top: 50%;
  48. -webkit-transform: translate(-50%, -50%);
  49. transform: translate(-50%, -50%);
  50. }
  51. }
  52. .cover {
  53. position: relative;
  54. .cover-title {
  55. position: absolute;
  56. left: 0;
  57. top: 20%;
  58. font-size: 24px;
  59. color: #fff;
  60. background: #0688d2;
  61. padding: 0 20px;
  62. line-height: 48px;
  63. }
  64. &.fr {
  65. .cover-title {
  66. top: 10%;
  67. left: -40px;
  68. }
  69. }
  70. img {
  71. display: block;
  72. width: 100%;
  73. height: 100%;
  74. }
  75. }
  76. }
  77. }
  78. .footer {
  79. margin-top: 0;
  80. }
  81. }
  82. @media screen and (max-width: 768px) {
  83. .title {
  84. font-size: 0.34rem;
  85. text-align: center;
  86. margin-top: 0.8rem;
  87. }
  88. .main {
  89. .case {
  90. -webkit-box-sizing: border-box;
  91. box-sizing: border-box;
  92. margin-top: 0.4rem;
  93. .content {
  94. position: relative;
  95. margin: 0 auto;
  96. width: 6.14rem;
  97. float: unset !important;
  98. margin-top: -1.2rem;
  99. img {
  100. display: block;
  101. width: 6.14rem;
  102. }
  103. }
  104. .cover {
  105. position: relative;
  106. float: unset !important;
  107. margin: 0 auto;
  108. width: 6.14rem;
  109. text-align: center;
  110. .cover-title {
  111. font-size: 0.26rem;
  112. color: #fff;
  113. background: #0688d2;
  114. padding: 0 0.29rem;
  115. line-height: 0.56rem;
  116. display: inline-block;
  117. margin-bottom: 0.4rem;
  118. }
  119. img {
  120. display: block;
  121. width: 100%;
  122. height: 100%;
  123. }
  124. }
  125. }
  126. }
  127. .footer {
  128. margin-top: 0;
  129. }
  130. }