123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815 |
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- $desktop: 1025px;
- $table: 1024px;
- $moblie: 767px;
- .container-fluid {
- width: 80vw;
- margin: 0 auto;
- @media screen and(max-width:$moblie) {
- width: 100vw;
- }
- }
- // 主選單
- #Navigation {
- width: 100vw;
- background-color: #000;
- color: #fff;
- #logo {
- padding-top: 1.3vw;
- @media screen and(max-width:$moblie) {
- padding-top: 0;
- }
- img {
- width: 180px;
- @media screen and(max-width:$moblie) {
- width: 150px;
- }
- }
- }
- #link {
- padding: 4vw 1vw 2vw 1vw;
- @media screen and(max-width:$moblie) {
- display: none;
- }
- }
- a {
- text-decoration: none;
- color: #fff;
- letter-spacing: 1px;
- font-size: 0.9rem;
- font-weight: 600;
- cursor: pointer;
- padding: 15px;
- position: relative;
- :hover {
- opacity: 0.8;
- }
- &:after {
- content: "";
- display: block;
- width: 80%;
- height: 3px;
- background-color: #fff;
- position: absolute;
- left: 12%;
- bottom: 0;
- transition: all 0.3s;
- opacity: 0;
- }
- &:hover:after {
- width: 80%;
- opacity: 1;
- }
- @media screen and(max-width:$table) {
- padding: 5px;
- padding-top: 2vw;
- }
- }
- #menu-btn1 {
- position: absolute;
- right: 1vw;
- top: 5vw;
- width: 15vw;
- z-index: 6;
- @media screen and(min-width:$desktop) {
- display: none;
- }
- @media screen and(min-width:768px) {
- display: none;
- }
- }
- }
- // banner
- #banner {
- width: 100vw;
- height: 100vh;
- background: #313131;
- display: inline-block;
- background: linear-gradient(115deg, #313131 38%, transparent 30%, #707070 27%);
- background-blend-mode: overlay;
- @media screen and(max-width:$moblie) {
- height: 65vh;
- background: linear-gradient(115deg, #414141 100%, transparent 30%, #707070 0%);
- }
- #banner-container {
- width: 80vw;
- margin: 50px auto;
- @media screen and(max-width:$moblie) {
- width: 100vw;
- margin: 0;
- }
- img {
- width: 80vw;
- height: 70vh;
- object-fit: cover;
- @media screen and(max-width:$moblie) {
- height: 35vh;
- width: 100vw;
- }
- }
- h1 {
- text-align: center;
- color: #fff;
- @media screen and(max-width:$moblie) {
- font-size: 20px;
- padding: 15px;
- }
- }
- #email {
- width: 75%;
- font-size: 16px;
- margin: 10px 0px;
- padding: 10px 15px;
- border: none;
- height: 50px;
- @media screen and(max-width:$moblie) {
- display: none;
- }
- }
- // 手機板訂閱email
- #email-moblie {
- margin: 10px auto;
- width: 75%;
- padding: 10px 15px;
- border: none;
- height: 50px;
- background: url(./img/email.png) 5% 50% no-repeat scroll transparent;
- background-size: 20px 15px;
- background-color: #fff;
- text-align: center;
- color: #313131;
- font-weight: 900;
- @media screen and(min-width:$desktop) {
- display: none;
- }
- }
- // 電腦版按鈕
- .btn {
- color: #fff;
- width: 25%;
- height: 50px;
- margin: 10px 0px;
- font-size: 16px;
- border-radius: 0%;
- border: none;
- font-weight: 900;
- background: #93000a;
- vertical-align: top;
- @media screen and(max-width:$moblie) {
- display: none;
- }
- }
- // 手機板按鈕
- #email-arrow {
- width: 15%;
- background: url(./img/button-arrow.png) 55% 50% no-repeat scroll transparent;
- background-size: 10px 15px;
- background-color: #93000a;
- height: 50px;
- margin: 10px auto;
- font-size: 16px;
- border-radius: 0%;
- border: none;
- font-weight: 900;
- vertical-align: top;
- @media screen and(min-width:$desktop) {
- display: none;
- }
- }
- }
- }
- // sec01 NEWS
- #sec01 {
- padding-top: 5vw;
- padding-bottom: 5vw;
-
- .NEWS{
- width: 80vw;
- margin: 0 auto;
- margin-top: -130px;
- margin-bottom: 50px;
- @media screen and(max-width:$moblie) {
- margin-top: -70px;
- width: 90vw;
- }
- h1{
- padding: 0;
- margin: 0;
- font-weight: 900;
- color:#fff;
- letter-spacing: 3px;
- font-size: 60px;
- @media screen and(max-width:$moblie) {
- font-size: 50px;
- }
- }
- }
- #sec01-container {
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
- margin: 0 auto !important;
- @media screen and(max-width:$moblie) {
- width: 90vw;
- margin: 0 auto;
- }
- #sec01-container-card {
- .card {
- padding: 30px;
- border: none !important;
- @media screen and(max-width:$moblie) {
- padding: 15px;
-
- }
- h1 {
- padding: 15px;
- font-size: 40px;
- font-weight: 900;
- color: #9b9b9b;
- }
- p {
- padding: 5px;
- font-size: 20px;
- margin-bottom: 0 !important;
- @media screen and(max-width:$moblie) {
- padding: 0px;
- }
- }
- img {
- text-align: center;
- width: 38vw;
- @media screen and(max-width:$moblie) {
- width: 85vw;
- margin: 0 auto;
- }
- }
- }
- }
- }
- }
- // sec02 TOP排名 電腦版
- #sec02 {
- background: #414141;
- padding-top:3vw ;
- @media screen and(max-width:$moblie) {
- display: none;
- }
- #sec02-container {
- padding: 15px;
- font-weight: 900;
- color: #fff;
-
- // 電腦版top圖片排行
- #sec02-top-box{
- position: relative;
-
- .sec02-box1{
- color:#000;
- img{
- position: absolute;
- top: 1px;
- width: 200px;
-
-
- }
- .sec02-top-text{
- position: absolute;
- top: 140px;
- padding-left: 15px;
-
- span{
- font-size: 50px;
- }
- }
- }
- }
- }
- }
- // sec02 top排名手機板
- #sec02-moblie {
- background: #414141;
- padding-top:3vw ;
- padding-bottom: 10vw;
-
- @media screen and(min-width:$desktop) {
- display: none;
- }
- #sec02-container {
- padding: 15px;
- font-weight: 900;
- color: #fff;
- text-align: right;
- // 電腦版top圖片排行
- #sec02-top-box{
- .sec02-box1{
- color:#000;
- position: relative;
-
- img{
- position: absolute;
- top: 1px;
- width: 90px;
- left:30px;
-
- }
- .sec02-top-text{
- position: absolute;
- top: 60px;
- left:20px;
- span{
- font-size: 50px;
- }
- }
- }
- }
- }
- }
- // sec03 排名table-電腦版
- #sec03 {
- padding-top: 10vw;
- padding-bottom: 5vw;
- @media screen and(max-width:$moblie) {
- display: none;
- }
- #sec03-table {
- .sec03-table-title {
- font-family: 微軟正黑體;
- font-weight: 900;
- padding: 15px;
- font-size: 35px;
- }
- .table {
- th {
- font-size: 40px;
- display: table-cell;
- vertical-align: middle;
- }
- td {
- padding: 15px;
- }
- img {
- width: 50px;
- }
- .sec03-table-text {
- padding: 10px;
- display: table-cell;
- vertical-align: middle;
- h1 {
- font-size: 20px;
- margin: 0;
- }
- p {
- margin: 0;
- }
- }
- }
- }
- }
- // sec03排名table-手機板
- #sec03-moblie {
- padding-top: 30vw;
- position: relative;
- .arrow-table {
- position: fixed;
- width: 25px;
- right: 15px;
- bottom: 250px;
- z-index: 6;
- @media screen and(max-width:350px) {
- right: 10px;
- }
- }
- .sec03-table-title {
- font-family: 微軟正黑體;
- font-weight: 900;
- font-size: 15px;
- padding: 0 !important;
- margin-bottom: 20px;
- }
- #sec03-slider {
- .slick-slide img {
- display: inline;
- }
- #sec03-slider1,
- #sec03-slider2 {
- margin: 0 30px;
- @media screen and(max-width:350px) {
- margin: 0 10px;
- }
- }
- .table {
- th {
- font-size: 40px;
- display: table-cell;
- vertical-align: middle;
- padding: 15px;
- }
- td {
- padding: 15px;
- @media screen and(max-width:350px) {
- padding: 0px;
- }
- }
- img {
- width: 50px;
- }
- .sec03-table-text {
- padding: 10px;
- display: table-cell;
- vertical-align: middle;
- h1 {
- font-size: 20px;
- margin: 0;
- }
- p {
- margin: 0;
- }
- }
- }
- }
- @media screen and(min-width:$desktop) {
- display: none;
- }
- }
- // sec04 洞察報告 電腦版
- #sec04 {
- padding-top: 5vw;
- padding-bottom: 5vw;
- background: #414141;
- @media screen and(max-width:$moblie) {
- display: none;
- }
- h1 {
- color: #fff;
- font-size: 45px;
- font-weight: 900;
- padding: 5px 10px;
- @media screen and(max-width:$moblie) {
- font-weight: 900;
- font-size: 32px;
- }
- }
- hr {
- width: 12vw;
- height: 2px;
- color: #fff;
- margin: 10px;
- opacity: 1 !important;
- @media screen and(max-width:$moblie) {
- width: 30vw;
- }
- }
- #sec04-container {
- .card {
- img {
- height: 150px;
- object-fit: cover;
- }
- border-radius: 0%;
- box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
- }
- }
- }
- #sec04-moblie {
- padding-top: 5vw;
- padding-bottom: 5vw;
- background: #414141;
- position: relative;
- .arrow-table {
- position: fixed;
- width: 25px;
- right: 15px;
- bottom: 240px;
- z-index: 6;
- @media screen and(max-width:350px) {
- right: 10px;
- }
- }
- @media screen and(min-width:$desktop) {
- display: none;
- }
- h1 {
- color: #fff;
- font-size: 45px;
- font-weight: 900;
- padding: 5px 10px;
- @media screen and(max-width:$moblie) {
- font-weight: 900;
- font-size: 32px;
- }
- }
- hr {
- width: 30vw;
- height: 2px;
- color: #fff;
- margin: 10px;
- opacity: 1 !important;
- }
- #sec04-moblie-container {
- padding-top: 10vw;
- .col {
- margin: 10px;
- .card {
-
- img {
- height: 150px;
- object-fit: cover;
- }
- border-radius: 0%;
- box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
- }
- }
- }
- }
- // sec05 熱門作品-電腦版
- #sec05 {
- padding-top: 5vw;
- padding-bottom: 5vw;
- @media screen and(max-width:$moblie) {
- display: none;
- }
- h1 {
- font-size: 45px;
- font-weight: 900;
- padding: 15px;
- }
- #sec05-container {
- .card {
- box-shadow: 0 10px 1px rgba(155, 155, 155, 0.8);
- }
- }
- }
- // sec05熱門作品-手機板
- #sec05-moblie {
- padding-top: 5vw;
- padding-bottom: 5vw;
- overflow: hidden;
- @media screen and(min-width:$desktop) {
- display: none;
- }
- #sec05-moblie-container {
- position: relative;
- .arrow-table {
- position: fixed;
- width: 25px;
- right: 5px;
- bottom: 300px;
- z-index: 6;
- @media screen and(max-width:350px) {
- right: 10px;
- }
- }
- }
- h1 {
- font-size: 45px;
- font-weight: 900;
- padding: 15px;
- }
- #sec05-container {
- #sec05-moblie-slider {
- width: 100vw;
- .sec05-moblie-box {
- margin: 30px;
- .card {
- border: none;
- }
- }
- }
- }
- }
- // sec06 NFT資訊
- #sec06 {
- padding-top: 5vw;
- padding-bottom: 5vw;
- background: #525252;
- @media screen and(max-width:$moblie) {
- background: #313131;
- }
- h1 {
- font-size: 45px;
- font-weight: 900;
- padding: 15px;
- color: #fff;
- }
- hr {
- width: 12vw;
- height: 2px;
- color: #fff;
- margin: 10px;
- opacity: 1 !important;
- @media screen and(max-width:$moblie) {
- width: 30vw;
- }
- }
-
- .card {
- border: none;
- background: none;
- // .fb-post {
- // margin: 10px 0 !important;
- // }
- }
-
- }
- // sec07 table 電腦版
- #sec07 {
- padding-top: 5vw;
- padding-bottom: 5vw;
- @media screen and(max-width:$moblie) {
- display: none;
- }
- .NFT-Collections-Sales-Volume{
- width: 80vw;
- margin: 0 auto;
- margin-top: -120px;
- margin-bottom: 50px;
- @media screen and(max-width:$moblie) {
- display: none;
- }
- h1{
- padding: 0;
- margin: 0;
- font-weight: normal;
- color:#fff;
- letter-spacing: 3px;
- font-size: 50px;
- }
- }
- .table {
- text-align: center;
- thead tr th {
- border: 0;
- }
- td {
- display: table-cell;
- vertical-align: middle;
- text-align-last: left;
- img{
- width: 50px;
- }
- .data-line{
- width: 100px;
- }
- }
- th {
- display: table-cell;
- vertical-align: middle;
- text-align-last: left;
- }
- img {
- padding: 5px;
- }
- }
- .sec07-table-button{
- text-align: right;
- .data-button{
- text-align:left;
- border-radius: 25px;
- width: 10vw;
- padding: 5px 20px;
- color:#000;
- background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
- background-size:18px 18px;
- background-color: #fff;
- border: 1px solid #000;
- }
- }
- }
- // sec07 table手機板 標題
- #sec07-moblir-title {
- background: #414141;
- @media screen and(min-width:$desktop) {
- display: none;
- }
- #sec07-container {
- padding: 15px;
- font-weight: 900;
- color: #fff;
-
- }
- }
- // sec07 table手機板
- #sec07-moblie{
- padding-top: 5vw;
- padding-bottom: 5vw;
- @media screen and(min-width:$desktop) {
- display: none;
- }
- .table {
- text-align: center;
- thead tr th {
- border: 0;
- }
- td {
- display: table-cell;
- vertical-align: middle;
- text-align-last: left;
- font-size: 14px;
- img{
- width: 30px;
- }
- .data-line{
- width: 80px;
- }
- }
- th {
- display: table-cell;
- vertical-align: middle;
- }
- img {
- padding: 5px;
- width: 50px;
- }
- }
- .sec07-table-button{
- text-align: right;
- .data-button{
- text-align:left;
- border-radius: 25px;
- width: 35vw;
- padding: 5px 20px;
- color:#000;
- background: url(./img/play.png) 80% 40% no-repeat scroll transparent;
- background-size:18px 18px;
- background-color: #fff;
- border: 1px solid #000;
- }
- }
- }
- // 頁尾
- #footer {
- width: 100vw;
- text-align: center;
- line-height: 2;
- background: #313131;
- color: #fff;
- padding-bottom: 3vw !important;
- .footer-link {
- padding-top: 3vw;
- a {
- text-decoration: none;
- font-size: 20px;
- padding: 10px;
- color: #fff;
- @media screen and(max-width:$moblie) {
- font-size: 14px;
- padding: 0 !important;
- }
- @media screen and(max-width:400px) {
- font-size: 12px;
- }
- span {
- font-size: 28px;
- @media screen and(max-width:$moblie) {
- font-size: 16px;
- }
- @media screen and(max-width:350px) {
- font-size: 14px;
- }
- }
- }
- }
- .text {
- padding-top: 3vw;
- h2 {
- font-size: 20px;
- margin: 10px;
- letter-spacing: 1px;
- display: inline;
- @media screen and(max-width:$moblie) {
- display: block;
- font-size: 16px;
- margin: 8px;
- }
- }
- p {
- margin: 0 !important;
- }
- }
- }
|