detail.scss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. .detail-content {
  2. .breadcrumb {
  3. a {
  4. color: #6c757d;
  5. }
  6. }
  7. h5 {
  8. color: #34404B;
  9. font-size: 1.5rem;
  10. font-weight: 500;
  11. }
  12. .intro-section {
  13. display: flex;
  14. flex-direction: column;
  15. justify-content: center;
  16. padding: 2rem;
  17. color: #727679;
  18. h4 {
  19. color: #34404B;
  20. font-size: 1.5rem;
  21. font-weight: 500;
  22. letter-spacing: 1px;
  23. }
  24. .contact-wrapper {
  25. p {
  26. color: #727679;
  27. font-size: 1.125rem;
  28. }
  29. a {
  30. color: #EE751B;
  31. font-size: 1.5rem;
  32. font-weight: bold;
  33. }
  34. }
  35. .mark-item {
  36. display: inline-block;
  37. margin: -.5rem .5rem 0 0;
  38. font-size: 2.5rem;
  39. font-weight: bold;
  40. color: #FF0000;
  41. }
  42. ul {
  43. li {
  44. margin-bottom: 10px;
  45. &:last-child {
  46. margin-bottom: 0;
  47. }
  48. }
  49. }
  50. }
  51. .intro-above {
  52. margin-top: 1.5rem;
  53. a {
  54. display: inline-block;
  55. padding: .5rem 1rem;
  56. text-align: center;
  57. border: 1px solid #EE751B;
  58. border-radius: 0.25rem;
  59. background: #ee7518;
  60. color: #FFF;
  61. line-height: 1.2;
  62. transition: all .3s;
  63. &:hover {
  64. opacity: .7;
  65. }
  66. p {
  67. font-size: 1.75rem;
  68. font-weight: bold;
  69. small {
  70. display: block;
  71. margin-top: .3rem;
  72. font-size: .75rem;
  73. letter-spacing: 1px;
  74. }
  75. }
  76. }
  77. }
  78. .article-content {
  79. height: 50px;
  80. overflow: hidden;
  81. font-size: 1.125rem;
  82. line-height: 1.8;
  83. color: #727679;
  84. transition: all .3s;
  85. white-space: pre-wrap;
  86. }
  87. .article-read-more {
  88. display: flex;
  89. justify-content: center;
  90. color: #FFAC73;
  91. transform: translateY(-20px);
  92. transition: all .3s;
  93. cursor: pointer;
  94. &:hover {
  95. color: #EE751B;
  96. }
  97. span {
  98. display: inline-block;
  99. margin: -1px 5px 0 7px;
  100. letter-spacing: 1px;
  101. font-size: .875rem;
  102. }
  103. &::before {
  104. content: '';
  105. display: inline-block;
  106. position: absolute;
  107. background: -webkit-gradient(linear, left bottom, left top, from(#FCFCFC), to(rgba(255, 255, 255, 0.454219)));
  108. background: linear-gradient(0deg, #FCFCFC 0%, rgba(255, 255, 255, 0.454219) 100%);
  109. width: 100%;
  110. height: 25px;
  111. -webkit-transition: all 300ms ease-in-out;
  112. transition: all 300ms ease-in-out;
  113. }
  114. }
  115. .radar-item {
  116. max-height: 200px;
  117. display: flex;
  118. align-items: center;
  119. }
  120. .slider-list {
  121. img {
  122. width: 100%;
  123. height: 650px;
  124. padding: 0 3rem;
  125. object-fit: cover;
  126. cursor: pointer;
  127. }
  128. .video-item {
  129. position: relative;
  130. border: none;
  131. background: transparent;
  132. .play-img {
  133. width: 110px;
  134. height: 110px;
  135. padding: 0;
  136. }
  137. }
  138. .slick-next,
  139. .slick-prev {
  140. position: absolute;
  141. top: 50%;
  142. border: none;
  143. background: transparent;
  144. }
  145. .slick-next {
  146. right: 0;
  147. }
  148. .slick-prev {
  149. left: 0;
  150. }
  151. }
  152. .swiper-button-prev::after,
  153. .swiper-button-next::after {
  154. content: '';
  155. width: 25px;
  156. height: 40px;
  157. background-position: center;
  158. background-repeat: no-repeat;
  159. display: inline-block;
  160. }
  161. .swiper-button-next::after {
  162. background-image: url("https://hhh.com.tw/assets/images/rv_web/arrow-right.png");
  163. }
  164. .swiper-button-prev:after {
  165. background-image: url("https://hhh.com.tw/assets/images/rv_web/arrow-left.png");
  166. }
  167. .media-list {
  168. margin: auto;
  169. padding: 1rem 3rem;
  170. max-width: 450px;
  171. display: flex;
  172. justify-content: space-around;
  173. background-color: #FFF;
  174. box-shadow: 0 1px 10px #cecece;
  175. border-radius: 45px;
  176. a {
  177. display: inline-block;
  178. margin: 0 .3rem;
  179. }
  180. }
  181. .tag-list {
  182. a {
  183. display: inline-block;
  184. margin: 0.3rem;
  185. padding: 0.5rem .8rem;
  186. color: #212529;
  187. border: 1px solid #212529;
  188. transition: all .3s;
  189. &:hover {
  190. color: #EE751B;
  191. border: 1px solid #EE751B;
  192. }
  193. }
  194. }
  195. .other-list {
  196. h5 {
  197. margin-bottom: 0;
  198. font-size: 1.125rem;
  199. color: #727679;
  200. letter-spacing: 1px;
  201. }
  202. }
  203. }
  204. .play-img {
  205. width: 50px;
  206. position: absolute;
  207. top: 45%;
  208. left: 50%;
  209. transform: translate(-50%, -50%);
  210. }
  211. .breadcrumb-item.active {
  212. span {
  213. opacity: .7;
  214. }
  215. }