index.scss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. @import "../scssCommon";
  2. .credit {
  3. position: relative;
  4. margin: -85px 0 0;
  5. width: 100%;
  6. background-color: #fff;
  7. .contentArea {
  8. width: 1000px;
  9. margin: 57px auto 57px auto;
  10. .screen {
  11. width: 100%;
  12. .screenTop {
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. flex-direction: column;
  17. .title {
  18. font-weight: 600;
  19. color: rgba(50, 50, 50, 1);
  20. font-size: 36px;
  21. line-height: 50px;
  22. }
  23. .line {
  24. margin: 16px 0;
  25. width: 44px;
  26. height: 3px;
  27. background: rgba(48, 142, 255, 1);
  28. border-radius: 1.5px;
  29. }
  30. .subTitle {
  31. font-size: 14px;
  32. font-weight: 400;
  33. color: rgba(153, 153, 153, 1);
  34. line-height: 20px;
  35. }
  36. }
  37. .screenList {
  38. margin-top: 30px;
  39. width: 100%;
  40. justify-content: space-between;
  41. align-items: center;
  42. display: flex;
  43. .cell {
  44. width:324px;
  45. height:361px;
  46. background:rgba(255,255,255,1);
  47. box-shadow:0 6px 23px 0 rgba(13,24,36,0.07);
  48. border-radius:8px;
  49. .cellImg {
  50. font-size: 0;
  51. img {
  52. width: 324px;
  53. height: 220px;
  54. }
  55. }
  56. .cellBot {
  57. padding: 8px;
  58. height: 141px;
  59. width: 100%;
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. flex-direction: column;
  64. .cellTitle {
  65. text-align: center;
  66. font-weight: 500;
  67. color: rgba(17, 28, 45, 1);
  68. font-size:20px;
  69. line-height:28px;
  70. }
  71. .cellSubTitle {
  72. margin-top: 10px;
  73. text-align: left;
  74. font-size: 14px;
  75. font-weight: 400;
  76. color: rgba(126, 134, 147, 1);
  77. line-height: 20px;
  78. }
  79. }
  80. }
  81. }
  82. }
  83. .trust {
  84. width: 100%;
  85. margin-top: 77px;
  86. .trustTop {
  87. display: flex;
  88. justify-content: center;
  89. align-items: center;
  90. flex-direction: column;
  91. .title {
  92. font-weight: 600;
  93. color: rgba(50, 50, 50, 1);
  94. font-size: 36px;
  95. line-height: 50px;
  96. }
  97. .line {
  98. margin: 16px 0;
  99. width: 44px;
  100. height: 3px;
  101. background: rgba(48, 142, 255, 1);
  102. border-radius: 1.5px;
  103. }
  104. }
  105. .trustList {
  106. margin-top: 30px;
  107. width: 100%;
  108. justify-content: space-between;
  109. align-items: center;
  110. display: flex;
  111. flex-direction: column;
  112. .cell {
  113. width: 100%;
  114. height: 300px;
  115. border-radius: 8px;
  116. display: flex;
  117. justify-content: space-between;
  118. align-items: center;
  119. .cellImg {
  120. flex-shrink: 0;
  121. font-size: 0;
  122. img {
  123. width: 481px;
  124. height: 300px;
  125. }
  126. }
  127. .cellRight{
  128. width: 482px;
  129. margin-left: 35px;
  130. height: 100%;
  131. display: flex;
  132. justify-content: center;
  133. flex-direction: column;
  134. .cellTitle {
  135. text-align: left;
  136. font-size:34px;
  137. font-weight:600;
  138. color:rgba(34,34,34,1);
  139. line-height:48px;
  140. }
  141. .cellSubTitle {
  142. margin-top: 17.44px;
  143. font-size:17px;
  144. font-weight:400;
  145. color:rgba(51,51,51,1);
  146. line-height:24px;
  147. }
  148. }
  149. &:nth-child(even) {
  150. flex-direction: row-reverse;
  151. .cellRight {
  152. margin-left: 0;
  153. margin-right: 35px;
  154. }
  155. }
  156. }
  157. }
  158. }
  159. }
  160. .bottomArea {
  161. position: relative;
  162. width: 100%;
  163. .img {
  164. left: 0;
  165. top: 0;
  166. width: auto;
  167. vertical-align: middle;
  168. }
  169. .wordBox {
  170. position: absolute;
  171. width: 100%;
  172. height: 100%;
  173. left: 0;
  174. top: 0;
  175. display: flex;
  176. justify-content: center;
  177. align-items: center;
  178. p {
  179. position: absolute;
  180. font-size:36px;
  181. font-weight:300;
  182. color:rgba(255,255,255,1);
  183. line-height:64px;
  184. letter-spacing:5px;
  185. }
  186. }
  187. }
  188. }
  189. @media screen and (min-width: 960px) {
  190. }