lists.scss 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. /* 列表頁共用樣式 */
  2. .list-content {
  3. margin: 55px auto 100px;
  4. font-weight: 500;
  5. letter-spacing: .5px;
  6. @media (max-width: 575px) {
  7. margin: 50px auto;
  8. }
  9. }
  10. .list-headline {
  11. height: 25px;
  12. font-size: 24px;
  13. font-weight: 500;
  14. }
  15. .search-card {
  16. a {
  17. color: #EE7800;
  18. }
  19. .search-bar-keyword {
  20. font-size: 14px;
  21. p {
  22. @media (max-width: 575px) {
  23. min-width: 75px;
  24. margin-top: 3px;
  25. }
  26. }
  27. li {
  28. margin-right: 15px;
  29. @media (max-width: 575px) {
  30. margin: 3px 10px 3px 0;
  31. }
  32. }
  33. }
  34. .form-control {
  35. font-size: 0.875rem;
  36. border: 2px solid #EE7800;
  37. }
  38. .input-group-text {
  39. padding: 1rem 2rem;
  40. color: #fff;
  41. font-weight: 400;
  42. font-size: 0.875rem;
  43. text-align: center;
  44. background-color: #EE7800;
  45. border: 2px solid #EE7800;
  46. border-radius: 0 .25rem .25rem 0;
  47. }
  48. }
  49. .filter-list {
  50. .form-check {
  51. display: flex;
  52. align-items: center;
  53. }
  54. .form-check-label {
  55. margin-left: 10px;
  56. }
  57. .mt-masonry {
  58. margin-top: -2rem;
  59. @media (max-width: 767px) {
  60. margin-top: 0;
  61. }
  62. }
  63. .search-tab {
  64. margin: 10px;
  65. border-color: #dbdbdb;
  66. background-color: white;
  67. &:hover {
  68. color: #EE7800;
  69. border-color: #EE7800;
  70. }
  71. &.active {
  72. color: #EE7800;
  73. border-color: #EE7800;
  74. }
  75. }
  76. .play-img {
  77. width: 50px;
  78. position: absolute;
  79. top: 50%;
  80. left: 50%;
  81. transform: translate(-50%, -50%);
  82. }
  83. .dropdown-menu {
  84. padding: 0;
  85. min-width: 15rem;
  86. max-height: 300px;
  87. overflow-y: auto;
  88. li {
  89. padding: 0.75rem 1.25rem;
  90. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  91. input,
  92. label {
  93. cursor: pointer;
  94. }
  95. }
  96. }
  97. .search-btn-filter {
  98. button {
  99. border: none;
  100. background-color: white;
  101. &:hover {
  102. color: #EE7800;
  103. }
  104. &.active {
  105. color: #EE7800;
  106. }
  107. }
  108. }
  109. .search-tab-result {
  110. font-size: 14px;
  111. img {
  112. cursor: pointer;
  113. transition: all .3s;
  114. &:hover {
  115. opacity: .7;
  116. }
  117. }
  118. }
  119. .lists-card {
  120. height: 100%;
  121. .link {
  122. transition: all .3s;
  123. &:hover {
  124. opacity: .7;
  125. }
  126. }
  127. // &:hover {
  128. // .title,
  129. // .video-title {
  130. // opacity: .7;
  131. // }
  132. // }
  133. .person-img {
  134. width: 100%;
  135. height: 80px;
  136. max-width: 80px;
  137. background-size: cover;
  138. background-position: top;
  139. border-radius: 50%;
  140. box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.15);
  141. @media (max-width: 991px) {
  142. height: 70px;
  143. max-width: 70px;
  144. }
  145. @media (max-width: 767px) {
  146. height: 80px;
  147. max-width: 80px;
  148. }
  149. }
  150. .cover-img {
  151. width: 100%;
  152. height: 235px;
  153. object-fit: cover;
  154. @media (max-width: 991px) {
  155. height: 160px;
  156. }
  157. @media (max-width: 767px) {
  158. height: 235px;
  159. }
  160. }
  161. .video-cover-img {
  162. width: 100%;
  163. height: 225px;
  164. object-fit: cover;
  165. @media (max-width: 1400px) {
  166. height: 190px;
  167. }
  168. @media (max-width: 1200px) {
  169. height: 160px;
  170. }
  171. @media (max-width: 991px) {
  172. height: 115px;
  173. }
  174. @media (max-width: 767px) {
  175. height: 275px;
  176. }
  177. @media (max-width: 575px) {
  178. height: 48.5vw;
  179. }
  180. }
  181. .card-body {
  182. h5,
  183. h6,
  184. p,
  185. .video-title {
  186. line-height: 1.5;
  187. font-size: 1rem;
  188. // 換行
  189. -webkit-box-orient: vertical;
  190. overflow: hidden;
  191. text-overflow: ellipsis;
  192. display: -webkit-box;
  193. }
  194. h5 {
  195. -webkit-line-clamp: 1;
  196. }
  197. h6 {
  198. -webkit-line-clamp: 2;
  199. }
  200. p {
  201. font-weight: 400;
  202. }
  203. .video-title {
  204. font-weight: bold;
  205. color: #43484C;
  206. -webkit-line-clamp: 2;
  207. transition: all .3s;
  208. }
  209. .tags-container {
  210. span {
  211. display: inline-block;
  212. margin: 3px 6px 3px 0;
  213. padding: 4px 6px;
  214. border-radius: 3px;
  215. font-size: 0.75rem;
  216. color: #EE7800;
  217. border: 1px solid #EE7800;
  218. transition: all .3s;
  219. &:hover {
  220. opacity: .7;
  221. }
  222. }
  223. &.columns-tag {
  224. height: 30px;
  225. overflow: hidden;
  226. }
  227. }
  228. .title {
  229. font-weight: 500;
  230. transition: all .3s;
  231. }
  232. }
  233. }
  234. .category-btn {
  235. button {
  236. color: #212529;
  237. transition: all .3s;
  238. }
  239. .main {
  240. button {
  241. width: 18%;
  242. margin: .6em;
  243. padding: 1.25rem 0.5rem;
  244. font-weight: 400;
  245. border: 1px solid transparent;
  246. border-radius: 5px;
  247. background-color: #fff;
  248. box-shadow: 2px 3px 5px 2px #eee;
  249. @media (max-width: 1200px) {
  250. width: 22%;
  251. }
  252. @media (max-width: 767px) {
  253. margin: .45rem;
  254. }
  255. @media (max-width: 575px) {
  256. width: 25vw;
  257. font-size: 0.875rem;
  258. padding: 1rem 0.5rem;
  259. }
  260. }
  261. }
  262. .sub {
  263. display: none;
  264. margin: 2rem auto;
  265. padding: 1rem;
  266. border-radius: 5px;
  267. background-color: #F4F4F4;
  268. button {
  269. padding: .5rem 1rem;
  270. margin: .7rem;
  271. color: #727679;
  272. font-weight: 400;
  273. border-radius: 5px;
  274. border: 1px solid #E0E0E0;
  275. @media (max-width: 575px) {
  276. margin: .5rem;
  277. font-size: 0.875rem;
  278. }
  279. }
  280. }
  281. .main,
  282. .sub {
  283. button {
  284. &:hover,
  285. &.active {
  286. color: #EE751B;
  287. border: 1px solid #EE751B;
  288. }
  289. }
  290. }
  291. }
  292. .new-item {
  293. display: block;
  294. padding: 6px 8px;
  295. position: absolute;
  296. top: 0;
  297. right: 0;
  298. color: #fff;
  299. background: red;
  300. font-size: .75rem;
  301. }
  302. }
  303. #builderList {
  304. .card {
  305. h5 {
  306. font-size: 1.125rem;
  307. }
  308. h6 {
  309. -webkit-line-clamp: 1;
  310. }
  311. }
  312. }
  313. .date-item {
  314. color: #c3c3c3;
  315. font-size: 12px;
  316. ;
  317. }
  318. // AutoComplete
  319. .autocomplete-items {
  320. max-height: 282px;
  321. overflow-y: auto;
  322. position: absolute;
  323. border: 1px solid #d4d4d4;
  324. border-bottom: none;
  325. border-top: none;
  326. z-index: 99;
  327. top: 100%;
  328. left: 0;
  329. right: 0;
  330. div {
  331. padding: 15px;
  332. cursor: pointer;
  333. background-color: #fff;
  334. border-bottom: 1px solid #d4d4d4;
  335. &:hover {
  336. color: #fff;
  337. background-color: #EE7800;
  338. }
  339. }
  340. }
  341. .autocomplete-active {
  342. background-color: DodgerBlue !important;
  343. color: #ffffff;
  344. }