style.scss 22 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403
  1. * {
  2. letter-spacing: 1px;
  3. }
  4. .navbar {
  5. box-shadow: 0 2px 10px 2px rgb(204, 204, 204);
  6. background-color: white;
  7. width: 100%;
  8. }
  9. .navbar .navbar-collapse {
  10. flex-grow: 0;
  11. }
  12. .header {
  13. margin-top: 70px;
  14. position: relative;
  15. padding: 6rem 0 3rem;
  16. // padding-top: 6rem;
  17. // padding-bottom: 3rem;
  18. // @media (max-width: 767px) {
  19. // margin-top: 70px;
  20. // }
  21. }
  22. .header-lefttop {
  23. position: absolute;
  24. left: 0;
  25. top: 0;
  26. z-index: -1;
  27. width: 350px;
  28. }
  29. .header-title {
  30. font-size: 3rem;
  31. font-weight: bold;
  32. // color: #20616d;
  33. }
  34. .header__sub {
  35. color: #38a7bb;
  36. font-size: 1.5rem;
  37. font-weight: 300;
  38. position: relative;
  39. }
  40. .header__sub::before,
  41. .header__sub::after {
  42. content: " ";
  43. position: absolute;
  44. width: 12%;
  45. height: 1px;
  46. background-color: #38a7bb;
  47. top: 50%;
  48. }
  49. .header__sub::before {
  50. left: 28%;
  51. }
  52. .header__sub::after {
  53. left: 60%;
  54. }
  55. .header__form {
  56. margin: 1rem auto;
  57. justify-content: center;
  58. }
  59. .header__form__input {
  60. border-radius: 10rem;
  61. padding: 0.4rem 0.8rem;
  62. width: 60%;
  63. margin-left: 4.5rem;
  64. }
  65. .header__form__sub {
  66. border-radius: 10rem;
  67. background-color: #fca25e;
  68. color: white;
  69. border: none;
  70. width: 5rem;
  71. transform: translateX(-100%);
  72. transition: all 0.3s;
  73. }
  74. .header__form__sub:hover {
  75. background-color: #ff892e;
  76. }
  77. .header-right {
  78. width: 80%;
  79. height: 50vh;
  80. background-image: url("../imgs/電腦2.webp");
  81. background-size: contain;
  82. background-repeat: no-repeat;
  83. margin: 0 auto;
  84. position: relative;
  85. }
  86. .header-right.header-dm {
  87. background-image: url("https://i.imgur.com/SOu53ii.jpg");
  88. }
  89. .header-right-cir {
  90. width: 60%;
  91. position: absolute;
  92. right: 0%;
  93. top: -5%;
  94. z-index: -1;
  95. }
  96. .header-right__video {
  97. position: absolute;
  98. width: calc(80% - 10%);
  99. height: auto;
  100. left: 3.3rem;
  101. top: 1.8rem;
  102. }
  103. .header-right-magnifier {
  104. position: absolute;
  105. width: 25%;
  106. right: 3%;
  107. bottom: 1%;
  108. }
  109. .header-right-bubble {
  110. position: absolute;
  111. width: 22%;
  112. top: 0;
  113. left: 0;
  114. transform: translate(-60%, -50%);
  115. }
  116. .header-right-linecir {
  117. width: 45%;
  118. position: absolute;
  119. left: -8%;
  120. bottom: -3%;
  121. z-index: -1;
  122. }
  123. /* footer.html Start */
  124. .footer {
  125. color: #656565;
  126. .footer-contacts {
  127. margin-top: 2rem;
  128. line-height: 32px;
  129. }
  130. }
  131. .footer a {
  132. color: #656565;
  133. text-decoration: none;
  134. }
  135. .footer h5 {
  136. color: black;
  137. font-weight: 600;
  138. padding-bottom: 15px;
  139. }
  140. .footer .link {
  141. padding-bottom: 20px;
  142. }
  143. .footer {
  144. background-color: #f0f0f0;
  145. padding: 3rem;
  146. }
  147. .footer .right-column {
  148. border-left: 1px solid black;
  149. }
  150. .footer .footer-aigirl {
  151. font-weight: 600;
  152. font-size: 2rem;
  153. margin-top: 1rem;
  154. margin-bottom: 1rem;
  155. }
  156. .footer .footer-follow {
  157. font-size: 1.6rem;
  158. margin-bottom: 1rem;
  159. color: black;
  160. font-size: 1rem;
  161. font-weight: 600;
  162. margin-top: 2rem;
  163. }
  164. .footer .footer-socials a {
  165. margin-right: 5px;
  166. }
  167. /* footer.html End */
  168. /* footer_default.html Start */
  169. // .footer {
  170. // background-color: #555555;
  171. // padding: 50px 0;
  172. // color: #999999;
  173. // }
  174. .footer h4 {
  175. text-transform: uppercase;
  176. color: white;
  177. font-size: 14px;
  178. font-weight: 800;
  179. }
  180. .footer__btn__text {
  181. font-size: 1.3rem;
  182. color: white;
  183. }
  184. .footer .btn {
  185. border: 2px solid #38a7bb;
  186. color: #38a7bb;
  187. text-decoration: none;
  188. }
  189. .followus__btn {
  190. text-decoration: none;
  191. color: white;
  192. }
  193. .followus__btn:hover {
  194. color: #38a7bb;
  195. }
  196. .footer .btn:hover {
  197. color: white;
  198. background-color: #38a7bb;
  199. }
  200. .followus__txt {
  201. display: inline-block;
  202. margin-right: 1rem;
  203. color: white;
  204. font-weight: 600;
  205. }
  206. .footer-img {
  207. height: 60px;
  208. }
  209. /* footer_default.html End */
  210. /* iframe Start */
  211. .video-box {
  212. position: relative;
  213. width: 70%;
  214. height: 0;
  215. padding-bottom: 40%;
  216. }
  217. @media (max-width: 1200px) {
  218. .video-box {
  219. width: 80%;
  220. padding-bottom: 45%;
  221. }
  222. }
  223. @media (max-width: 767px) {
  224. .video-box {
  225. margin: 50px auto 0;
  226. }
  227. }
  228. @media (max-width: 576px) {
  229. .video-box {
  230. width: 90%;
  231. padding-bottom: 50%;
  232. }
  233. }
  234. .video-box iframe {
  235. position: absolute;
  236. top: 0;
  237. left: 0;
  238. width: 100%;
  239. height: 100%;
  240. }
  241. /* iframe End */
  242. .category {
  243. padding: 2rem 0rem;
  244. }
  245. .category.dm-description {
  246. padding: 2rem 8rem;
  247. }
  248. .category-sub-h2 {
  249. position: relative;
  250. }
  251. .category-sub-h2::after {
  252. position: absolute;
  253. content: "";
  254. width: 4rem;
  255. height: 1rem;
  256. border-bottom: 10px solid #ff892e;
  257. left: 50%;
  258. top: -1.5rem;
  259. transform: translateX(-50%);
  260. }
  261. .category-btngrp {
  262. padding: 0 8rem;
  263. }
  264. .category-btn {
  265. background-color: #a7d9e2;
  266. border: none;
  267. border-radius: 5rem;
  268. outline: none;
  269. color: white;
  270. font-size: 1.3rem;
  271. padding: 0.4rem 2rem;
  272. text-decoration: none;
  273. }
  274. .category-btn.active {
  275. background-color: #38a7bb;
  276. text-decoration: none;
  277. color: white;
  278. }
  279. .card__rank {
  280. border: 1px solid #cecece;
  281. box-shadow: 1px 1px 5px 1px rgb(211, 211, 211);
  282. position: relative;
  283. padding: 1rem 1.5rem;
  284. }
  285. .top20 .card__rank {
  286. margin-bottom: 1.5rem;
  287. }
  288. .top3 {
  289. padding: 3rem 0rem;
  290. padding-bottom: 5rem;
  291. position: relative;
  292. }
  293. .top3 .row {
  294. padding: 0rem 4rem;
  295. }
  296. .top3 .backfill {
  297. position: absolute;
  298. width: 100%;
  299. height: 100px;
  300. background-color: #ffebe8;
  301. left: 0;
  302. right: 0;
  303. top: 7rem;
  304. }
  305. .top3__num {
  306. color: #fca25e;
  307. font-size: 5.8rem;
  308. font-family: "Trebuchet MS";
  309. position: absolute;
  310. left: 1rem;
  311. top: -3.5rem;
  312. font-weight: 300;
  313. }
  314. .card__rank__word {
  315. color: #20616d;
  316. margin-left: 3rem;
  317. font-size: 1.8rem;
  318. font-weight: 400;
  319. }
  320. .card__rank__goto {
  321. text-align: right;
  322. }
  323. .card__rank__link {
  324. color: #38a7bb;
  325. text-decoration: none;
  326. font-weight: 400;
  327. }
  328. .card__rank__link:hover {
  329. color: #19879b;
  330. }
  331. .top20 {
  332. padding-bottom: 5rem;
  333. }
  334. .top20 .row {
  335. padding: 0rem 4rem;
  336. }
  337. .top20 .card__rank__word {
  338. margin-left: 0;
  339. }
  340. .top20__num {
  341. color: #fca25e;
  342. font-size: 2.5rem;
  343. font-family: "Trebuchet MS";
  344. font-weight: 300;
  345. display: inline-block;
  346. width: 3rem;
  347. }
  348. /* content page */
  349. .cntheader {
  350. margin-top: 81px;
  351. padding: 4rem 0;
  352. position: relative;
  353. padding-bottom: 2rem;
  354. }
  355. .cntheader__sub {
  356. color: #38a7bb;
  357. font-size: 1.5rem;
  358. font-weight: 300;
  359. position: relative;
  360. }
  361. .cntheader__sub::before,
  362. .cntheader__sub::after {
  363. content: " ";
  364. position: absolute;
  365. width: 15%;
  366. height: 1px;
  367. background-color: #38a7bb;
  368. top: 50%;
  369. }
  370. .cntheader__sub::before {
  371. left: 18%;
  372. }
  373. .cntheader__sub::after {
  374. left: 67%;
  375. }
  376. .cntheader .category-btngrp {
  377. padding: 0 4rem;
  378. }
  379. .card__art {
  380. padding: 1rem;
  381. border: 1px solid #20616d;
  382. border-radius: 1rem;
  383. margin-bottom: 1rem;
  384. }
  385. .card__title {
  386. font-size: 1.8rem;
  387. font-weight: 400;
  388. }
  389. .card__text {
  390. color: #918f8f;
  391. }
  392. .card__link {
  393. display: inline-block;
  394. color: #38a7bb;
  395. margin-right: 1rem;
  396. text-decoration: none;
  397. }
  398. .card__link:hover {
  399. color: #20616d;
  400. }
  401. .toparticle {
  402. border: 1px solid #cecece;
  403. box-shadow: 1px 2px 3px 1px rgb(224, 224, 224);
  404. }
  405. .toparticle__title {
  406. color: white;
  407. background-color: #38a7bb;
  408. text-align: center;
  409. font-size: 1.3rem;
  410. padding: 0.3rem 0;
  411. position: relative;
  412. }
  413. .toparticle__title img {
  414. position: absolute;
  415. width: 150px;
  416. right: -4rem;
  417. top: -3.5rem;
  418. }
  419. .toparticle__list {
  420. padding: 1.5rem;
  421. padding-top: 0;
  422. list-style: none;
  423. padding-bottom: 1rem;
  424. }
  425. .toparticle__list-item {
  426. padding: 0.3rem;
  427. border-bottom: 1px solid #cecece;
  428. color: #38a7bb;
  429. position: relative;
  430. }
  431. .toparticle__list-item:nth-of-type(10) {
  432. border: none;
  433. }
  434. .toparticle__list-item a {
  435. text-decoration: none;
  436. color: #38a7bb;
  437. }
  438. .toparticle__num {
  439. color: #fca25e;
  440. font-size: 1.8rem;
  441. font-family: "Trebuchet MS";
  442. font-weight: 300;
  443. margin-right: 8px;
  444. }
  445. .toparticle__top {
  446. font-size: 2rem;
  447. }
  448. .toparticle__list-item small {
  449. position: absolute;
  450. right: 0;
  451. top: 45%;
  452. }
  453. .cntsubscribe {
  454. text-align: center;
  455. }
  456. .cntsubscribe__form {
  457. position: relative;
  458. }
  459. .cntsubscribe__sub {
  460. border-radius: 10rem;
  461. background-color: #fca25e;
  462. color: white;
  463. border: none;
  464. width: 5rem;
  465. position: absolute;
  466. right: 0;
  467. top: 0;
  468. padding: 0.45rem 0.8rem;
  469. }
  470. .cntsubscribe__sub:hover {
  471. background-color: #ff892e;
  472. color: white;
  473. }
  474. .cntsubscribe__input {
  475. border-radius: 10rem;
  476. padding: 0.4rem 0.8rem;
  477. width: 100%;
  478. }
  479. .img-block .img-block-img {
  480. width: 70%;
  481. }
  482. .img-block-list {
  483. padding: 2rem 6rem;
  484. }
  485. .img-block-linecir {
  486. position: absolute;
  487. right: 10%;
  488. bottom: 5%;
  489. width: 30%;
  490. z-index: -1;
  491. }
  492. .img-block-linecir.left {
  493. right: -10%;
  494. bottom: -5%;
  495. }
  496. .img-block-linecir.right {
  497. left: -10%;
  498. bottom: -5%;
  499. }
  500. .img-block-linecir.left {
  501. left: -10%;
  502. bottom: -5%;
  503. }
  504. .aboutus_img {
  505. width: 100%;
  506. }
  507. .aboutus_prize_img {
  508. border: 1.5rem solid rgb(231, 231, 231);
  509. border-radius: 1rem;
  510. }
  511. .header__ai-training__span {
  512. width: 6rem;
  513. height: 6rem;
  514. padding: 1rem;
  515. display: inline-block;
  516. font-size: 1.4rem;
  517. background-color: rgb(255, 255, 159);
  518. border-radius: 50%;
  519. }
  520. .ai-training__action {
  521. border: 3px dashed #ffebe8;
  522. }
  523. .ai-training__card .card-img-top {
  524. height: 35vh;
  525. }
  526. .ai-training__action ul {
  527. list-style: none;
  528. line-height: 2rem;
  529. }
  530. .ai-training__action__box {
  531. flex-direction: row;
  532. }
  533. .ai-training__action__btn {
  534. padding: 0.5rem 2rem;
  535. border: none;
  536. outline: none;
  537. border-radius: 4rem;
  538. background: #ea5413;
  539. font-size: 1.3rem;
  540. color: white;
  541. }
  542. .ai-training__action__img {
  543. width: 15rem;
  544. height: 15rem;
  545. background-repeat: no-repeat;
  546. background-position: center;
  547. background-size: cover;
  548. border-radius: 50%;
  549. border: 3px solid #ffdbd6;
  550. }
  551. .hero-btn {
  552. border: none;
  553. outline: none;
  554. border-radius: 3rem;
  555. margin-top: 0.5rem;
  556. padding: 0.6rem 1.5rem;
  557. background: linear-gradient(20deg, #ea5413, #920783);
  558. color: white;
  559. font-size: 1.1rem;
  560. box-shadow: 1px 1px 5px 1px #cfcfcf87;
  561. }
  562. .contact-btn {
  563. text-decoration: none;
  564. color: white;
  565. border: 1px solid #ea5413;
  566. padding: 0.6rem 1.5rem;
  567. outline: none;
  568. background-color: #ea5413;
  569. margin-top: 0.5rem;
  570. border-radius: 3rem;
  571. box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
  572. transition: all 0.3s;
  573. &:hover {
  574. color: #ea5413;
  575. background-color: transparent;
  576. border: 1px solid #ea5413;
  577. }
  578. }
  579. .loaded {
  580. box-shadow: 0 4px 8px 0 #3569804d, 0 6px 20px 0 #a5c8d569;
  581. margin-bottom: 4rem;
  582. }
  583. .pageForm-title {
  584. padding: 0 0 0 40px;
  585. background-image: url(/imgs/dm/accept.png);
  586. background-position: 0 0;
  587. background-repeat: no-repeat;
  588. background-size: 30px auto;
  589. }
  590. .pageForm-txt {
  591. padding-left: 40px;
  592. }
  593. .pageForm-notice {
  594. padding-left: 40px;
  595. color: grey;
  596. margin-top: 50px;
  597. }
  598. .pageForm-p {
  599. padding: 40px;
  600. }
  601. .btn-detailForm {
  602. background-color: transparent;
  603. border: none;
  604. outline: none;
  605. color: #ff892e;
  606. padding: 0 0;
  607. padding-bottom: 0.1rem;
  608. margin-bottom: 0.8rem;
  609. display: inline-block;
  610. border-bottom: 1px dotted #ff892e;
  611. transition: all 0.4s;
  612. text-decoration: none;
  613. }
  614. .btn-detailForm:hover {
  615. transform: translate(2px, 2px);
  616. text-decoration: none;
  617. color: #ff892e;
  618. }
  619. @media (max-width: 1300px) {
  620. .header-right__video {
  621. position: absolute;
  622. width: calc(80% - 4%);
  623. }
  624. }
  625. @media (max-width: 992px) {
  626. .header-title {
  627. font-size: 3rem;
  628. }
  629. .cntheader .header-title {
  630. font-size: 2.2rem;
  631. }
  632. // .header {
  633. // padding-top: 4rem;
  634. // height: 50vh;
  635. // }
  636. .header-right {
  637. height: 40vh;
  638. }
  639. .header-right-magnifier {
  640. right: -2.5rem;
  641. bottom: 1rem;
  642. }
  643. .header__sub {
  644. font-size: 1.3rem;
  645. }
  646. .header__sub::before,
  647. .header__sub::after {
  648. width: 8%;
  649. }
  650. .header__sub::before {
  651. left: 30%;
  652. }
  653. .header__sub::after {
  654. left: 62%;
  655. }
  656. .header__form__input {
  657. font-size: 0.9rem;
  658. }
  659. .category-btngrp {
  660. padding: 0;
  661. }
  662. .category-btn {
  663. padding: 0.3rem 1.5rem;
  664. font-size: 1.2rem;
  665. }
  666. .ctncategory-btn {
  667. padding: 0.2rem 1rem;
  668. font-size: 1rem;
  669. }
  670. .top3 .row {
  671. padding: 0;
  672. }
  673. .card__rank {
  674. padding: 0.8rem 1rem;
  675. }
  676. .top3__num {
  677. left: 0.6rem;
  678. top: -2.5rem;
  679. font-size: 4rem;
  680. }
  681. .card__rank__word {
  682. margin-left: 1.5rem;
  683. font-size: 1.2rem;
  684. }
  685. .card__rank hr {
  686. margin-top: 8px;
  687. margin-bottom: 8px;
  688. }
  689. .top20 .row {
  690. padding: 0;
  691. }
  692. .top20__num {
  693. font-size: 2.1rem;
  694. width: 1.6rem;
  695. }
  696. .container__footer {
  697. width: 95vw;
  698. }
  699. .header__form {
  700. width: 85%;
  701. position: relative;
  702. }
  703. .header__form__input {
  704. margin-left: 0;
  705. width: 100%;
  706. }
  707. .header__form__sub {
  708. transform: none;
  709. position: absolute;
  710. right: 0;
  711. top: 0;
  712. }
  713. .header-right-linecir {
  714. bottom: 0;
  715. }
  716. .cntheader__sub {
  717. font-size: 1.2rem;
  718. }
  719. .cntheader__sub::before {
  720. left: 13%;
  721. }
  722. .cntheader__sub::after {
  723. left: 72%;
  724. }
  725. .toparticle__title img {
  726. position: absolute;
  727. width: 90px;
  728. right: -2rem;
  729. top: -2rem;
  730. }
  731. .toparticle__top {
  732. font-size: 1.7rem;
  733. }
  734. .fb__fr {
  735. width: 100%;
  736. }
  737. .cntsubscribe__form {
  738. width: 100%;
  739. }
  740. .ai-training__action__box {
  741. flex-direction: column;
  742. }
  743. }
  744. @media (max-width: 767px) {
  745. // .header {
  746. // height: 70vh;
  747. // }
  748. .header .col-md-5 {
  749. margin-bottom: 3rem;
  750. }
  751. .header-right-bubble {
  752. width: 15%;
  753. }
  754. .header-right-magnifier {
  755. right: 4rem;
  756. bottom: 1rem;
  757. }
  758. .category {
  759. padding-top: 4rem;
  760. }
  761. .category.dm-description {
  762. padding-top: 4rem;
  763. padding-left: 0;
  764. padding-right: 0;
  765. margin-top: 4.5rem;
  766. }
  767. .category.mt-xl {
  768. margin-top: 8.5rem;
  769. }
  770. .category.dm-description h5 {
  771. padding-left: 1rem;
  772. padding-right: 1rem;
  773. }
  774. .top3 {
  775. padding-bottom: 2rem;
  776. }
  777. .top3 .col-md-4 {
  778. margin-bottom: 1.5rem;
  779. }
  780. .top3 .col-md-4:nth-of-type(3) {
  781. margin-bottom: 0;
  782. }
  783. .card__rank {
  784. margin-bottom: 1.5rem;
  785. }
  786. .row-right {
  787. margin-top: 2rem;
  788. }
  789. .cntheader {
  790. padding-bottom: 0rem;
  791. }
  792. .header-right__video {
  793. position: absolute;
  794. width: calc(80% - 10%);
  795. left: 2.3rem;
  796. top: 1.5rem;
  797. }
  798. .img-block-list {
  799. padding: 2rem 1.5rem;
  800. }
  801. .ai-training__card .card-img-top {
  802. height: 50vh;
  803. }
  804. }
  805. @media (max-width: 576px) {
  806. .header-title {
  807. font-size: 2.5rem;
  808. }
  809. // .header {
  810. // padding-top: 3rem;
  811. // height: 63vh;
  812. // padding-bottom: 0rem;
  813. // }
  814. .header.ai-training {
  815. height: 80vh;
  816. }
  817. .header-right {
  818. height: 30vh;
  819. }
  820. .header-right-magnifier {
  821. right: 0rem;
  822. bottom: 1.5rem;
  823. }
  824. .category-btn {
  825. padding: 0.2rem 1rem;
  826. font-size: 1rem;
  827. }
  828. .category {
  829. padding: 1rem;
  830. }
  831. .footer-img {
  832. height: 50px;
  833. }
  834. .footer {
  835. font-size: 0.9rem;
  836. }
  837. .pageForm-p {
  838. padding: 15px;
  839. }
  840. .pageForm {
  841. width: 95%;
  842. }
  843. }
  844. @media (max-width: 480px) {
  845. .ctncategory-btn {
  846. margin-top: 0.6rem;
  847. }
  848. .header-right__video {
  849. position: absolute;
  850. width: calc(80% - 5%);
  851. left: 2.1rem;
  852. top: 1.3rem;
  853. }
  854. }
  855. /* blog-traffic Start */
  856. .blog-traffic {
  857. overflow-x: hidden;
  858. .header {
  859. padding: 0;
  860. }
  861. .banner {
  862. width: 100vw;
  863. height: auto;
  864. position: absolute;
  865. z-index: -10;
  866. @media (max-width: 767px) {
  867. width: 150vw;
  868. height: auto;
  869. }
  870. }
  871. .header-img {
  872. width: 150%;
  873. height: auto;
  874. position: relative;
  875. top: -30px;
  876. right: 30px;
  877. z-index: -1;
  878. @media (max-width: 767px) {
  879. width: 100%;
  880. top: -45px;
  881. right: unset;
  882. }
  883. }
  884. .header-title {
  885. font-size: 2.5rem;
  886. line-height: 65px;
  887. font-weight: 600;
  888. color: #000;
  889. @media (max-width: 768px) {
  890. font-size: 2.2rem;
  891. }
  892. }
  893. .dm-description {
  894. margin-top: -250px;
  895. @media (max-width: 1400px) {
  896. margin-top: -190px;
  897. }
  898. @media (max-width: 991px) {
  899. margin-top: -100px;
  900. }
  901. p {
  902. font-size: 20px;
  903. line-height: 32px;
  904. }
  905. }
  906. .category {
  907. padding: 0;
  908. position: relative;
  909. &.dm-description {
  910. padding: 0;
  911. }
  912. @media (max-width: 575px) {
  913. padding: 0 10px;
  914. }
  915. h4 {
  916. font-size: 2rem;
  917. }
  918. h4,
  919. .sub-title {
  920. margin: 0;
  921. color: #f5ab1b;
  922. font-weight: bold;
  923. }
  924. }
  925. .category-sub-h2::after {
  926. width: 3rem;
  927. border-bottom: 10px solid #ea5413;
  928. margin-top: 15px;
  929. }
  930. ul {
  931. padding: 0;
  932. list-style: none;
  933. li {
  934. line-height: 32px;
  935. }
  936. }
  937. .img-block-img {
  938. width: 12%;
  939. object-fit: contain;
  940. image-rendering: -webkit-optimize-contrast;
  941. position: relative;
  942. top: -30px;
  943. @media (max-width: 1200px) {
  944. top: -10px;
  945. }
  946. @media (max-width: 991px) {
  947. width: 15%;
  948. }
  949. @media (max-width: 767px) {
  950. width: 20%;
  951. top: 5px;
  952. }
  953. @media (max-width: 490px) {
  954. top: 15px;
  955. }
  956. @media (max-width: 414px) {
  957. top: 22px;
  958. }
  959. }
  960. .img-first {
  961. @media (max-width: 1200px) {
  962. top: 0;
  963. }
  964. @media (max-width: 767px) {
  965. top: 15px;
  966. }
  967. @media (max-width: 490px) {
  968. top: 40px;
  969. }
  970. }
  971. .add-img {
  972. width: 130px;
  973. margin: 10px auto 0;
  974. image-rendering: -webkit-optimize-contrast;
  975. @media (max-width: 991px) {
  976. margin: 0 auto;
  977. }
  978. @media (max-width: 767px) {
  979. margin: 10px auto -25px;
  980. }
  981. }
  982. .purple-circle {
  983. width: 50%;
  984. left: -250px;
  985. bottom: 100px;
  986. @media (max-width: 991px) {
  987. left: -150px;
  988. }
  989. @media (max-width: 767px) {
  990. left: -50px;
  991. }
  992. }
  993. .orange-circle {
  994. width: 50%;
  995. right: -200px;
  996. top: -200px;
  997. @media (max-width: 767px) {
  998. right: -100px;
  999. top: -150px;
  1000. }
  1001. }
  1002. .data-text {
  1003. .circle {
  1004. top: -250px;
  1005. right: -5vw;
  1006. @media (max-width: 767px) {
  1007. top: 0px;
  1008. }
  1009. }
  1010. }
  1011. }
  1012. /* blog-traffic End */
  1013. /* seo Start */
  1014. #seo-dm {
  1015. overflow: hidden;
  1016. .stock-01 {
  1017. position: absolute;
  1018. z-index: -1;
  1019. width: 800px;
  1020. top: -180px;
  1021. left: -300px;
  1022. }
  1023. .bg-img {
  1024. width: 50%;
  1025. position: absolute;
  1026. right: -50px;
  1027. z-index: -1;
  1028. }
  1029. .block-content {
  1030. margin-left: -35px;
  1031. h3 {
  1032. color: #f6ab1c;
  1033. font-size: 2.2rem;
  1034. font-weight: bold;
  1035. }
  1036. p {
  1037. color: #656565;
  1038. font-weight: bold;
  1039. }
  1040. }
  1041. }
  1042. /* seo End */
  1043. /* youtube-views Start */
  1044. #youtube-views {
  1045. overflow-x: hidden;
  1046. h5 {
  1047. line-height: 32px;
  1048. }
  1049. .title {
  1050. color: #ea5413;
  1051. font-size: 1.3rem;
  1052. font-weight: bold;
  1053. }
  1054. .header-right {
  1055. background-position: center;
  1056. }
  1057. .card-group {
  1058. margin-top: 50px;
  1059. .card {
  1060. box-shadow: 0 0 10px #20202040;
  1061. ul {
  1062. padding: 0;
  1063. list-style: none;
  1064. img {
  1065. margin-bottom: 1px;
  1066. }
  1067. }
  1068. .price {
  1069. width: 100%;
  1070. padding: 10px 0;
  1071. font-size: 28px;
  1072. font-weight: bold;
  1073. text-align: center;
  1074. color: #fff;
  1075. background-color: #ea5413;
  1076. letter-spacing: 2px;
  1077. }
  1078. .buy-btn {
  1079. padding: 10px 20px;
  1080. color: #fff;
  1081. border: 1px solid transparent;
  1082. border-radius: 50px;
  1083. background: #ea5413;
  1084. transition: all 0.3s;
  1085. &:hover {
  1086. color: #ea5413;
  1087. border: 1px solid #ea5413;
  1088. background: #fff;
  1089. }
  1090. }
  1091. }
  1092. .paypal-content {
  1093. margin: 0 20px;
  1094. box-shadow: none;
  1095. }
  1096. }
  1097. .direction-list {
  1098. margin-top: 100px;
  1099. img {
  1100. width: 50px;
  1101. object-fit: contain;
  1102. filter: invert(33%) sepia(55%) saturate(2232%) hue-rotate(357deg) brightness(102%) contrast(89%);
  1103. }
  1104. .content > div {
  1105. margin-bottom: 40px;
  1106. padding: 0px 15px;
  1107. border-left: 1px solid rgba(0, 0, 0, 0.125);
  1108. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  1109. }
  1110. section {
  1111. h5 {
  1112. margin: 0;
  1113. font-size: 18px;
  1114. font-weight: bold;
  1115. }
  1116. p {
  1117. font-size: 14px;
  1118. }
  1119. }
  1120. }
  1121. .accordion-button {
  1122. padding: 20px;
  1123. }
  1124. .accordion-button:not(.collapsed) {
  1125. color: #ea5413 !important;
  1126. background-color: #ffebe2 !important;
  1127. }
  1128. button:focus:not(:focus-visible) {
  1129. box-shadow: none !important;
  1130. }
  1131. .accordion-button:not(.collapsed)::after {
  1132. 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");
  1133. }
  1134. @media (max-width: 767px) {
  1135. & .category.dm-description {
  1136. padding-top: 6rem;
  1137. }
  1138. }
  1139. @media (max-width: 575px) {
  1140. & .category.dm-description {
  1141. padding-top: 14rem;
  1142. }
  1143. }
  1144. }
  1145. /* youtube-views End */
  1146. /* seo-image Start */
  1147. .seo-image {
  1148. overflow-x: hidden;
  1149. p {
  1150. line-height: 32px;
  1151. }
  1152. .header {
  1153. padding: 0;
  1154. }
  1155. .video-box {
  1156. width: 100%;
  1157. padding-bottom: 56%;
  1158. }
  1159. .content {
  1160. margin: 150px auto;
  1161. @media (max-width: 767px) {
  1162. margin: 80px auto;
  1163. }
  1164. }
  1165. .line {
  1166. width: 820px;
  1167. position: absolute;
  1168. top: -70px;
  1169. left: 345px;
  1170. @media (max-width: 1400px) {
  1171. width: 840px;
  1172. top: -85px;
  1173. left: 210px;
  1174. }
  1175. @media (max-width: 1200px) {
  1176. width: 880px;
  1177. top: -90px;
  1178. left: 114px;
  1179. }
  1180. @media (max-width: 991px) {
  1181. display: none;
  1182. }
  1183. }
  1184. .title {
  1185. font-size: 28px;
  1186. color: #f6ab1c;
  1187. font-weight: bold;
  1188. }
  1189. .img-item {
  1190. @media (max-width: 991px) {
  1191. width: 100%;
  1192. max-width: 100% !important;
  1193. }
  1194. }
  1195. .purple-circle,
  1196. .orange-circle {
  1197. width: 100%;
  1198. @media (max-width: 991px) {
  1199. width: 60%;
  1200. }
  1201. }
  1202. .purple-circle {
  1203. top: -470px;
  1204. right: -100%;
  1205. @media (max-width: 991px) {
  1206. top: -350px;
  1207. right: -150px;
  1208. }
  1209. @media (max-width: 767px) {
  1210. top: -250px;
  1211. right: -20px;
  1212. }
  1213. }
  1214. .orange-circle {
  1215. top: -200px;
  1216. left: -100%;
  1217. @media (max-width: 991px) {
  1218. top: -30vw;
  1219. left: -20vw;
  1220. }
  1221. }
  1222. .data-text {
  1223. .circle {
  1224. top: -400px;
  1225. right: -5vw;
  1226. @media (max-width: 991px) {
  1227. top: -250px;
  1228. }
  1229. @media (max-width: 767px) {
  1230. top: -120px;
  1231. }
  1232. }
  1233. }
  1234. }
  1235. /* seo-image End */
  1236. /* 共用 className Start */
  1237. .purple-circle,
  1238. .orange-circle {
  1239. position: absolute;
  1240. z-index: -1;
  1241. }
  1242. .data-text {
  1243. position: relative;
  1244. p {
  1245. font-size: 28px;
  1246. font-weight: bold;
  1247. text-align: center;
  1248. }
  1249. .circle {
  1250. width: 500px;
  1251. z-index: -100;
  1252. position: absolute;
  1253. @media (max-width: 991px) {
  1254. width: 400px;
  1255. }
  1256. @media (max-width: 767px) {
  1257. width: 250px;
  1258. }
  1259. }
  1260. }
  1261. /* 共用 className End */