style.css 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. @charset "UTF-8";
  2. /* 共通樣式 */
  3. :root {
  4. --main-color: #000;
  5. --sub-color: #e47140;
  6. --gray-color: #727272;
  7. }
  8. * {
  9. letter-spacing: 1px;
  10. font-weight: 400;
  11. font-family: "Noto Sans TC", sans-serif !important;
  12. }
  13. p,
  14. li {
  15. line-height: 32px;
  16. }
  17. ul {
  18. list-style: none;
  19. }
  20. img {
  21. width: 100%;
  22. height: auto;
  23. }
  24. html,
  25. body {
  26. height: 100%;
  27. margin: 0;
  28. }
  29. body {
  30. display: flex;
  31. flex-direction: column;
  32. overflow-y: scroll;
  33. }
  34. .btn:focus,
  35. .form-control:focus {
  36. border-color: var(--main-color) !important;
  37. box-shadow: none !important;
  38. outline: 0 none !important;
  39. }
  40. .badge {
  41. font-weight: 400 !important;
  42. }
  43. .navbar {
  44. background-color: var(--main-color) !important;
  45. }
  46. .navbar .navbar-collapse {
  47. flex-grow: 0;
  48. }
  49. .navbar .navbar-brand {
  50. font-size: 50px;
  51. font-weight: 500;
  52. font-family: "Roboto Slab", serif !important;
  53. color: var(--sub-color);
  54. transition: all 0.3s;
  55. }
  56. @media (max-width: 575px) {
  57. .navbar .navbar-brand {
  58. padding-left: 1rem;
  59. font-size: 35px;
  60. }
  61. }
  62. .navbar .navbar-brand:hover {
  63. opacity: 0.9;
  64. color: var(--sub-color);
  65. }
  66. .blog-post-tags .badge {
  67. background-color: var(--main-color);
  68. }
  69. .blog-post-tags .badge:hover {
  70. color: var(--main-color);
  71. background-color: #fff;
  72. border: 1px solid var(--main-color);
  73. }
  74. .blog-post-title {
  75. margin: 10px 0 20px;
  76. }
  77. .blog-post-title a {
  78. font-size: 50px;
  79. font-weight: 600;
  80. }
  81. .pagination {
  82. justify-content: center;
  83. }
  84. .pagination .page-link {
  85. color: var(--main-color);
  86. }
  87. .pagination .page-item.active .page-link {
  88. z-index: 3;
  89. color: #fff;
  90. background-color: var(--main-color);
  91. border-color: var(--main-color);
  92. }
  93. .post-title a {
  94. color: #000;
  95. text-decoration: none;
  96. font-size: 22px;
  97. font-weight: 500;
  98. }
  99. .post-block-title {
  100. margin-bottom: 20px;
  101. position: relative;
  102. font-size: 22px;
  103. }
  104. .post-block-title::after {
  105. position: absolute;
  106. z-index: -10;
  107. top: 15px;
  108. left: 0;
  109. width: 100%;
  110. height: 0px;
  111. content: "";
  112. border-bottom: 1px solid #929292;
  113. bottom: 5px;
  114. }
  115. .post-block-title span {
  116. font-weight: 500;
  117. background: #fff;
  118. }
  119. .news-info {
  120. margin-top: 10px;
  121. line-height: 20px;
  122. }
  123. .news-info a {
  124. font-size: 14px;
  125. font-weight: 500;
  126. color: var(--gray-color);
  127. text-decoration: none;
  128. transition: all 0.3s;
  129. }
  130. .news-info a:hover {
  131. opacity: 0.8;
  132. }
  133. .news-info small {
  134. color: var(--gray-color);
  135. }
  136. .news-thumbnail {
  137. height: 100%;
  138. -o-object-fit: cover;
  139. object-fit: cover;
  140. }
  141. .line-clamp {
  142. max-width: 150px;
  143. display: -webkit-box;
  144. -webkit-line-clamp: 2;
  145. -webkit-box-orient: vertical;
  146. overflow: hidden;
  147. text-overflow: ellipsis;
  148. }
  149. .post-depiction {
  150. margin: 10px 0;
  151. display: -webkit-box;
  152. -webkit-line-clamp: 2;
  153. -webkit-box-orient: vertical;
  154. overflow: hidden;
  155. text-overflow: ellipsis;
  156. line-height: 26px;
  157. }
  158. .post-depiction a {
  159. color: #7a7a7a;
  160. text-decoration: none;
  161. }
  162. .top-btn {
  163. position: fixed;
  164. bottom: 15px;
  165. right: 15px;
  166. z-index: 10;
  167. opacity: 0;
  168. transition: all 0.5s;
  169. }
  170. .top-btn button {
  171. border: none;
  172. background: var(--sub-color);
  173. border-radius: 100px;
  174. width: 55px;
  175. height: 55px;
  176. }
  177. .show {
  178. opacity: 1;
  179. }
  180. .blog-header .nav-item {
  181. padding: 0 0.3rem;
  182. }
  183. @media (max-width: 575px) {
  184. .blog-header .nav-item {
  185. padding: 0 1rem;
  186. }
  187. }
  188. /* sidebar.html Start */
  189. .news-sidebar {
  190. position: sticky;
  191. top: 15px;
  192. }
  193. .news-sidebar .news-featured {
  194. position: unset;
  195. }
  196. .search-btn {
  197. border: 1px solid var(--main-color) !important;
  198. }
  199. .search-btn svg {
  200. color: var(--main-color);
  201. }
  202. .search-btn:hover {
  203. background-color: var(--main-color) !important;
  204. }
  205. .search-btn:hover svg {
  206. color: #fff;
  207. }
  208. .tags {
  209. margin: 0 5px 5px 0;
  210. padding: 7px 10px !important;
  211. font-size: 14px !important;
  212. font-weight: 400 !important;
  213. color: var(--main-color) !important;
  214. border: 1px solid var(--main-color) !important;
  215. }
  216. .tags:hover {
  217. color: #fff !important;
  218. background-color: var(--main-color);
  219. }
  220. /* sidebar.html End */
  221. /* single.html Start */
  222. .blog-post.content h4 {
  223. margin-top: 3rem;
  224. font-size: 1.25rem;
  225. font-weight: 500;
  226. line-height: 32px;
  227. }
  228. .blog-post.content h4 a {
  229. padding: 5px 8px;
  230. margin-right: 3px;
  231. border: 1px solid #000;
  232. border-radius: 5px;
  233. font-size: 14px;
  234. }
  235. .blog-post.content h4 a:hover {
  236. color: #fff !important;
  237. }
  238. .blog-post.content .back-link {
  239. color: #000;
  240. display: block;
  241. text-align: center;
  242. text-decoration: none;
  243. transition: all 0.3s;
  244. }
  245. .blog-post.content .back-link:hover {
  246. opacity: 0.7;
  247. }
  248. /* single.html End */
  249. /* content.html Start */
  250. .news-main {
  251. height: 100%;
  252. overflow: hidden;
  253. }
  254. .news-main .post-title a {
  255. font-size: 34px;
  256. }
  257. @media (max-width: 991px) {
  258. .news-main .post-title a {
  259. font-size: 22px;
  260. }
  261. }
  262. .news-main img {
  263. height: 100%;
  264. -o-object-fit: cover;
  265. object-fit: cover;
  266. }
  267. .news-main .news-info a {
  268. font-size: 16px;
  269. }
  270. /* content.html End */
  271. /* focus.html Start */
  272. .focus-content {
  273. position: sticky;
  274. top: 20px;
  275. }
  276. .focus-content img,
  277. .news-featured img {
  278. height: 175px;
  279. -o-object-fit: cover;
  280. object-fit: cover;
  281. }
  282. @media (max-width: 991px) {
  283. .focus-content img,
  284. .news-featured img {
  285. height: 50vw;
  286. }
  287. }
  288. .focus-content .post-title,
  289. .news-featured .post-title {
  290. overflow: hidden;
  291. text-overflow: ellipsis;
  292. display: -webkit-box;
  293. -webkit-line-clamp: 2;
  294. -webkit-box-orient: vertical;
  295. line-break: after-white-space;
  296. }
  297. /* focus.html End */
  298. /* recent.html Start */
  299. .recent-content .news-list {
  300. margin: 0;
  301. }
  302. .recent-content .news-list li {
  303. margin: 15px 0;
  304. }
  305. .recent-content .news-list li img {
  306. width: 140px;
  307. height: 105px;
  308. -o-object-fit: cover;
  309. object-fit: cover;
  310. }
  311. .recent-content .news-list li small {
  312. display: block;
  313. }
  314. .recent-content .news-list li .news-info {
  315. margin-top: 0px;
  316. }
  317. .recent-content .news-list li:last-child {
  318. margin: 0;
  319. }
  320. /* recent.html End */
  321. /* news-tab.html Start */
  322. .tab-category .nav-link {
  323. color: var(--main-color);
  324. font-weight: 500;
  325. }
  326. .tab-category .nav-pills .nav-link.active,
  327. .tab-category .nav-pills .show > .nav-link {
  328. color: var(--sub-color);
  329. background-color: var(--main-color);
  330. }
  331. .tab-content .bg-img {
  332. position: relative;
  333. height: 370px;
  334. background-blend-mode: multiply;
  335. background-size: cover;
  336. background-position: center center;
  337. cursor: pointer;
  338. }
  339. @media (max-width: 991px) {
  340. .tab-content .bg-img {
  341. height: 50vw;
  342. }
  343. }
  344. .tab-content .bg-img section {
  345. padding: 10px 25px;
  346. position: absolute;
  347. bottom: 0;
  348. color: #fff;
  349. }
  350. .tab-content .bg-img section a {
  351. color: #fff;
  352. text-decoration: none;
  353. }
  354. .tab-content .bg-img section small {
  355. font-size: 12px;
  356. }
  357. .tab-content .col-5 img {
  358. height: 150px;
  359. }
  360. /* news-tab.html End */
  361. /* news-all.html Start */
  362. .news-all .post-title {
  363. margin: 5px auto;
  364. }
  365. .news-all .post-title a {
  366. font-size: 36px;
  367. line-height: 1.5;
  368. display: -webkit-box;
  369. -webkit-line-clamp: 2; /* 限制最多兩行 */
  370. -webkit-box-orient: vertical;
  371. overflow: hidden;
  372. text-overflow: ellipsis;
  373. word-break: break-word;
  374. transition: all 0.3s;
  375. }
  376. @media (max-width: 575px) {
  377. .news-all .post-title a {
  378. font-size: 30px;
  379. }
  380. }
  381. .news-all .post-description a {
  382. color: #727272;
  383. text-decoration: none;
  384. transition: all 0.3s;
  385. }
  386. .news-all .post-description a:hover {
  387. opacity: 0.7;
  388. }
  389. .news-all .news-info a {
  390. font-size: 18px;
  391. }
  392. .news-all hr {
  393. margin: 1.5rem 0;
  394. }
  395. .news-all .first-img {
  396. height: 50vh;
  397. -o-object-fit: cover;
  398. object-fit: cover;
  399. }
  400. @media (max-width: 991px) {
  401. .news-all .first-img {
  402. height: 50vw;
  403. }
  404. }
  405. .news-all .line {
  406. padding: 0 12px;
  407. }
  408. .news-all .cover-img {
  409. width: 100%;
  410. height: 220px;
  411. -o-object-fit: cover;
  412. object-fit: cover;
  413. }
  414. @media (max-width: 575px) {
  415. .news-all .cover-img {
  416. height: 50vw;
  417. }
  418. }
  419. /* news-all.html End */
  420. /* news-featured.html Start */
  421. .news-featured {
  422. position: sticky;
  423. top: 20px;
  424. }
  425. /* news-featured.html End *//*# sourceMappingURL=style.css.map */