style.scss 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018
  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 {
  509. font-family: 微軟正黑體;
  510. font-weight: 900;
  511. font-size: 15px;
  512. padding: 0 !important;
  513. margin-bottom: 20px;
  514. }
  515. #sec03-slider {
  516. .slick-slide img {
  517. display: inline;
  518. }
  519. #sec03-slider1,
  520. #sec03-slider2 {
  521. margin: 0 5px;
  522. @media screen and(max-width:350px) {
  523. margin: 0 5px;
  524. }
  525. }
  526. .table {
  527. th {
  528. font-size: 40px;
  529. display: table-cell;
  530. vertical-align: middle;
  531. padding: 15px;
  532. @media screen and(max-width:350px) {
  533. font-size: 30px;
  534. }
  535. }
  536. td {
  537. display: table-cell;
  538. vertical-align: middle;
  539. padding: 15px;
  540. padding: 10px;
  541. @media screen and(max-width:350px) {
  542. padding: 0px;
  543. }
  544. }
  545. img {
  546. width: 50px;
  547. }
  548. .sec03-table-text {
  549. padding: 0px 0px 0px 3px;
  550. display: table-cell;
  551. vertical-align: middle;
  552. @media screen and(max-width:350px) {
  553. padding: 0px;
  554. }
  555. h1 {
  556. font-size: 14px;
  557. margin: 0;
  558. }
  559. p {
  560. margin: 0;
  561. font-size: 12px;
  562. }
  563. }
  564. }
  565. }
  566. @media screen and(min-width:$desktop) {
  567. display: none;
  568. }
  569. }
  570. // sec04 洞察報告 電腦版
  571. #sec04 {
  572. padding-top: 5vw;
  573. padding-bottom: 5vw;
  574. background: #414141;
  575. @media screen and(max-width:$moblie) {
  576. display: none;
  577. }
  578. h1 {
  579. color: #fff;
  580. font-size: 45px;
  581. font-weight: 900;
  582. padding: 5px 10px;
  583. @media screen and(max-width:$moblie) {
  584. font-weight: 900;
  585. font-size: 32px;
  586. }
  587. }
  588. hr {
  589. width: 12vw;
  590. height: 2px;
  591. color: #fff;
  592. margin: 10px;
  593. opacity: 1 !important;
  594. @media screen and(max-width:$moblie) {
  595. width: 30vw;
  596. }
  597. }
  598. .learn-more{
  599. width: 45%;
  600. }
  601. #sec04-container {
  602. .card {
  603. img {
  604. padding: 5px;
  605. height: 150px;
  606. object-fit: cover;
  607. }
  608. border-radius: 0%;
  609. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  610. .card-title{
  611. font-weight: 900;
  612. }
  613. }
  614. }
  615. }
  616. #sec04-moblie {
  617. padding-top: 5vw;
  618. padding-bottom: 5vw;
  619. background: #414141;
  620. position: relative;
  621. .arrow-table {
  622. position: fixed;
  623. width: 25px;
  624. right: 15px;
  625. bottom: 240px;
  626. z-index: 6;
  627. @media screen and(max-width:350px) {
  628. right: 10px;
  629. }
  630. }
  631. @media screen and(min-width:$desktop) {
  632. display: none;
  633. }
  634. h1 {
  635. color: #fff;
  636. font-size: 45px;
  637. font-weight: 900;
  638. padding: 5px 10px;
  639. @media screen and(max-width:$moblie) {
  640. font-weight: 900;
  641. font-size: 32px;
  642. }
  643. }
  644. hr {
  645. width: 30vw;
  646. height: 2px;
  647. color: #fff;
  648. margin: 10px;
  649. opacity: 1 !important;
  650. }
  651. #sec04-moblie-container {
  652. padding-top: 10vw;
  653. .col {
  654. margin: 10px;
  655. .card {
  656. img {
  657. height: 150px;
  658. object-fit: cover;
  659. }
  660. border-radius: 0%;
  661. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  662. }
  663. }
  664. }
  665. }
  666. // sec05 熱門作品-電腦版
  667. #sec05 {
  668. width: 85vw;
  669. margin: 0 auto;
  670. padding-top: 5vw;
  671. padding-bottom: 5vw;
  672. @media screen and(max-width:$moblie) {
  673. display: none;
  674. }
  675. h1 {
  676. font-size: 45px;
  677. font-weight: 900;
  678. padding: 15px;
  679. }
  680. #sec05-container {
  681. #sec05-destop-slider {
  682. .slick-prev:before,
  683. .slick-next:before {
  684. opacity: 0;
  685. }
  686. .slick-prev,
  687. .slick-next {
  688. width: 40px;
  689. height: 40px;
  690. content: none;
  691. }
  692. .slick-prev {
  693. background-image: url(./img/arrow-table2.png);
  694. background-repeat: no-repeat;
  695. left: -40px;
  696. &:hover,
  697. &:focus {
  698. background-image: url(./img/arrow-table2.png);
  699. background-repeat: no-repeat;
  700. }
  701. }
  702. .slick-next {
  703. background-image: url(./img/arrow-table.png);
  704. background-repeat: no-repeat;
  705. right: -50px;
  706. &:hover,
  707. &:focus {
  708. background-image: url(./img/arrow-table.png);
  709. background-repeat: no-repeat;
  710. }
  711. }
  712. }
  713. .col {
  714. margin: 5px;
  715. }
  716. .card {
  717. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  718. }
  719. }
  720. }
  721. // sec05熱門作品-手機板
  722. #sec05-moblie {
  723. padding-top: 5vw;
  724. padding-bottom: 5vw;
  725. overflow: hidden;
  726. @media screen and(min-width:$desktop) {
  727. display: none;
  728. }
  729. #sec05-moblie-container {
  730. position: relative;
  731. .arrow-table {
  732. position: fixed;
  733. width: 25px;
  734. right: 5px;
  735. bottom: 300px;
  736. z-index: 6;
  737. @media screen and(max-width:350px) {
  738. right: 10px;
  739. }
  740. }
  741. }
  742. h1 {
  743. font-size: 45px;
  744. font-weight: 900;
  745. padding: 15px;
  746. }
  747. #sec05-container {
  748. #sec05-moblie-slider {
  749. width: 100vw;
  750. .sec05-moblie-box {
  751. margin: 30px;
  752. .card {
  753. border: none;
  754. }
  755. }
  756. }
  757. }
  758. }
  759. // sec06 NFT資訊
  760. #sec06 {
  761. padding-top: 5vw;
  762. padding-bottom: 5vw;
  763. background: #525252;
  764. @media screen and(max-width:$moblie) {
  765. background: #313131;
  766. }
  767. h1 {
  768. font-size: 45px;
  769. font-weight: 900;
  770. padding: 15px;
  771. color: #fff;
  772. }
  773. hr {
  774. width: 12vw;
  775. height: 2px;
  776. color: #fff;
  777. margin: 10px;
  778. opacity: 1 !important;
  779. @media screen and(max-width:$moblie) {
  780. width: 30vw;
  781. }
  782. }
  783. #sec06-container {
  784. .card {
  785. height: 480px;
  786. margin:10px ;
  787. img {
  788. padding: 5px;
  789. height: 150px;
  790. object-fit: cover;
  791. }
  792. border-radius: 0%;
  793. box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
  794. .card-title{
  795. font-weight: 900;
  796. }
  797. .learn-more{
  798. width: 120px;
  799. }
  800. }
  801. }
  802. }
  803. // sec07 table 電腦版
  804. #sec07 {
  805. padding-top: 5vw;
  806. padding-bottom: 5vw;
  807. @media screen and(max-width:$moblie) {
  808. display: none;
  809. }
  810. .NFT-Collections-Sales-Volume {
  811. width: 80vw;
  812. margin: 0 auto;
  813. margin-top: -120px;
  814. margin-bottom: 50px;
  815. @media screen and(max-width:$moblie) {
  816. display: none;
  817. }
  818. h1 {
  819. padding: 0;
  820. margin: 0;
  821. font-weight: normal;
  822. color: #fff;
  823. letter-spacing: 3px;
  824. font-size: 50px;
  825. }
  826. }
  827. .table {
  828. text-align: center;
  829. thead tr th {
  830. border: 0;
  831. }
  832. td {
  833. display: table-cell;
  834. vertical-align: middle;
  835. text-align: left;
  836. img {
  837. width: 50px;
  838. }
  839. .data-line {
  840. width: 100px;
  841. }
  842. }
  843. th {
  844. display: table-cell;
  845. vertical-align: middle;
  846. text-align: left;
  847. }
  848. img {
  849. padding: 5px;
  850. }
  851. }
  852. .sec07-table-button {
  853. text-align: right;
  854. .data-button {
  855. text-align: left;
  856. border-radius: 25px;
  857. width: 10vw;
  858. padding: 5px 20px;
  859. color: #000;
  860. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  861. background-size: 18px 18px;
  862. background-color: #fff;
  863. border: 1px solid #000;
  864. }
  865. }
  866. }
  867. // sec07 table手機板 標題
  868. #sec07-moblir-title {
  869. background: #414141;
  870. @media screen and(min-width:$desktop) {
  871. display: none;
  872. }
  873. #sec07-container {
  874. padding: 15px;
  875. font-weight: 900;
  876. color: #fff;
  877. }
  878. }
  879. // sec07 table手機板
  880. #sec07-moblie {
  881. padding-top: 5vw;
  882. padding-bottom: 5vw;
  883. @media screen and(min-width:$desktop) {
  884. display: none;
  885. }
  886. .table {
  887. text-align: center;
  888. thead tr th {
  889. border: 0;
  890. }
  891. td {
  892. display: table-cell;
  893. vertical-align: middle;
  894. text-align-last: left;
  895. font-size: 14px;
  896. img {
  897. width: 30px;
  898. }
  899. .data-line {
  900. width: 80px;
  901. }
  902. }
  903. th {
  904. display: table-cell;
  905. vertical-align: middle;
  906. text-align: left;
  907. font-size: 14px;
  908. }
  909. img {
  910. padding: 5px;
  911. width: 50px;
  912. }
  913. }
  914. .sec07-table-button {
  915. text-align: right;
  916. .data-button {
  917. text-align: left;
  918. border-radius: 25px;
  919. width: 35vw;
  920. padding: 5px 20px;
  921. color: #000;
  922. background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
  923. background-size: 18px 18px;
  924. background-color: #fff;
  925. border: 1px solid #000;
  926. }
  927. }
  928. }
  929. // 頁尾
  930. #footer {
  931. width: 100vw;
  932. text-align: center;
  933. line-height: 2;
  934. background: #313131;
  935. color: #fff;
  936. padding-bottom: 3vw !important;
  937. .footer-link {
  938. padding-top: 3vw;
  939. a {
  940. text-decoration: none;
  941. font-size: 20px;
  942. padding: 10px;
  943. color: #fff;
  944. @media screen and(max-width:$moblie) {
  945. font-size: 14px;
  946. padding: 0 !important;
  947. }
  948. @media screen and(max-width:400px) {
  949. font-size: 12px;
  950. }
  951. span {
  952. font-size: 28px;
  953. @media screen and(max-width:$moblie) {
  954. font-size: 16px;
  955. }
  956. @media screen and(max-width:350px) {
  957. font-size: 14px;
  958. }
  959. }
  960. }
  961. }
  962. .text {
  963. padding-top: 3vw;
  964. h2 {
  965. font-size: 20px;
  966. margin: 10px;
  967. letter-spacing: 1px;
  968. display: inline;
  969. @media screen and(max-width:$moblie) {
  970. display: block;
  971. font-size: 16px;
  972. margin: 8px;
  973. }
  974. }
  975. p {
  976. margin: 0 !important;
  977. }
  978. }
  979. }