style.scss 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. $desktop: 1025px;
  7. $table: 1024px;
  8. $moblie: 767px;
  9. $navbgcolor: #313131;
  10. .container-fluid {
  11. width: 80vw;
  12. margin: 0 auto;
  13. @media screen and(max-width:$moblie) {
  14. width: 100vw;
  15. }
  16. }
  17. body {
  18. background: #fff;
  19. .learn-more {
  20. color: #fff;
  21. width: 30%;
  22. height: 50px;
  23. margin: 10px 0px;
  24. font-size: 16px;
  25. border-radius: 0%;
  26. border: none;
  27. font-weight: 900;
  28. background: #93000a;
  29. vertical-align: top;
  30. transition: 0.3s;
  31. &:hover{
  32. color:#93000a;
  33. background: #fff;
  34. border:1px solid #93000a;
  35. }
  36. }
  37. }
  38. // 主選單
  39. #Navigation {
  40. width: 100vw;
  41. background-color: #000;
  42. color: #fff;
  43. position: fixed;
  44. z-index: 20;
  45. #logo {
  46. padding-top: 1.3vw;
  47. @media screen and(max-width:$moblie) {
  48. padding-top: 0;
  49. }
  50. img {
  51. width: 180px;
  52. @media screen and(max-width:$moblie) {
  53. width: 150px;
  54. }
  55. }
  56. }
  57. #link {
  58. padding: 4vw 1vw 2vw 1vw;
  59. @media screen and(max-width:$moblie) {
  60. display: none;
  61. }
  62. }
  63. a {
  64. text-decoration: none;
  65. color: #fff;
  66. letter-spacing: 1px;
  67. font-size: 0.9rem;
  68. font-weight: 600;
  69. cursor: pointer;
  70. padding: 15px;
  71. position: relative;
  72. :hover {
  73. opacity: 0.8;
  74. }
  75. &:after {
  76. content: "";
  77. display: block;
  78. width: 80%;
  79. height: 3px;
  80. background-color: #fff;
  81. position: absolute;
  82. left: 12%;
  83. bottom: 0;
  84. transition: all 0.3s;
  85. opacity: 0;
  86. }
  87. &:hover:after {
  88. width: 80%;
  89. opacity: 1;
  90. }
  91. @media screen and(max-width:$table) {
  92. padding: 5px;
  93. padding-top: 2vw;
  94. }
  95. }
  96. #menu-btn1 {
  97. position: absolute;
  98. right: 1vw;
  99. top: 5vw;
  100. width: 15vw;
  101. z-index: 6;
  102. @media screen and(min-width:$desktop) {
  103. display: none;
  104. }
  105. @media screen and(min-width:768px) {
  106. display: none;
  107. }
  108. }
  109. }
  110. // 行動版彈跳式選單
  111. #menu-box {
  112. width: 40vw;
  113. right: 0px;
  114. position: fixed;
  115. z-index: 20;
  116. overflow: hidden;
  117. @media screen and(min-width:$desktop) {
  118. display: none;
  119. }
  120. hr {
  121. margin: 5px auto !important;
  122. width: 25vw;
  123. background: #fff;
  124. opacity: 1 !important;
  125. }
  126. #menu-box2 {
  127. padding-bottom: 5vw;
  128. position: relative;
  129. width: 40vw;
  130. background-color: $navbgcolor;
  131. z-index: 7;
  132. text-align: center;
  133. @media screen and(max-width:$moblie) {
  134. }
  135. @media screen and(max-width:350px) {
  136. }
  137. .close {
  138. padding: 30px 15px 15px 15px;
  139. }
  140. a {
  141. display: inline-block;
  142. text-decoration: none;
  143. color: #fff;
  144. font-size: 14px;
  145. font-weight: 900;
  146. text-align: center;
  147. padding: 0 !important;
  148. }
  149. }
  150. }
  151. // banner
  152. #banner {
  153. width: 100vw;
  154. display: inline-block;
  155. background: linear-gradient(115deg, #313131 38%, transparent 30%, #707070 27%);
  156. background-blend-mode: overlay;
  157. @media screen and(max-width:$moblie) {
  158. background: linear-gradient(115deg, #414141 100%, transparent 30%, #707070 0%);
  159. }
  160. #banner-container {
  161. width: 80vw;
  162. margin: 50px auto;
  163. padding-bottom: 5vw;
  164. @media screen and(max-width:$moblie) {
  165. width: 100vw;
  166. margin: 0;
  167. padding-bottom: 15vw;
  168. }
  169. .youtube {
  170. width: 80vw;
  171. padding-top: 10vw;
  172. margin: 0 auto;
  173. color: #fff;
  174. @media screen and(max-width:$moblie) {
  175. padding-top: 30vw;
  176. }
  177. #youtube-text{
  178. height: 500px;
  179. }
  180. hr {
  181. width: 12vw;
  182. height: 2px;
  183. color: #fff;
  184. margin: 20px 0px;
  185. opacity: 1 !important;
  186. @media screen and(max-width:$moblie) {
  187. width: 30vw;
  188. }
  189. }
  190. p{
  191. font-size: 18px;
  192. }
  193. h1{
  194. font-size: 35px;
  195. padding-top: 0;
  196. @media screen and(max-width:$moblie) {
  197. font-size: 25px;
  198. padding: 15px 0px;
  199. }
  200. }
  201. .learn-more{
  202. @media screen and(max-width:$moblie) {
  203. width: 100%;
  204. margin: 10px 0px;
  205. }
  206. }
  207. }
  208. h1 {
  209. padding-top: 3vw;
  210. text-align: center;
  211. color: #fff;
  212. @media screen and(max-width:$moblie) {
  213. font-size: 20px;
  214. padding: 15px;
  215. }
  216. }
  217. #email {
  218. width: 75%;
  219. font-size: 16px;
  220. margin: 10px 0px;
  221. padding: 10px 15px;
  222. border: none;
  223. height: 50px;
  224. @media screen and(max-width:$moblie) {
  225. display: none;
  226. }
  227. }
  228. // 手機板訂閱email
  229. #email-moblie {
  230. margin: 10px auto;
  231. width: 75%;
  232. padding: 10px 15px;
  233. border: none;
  234. height: 50px;
  235. background: url(./img/email.png) 5% 50% no-repeat scroll transparent;
  236. background-size: 20px 15px;
  237. background-color: #fff;
  238. text-align: center;
  239. color: #313131;
  240. font-weight: 900;
  241. @media screen and(min-width:$desktop) {
  242. display: none;
  243. }
  244. }
  245. // 電腦版按鈕
  246. .btn {
  247. color: #fff;
  248. width: 25%;
  249. height: 50px;
  250. margin: 10px 0px;
  251. font-size: 16px;
  252. border-radius: 0%;
  253. border: none;
  254. font-weight: 900;
  255. background: #93000a;
  256. vertical-align: top;
  257. transition: 0.3s;
  258. @media screen and(max-width:$moblie) {
  259. display: none;
  260. }
  261. &:hover {
  262. font-size: 17px;
  263. }
  264. }
  265. // 手機板按鈕
  266. #email-arrow {
  267. width: 15%;
  268. background: url(./img/button-arrow.png) 55% 50% no-repeat scroll transparent;
  269. background-size: 10px 15px;
  270. background-color: #93000a;
  271. height: 50px;
  272. margin: 10px auto;
  273. font-size: 16px;
  274. border-radius: 0%;
  275. border: none;
  276. font-weight: 900;
  277. vertical-align: top;
  278. @media screen and(min-width:$desktop) {
  279. display: none;
  280. }
  281. }
  282. }
  283. }
  284. // sec01 NEWS
  285. #sec01 {
  286. padding-top: 5vw;
  287. padding-bottom: 5vw;
  288. .NEWS {
  289. width: 80vw;
  290. margin: 0 auto;
  291. margin-top: -130px;
  292. margin-bottom: 100px;
  293. @media screen and(max-width:$moblie) {
  294. margin-top: -70px;
  295. width: 90vw;
  296. }
  297. h1 {
  298. padding: 0;
  299. margin: 0;
  300. font-weight: 900;
  301. color: #fff;
  302. letter-spacing: 3px;
  303. font-size: 60px;
  304. @media screen and(max-width:$moblie) {
  305. font-size: 50px;
  306. }
  307. }
  308. }
  309. #sec01-container {
  310. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  311. margin: 0 auto !important;
  312. @media screen and(max-width:$moblie) {
  313. width: 90vw;
  314. margin: 0 auto;
  315. }
  316. #sec01-container-card {
  317. .card {
  318. padding: 30px;
  319. border: none !important;
  320. @media screen and(max-width:$moblie) {
  321. padding: 15px;
  322. }
  323. h1 {
  324. padding: 15px;
  325. font-size: 40px;
  326. font-weight: 900;
  327. color: #9b9b9b;
  328. }
  329. p {
  330. padding: 5px;
  331. font-size: 18px;
  332. margin-bottom: 0 !important;
  333. @media screen and(max-width:$moblie) {
  334. padding: 0px;
  335. font-size: 16px;
  336. }
  337. }
  338. .sec01-title {
  339. padding: 15px 0px;
  340. font-weight: 900;
  341. font-size: 22px;
  342. @media screen and(max-width:$moblie) {
  343. font-size: 18px;
  344. }
  345. }
  346. a {
  347. text-decoration: none;
  348. color: #000;
  349. transition: 0.3s;
  350. cursor: pointer;
  351. &:hover {
  352. color: #2828ff;
  353. }
  354. }
  355. img {
  356. text-align: center;
  357. width: 38vw;
  358. height: 240px;
  359. object-fit: cover;
  360. @media screen and(max-width:$moblie) {
  361. width: 85vw;
  362. height: 200px;
  363. margin: 0 auto;
  364. }
  365. }
  366. }
  367. }
  368. }
  369. }
  370. // sec02 TOP排名 電腦版
  371. #sec02 {
  372. background: #414141;
  373. padding-top: 3vw;
  374. @media screen and(max-width:$moblie) {
  375. display: none;
  376. }
  377. #sec02-container {
  378. width: 90vw;
  379. padding: 15px;
  380. font-weight: 900;
  381. color: #fff;
  382. position: relative;
  383. // 電腦版top圖片排行
  384. #sec02-top-box {
  385. position: relative;
  386. #sec02-content {
  387. position: absolute;
  388. top: 10px;
  389. left: 300px;
  390. }
  391. .sec02-box1 {
  392. color: #000;
  393. width: 13vw;
  394. img {
  395. border-radius: 50%;
  396. width: 150px;
  397. height: 200px;
  398. object-fit: cover;
  399. }
  400. .sec02-top-text {
  401. span {
  402. font-size: 30px;
  403. }
  404. }
  405. }
  406. }
  407. }
  408. }
  409. // sec02 top排名手機板
  410. #sec02-moblie {
  411. background: #414141;
  412. padding-top: 3vw;
  413. padding-bottom: 20vw;
  414. @media screen and(min-width:$desktop) {
  415. display: none;
  416. }
  417. #sec02-container {
  418. padding: 15px;
  419. font-weight: 900;
  420. color: #fff;
  421. text-align: right;
  422. .sec02-top1-box {
  423. img {
  424. width: 80px;
  425. }
  426. span {
  427. font-size: 30px;
  428. }
  429. .sec02-top-text {
  430. text-align: center;
  431. }
  432. }
  433. #sec02-content {
  434. position: relative;
  435. }
  436. #sec02-top-box {
  437. position: absolute;
  438. top: 1px;
  439. left:20px;
  440. @media screen and(max-width:350px) {
  441. left:10px;
  442. }
  443. .sec02-box1 {
  444. color: #000;
  445. #top1{
  446. width: 120px;
  447. height: 150px;
  448. @media screen and(max-width:350px) {
  449. width: 100px;
  450. height: 130px;
  451. }
  452. }
  453. img {
  454. width: 80px;
  455. height: 120px;
  456. border-radius: 50%;
  457. @media screen and(max-width:350px) {
  458. width: 70px;
  459. height: 100px;
  460. }
  461. }
  462. .sec02-top-text {
  463. font-size: 12px;
  464. text-align: left;
  465. @media screen and(max-width:350px) {
  466. }
  467. span {
  468. font-size: 30px;
  469. @media screen and(max-width:350px) {
  470. font-size: 25px;
  471. }
  472. }
  473. }
  474. }
  475. }
  476. }
  477. }
  478. // sec03 排名table-電腦版
  479. #sec03 {
  480. padding-top: 15vw;
  481. padding-bottom: 5vw;
  482. @media screen and(max-width:$moblie) {
  483. display: none;
  484. }
  485. #sec03-table {
  486. .sec03-table-title {
  487. font-family: 微軟正黑體;
  488. font-weight: 900;
  489. padding: 15px;
  490. font-size: 35px;
  491. }
  492. .table {
  493. th {
  494. font-size: 40px;
  495. display: table-cell;
  496. vertical-align: middle;
  497. }
  498. td {
  499. padding: 15px;
  500. }
  501. img {
  502. width: 50px;
  503. }
  504. .sec03-table-text {
  505. padding: 10px;
  506. display: table-cell;
  507. vertical-align: middle;
  508. h1 {
  509. font-size: 20px;
  510. margin: 0;
  511. }
  512. p {
  513. margin: 0;
  514. }
  515. }
  516. }
  517. }
  518. }
  519. // sec03排名table-手機板
  520. #sec03-moblie {
  521. padding-top: 40vw;
  522. position: relative;
  523. .arrow-table {
  524. position: fixed;
  525. width: 25px;
  526. right: 15px;
  527. bottom: 250px;
  528. z-index: 6;
  529. @media screen and(max-width:350px) {
  530. right: 10px;
  531. bottom: 200px;
  532. }
  533. }
  534. .sec03-table-title,.sec03-table-title2 {
  535. font-family: 微軟正黑體;
  536. font-weight: 900;
  537. font-size: 14px;
  538. display: inline-block;
  539. color:#9B9B9B;
  540. }
  541. .contant-toggle{
  542. display: inline-block;
  543. color:#000;
  544. padding-bottom: 10px;
  545. border-bottom: 2px solid #000;
  546. }
  547. #sec03-slider {
  548. padding-top: 5vw;
  549. .slick-slide img {
  550. display: inline;
  551. }
  552. #sec03-slider1,
  553. #sec03-slider2 {
  554. margin: 0 5px;
  555. @media screen and(max-width:350px) {
  556. margin: 0 5px;
  557. }
  558. }
  559. .table {
  560. th {
  561. font-size: 40px;
  562. display: table-cell;
  563. vertical-align: middle;
  564. padding: 15px;
  565. @media screen and(max-width:350px) {
  566. font-size: 30px;
  567. }
  568. }
  569. td {
  570. display: table-cell;
  571. vertical-align: middle;
  572. padding: 15px;
  573. padding: 10px;
  574. @media screen and(max-width:350px) {
  575. padding: 0px;
  576. }
  577. }
  578. img {
  579. width: 50px;
  580. }
  581. .sec03-table-text {
  582. padding: 0px 0px 0px 3px;
  583. display: table-cell;
  584. vertical-align: middle;
  585. @media screen and(max-width:350px) {
  586. padding: 0px;
  587. }
  588. h1 {
  589. font-size: 14px;
  590. margin: 0;
  591. }
  592. p {
  593. margin: 0;
  594. font-size: 12px;
  595. }
  596. }
  597. }
  598. }
  599. @media screen and(min-width:$desktop) {
  600. display: none;
  601. }
  602. }
  603. // sec04 洞察報告 電腦版
  604. #sec04 {
  605. padding-top: 5vw;
  606. padding-bottom: 5vw;
  607. background: #414141;
  608. @media screen and(max-width:$moblie) {
  609. display: none;
  610. }
  611. h1 {
  612. color: #fff;
  613. font-size: 45px;
  614. font-weight: 900;
  615. padding: 5px 10px;
  616. @media screen and(max-width:$moblie) {
  617. font-weight: 900;
  618. font-size: 32px;
  619. }
  620. }
  621. hr {
  622. width: 12vw;
  623. height: 2px;
  624. color: #fff;
  625. margin: 10px;
  626. opacity: 1 !important;
  627. @media screen and(max-width:$moblie) {
  628. width: 30vw;
  629. }
  630. }
  631. .learn-more{
  632. width: 45%;
  633. }
  634. #sec04-container {
  635. .card {
  636. img {
  637. padding: 5px;
  638. height: 150px;
  639. object-fit: cover;
  640. }
  641. border-radius: 0%;
  642. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  643. .card-title{
  644. font-weight: 900;
  645. }
  646. }
  647. }
  648. }
  649. // sec04洞察報告 手機板
  650. #sec04-moblie {
  651. padding-top: 5vw;
  652. padding-bottom: 5vw;
  653. background: #414141;
  654. position: relative;
  655. overflow: hidden;
  656. .arrow-table {
  657. position: fixed;
  658. width: 25px;
  659. right: 15px;
  660. bottom: 240px;
  661. z-index: 6;
  662. @media screen and(max-width:350px) {
  663. right: 10px;
  664. }
  665. }
  666. @media screen and(min-width:$desktop) {
  667. display: none;
  668. }
  669. h1 {
  670. color: #fff;
  671. font-size: 45px;
  672. font-weight: 900;
  673. padding: 5px 10px;
  674. @media screen and(max-width:$moblie) {
  675. font-weight: 900;
  676. font-size: 32px;
  677. }
  678. }
  679. hr {
  680. width: 30vw;
  681. height: 2px;
  682. color: #fff;
  683. margin: 10px;
  684. opacity: 1 !important;
  685. }
  686. #sec04-moblie-container {
  687. padding-top: 10vw;
  688. .col {
  689. margin: 10px;
  690. .card {
  691. img {
  692. height: 150px;
  693. object-fit: cover;
  694. }
  695. border-radius: 0%;
  696. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  697. .card-title{
  698. font-weight: 900;
  699. }
  700. .learn-more{
  701. width: 120px;
  702. }
  703. }
  704. }
  705. }
  706. }
  707. // sec05 熱門作品-電腦版
  708. #sec05 {
  709. width: 85vw;
  710. margin: 0 auto;
  711. padding-top: 5vw;
  712. padding-bottom: 5vw;
  713. @media screen and(max-width:$moblie) {
  714. display: none;
  715. }
  716. h1 {
  717. font-size: 45px;
  718. font-weight: 900;
  719. padding: 15px;
  720. }
  721. #sec05-container {
  722. #sec05-destop-slider {
  723. .slick-prev:before,
  724. .slick-next:before {
  725. opacity: 0;
  726. }
  727. .slick-prev,
  728. .slick-next {
  729. width: 40px;
  730. height: 40px;
  731. content: none;
  732. }
  733. .slick-prev {
  734. background-image: url(./img/arrow-table2.png);
  735. background-repeat: no-repeat;
  736. left: -40px;
  737. &:hover,
  738. &:focus {
  739. background-image: url(./img/arrow-table2.png);
  740. background-repeat: no-repeat;
  741. }
  742. }
  743. .slick-next {
  744. background-image: url(./img/arrow-table.png);
  745. background-repeat: no-repeat;
  746. right: -50px;
  747. &:hover,
  748. &:focus {
  749. background-image: url(./img/arrow-table.png);
  750. background-repeat: no-repeat;
  751. }
  752. }
  753. }
  754. .col {
  755. margin: 5px;
  756. }
  757. .card {
  758. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  759. }
  760. }
  761. }
  762. // sec05熱門作品-手機板
  763. #sec05-moblie {
  764. padding-top: 5vw;
  765. padding-bottom: 5vw;
  766. overflow: hidden;
  767. @media screen and(min-width:$desktop) {
  768. display: none;
  769. }
  770. #sec05-moblie-container {
  771. position: relative;
  772. .arrow-table {
  773. position: fixed;
  774. width: 25px;
  775. right: 5px;
  776. bottom: 300px;
  777. z-index: 6;
  778. @media screen and(max-width:350px) {
  779. right: 10px;
  780. }
  781. }
  782. }
  783. h1 {
  784. font-size: 45px;
  785. font-weight: 900;
  786. padding: 15px;
  787. }
  788. #sec05-moblie-slider {
  789. .sec05-moblie-box {
  790. padding: 20px;
  791. margin: 30px;
  792. @media screen and(max-width:400px) {
  793. padding: 5px;
  794. margin: 20px;
  795. }
  796. .card {
  797. border: none;
  798. }
  799. }
  800. }
  801. }
  802. // sec06 NFT資訊
  803. #sec06 {
  804. padding-top: 5vw;
  805. padding-bottom: 5vw;
  806. background: #525252;
  807. @media screen and(max-width:$moblie) {
  808. background: #313131;
  809. }
  810. h1 {
  811. font-size: 45px;
  812. font-weight: 900;
  813. padding: 15px;
  814. color: #fff;
  815. }
  816. hr {
  817. width: 12vw;
  818. height: 2px;
  819. color: #fff;
  820. margin: 10px;
  821. opacity: 1 !important;
  822. @media screen and(max-width:$moblie) {
  823. width: 30vw;
  824. }
  825. }
  826. #sec06-container {
  827. .card {
  828. height: 480px;
  829. margin:10px ;
  830. img {
  831. padding: 5px;
  832. height: 150px;
  833. object-fit: cover;
  834. }
  835. border-radius: 0%;
  836. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  837. .card-title{
  838. font-weight: 900;
  839. }
  840. .learn-more{
  841. width: 120px;
  842. }
  843. }
  844. }
  845. }
  846. // sec07 table 電腦版
  847. #sec07 {
  848. padding-top: 5vw;
  849. padding-bottom: 5vw;
  850. @media screen and(max-width:$moblie) {
  851. display: none;
  852. }
  853. .NFT-Collections-Sales-Volume {
  854. width: 80vw;
  855. margin: 0 auto;
  856. margin-top: -120px;
  857. margin-bottom: 50px;
  858. @media screen and(max-width:$moblie) {
  859. display: none;
  860. }
  861. h1 {
  862. padding: 0;
  863. margin: 0;
  864. font-weight: normal;
  865. color: #fff;
  866. letter-spacing: 3px;
  867. font-size: 50px;
  868. }
  869. }
  870. .table {
  871. text-align: center;
  872. thead tr th {
  873. border: 0;
  874. }
  875. td {
  876. display: table-cell;
  877. vertical-align: middle;
  878. text-align: left;
  879. img {
  880. width: 50px;
  881. }
  882. .data-line {
  883. width: 100px;
  884. }
  885. }
  886. th {
  887. display: table-cell;
  888. vertical-align: middle;
  889. text-align: left;
  890. }
  891. img {
  892. padding: 5px;
  893. }
  894. }
  895. .sec07-table-button {
  896. text-align: right;
  897. .data-button {
  898. text-align: left;
  899. border-radius: 25px;
  900. width: 10vw;
  901. padding: 5px 20px;
  902. color: #000;
  903. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  904. background-size: 18px 18px;
  905. background-color: #fff;
  906. border: 1px solid #000;
  907. }
  908. }
  909. }
  910. // sec07 table手機板 標題
  911. #sec07-moblir-title {
  912. background: #414141;
  913. @media screen and(min-width:$desktop) {
  914. display: none;
  915. }
  916. #sec07-container {
  917. padding: 15px;
  918. font-weight: 900;
  919. color: #fff;
  920. }
  921. }
  922. // sec07 table手機板
  923. #sec07-moblie {
  924. padding-top: 5vw;
  925. padding-bottom: 5vw;
  926. @media screen and(min-width:$desktop) {
  927. display: none;
  928. }
  929. .table {
  930. text-align: center;
  931. thead tr th {
  932. border: 0;
  933. }
  934. td {
  935. display: table-cell;
  936. vertical-align: middle;
  937. text-align-last: left;
  938. font-size: 14px;
  939. img {
  940. width: 30px;
  941. }
  942. .data-line {
  943. width: 80px;
  944. }
  945. }
  946. th {
  947. display: table-cell;
  948. vertical-align: middle;
  949. text-align: left;
  950. font-size: 14px;
  951. }
  952. img {
  953. padding: 5px;
  954. width: 50px;
  955. }
  956. }
  957. .sec07-table-button {
  958. text-align: right;
  959. .data-button {
  960. text-align: left;
  961. border-radius: 25px;
  962. width: 35vw;
  963. padding: 5px 20px;
  964. color: #000;
  965. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  966. background-size: 18px 18px;
  967. background-color: #fff;
  968. border: 1px solid #000;
  969. }
  970. }
  971. }
  972. // 頁尾
  973. #footer {
  974. width: 100vw;
  975. text-align: center;
  976. line-height: 2;
  977. background: #313131;
  978. color: #fff;
  979. padding-bottom: 3vw !important;
  980. .footer-link {
  981. padding-top: 3vw;
  982. a {
  983. text-decoration: none;
  984. font-size: 20px;
  985. padding: 10px;
  986. color: #fff;
  987. @media screen and(max-width:$moblie) {
  988. font-size: 14px;
  989. padding: 0 !important;
  990. }
  991. @media screen and(max-width:400px) {
  992. font-size: 12px;
  993. }
  994. span {
  995. font-size: 28px;
  996. @media screen and(max-width:$moblie) {
  997. font-size: 16px;
  998. }
  999. @media screen and(max-width:350px) {
  1000. font-size: 14px;
  1001. }
  1002. }
  1003. }
  1004. }
  1005. .text {
  1006. padding-top: 3vw;
  1007. a{
  1008. text-decoration: none;
  1009. color:#fff;
  1010. }
  1011. h2 {
  1012. font-size: 20px;
  1013. margin: 10px;
  1014. letter-spacing: 1px;
  1015. display: inline;
  1016. @media screen and(max-width:$moblie) {
  1017. display: block;
  1018. font-size: 16px;
  1019. margin: 8px;
  1020. }
  1021. }
  1022. p {
  1023. margin: 0 !important;
  1024. }
  1025. }
  1026. }