style.scss 19 KB

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