123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383 |
- @charset "UTF-8";
- * {
- letter-spacing: 1px;
- }
- .navbar {
- box-shadow: 0 2px 10px 2px rgb(204, 204, 204);
- background-color: white;
- width: 100%;
- }
- .navbar .navbar-collapse {
- flex-grow: 0;
- }
- .header {
- margin-top: 70px;
- position: relative;
- padding: 6rem 0 3rem;
- }
- .header-lefttop {
- position: absolute;
- left: 0;
- top: 0;
- z-index: -1;
- width: 350px;
- }
- .header-title {
- font-size: 3rem;
- font-weight: 400;
- }
- .header__sub {
- color: #38a7bb;
- font-size: 1.5rem;
- font-weight: 300;
- position: relative;
- }
- .header__sub::before,
- .header__sub::after {
- content: " ";
- position: absolute;
- width: 12%;
- height: 1px;
- background-color: #38a7bb;
- top: 50%;
- }
- .header__sub::before {
- left: 28%;
- }
- .header__sub::after {
- left: 60%;
- }
- .header__form {
- margin: 1rem auto;
- justify-content: center;
- }
- .header__form__input {
- border-radius: 10rem;
- padding: 0.4rem 0.8rem;
- width: 60%;
- margin-left: 4.5rem;
- }
- .header__form__sub {
- border-radius: 10rem;
- background-color: #fca25e;
- color: white;
- border: none;
- width: 5rem;
- transform: translateX(-100%);
- transition: all 0.3s;
- }
- .header__form__sub:hover {
- background-color: #ff892e;
- }
- .header-right {
- width: 80%;
- height: 50vh;
- background-image: url("../imgs/電腦2.webp");
- background-size: contain;
- background-repeat: no-repeat;
- margin: 0 auto;
- position: relative;
- }
- .header-right.header-dm {
- background-image: url("https://i.imgur.com/SOu53ii.jpg");
- }
- .header-right-cir {
- width: 60%;
- position: absolute;
- right: 0%;
- top: -5%;
- z-index: -1;
- }
- .header-right__video {
- position: absolute;
- width: 70%;
- height: auto;
- left: 3.3rem;
- top: 1.8rem;
- }
- .header-right-magnifier {
- position: absolute;
- width: 25%;
- right: 3%;
- bottom: 1%;
- }
- .header-right-bubble {
- position: absolute;
- width: 22%;
- top: 0;
- left: 0;
- transform: translate(-60%, -50%);
- }
- .header-right-linecir {
- width: 45%;
- position: absolute;
- left: -8%;
- bottom: -3%;
- z-index: -1;
- }
- /* footer.html Start */
- .footer {
- color: #656565;
- }
- .footer .footer-contacts {
- margin-top: 2rem;
- line-height: 32px;
- }
- .footer a {
- color: #656565;
- text-decoration: none;
- }
- .footer h5 {
- color: black;
- font-weight: 600;
- padding-bottom: 15px;
- }
- .footer .link {
- padding-bottom: 20px;
- }
- .footer {
- background-color: #f0f0f0;
- padding: 3rem;
- }
- .footer .right-column {
- border-left: 1px solid black;
- }
- .footer .footer-aigirl {
- font-weight: 600;
- font-size: 2rem;
- margin-top: 1rem;
- margin-bottom: 1rem;
- }
- .footer .footer-follow {
- font-size: 1.6rem;
- margin-bottom: 1rem;
- color: black;
- font-size: 1rem;
- font-weight: 600;
- margin-top: 2rem;
- }
- .footer .footer-socials a {
- margin-right: 5px;
- }
- /* footer.html End */
- /* footer_default.html Start */
- .footer h4 {
- text-transform: uppercase;
- color: white;
- font-size: 14px;
- font-weight: 800;
- }
- .footer__btn__text {
- font-size: 1.3rem;
- color: white;
- }
- .footer .btn {
- border: 2px solid #38a7bb;
- color: #38a7bb;
- text-decoration: none;
- }
- .followus__btn {
- text-decoration: none;
- color: white;
- }
- .followus__btn:hover {
- color: #38a7bb;
- }
- .footer .btn:hover {
- color: white;
- background-color: #38a7bb;
- }
- .followus__txt {
- display: inline-block;
- margin-right: 1rem;
- color: white;
- font-weight: 600;
- }
- .footer-img {
- height: 60px;
- }
- /* footer_default.html End */
- /* iframe Start */
- .video-box {
- position: relative;
- width: 70%;
- height: 0;
- padding-bottom: 40%;
- }
- @media (max-width: 1200px) {
- .video-box {
- width: 80%;
- padding-bottom: 45%;
- }
- }
- @media (max-width: 767px) {
- .video-box {
- margin: 50px auto 0;
- }
- }
- @media (max-width: 576px) {
- .video-box {
- width: 90%;
- padding-bottom: 50%;
- }
- }
- .video-box iframe {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- /* iframe End */
- .category {
- padding: 2rem 0rem;
- }
- .category.dm-description {
- padding: 2rem 8rem;
- }
- .category-sub-h2 {
- position: relative;
- }
- .category-sub-h2::after {
- position: absolute;
- content: "";
- width: 4rem;
- height: 1rem;
- border-bottom: 10px solid #ff892e;
- left: 50%;
- top: -1.5rem;
- transform: translateX(-50%);
- }
- .category-btngrp {
- padding: 0 8rem;
- }
- .category-btn {
- background-color: #a7d9e2;
- border: none;
- border-radius: 5rem;
- outline: none;
- color: white;
- font-size: 1.3rem;
- padding: 0.4rem 2rem;
- text-decoration: none;
- }
- .category-btn.active {
- background-color: #38a7bb;
- text-decoration: none;
- color: white;
- }
- .card__rank {
- border: 1px solid #cecece;
- box-shadow: 1px 1px 5px 1px rgb(211, 211, 211);
- position: relative;
- padding: 1rem 1.5rem;
- }
- .top20 .card__rank {
- margin-bottom: 1.5rem;
- }
- .top3 {
- padding: 3rem 0rem;
- padding-bottom: 5rem;
- position: relative;
- }
- .top3 .row {
- padding: 0rem 4rem;
- }
- .top3 .backfill {
- position: absolute;
- width: 100%;
- height: 100px;
- background-color: #ffebe8;
- left: 0;
- right: 0;
- top: 7rem;
- }
- .top3__num {
- color: #fca25e;
- font-size: 5.8rem;
- font-family: "Trebuchet MS";
- position: absolute;
- left: 1rem;
- top: -3.5rem;
- font-weight: 300;
- }
- .card__rank__word {
- color: #20616d;
- margin-left: 3rem;
- font-size: 1.8rem;
- font-weight: 400;
- }
- .card__rank__goto {
- text-align: right;
- }
- .card__rank__link {
- color: #38a7bb;
- text-decoration: none;
- font-weight: 400;
- }
- .card__rank__link:hover {
- color: #19879b;
- }
- .top20 {
- padding-bottom: 5rem;
- }
- .top20 .row {
- padding: 0rem 4rem;
- }
- .top20 .card__rank__word {
- margin-left: 0;
- }
- .top20__num {
- color: #fca25e;
- font-size: 2.5rem;
- font-family: "Trebuchet MS";
- font-weight: 300;
- display: inline-block;
- width: 3rem;
- }
- /* content page */
- .cntheader {
- margin-top: 81px;
- padding: 4rem 0;
- position: relative;
- padding-bottom: 2rem;
- }
- .cntheader__sub {
- color: #38a7bb;
- font-size: 1.5rem;
- font-weight: 300;
- position: relative;
- }
- .cntheader__sub::before,
- .cntheader__sub::after {
- content: " ";
- position: absolute;
- width: 15%;
- height: 1px;
- background-color: #38a7bb;
- top: 50%;
- }
- .cntheader__sub::before {
- left: 18%;
- }
- .cntheader__sub::after {
- left: 67%;
- }
- .cntheader .category-btngrp {
- padding: 0 4rem;
- }
- .card__art {
- padding: 1rem;
- border: 1px solid #20616d;
- border-radius: 1rem;
- margin-bottom: 1rem;
- }
- .card__title {
- font-size: 1.8rem;
- font-weight: 400;
- }
- .card__text {
- color: #918f8f;
- }
- .card__link {
- display: inline-block;
- color: #38a7bb;
- margin-right: 1rem;
- text-decoration: none;
- }
- .card__link:hover {
- color: #20616d;
- }
- .toparticle {
- border: 1px solid #cecece;
- box-shadow: 1px 2px 3px 1px rgb(224, 224, 224);
- }
- .toparticle__title {
- color: white;
- background-color: #38a7bb;
- text-align: center;
- font-size: 1.3rem;
- padding: 0.3rem 0;
- position: relative;
- }
- .toparticle__title img {
- position: absolute;
- width: 150px;
- right: -4rem;
- top: -3.5rem;
- }
- .toparticle__list {
- padding: 1.5rem;
- padding-top: 0;
- list-style: none;
- padding-bottom: 1rem;
- }
- .toparticle__list-item {
- padding: 0.3rem;
- border-bottom: 1px solid #cecece;
- color: #38a7bb;
- position: relative;
- }
- .toparticle__list-item:nth-of-type(10) {
- border: none;
- }
- .toparticle__list-item a {
- text-decoration: none;
- color: #38a7bb;
- }
- .toparticle__num {
- color: #fca25e;
- font-size: 1.8rem;
- font-family: "Trebuchet MS";
- font-weight: 300;
- margin-right: 8px;
- }
- .toparticle__top {
- font-size: 2rem;
- }
- .toparticle__list-item small {
- position: absolute;
- right: 0;
- top: 45%;
- }
- .cntsubscribe {
- text-align: center;
- }
- .cntsubscribe__form {
- position: relative;
- }
- .cntsubscribe__sub {
- border-radius: 10rem;
- background-color: #fca25e;
- color: white;
- border: none;
- width: 5rem;
- position: absolute;
- right: 0;
- top: 0;
- padding: 0.45rem 0.8rem;
- }
- .cntsubscribe__sub:hover {
- background-color: #ff892e;
- color: white;
- }
- .cntsubscribe__input {
- border-radius: 10rem;
- padding: 0.4rem 0.8rem;
- width: 100%;
- }
- .img-block .img-block-img {
- width: 70%;
- }
- .img-block-list {
- padding: 2rem 6rem;
- }
- .img-block-linecir {
- position: absolute;
- right: 10%;
- bottom: 5%;
- width: 30%;
- z-index: -1;
- }
- .img-block-linecir.left {
- right: -10%;
- bottom: -5%;
- }
- .img-block-linecir.right {
- left: -10%;
- bottom: -5%;
- }
- .img-block-linecir.left {
- left: -10%;
- bottom: -5%;
- }
- .aboutus_img {
- width: 100%;
- }
- .aboutus_prize_img {
- border: 1.5rem solid rgb(231, 231, 231);
- border-radius: 1rem;
- }
- .header__ai-training__span {
- width: 6rem;
- height: 6rem;
- padding: 1rem;
- display: inline-block;
- font-size: 1.4rem;
- background-color: rgb(255, 255, 159);
- border-radius: 50%;
- }
- .ai-training__action {
- border: 3px dashed #ffebe8;
- }
- .ai-training__card .card-img-top {
- height: 35vh;
- }
- .ai-training__action ul {
- list-style: none;
- line-height: 2rem;
- }
- .ai-training__action__box {
- flex-direction: row;
- }
- .ai-training__action__btn {
- padding: 1.2rem 3rem;
- border: none;
- outline: none;
- border-radius: 4rem;
- background: #fca25e;
- font-size: 1.5rem;
- }
- .ai-training__action__img {
- width: 15rem;
- height: 15rem;
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- border-radius: 50%;
- border: 3px solid #ffdbd6;
- }
- .hero-btn {
- border: none;
- outline: none;
- border-radius: 3rem;
- margin-top: 0.5rem;
- padding: 0.6rem 1.5rem;
- background: linear-gradient(20deg, #ea5413, #920783);
- color: white;
- font-size: 1.1rem;
- box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.53);
- }
- .contact-btn {
- text-decoration: none;
- color: white;
- border: 1px solid #ea5413;
- padding: 0.6rem 1.5rem;
- outline: none;
- background-color: #ea5413;
- margin-top: 0.5rem;
- border-radius: 3rem;
- box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
- transition: all 0.3s;
- }
- .contact-btn:hover {
- color: #ea5413;
- background-color: transparent;
- border: 1px solid #ea5413;
- }
- .loaded {
- box-shadow: 0 4px 8px 0 rgba(53, 105, 128, 0.3), 0 6px 20px 0 rgba(165, 200, 213, 0.41);
- margin-bottom: 4rem;
- }
- .pageForm-title {
- padding: 0 0 0 40px;
- background-image: url(/imgs/dm/accept.png);
- background-position: 0 0;
- background-repeat: no-repeat;
- background-size: 30px auto;
- }
- .pageForm-txt {
- padding-left: 40px;
- }
- .pageForm-notice {
- padding-left: 40px;
- color: grey;
- margin-top: 50px;
- }
- .pageForm-p {
- padding: 40px;
- }
- .btn-detailForm {
- background-color: transparent;
- border: none;
- outline: none;
- color: #ff892e;
- padding: 0 0;
- padding-bottom: 0.1rem;
- margin-bottom: 0.8rem;
- display: inline-block;
- border-bottom: 1px dotted #ff892e;
- transition: all 0.4s;
- text-decoration: none;
- }
- .btn-detailForm:hover {
- transform: translate(2px, 2px);
- text-decoration: none;
- color: #ff892e;
- }
- @media (max-width: 1300px) {
- .header-right__video {
- position: absolute;
- width: 76%;
- }
- }
- @media (max-width: 992px) {
- .header-title {
- font-size: 3rem;
- }
- .cntheader .header-title {
- font-size: 2.2rem;
- }
- .header-right {
- height: 40vh;
- }
- .header-right-magnifier {
- right: -2.5rem;
- bottom: 1rem;
- }
- .header__sub {
- font-size: 1.3rem;
- }
- .header__sub::before,
- .header__sub::after {
- width: 8%;
- }
- .header__sub::before {
- left: 30%;
- }
- .header__sub::after {
- left: 62%;
- }
- .header__form__input {
- font-size: 0.9rem;
- }
- .category-btngrp {
- padding: 0;
- }
- .category-btn {
- padding: 0.3rem 1.5rem;
- font-size: 1.2rem;
- }
- .ctncategory-btn {
- padding: 0.2rem 1rem;
- font-size: 1rem;
- }
- .top3 .row {
- padding: 0;
- }
- .card__rank {
- padding: 0.8rem 1rem;
- }
- .top3__num {
- left: 0.6rem;
- top: -2.5rem;
- font-size: 4rem;
- }
- .card__rank__word {
- margin-left: 1.5rem;
- font-size: 1.2rem;
- }
- .card__rank hr {
- margin-top: 8px;
- margin-bottom: 8px;
- }
- .top20 .row {
- padding: 0;
- }
- .top20__num {
- font-size: 2.1rem;
- width: 1.6rem;
- }
- .container__footer {
- width: 95vw;
- }
- .header__form {
- width: 85%;
- position: relative;
- }
- .header__form__input {
- margin-left: 0;
- width: 100%;
- }
- .header__form__sub {
- transform: none;
- position: absolute;
- right: 0;
- top: 0;
- }
- .header-right-linecir {
- bottom: 0;
- }
- .cntheader__sub {
- font-size: 1.2rem;
- }
- .cntheader__sub::before {
- left: 13%;
- }
- .cntheader__sub::after {
- left: 72%;
- }
- .toparticle__title img {
- position: absolute;
- width: 90px;
- right: -2rem;
- top: -2rem;
- }
- .toparticle__top {
- font-size: 1.7rem;
- }
- .fb__fr {
- width: 100%;
- }
- .cntsubscribe__form {
- width: 100%;
- }
- .ai-training__action__box {
- flex-direction: column;
- }
- }
- @media (max-width: 767px) {
- .header .col-md-5 {
- margin-bottom: 3rem;
- }
- .header-right-bubble {
- width: 15%;
- }
- .header-right-magnifier {
- right: 4rem;
- bottom: 1rem;
- }
- .category {
- padding-top: 4rem;
- }
- .category.dm-description {
- padding-top: 4rem;
- padding-left: 0;
- padding-right: 0;
- margin-top: 4.5rem;
- }
- .category.mt-xl {
- margin-top: 8.5rem;
- }
- .category.dm-description h5 {
- padding-left: 1rem;
- padding-right: 1rem;
- }
- .top3 {
- padding-bottom: 2rem;
- }
- .top3 .col-md-4 {
- margin-bottom: 1.5rem;
- }
- .top3 .col-md-4:nth-of-type(3) {
- margin-bottom: 0;
- }
- .card__rank {
- margin-bottom: 1.5rem;
- }
- .row-right {
- margin-top: 2rem;
- }
- .cntheader {
- padding-bottom: 0rem;
- }
- .header-right__video {
- position: absolute;
- width: 70%;
- left: 2.3rem;
- top: 1.5rem;
- }
- .img-block-list {
- padding: 2rem 1.5rem;
- }
- .ai-training__card .card-img-top {
- height: 50vh;
- }
- }
- @media (max-width: 576px) {
- .header-title {
- font-size: 2.5rem;
- }
- .header.ai-training {
- height: 80vh;
- }
- .header-right {
- height: 30vh;
- }
- .header-right-magnifier {
- right: 0rem;
- bottom: 1.5rem;
- }
- .category-btn {
- padding: 0.2rem 1rem;
- font-size: 1rem;
- }
- .category {
- padding: 1rem;
- }
- .footer-img {
- height: 50px;
- }
- .footer {
- font-size: 0.9rem;
- }
- .pageForm-p {
- padding: 15px;
- }
- .pageForm {
- width: 95%;
- }
- }
- @media (max-width: 480px) {
- .ctncategory-btn {
- margin-top: 0.6rem;
- }
- .header-right__video {
- position: absolute;
- width: 75%;
- left: 2.1rem;
- top: 1.3rem;
- }
- }
- /* blog-traffic Start */
- .blog-traffic {
- overflow-x: hidden;
- }
- .blog-traffic .header {
- padding: 0;
- }
- .blog-traffic .banner {
- width: 100vw;
- height: auto;
- position: absolute;
- z-index: -10;
- }
- @media (max-width: 767px) {
- .blog-traffic .banner {
- width: 150vw;
- height: auto;
- }
- }
- .blog-traffic .header-img {
- width: 150%;
- height: auto;
- position: relative;
- top: -30px;
- right: 30px;
- z-index: -1;
- }
- @media (max-width: 767px) {
- .blog-traffic .header-img {
- width: 100%;
- top: -45px;
- right: unset;
- }
- }
- .blog-traffic .header-title {
- font-size: 2.5rem;
- line-height: 65px;
- font-weight: 600;
- color: #000;
- }
- @media (max-width: 768px) {
- .blog-traffic .header-title {
- font-size: 2.2rem;
- }
- }
- .blog-traffic .dm-description {
- margin-top: -250px;
- }
- @media (max-width: 1400px) {
- .blog-traffic .dm-description {
- margin-top: -190px;
- }
- }
- @media (max-width: 991px) {
- .blog-traffic .dm-description {
- margin-top: -100px;
- }
- }
- .blog-traffic .dm-description p {
- font-size: 20px;
- line-height: 32px;
- }
- .blog-traffic .category {
- padding: 0;
- position: relative;
- }
- .blog-traffic .category.dm-description {
- padding: 0;
- }
- @media (max-width: 575px) {
- .blog-traffic .category {
- padding: 0 10px;
- }
- }
- .blog-traffic .category h4 {
- font-size: 2rem;
- }
- .blog-traffic .category h4,
- .blog-traffic .category .sub-title {
- margin: 0;
- color: #f5ab1b;
- font-weight: bold;
- }
- .blog-traffic .category-sub-h2::after {
- width: 3rem;
- border-bottom: 10px solid #ea5413;
- margin-top: 15px;
- }
- .blog-traffic ul {
- padding: 0;
- list-style: none;
- }
- .blog-traffic ul li {
- line-height: 32px;
- }
- .blog-traffic .img-block-img {
- width: 12%;
- -o-object-fit: contain;
- object-fit: contain;
- image-rendering: -webkit-optimize-contrast;
- position: relative;
- top: -30px;
- }
- @media (max-width: 1200px) {
- .blog-traffic .img-block-img {
- top: -10px;
- }
- }
- @media (max-width: 991px) {
- .blog-traffic .img-block-img {
- width: 15%;
- }
- }
- @media (max-width: 767px) {
- .blog-traffic .img-block-img {
- width: 20%;
- top: 5px;
- }
- }
- @media (max-width: 490px) {
- .blog-traffic .img-block-img {
- top: 15px;
- }
- }
- @media (max-width: 414px) {
- .blog-traffic .img-block-img {
- top: 22px;
- }
- }
- @media (max-width: 1200px) {
- .blog-traffic .img-first {
- top: 0;
- }
- }
- @media (max-width: 767px) {
- .blog-traffic .img-first {
- top: 15px;
- }
- }
- @media (max-width: 490px) {
- .blog-traffic .img-first {
- top: 40px;
- }
- }
- .blog-traffic .add-img {
- width: 130px;
- margin: 10px auto 0;
- image-rendering: -webkit-optimize-contrast;
- }
- @media (max-width: 991px) {
- .blog-traffic .add-img {
- margin: 0 auto;
- }
- }
- @media (max-width: 767px) {
- .blog-traffic .add-img {
- margin: 10px auto -25px;
- }
- }
- .blog-traffic .purple-circle {
- width: 50%;
- left: -250px;
- bottom: 100px;
- }
- @media (max-width: 991px) {
- .blog-traffic .purple-circle {
- left: -150px;
- }
- }
- @media (max-width: 767px) {
- .blog-traffic .purple-circle {
- left: -50px;
- }
- }
- .blog-traffic .orange-circle {
- width: 50%;
- right: -200px;
- top: -200px;
- }
- @media (max-width: 767px) {
- .blog-traffic .orange-circle {
- right: -100px;
- top: -150px;
- }
- }
- .blog-traffic .data-text .circle {
- top: -250px;
- right: -5vw;
- }
- @media (max-width: 767px) {
- .blog-traffic .data-text .circle {
- top: 0px;
- }
- }
- /* blog-traffic End */
- /* youtube-views Start */
- #youtube-views {
- overflow-x: hidden;
- }
- #youtube-views h5 {
- line-height: 32px;
- }
- #youtube-views .title {
- color: #ea5413;
- font-size: 1.3rem;
- font-weight: bold;
- }
- #youtube-views .header-right {
- background-position: center;
- }
- #youtube-views .card-group {
- margin-top: 50px;
- }
- #youtube-views .card-group .card {
- box-shadow: 0 0 10px rgba(32, 32, 32, 0.25);
- }
- #youtube-views .card-group .card ul {
- padding: 0;
- list-style: none;
- }
- #youtube-views .card-group .card ul img {
- margin-bottom: 1px;
- }
- #youtube-views .card-group .card .price {
- width: 100%;
- padding: 10px 0;
- font-size: 28px;
- font-weight: bold;
- text-align: center;
- color: #fff;
- background-color: #ea5413;
- letter-spacing: 2px;
- }
- #youtube-views .card-group .card .buy-btn {
- padding: 10px 20px;
- color: #fff;
- border: 1px solid transparent;
- border-radius: 50px;
- background: #ea5413;
- transition: all 0.3s;
- }
- #youtube-views .card-group .card .buy-btn:hover {
- color: #ea5413;
- border: 1px solid #ea5413;
- background: #fff;
- }
- #youtube-views .card-group .paypal-content {
- margin: 0 20px;
- box-shadow: none;
- }
- #youtube-views .direction-list {
- margin-top: 100px;
- }
- #youtube-views .direction-list img {
- width: 50px;
- -o-object-fit: contain;
- object-fit: contain;
- filter: invert(33%) sepia(55%) saturate(2232%) hue-rotate(357deg) brightness(102%) contrast(89%);
- }
- #youtube-views .direction-list .content > div {
- margin-bottom: 40px;
- padding: 0px 15px;
- border-left: 1px solid rgba(0, 0, 0, 0.125);
- border-bottom: 1px solid rgba(0, 0, 0, 0.125);
- }
- #youtube-views .direction-list section h5 {
- margin: 0;
- font-size: 18px;
- font-weight: bold;
- }
- #youtube-views .direction-list section p {
- font-size: 14px;
- }
- #youtube-views .accordion-button {
- padding: 20px;
- }
- #youtube-views .accordion-button:not(.collapsed) {
- color: #ea5413 !important;
- background-color: #ffebe2 !important;
- }
- #youtube-views button:focus:not(:focus-visible) {
- box-shadow: none !important;
- }
- #youtube-views .accordion-button:not(.collapsed)::after {
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ea5413'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
- }
- @media (max-width: 767px) {
- #youtube-views .category.dm-description {
- padding-top: 6rem;
- }
- }
- @media (max-width: 575px) {
- #youtube-views .category.dm-description {
- padding-top: 14rem;
- }
- }
- /* youtube-views End */
- /* seo-image Start */
- .seo-image {
- overflow-x: hidden;
- }
- .seo-image p {
- line-height: 32px;
- }
- .seo-image .header {
- padding: 0;
- }
- .seo-image .video-box {
- width: 100%;
- padding-bottom: 56%;
- }
- .seo-image .content {
- margin: 150px auto;
- }
- @media (max-width: 767px) {
- .seo-image .content {
- margin: 80px auto;
- }
- }
- .seo-image .line {
- width: 820px;
- position: absolute;
- top: -70px;
- left: 345px;
- }
- @media (max-width: 1400px) {
- .seo-image .line {
- width: 840px;
- top: -85px;
- left: 210px;
- }
- }
- @media (max-width: 1200px) {
- .seo-image .line {
- width: 880px;
- top: -90px;
- left: 114px;
- }
- }
- @media (max-width: 991px) {
- .seo-image .line {
- display: none;
- }
- }
- .seo-image .title {
- font-size: 28px;
- color: #f6ab1c;
- font-weight: bold;
- }
- @media (max-width: 991px) {
- .seo-image .img-item {
- width: 100%;
- max-width: 100% !important;
- }
- }
- .seo-image .purple-circle,
- .seo-image .orange-circle {
- width: 100%;
- }
- @media (max-width: 991px) {
- .seo-image .purple-circle,
- .seo-image .orange-circle {
- width: 60%;
- }
- }
- .seo-image .purple-circle {
- top: -470px;
- right: -100%;
- }
- @media (max-width: 991px) {
- .seo-image .purple-circle {
- top: -350px;
- right: -150px;
- }
- }
- @media (max-width: 767px) {
- .seo-image .purple-circle {
- top: -250px;
- right: -20px;
- }
- }
- .seo-image .orange-circle {
- top: -200px;
- left: -100%;
- }
- @media (max-width: 991px) {
- .seo-image .orange-circle {
- top: -30vw;
- left: -20vw;
- }
- }
- .seo-image .data-text .circle {
- top: -400px;
- right: -5vw;
- }
- @media (max-width: 991px) {
- .seo-image .data-text .circle {
- top: -250px;
- }
- }
- @media (max-width: 767px) {
- .seo-image .data-text .circle {
- top: -120px;
- }
- }
- /* seo-image End */
- /* 共用 className Start */
- .purple-circle,
- .orange-circle {
- position: absolute;
- z-index: -1;
- }
- .data-text {
- position: relative;
- }
- .data-text p {
- font-size: 28px;
- font-weight: bold;
- text-align: center;
- }
- .data-text .circle {
- width: 500px;
- z-index: -100;
- position: absolute;
- }
- @media (max-width: 991px) {
- .data-text .circle {
- width: 400px;
- }
- }
- @media (max-width: 767px) {
- .data-text .circle {
- width: 250px;
- }
- }
- /* 共用 className End *//*# sourceMappingURL=style.css.map */
|