style.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752
  1. /* CSS Reset */
  2. html,
  3. body,
  4. div,
  5. span,
  6. h1,
  7. h2,
  8. h3,
  9. h4,
  10. h5,
  11. h6,
  12. p,
  13. a,
  14. img,
  15. ul,
  16. ol,
  17. li,
  18. form,
  19. label,
  20. fieldset,
  21. legend {
  22. margin: 0;
  23. padding: 0;
  24. border: 0;
  25. font-size: 100%;
  26. vertical-align: baseline;
  27. box-sizing: border-box;
  28. }
  29. /* Additional Resets */
  30. body {
  31. line-height: 1;
  32. }
  33. ol,
  34. ul {
  35. list-style: none;
  36. }
  37. img {
  38. max-width: 100%;
  39. height: auto;
  40. }
  41. a {
  42. text-decoration: none;
  43. color: inherit;
  44. }
  45. /* CSS Reset End */
  46. :root {
  47. --main-color: #C39F68;
  48. --sub-color: #E9F1F4;
  49. --gray: #888888;
  50. --brown: #3E3A39;
  51. --blue: #A7C1CC;
  52. --purple: #BCA2B5;
  53. --yellow: #E4B662;
  54. }
  55. * {
  56. font-family: "Noto Sans TC", sans-serif;
  57. }
  58. html {
  59. scroll-behavior: smooth;
  60. }
  61. h2 {
  62. font-weight: 500;
  63. }
  64. input:focus-visible {
  65. outline: 2px solid var(--sub-color);
  66. }
  67. .v-enter-active,
  68. .v-leave-active {
  69. transition: opacity 0.5s ease;
  70. }
  71. .v-enter-from,
  72. .v-leave-to {
  73. opacity: 0;
  74. }
  75. .v-label {
  76. width: 100%;
  77. opacity: 1 !important;
  78. }
  79. .v-label .v-input {
  80. width: 100%;
  81. }
  82. .mark {
  83. display: inline-block;
  84. margin-left: 1px;
  85. color: red;
  86. }
  87. @media (min-width: 1920px) {
  88. .v-container {
  89. max-width: 1300px !important;
  90. }
  91. }
  92. @media (max-width: 1300px) {
  93. .v-container {
  94. padding: 15px 30px !important;
  95. }
  96. }
  97. .search {
  98. display: flex;
  99. flex-direction: column;
  100. align-items: flex-end;
  101. justify-content: end;
  102. position: relative;
  103. }
  104. .search span {
  105. position: relative;
  106. }
  107. @media (max-width: 600px) {
  108. .search span {
  109. margin: auto;
  110. }
  111. }
  112. .search input {
  113. max-width: 250px;
  114. padding: 5px 15px;
  115. font-size: 16px;
  116. border-radius: 100px;
  117. border: 1px solid #ccc;
  118. background-color: #fff;
  119. }
  120. .search button {
  121. position: absolute;
  122. right: 10px;
  123. left: 0;
  124. top: 3px;
  125. }
  126. .search button img {
  127. width: 25px;
  128. position: absolute;
  129. top: 5px;
  130. right: 0;
  131. }
  132. .search .error {
  133. position: absolute;
  134. right: 30px;
  135. bottom: -30px;
  136. font-size: 14px;
  137. }
  138. .college-bg-img {
  139. width: 100vw;
  140. height: 100%;
  141. background-image: url("@/assets/img/college-group/background.png");
  142. background-position: center;
  143. background-size: contain;
  144. background-repeat: repeat;
  145. }
  146. .college-banner {
  147. margin-top: 25px;
  148. display: flex;
  149. justify-content: center;
  150. position: relative;
  151. right: 0;
  152. left: 0;
  153. z-index: 1;
  154. }
  155. .college-banner img {
  156. width: 100%;
  157. }
  158. @media (max-width: 475px) {
  159. .college-banner img {
  160. height: 300px;
  161. -o-object-fit: cover;
  162. object-fit: cover;
  163. -o-object-position: left;
  164. object-position: left;
  165. border-radius: 10px 10px 0 0;
  166. }
  167. }
  168. .college-banner .description-item {
  169. position: absolute;
  170. right: 15px;
  171. bottom: 28%;
  172. z-index: 1000;
  173. }
  174. @media (max-width: 1280px) {
  175. .college-banner .description-item {
  176. bottom: 35%;
  177. }
  178. }
  179. @media (max-width: 960px) {
  180. .college-banner .description-item {
  181. bottom: 30%;
  182. }
  183. }
  184. @media (max-width: 600px) {
  185. .college-banner .description-item {
  186. bottom: 25%;
  187. }
  188. }
  189. .college-banner .description-item h1 {
  190. text-align: end;
  191. margin-bottom: 35px;
  192. font-size: 40px;
  193. font-weight: 500;
  194. text-shadow: 2px 2px 10px #333;
  195. word-wrap: break-word;
  196. }
  197. @media (max-width: 1280px) {
  198. .college-banner .description-item h1 {
  199. margin-bottom: 20px;
  200. font-size: 36px;
  201. }
  202. }
  203. @media (max-width: 960px) {
  204. .college-banner .description-item h1 {
  205. font-size: 32px;
  206. }
  207. }
  208. @media (max-width: 600px) {
  209. .college-banner .description-item h1 {
  210. font-size: 24px;
  211. margin-bottom: 15px;
  212. }
  213. }
  214. .college-banner .description-item p {
  215. width: 515px;
  216. font-size: 18px;
  217. line-height: 30px;
  218. text-shadow: 2px 2px 4px #333;
  219. }
  220. @media (max-width: 1280px) {
  221. .college-banner .description-item p {
  222. font-size: 16px;
  223. }
  224. }
  225. @media (max-width: 600px) {
  226. .college-banner .description-item p {
  227. width: 270px;
  228. font-size: 16px;
  229. line-height: 22px;
  230. }
  231. }
  232. @media (max-width: 600px) {
  233. .college-banner .description-item p {
  234. font-size: 14px;
  235. }
  236. }
  237. .college-banner .description-item h1,
  238. .college-banner .description-item p {
  239. color: #fff;
  240. letter-spacing: 1px;
  241. }
  242. .cooming-soon {
  243. font-size: 20px;
  244. color: var(--gray);
  245. letter-spacing: 1px;
  246. }
  247. .college-content {
  248. padding: 0;
  249. width: 1300px !important;
  250. position: relative;
  251. }
  252. @media (max-width: 600px) {
  253. .college-content {
  254. width: 85%;
  255. }
  256. }
  257. .college-content .main-block {
  258. padding: 150px 80px;
  259. margin-top: -21%;
  260. background-image: url("@/assets/img/course/background.png");
  261. background-size: cover;
  262. position: relative;
  263. left: 0;
  264. right: 0;
  265. z-index: 10;
  266. }
  267. @media (max-width: 960px) {
  268. .college-content .main-block {
  269. padding: 100px 50px;
  270. margin-top: -22%;
  271. background-position: 0 1vw;
  272. }
  273. }
  274. @media (max-width: 600px) {
  275. .college-content .main-block {
  276. padding: 50px 20px;
  277. margin-top: -24%;
  278. }
  279. }
  280. .college-content .main-block .title {
  281. padding: 80px 0;
  282. font-size: 30px;
  283. line-height: 32px;
  284. letter-spacing: 1px;
  285. }
  286. @media (max-width: 960px) {
  287. .college-content .main-block .title {
  288. padding: 50px 0;
  289. font-size: 24px;
  290. }
  291. }
  292. @media (max-width: 600px) {
  293. .college-content .main-block .title {
  294. margin-left: 0;
  295. }
  296. }
  297. .college-content .main-block .v-breadcrumbs {
  298. position: relative;
  299. z-index: 100;
  300. justify-content: flex-start;
  301. }
  302. @media (max-width: 600px) {
  303. .college-content .main-block .v-breadcrumbs {
  304. justify-content: center;
  305. }
  306. }
  307. .tab-btn button {
  308. height: 45px !important;
  309. font-size: 28px;
  310. font-weight: 500;
  311. color: #ccc;
  312. }
  313. .tab-btn button.active {
  314. color: #000;
  315. }
  316. .main-card {
  317. height: 100%;
  318. letter-spacing: 1px;
  319. border-radius: 10px;
  320. box-shadow: 2px 2px 10px #aaaaaa;
  321. background-color: var(--sub-color);
  322. }
  323. .main-card .card-title {
  324. height: 15%;
  325. padding: 15px;
  326. display: flex;
  327. justify-content: center;
  328. align-items: center;
  329. border-bottom: 2px solid #fff;
  330. }
  331. .main-card .card-title h3 {
  332. font-size: 16px;
  333. font-weight: 400;
  334. text-align: center;
  335. }
  336. .main-card .card-title h3,
  337. .main-card .card-info p {
  338. line-height: 24px;
  339. overflow: hidden;
  340. text-overflow: ellipsis;
  341. display: -webkit-box;
  342. -webkit-box-orient: vertical;
  343. line-break: after-white-space;
  344. }
  345. .main-card .card-title h3 {
  346. -webkit-line-clamp: 2;
  347. }
  348. .main-card .card-info p {
  349. -webkit-line-clamp: 3;
  350. }
  351. .main-card .card-info {
  352. height: 85%;
  353. padding: 15px;
  354. display: flex;
  355. flex-direction: column;
  356. position: relative;
  357. }
  358. .main-card .card-info .cover-img {
  359. transition: all 0.5s;
  360. }
  361. .main-card .card-info .cover-img:hover {
  362. transform: scale(1.1);
  363. }
  364. .main-card .card-info ul {
  365. height: 100%;
  366. display: flex;
  367. flex-direction: column;
  368. padding: 10px;
  369. }
  370. .main-card .card-info span {
  371. height: 60px;
  372. }
  373. .main-card .card-info span p {
  374. line-height: 20px;
  375. }
  376. .dot-item span {
  377. position: absolute;
  378. display: block;
  379. width: 15px;
  380. height: 15px;
  381. border-radius: 100px;
  382. background-color: var(--blue);
  383. }
  384. .dot-item .t-dot {
  385. top: 15px;
  386. left: 15px;
  387. }
  388. .dot-item .r-dot {
  389. top: 15px;
  390. right: 15px;
  391. }
  392. .dot-item .b-dot {
  393. bottom: 15px;
  394. right: 15px;
  395. }
  396. .dot-item .l-dot {
  397. bottom: 15px;
  398. left: 15px;
  399. }
  400. .hint-item {
  401. width: 100%;
  402. max-width: 500px;
  403. display: block;
  404. padding: 20px;
  405. margin: 30px auto 0;
  406. border-radius: 10px;
  407. box-shadow: 2px 2px 8px #ccc;
  408. border: 1px solid var(--purple);
  409. letter-spacing: 2px;
  410. text-align: center;
  411. line-height: 26px;
  412. transition: all 0.3s;
  413. }
  414. .hint-item:hover {
  415. box-shadow: 2px 2px 12px #bcbcbc;
  416. }
  417. .favorites-btn {
  418. position: absolute;
  419. bottom: 15px;
  420. right: 15px;
  421. }
  422. .progress-item {
  423. position: fixed;
  424. top: 50%;
  425. left: 50%;
  426. transform: translate(-50%, -50%);
  427. z-index: 1000;
  428. }
  429. @media (max-width: 960px) {
  430. .tag-btn {
  431. margin: auto !important;
  432. max-width: 300px;
  433. flex-direction: column;
  434. }
  435. }
  436. .tag-btn .item {
  437. display: flex;
  438. align-items: center;
  439. justify-content: center;
  440. color: var(--purple);
  441. border: 1px solid var(--purple);
  442. border-radius: 20px;
  443. text-align: center;
  444. transition: all 0.3s;
  445. }
  446. .tag-btn .item:hover {
  447. color: #fff;
  448. border-color: var(--purple);
  449. background-color: var(--purple);
  450. }
  451. .tag-btn .item a {
  452. width: 100%;
  453. display: block;
  454. line-height: 24px;
  455. letter-spacing: 1px;
  456. }
  457. .hint {
  458. font-size: 14px;
  459. color: #919191;
  460. letter-spacing: 1px;
  461. }
  462. .total-item {
  463. margin-top: 15px;
  464. display: block;
  465. font-size: 14px;
  466. letter-spacing: 2px;
  467. text-align: center;
  468. }
  469. .filter-list .v-select {
  470. margin-bottom: 10px;
  471. }
  472. .filter-list .v-select .v-field {
  473. overflow: hidden;
  474. }
  475. .filter-list .v-select .v-field__overlay {
  476. opacity: 1 !important;
  477. border: 1px solid #ccc;
  478. background-color: #fff;
  479. border-radius: 100px !important;
  480. }
  481. .filter-list .v-select .v-field__outline {
  482. display: none;
  483. }
  484. .filter-list .v-select .v-field__input {
  485. padding-top: 15px;
  486. }
  487. .filter-list .v-select .v-field__field {
  488. height: 45px;
  489. }
  490. .filter-list .v-select .v-select__selection {
  491. overflow: hidden;
  492. }
  493. .filter-list .v-select .v-select__selection-text {
  494. white-space: nowrap;
  495. }
  496. .filter-list .v-select .v-label.v-field-label--floating {
  497. top: 3px !important;
  498. }
  499. .trave-content .info,
  500. .hope-content .info {
  501. position: relative;
  502. }
  503. .trave-content .info a,
  504. .hope-content .info a {
  505. position: relative;
  506. }
  507. .trave-content .info section,
  508. .hope-content .info section {
  509. margin: auto;
  510. position: absolute;
  511. bottom: 15px;
  512. right: 0;
  513. left: 0;
  514. }
  515. .trave-content .info section,
  516. .hope-content .info section,
  517. .exhibit-content .info section {
  518. width: 90%;
  519. justify-content: center;
  520. }
  521. .trave-content .info h3,
  522. .trave-content .info p,
  523. .hope-content .info h3,
  524. .hope-content .info p,
  525. .exhibit-content .info h3,
  526. .exhibit-content .info p {
  527. line-height: 20px;
  528. overflow: hidden;
  529. text-overflow: ellipsis;
  530. display: -webkit-box;
  531. -webkit-box-orient: vertical;
  532. line-break: after-white-space;
  533. }
  534. .trave-content .info h3,
  535. .hope-content .info h3,
  536. .exhibit-content .info h3 {
  537. -webkit-line-clamp: 1;
  538. }
  539. .trave-content .info p,
  540. .hope-content .info p,
  541. .exhibit-content .info p {
  542. max-width: 220px;
  543. margin-top: 5px;
  544. -webkit-line-clamp: 2;
  545. }
  546. .trave-content h4,
  547. .hope-content h4,
  548. .exhibit-content h4,
  549. .campus-content h4 {
  550. margin-bottom: 20px;
  551. font-weight: 400;
  552. font-size: 20px;
  553. letter-spacing: 1px;
  554. line-height: 32px;
  555. }
  556. .trave-content p,
  557. .hope-content p,
  558. .exhibit-content p,
  559. .campus-content p {
  560. line-height: 28px;
  561. letter-spacing: 1px;
  562. }
  563. .trave-content .info section,
  564. .hope-content .info section,
  565. .exhibit-content .info section,
  566. .campus-content .info section {
  567. display: flex;
  568. flex-direction: column;
  569. align-items: center;
  570. padding: 10px;
  571. border-radius: 5px;
  572. background: rgba(218, 182, 214, 0.8);
  573. }
  574. .trave-content .info section h3,
  575. .hope-content .info section h3,
  576. .exhibit-content .info section h3,
  577. .campus-content .info section h3 {
  578. margin: 5px;
  579. font-weight: 400;
  580. line-height: 22px;
  581. letter-spacing: 1px;
  582. }
  583. .trave-content .info section p,
  584. .hope-content .info section p,
  585. .exhibit-content .info section p,
  586. .campus-content .info section p {
  587. font-size: 12px;
  588. }
  589. .link-btn {
  590. margin-top: auto;
  591. margin-left: auto;
  592. display: inline-block;
  593. padding: 8px 20px;
  594. border-radius: 100px;
  595. line-height: 24px;
  596. text-align: center;
  597. color: #fff;
  598. background-color: var(--brown);
  599. border: 2px solid transparent;
  600. transition: all 0.5s;
  601. }
  602. .link-btn:hover {
  603. color: var(--brown);
  604. border: 2px solid var(--brown);
  605. background-color: #fff;
  606. }
  607. .download-link {
  608. display: flex;
  609. align-items: center;
  610. padding: 10px 20px;
  611. font-size: 14px;
  612. letter-spacing: 1px;
  613. color: #fff;
  614. border-radius: 100px;
  615. background-color: var(--brown);
  616. transition: all 0.3s;
  617. }
  618. .download-link:hover {
  619. opacity: 0.8;
  620. }
  621. .main-table {
  622. overflow-x: auto;
  623. }
  624. .main-table .table-title {
  625. padding: 10px;
  626. color: #fff;
  627. font-size: 20px;
  628. font-weight: 400;
  629. text-align: center;
  630. }
  631. @media (max-width: 1280px) {
  632. .main-table .table-title {
  633. width: 800px;
  634. }
  635. }
  636. .main-table table {
  637. width: 100%;
  638. margin-bottom: 20px;
  639. position: relative;
  640. border-collapse: collapse;
  641. }
  642. @media (max-width: 1280px) {
  643. .main-table table {
  644. width: 800px;
  645. }
  646. }
  647. .main-table table thead th {
  648. padding: 20px 0;
  649. font-weight: 500;
  650. }
  651. .main-table table tbody td {
  652. padding: 20px 0;
  653. text-align: center;
  654. letter-spacing: 1px;
  655. }
  656. .v-chip {
  657. letter-spacing: 1px;
  658. }
  659. .v-pagination {
  660. margin: auto;
  661. max-width: 500px;
  662. }
  663. ::-webkit-scrollbar {
  664. width: 10px;
  665. }
  666. ::-webkit-scrollbar-track {
  667. background: #f1f1f1;
  668. border-radius: 10px;
  669. }
  670. ::-webkit-scrollbar-thumb {
  671. background: #b6b6b6;
  672. border-radius: 10px;
  673. }
  674. ::-webkit-scrollbar-thumb:hover {
  675. background: #777777;
  676. }
  677. .dp__input {
  678. padding: 15px 40px;
  679. background-color: #f5f5f5;
  680. }
  681. .dp__action_row {
  682. width: 100%;
  683. }
  684. .dp__calendar_item {
  685. padding: 5px;
  686. }
  687. .dp__calendar_header_item {
  688. font-size: 14px;
  689. }
  690. .dp__action_button {
  691. height: auto;
  692. display: flex;
  693. align-items: center;
  694. padding: 10px !important;
  695. margin: 0 5px;
  696. font-size: 14px;
  697. letter-spacing: 1px;
  698. }
  699. .v-breadcrumbs-item--link {
  700. transition: all 0.3s;
  701. }
  702. .v-breadcrumbs-item--link:hover {
  703. opacity: 0.7;
  704. text-decoration: none !important;
  705. }/*# sourceMappingURL=style.css.map */