style.scss 24 KB

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