product.scss 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. $deep-blue: #004a97;
  2. .product-right {
  3. // flex:1;
  4. width: 800px;
  5. margin-top: -10px;
  6. .product-right-top {
  7. .title {
  8. margin-bottom: 10px;
  9. max-width: 800px;
  10. .title-1 {
  11. vertical-align: bottom;
  12. font-size: 18px;
  13. font-weight: bold;
  14. }
  15. .title-2 {
  16. vertical-align: bottom;
  17. font-size: 16px;
  18. color: #0b6dc9;
  19. margin: 0 10px;
  20. }
  21. .title-3 {
  22. vertical-align: bottom;
  23. margin-right: 4px;
  24. width: 44px;
  25. border-radius: 4px;
  26. }
  27. .title-4 {
  28. vertical-align: bottom;
  29. margin-right: 10px;
  30. height: 30px;
  31. }
  32. }
  33. .color {
  34. height: 36px;
  35. display: flex;
  36. align-items: center;
  37. .color-item {
  38. width: 36px;
  39. div {
  40. margin: 0 auto;
  41. cursor: pointer;
  42. width: 28px;
  43. height: 28px;
  44. box-shadow:
  45. 0 3px 6px rgba(0, 0, 0, 0.16),
  46. 0 1px 2px rgba(0, 0, 0, 0.23);
  47. border-radius: 20px;
  48. transition: all 0.2s;
  49. img {
  50. width: 100%;
  51. height: 100%;
  52. }
  53. }
  54. .slip {
  55. box-sizing: border-box;
  56. width: 34px;
  57. height: 34px;
  58. border: 1px solid #004a97;
  59. padding: 3px;
  60. }
  61. }
  62. }
  63. }
  64. .product-right-bottom {
  65. margin-bottom: 20px;
  66. .details {
  67. h3 {
  68. font-size: 20px;
  69. margin-bottom: 10px;
  70. }
  71. p,
  72. li {
  73. line-height: 1.8;
  74. font-size: 16px;
  75. }
  76. .details-1 {
  77. margin-bottom: 15px;
  78. p,
  79. li {
  80. color: #4a596c;
  81. }
  82. ul{
  83. padding-left: 20px;
  84. li {
  85. list-style-type: disc;
  86. }
  87. }
  88. }
  89. .details-2 {
  90. h3 {
  91. text-align: center;
  92. }
  93. p {
  94. text-indent: 2em;
  95. color: #ff4500;
  96. font-weight: bold;
  97. text-align: center;
  98. }
  99. }
  100. .details-3 {
  101. position: relative;
  102. ul {
  103. position: relative;
  104. z-index: 1;
  105. margin-top: 15px;
  106. li {
  107. border-bottom: 1px solid rgba(190, 190, 190, 0.2);
  108. display: flex;
  109. div {
  110. line-height: 1.5;
  111. padding: 5px 0 5px 20px;
  112. }
  113. .title {
  114. font-size: 16px;
  115. text-align: center;
  116. background-color: $deep-blue;
  117. width: 100%;
  118. color: #fff;
  119. }
  120. .point {
  121. min-width: 193px;
  122. background-color: #f5f5f5;
  123. font-size: 16px;
  124. }
  125. .info {
  126. font-size: 14px;
  127. color: #4a596c;
  128. & + .info {
  129. padding-left: 0;
  130. }
  131. }
  132. a {
  133. color: #6495ed;
  134. }
  135. }
  136. }
  137. }
  138. button {
  139. position: absolute;
  140. top: 0;
  141. right: 0; /* 初始位置在 ul 区域的右边 */
  142. transition: right 1.5s; /* 右移效果和 z-index 延迟变更 */
  143. z-index: 0;
  144. height: 34px;
  145. display: flex;
  146. align-items: center;
  147. }
  148. .details-3:hover .el-button {
  149. right: -75px; /* 鼠标移入 ul 区域时滑出到右上角 */
  150. transition: right 1.5s;
  151. }
  152. .showcase {
  153. height: 60px;
  154. // margin-top: 20px;
  155. .banner {
  156. width: 100%;
  157. height: 100%;
  158. background-size: cover;
  159. background-repeat: no-repeat;
  160. background-position: center;
  161. }
  162. }
  163. }
  164. h5 {
  165. font-size: 16px;
  166. margin-bottom: 20px;
  167. }
  168. .resources {
  169. width: 450px;
  170. margin-left: 20px;
  171. }
  172. .maketing {
  173. display: grid;
  174. grid-template-columns: repeat(2, 1fr);
  175. p {
  176. cursor: pointer;
  177. margin-bottom: 30px;
  178. display: inline-block;
  179. img {
  180. margin-right: 10px;
  181. vertical-align: middle;
  182. }
  183. vertical-align: middle;
  184. }
  185. }
  186. .compliance {
  187. img {
  188. height: 60px;
  189. margin-right: 20px;
  190. margin-bottom: 20px;
  191. cursor: pointer;
  192. }
  193. }
  194. .quote-tips {
  195. font-size: 16px;
  196. }
  197. }
  198. }