style.scss 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930
  1. @font-face {
  2. font-family: 'AudiType';
  3. src: url('/fonts/AudiTypeVF.woff2') format('woff2-variations');
  4. font-display: swap;
  5. font-style: normal;
  6. font-stretch: 130%;
  7. }
  8. // Utility classes for padding and margin (1-100)
  9. @for $i from 0 through 200 {
  10. // Padding
  11. .pt--#{$i} { padding-top: #{$i}px !important; }
  12. .pr--#{$i} { padding-right: #{$i}px !important; }
  13. .pb--#{$i} { padding-bottom: #{$i}px !important; }
  14. .pl--#{$i} { padding-left: #{$i}px !important; }
  15. .p--#{$i} { padding: #{$i}px !important; }
  16. // Margin
  17. .mt--#{$i} { margin-top: #{$i}px !important; }
  18. .mr--#{$i} { margin-right: #{$i}px !important; }
  19. .mb--#{$i} { margin-bottom: #{$i}px !important; }
  20. .ml--#{$i} { margin-left: #{$i}px !important; }
  21. .m--#{$i} { margin: #{$i}px !important; }
  22. }
  23. body{
  24. background-color: hsla(216, 23%, 8%, 1);
  25. color: rgb(252, 252, 253);
  26. font-family: 'AudiType';
  27. font-weight: 400;
  28. }
  29. .ellipsis1 {
  30. overflow: hidden;
  31. text-overflow: ellipsis;
  32. display: -webkit-box;
  33. -webkit-line-clamp: 1;
  34. -webkit-box-orient: vertical;
  35. }
  36. .ellipsis2 {
  37. overflow: hidden;
  38. text-overflow: ellipsis;
  39. display: -webkit-box;
  40. -webkit-line-clamp: 2;
  41. -webkit-box-orient: vertical;
  42. }
  43. .ellipsis3 {
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. display: -webkit-box;
  47. -webkit-line-clamp: 3;
  48. -webkit-box-orient: vertical;
  49. }
  50. *{
  51. background-repeat: no-repeat;
  52. }
  53. .ico, ::after, ::before{
  54. display: inline-block;
  55. background-repeat: no-repeat;
  56. background-position: center;
  57. }
  58. button{
  59. cursor: pointer;
  60. }
  61. main{
  62. .visual--section{
  63. position: relative;
  64. margin: 0 auto;
  65. max-width: 1920px;
  66. width: 100%;
  67. &::after{
  68. content: '';
  69. width: 100%;
  70. position: absolute;
  71. height: 100%;
  72. background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  73. top: 0;
  74. left: 0;
  75. }
  76. &.h--800{
  77. .img--wrap{
  78. height: 800px;
  79. }
  80. }
  81. &.h--430{
  82. .img--wrap{
  83. height: 430px;
  84. img{
  85. object-position: 70% top;
  86. }
  87. }
  88. }
  89. .img--wrap{
  90. overflow: hidden;
  91. height: 100vh;
  92. img{
  93. width: 100%;
  94. max-width: 100%;
  95. height: 100%;
  96. object-fit: cover;
  97. }
  98. }
  99. .title--wrap{
  100. position: absolute;
  101. z-index: 3;
  102. top: 0;
  103. left: 0;
  104. color: rgb(2, 2, 3);
  105. padding: 40px 96px;
  106. >h2{
  107. font-size: 44px;
  108. margin-bottom: 8px;
  109. }
  110. >p{
  111. font-size: 20px;
  112. }
  113. .greeting--txt{
  114. margin-top: 30px;
  115. line-height: 1.7;
  116. font-size: 14px;
  117. height: 190px;
  118. }
  119. &.color--white{
  120. color: #fcfcfd;
  121. }
  122. }
  123. .desc--wrap{
  124. .desc{
  125. font-size: 12px;
  126. color: rgba(252, 252, 253, 0.7);
  127. padding: 24px 96px;
  128. }
  129. }
  130. }
  131. // audi stories
  132. .detail--container{
  133. max-width: 1920px;
  134. width: 100%;
  135. margin: 0 auto;
  136. .title--wrap{
  137. padding: 40px;
  138. text-align: center;
  139. h2{
  140. font-size: 72px;
  141. margin-bottom: 24px;
  142. }
  143. p{
  144. color: rgba(252, 252, 253, 0.7);
  145. font-size: 16px;
  146. }
  147. }
  148. .content--wrap{
  149. padding: 40px 88px;
  150. .tech--card--wrap{
  151. display: flex;
  152. row-gap: 72px;
  153. column-gap: 16px;
  154. flex-wrap: wrap;
  155. .tech--card{
  156. width: calc((100% - 48px) / 4);
  157. display: flex;
  158. flex-direction: column;
  159. .img--wrap{
  160. margin-bottom: 24px;
  161. border-radius: 20px;
  162. overflow: hidden;
  163. >img{
  164. width: 100%;
  165. aspect-ratio: 16 / 9;
  166. object-fit: cover;
  167. }
  168. }
  169. >h3{
  170. font-size: 24px;
  171. margin-bottom: 8px;
  172. }
  173. >p{
  174. margin-bottom: 24px;
  175. color: rgba(252, 252, 253, 0.7);
  176. font-size: 16px;
  177. font-stretch: 105%;
  178. &.type2{
  179. margin-top: 40px;
  180. color: rgba(252, 252, 253, 0.7);
  181. font-size: 14px;
  182. }
  183. }
  184. >a{
  185. display: flex;
  186. font-size: 16px;
  187. text-underline-offset: 7px;
  188. text-decoration: underline 1px rgb(252, 252, 253);
  189. align-items: center;
  190. .ico{
  191. width: 24px;
  192. height: 24px;
  193. background-image: url(/img/ico--arrow.svg);
  194. }
  195. }
  196. }
  197. }
  198. // 이벤트 게시판
  199. .event--wrap{
  200. display: grid;
  201. grid-template-columns: repeat(3, 1fr);
  202. gap: 40px 16px;
  203. margin-bottom: 80px;
  204. .event--card{
  205. display: flex;
  206. flex-direction: column;
  207. .img--wrap{
  208. margin-bottom: 24px;
  209. border-radius: 20px;
  210. overflow: hidden;
  211. img{
  212. width: 100%;
  213. aspect-ratio: 16 / 9;
  214. object-fit: cover;
  215. }
  216. }
  217. h3{
  218. font-size: 24px;
  219. margin-bottom: 24px;
  220. }
  221. a{
  222. display: flex;
  223. font-size: 16px;
  224. text-underline-offset: 7px;
  225. text-decoration: underline 1px rgb(252, 252, 253);
  226. align-items: center;
  227. color: rgb(252, 252, 253);
  228. .ico{
  229. width: 24px;
  230. height: 24px;
  231. background-image: url(/img/ico--arrow.svg);
  232. }
  233. }
  234. }
  235. }
  236. // 뉴스 게시판
  237. .news--wrap{
  238. margin-bottom: 80px;
  239. .news--table{
  240. width: 100%;
  241. table-layout: fixed;
  242. thead{
  243. tr{
  244. border-top: 2px solid #fff;
  245. border-bottom: 1px solid rgba(252, 252, 253, 0.7);
  246. th{
  247. padding: 20px 0;
  248. text-align: center;
  249. }
  250. }
  251. }
  252. tbody{
  253. tr{
  254. td{
  255. text-align: center;
  256. padding: 20px 0;
  257. font-size: 16px;
  258. white-space: nowrap;
  259. }
  260. cursor: pointer;
  261. transition: all 0.3s;
  262. &:hover{
  263. background-color: rgba(252, 252, 253, 0.3);
  264. }
  265. &:last-child{
  266. border-bottom: 1px solid rgba(252, 252, 253, 0.7);
  267. }
  268. }
  269. }
  270. }
  271. }
  272. .view--wrap{
  273. .title--wrap{
  274. >h2{
  275. font-size: 48px;
  276. }
  277. border-top: 1px solid rgba(252,252,253,0.7);
  278. border-bottom: 1px solid rgba(252,252,253,0.7);
  279. }
  280. .cont--wrap{
  281. padding: 70px 0;
  282. margin-bottom: 200px;
  283. border-bottom: 1px solid rgba(252,252,253,0.7);
  284. }
  285. }
  286. .ls--card--wrap{
  287. .ls--card{
  288. display: flex;
  289. gap: 72px;
  290. align-items: center;
  291. .ls--img--wrap{
  292. width: 50%;
  293. overflow: hidden;
  294. border-radius: 20px;
  295. }
  296. .ls--txt--wrap{
  297. width: 50%;
  298. >h2{
  299. font-size: 36px;
  300. margin-bottom: 8px;
  301. }
  302. >h3{
  303. font-size: 24px;
  304. margin-bottom: 8px;
  305. }
  306. >p{
  307. font-size: 16px;
  308. color: rgba(252, 252, 253, 0.7);
  309. margin-bottom: 24px;
  310. &.desc{
  311. margin-top: 40px;
  312. font-size: 14px;
  313. margin-bottom: 0;
  314. }
  315. }
  316. }
  317. }
  318. }
  319. .sales--advisor--wrap{
  320. padding: 60px 0;
  321. .sales--team--wrap{
  322. h3{
  323. font-size: 20px;
  324. font-weight: 600;
  325. margin-bottom: 30px;
  326. margin-top: 60px;
  327. }
  328. &:first-child{
  329. h3{
  330. margin-top: 0;
  331. }
  332. }
  333. .advisor--list{
  334. >ul{
  335. display: flex;
  336. flex-wrap: wrap;
  337. >li{
  338. width: 25%;
  339. display: flex;
  340. flex-direction: column;
  341. align-items: center;
  342. position: relative;
  343. padding: 25px;
  344. border: 1px solid #555;
  345. background-color: rgba(219, 223, 230, 0.05);
  346. margin-left: -1px;
  347. margin-top: -1px;
  348. &.flag{
  349. &::after{
  350. content: '';
  351. top: -10px;
  352. left: 0;
  353. display: inline-block;
  354. position: absolute;
  355. width: 53px;
  356. background-image: url(/img/company/img--flag.jpg);
  357. height: 54px;
  358. }
  359. }
  360. .advisor--img{
  361. width: 172px;
  362. height: 210px;
  363. img{
  364. width: 100%;
  365. height: 100%;
  366. object-fit: cover;
  367. }
  368. }
  369. .advisor--info{
  370. text-align: center;
  371. margin-top: 30px;
  372. font-size: 16px;
  373. font-weight: 400;
  374. margin-bottom: 10px;
  375. }
  376. .btn--wrap{
  377. display: flex;
  378. gap: 6px;
  379. >a{
  380. --gradient-start: hsla(216, 20%, 17%, 1);
  381. --gradient-end: hsla(216, 21%, 12%, 1);
  382. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  383. transition-duration: 250ms;
  384. transition-property: --gradient-start, --gradient-end, box-shadow;
  385. padding: 12px 16px;
  386. font-size: 15px;
  387. overflow: hidden;
  388. border-radius: 20px;
  389. border: none;
  390. cursor: pointer;
  391. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  392. backdrop-filter: blur(40px);
  393. background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  394. display: flex;
  395. text-decoration: none;
  396. &:hover{
  397. --gradient-start: hsla(216, 18%, 21%, 1);
  398. --gradient-end: hsla(216, 18%, 21%, 1);
  399. box-shadow: rgb(42,57,64) 0px 0px 0px 1px inset;
  400. }
  401. }
  402. }
  403. }
  404. }
  405. }
  406. }
  407. }
  408. }
  409. .img--section{
  410. .img--wrap{
  411. overflow: hidden;
  412. border-radius: 20px;
  413. img{
  414. width: 100%;
  415. display: block;
  416. }
  417. video{
  418. width: 100%;
  419. height: 100%;
  420. display: block;
  421. object-fit: cover;
  422. }
  423. }
  424. &.none--bdrs{
  425. .img--wrap{
  426. border-radius: 0;
  427. }
  428. }
  429. &.type2{
  430. display: flex;
  431. gap: 16px;
  432. .img--box{
  433. width: 50%;
  434. }
  435. }
  436. &.type3{
  437. display: flex;
  438. gap: 16px;
  439. .img--box{
  440. &:first-child{
  441. width: 35%;
  442. }
  443. &:last-child{
  444. width: 70%;
  445. }
  446. }
  447. }
  448. .desc--wrap{
  449. margin-top: 24px;
  450. font-size: 16px;
  451. color: #fcfcfdb2;
  452. .desc{
  453. font-size: 12px;
  454. }
  455. }
  456. }
  457. .title--section{
  458. text-align: center;
  459. padding: 64px 96px;
  460. &.mid--type{
  461. max-width: 1440px;
  462. margin: 0 auto;
  463. }
  464. >h2{
  465. margin-bottom: 24px;
  466. font-size: 44px;
  467. &.big--title{
  468. font-size: 72px;
  469. }
  470. }
  471. >h3{
  472. font-size: 24px;
  473. margin-bottom: 24px;
  474. &.big--title{
  475. font-size: 36px;
  476. }
  477. }
  478. >p{
  479. color: rgba(252, 252, 253, 0.7);
  480. font-size: 16px;
  481. &.desc{
  482. color: rgba(252, 252, 253, 0.7);
  483. font-size: 14px;
  484. }
  485. }
  486. }
  487. .desc--section{
  488. padding: 64px 96px;
  489. margin: 0 auto;
  490. max-width: 950px;
  491. >h2{
  492. font-size: 72px;
  493. }
  494. >h3{
  495. &.big--title{
  496. font-size: 44px;
  497. }
  498. font-size: 36px;
  499. margin-bottom: 40px;
  500. }
  501. >h4{
  502. font-size: 24px;
  503. }
  504. >p{
  505. margin: 0 auto;
  506. color: rgba(252, 252, 253, 0.7);
  507. font-size: 16px;
  508. }
  509. &.mid--type{
  510. max-width: 1440px;
  511. }
  512. &.full--type{
  513. width: 100%;
  514. max-width: 100%;
  515. >h3{
  516. margin-bottom: 16px;
  517. }
  518. >ul{
  519. display: flex;
  520. flex-direction: column;
  521. gap: 24px;
  522. >li{
  523. font-size: 24px;
  524. }
  525. }
  526. }
  527. .ceo--box{
  528. display: flex;
  529. margin-top: 24px;
  530. gap: 40px;
  531. p{
  532. color: rgba(252, 252, 253, 0.7);
  533. font-size: 16px;
  534. width: 60%;
  535. }
  536. .ceo--img--wrap{
  537. width: 40%;
  538. display: flex;
  539. justify-content: flex-end;
  540. align-items: flex-end;
  541. .ceo--name{
  542. text-align: right;
  543. margin-right: 20px;
  544. padding-bottom: 55px;
  545. strong{
  546. font-size: 30px;
  547. }
  548. }
  549. .img--wrap{
  550. min-width: 243px;
  551. }
  552. }
  553. }
  554. }
  555. .img--desc--section{
  556. display: flex;
  557. padding: 64px 0;
  558. &.mid--type{
  559. margin: 0 auto;
  560. max-width: 1248px;
  561. .desc--wrap{
  562. padding-right: 0;
  563. }
  564. }
  565. &.reverse{
  566. flex-direction: row-reverse;
  567. .desc--wrap{
  568. padding-right: 72px;
  569. }
  570. }
  571. .img--wrap{
  572. width: 50%;
  573. border-radius: 20px;
  574. overflow: hidden;
  575. img{
  576. width: 100%;
  577. height: 100%;
  578. object-fit: cover;
  579. }
  580. &.type2{
  581. }
  582. }
  583. .desc--wrap{
  584. width: 50%;
  585. display: flex;
  586. flex-direction: column;
  587. justify-content: center;
  588. padding: 0 72px;
  589. h3{
  590. font-size: 36px;
  591. margin-bottom: 8px;
  592. }
  593. h4{
  594. font-size: 24px;
  595. }
  596. p{
  597. font-size: 16px;
  598. color: rgba(252, 252, 253, 0.7);
  599. &.desc{
  600. font-size: 12px;
  601. }
  602. }
  603. }
  604. &.type2{
  605. .inner--box{
  606. width: 50%;
  607. .img--wrap{
  608. width: 100%;
  609. }
  610. .desc{
  611. margin-top: 12px;
  612. color: rgba(252, 252, 253, 0.7);
  613. font-size: 14px;
  614. }
  615. }
  616. }
  617. }
  618. .more--section{
  619. margin-top: 100px;
  620. >h2{
  621. font-size: 44px;
  622. margin-bottom: 40px;
  623. }
  624. .tech--card--wrap{
  625. display: flex;
  626. column-gap: 16px;
  627. .tech--card{
  628. width: calc((100% - 48px) / 4);
  629. display: flex;
  630. flex-direction: column;
  631. .img--wrap{
  632. margin-bottom: 24px;
  633. border-radius: 20px;
  634. overflow: hidden;
  635. >img{
  636. width: 100%;
  637. aspect-ratio: 16 / 9;
  638. object-fit: cover;
  639. }
  640. }
  641. >h3{
  642. font-size: 24px;
  643. margin-bottom: 8px;
  644. }
  645. >p{
  646. margin-bottom: 24px;
  647. color: rgba(252, 252, 253, 0.7);
  648. font-size: 16px;
  649. font-stretch: 105%;
  650. &.type2{
  651. margin-top: 40px;
  652. color: rgba(252, 252, 253, 0.7);
  653. font-size: 14px;
  654. }
  655. }
  656. >a{
  657. display: flex;
  658. font-size: 16px;
  659. text-underline-offset: 7px;
  660. text-decoration: underline 1px rgb(252, 252, 253);
  661. align-items: center;
  662. .ico{
  663. width: 24px;
  664. height: 24px;
  665. background-image: url(/img/ico--arrow.svg);
  666. }
  667. }
  668. }
  669. }
  670. &.type2{
  671. .tech--card--wrap{
  672. flex-wrap: wrap;
  673. row-gap: 40px;
  674. .tech--card{
  675. width: calc(50% - 8px);
  676. }
  677. }
  678. }
  679. &.type3{
  680. .tech--card--wrap{
  681. flex-wrap: wrap;
  682. row-gap: 40px;
  683. .tech--card{
  684. width: calc((100% - 32px) / 3);
  685. }
  686. }
  687. }
  688. }
  689. .caution--section{
  690. padding: 40px 0;
  691. ul{
  692. display: flex;
  693. flex-direction: column;
  694. gap: 12px;
  695. counter-reset: item;
  696. li{
  697. padding-left: 34px;
  698. color: rgba(252, 252, 253, 0.7);
  699. font-size: 16px;
  700. position: relative;
  701. &::before{
  702. content: counter(item) ". ";
  703. counter-increment: item;
  704. position: absolute;
  705. left: 16px;
  706. }
  707. }
  708. }
  709. }
  710. }
  711. }
  712. footer{
  713. .footer--info--wrap{
  714. .sns--wrap{
  715. display: flex;
  716. justify-content: flex-end;
  717. margin-bottom: 12px;
  718. gap: 8px;
  719. >a{
  720. width: 48px;
  721. height: 48px;
  722. display: inline-block;
  723. border-radius: 50%;
  724. display: flex;
  725. align-items: center;
  726. justify-content: center;
  727. transition-timing-function: cubic-bezier(0.75, 0.02, 0.5, 1);
  728. transition-duration: 250ms;
  729. transition-property: color, box-shadow, border-color, background;
  730. cursor: pointer;
  731. box-sizing: border-box;
  732. width: 48px;
  733. height: 48px;
  734. background: rgb(24, 29, 37);
  735. color: rgb(252, 252, 253);
  736. border: 1px solid rgb(44, 52, 63);
  737. }
  738. }
  739. .copy--wrap{
  740. border-top: 2px solid rgba(252,252,253,0.2);
  741. font-size: 14px;
  742. color: #fcfcfdb2;
  743. .link--list{
  744. display: flex;
  745. flex-wrap: wrap;
  746. >li{
  747. >a{
  748. }
  749. }
  750. }
  751. >p{
  752. margin-top: 24px;
  753. }
  754. }
  755. }
  756. }
  757. .more--btn{
  758. display: flex;
  759. font-size: 16px;
  760. text-underline-offset: 7px;
  761. text-decoration: underline 1px rgb(252, 252, 253);
  762. align-items: center;
  763. .ico{
  764. width: 24px;
  765. height: 24px;
  766. margin-left: 8px;
  767. background-image: url(/img/ico--link.svg);
  768. }
  769. }
  770. .btn--gray{
  771. transition: all 0.3s;
  772. width: fit-content;
  773. font-size: 14px;
  774. display: inline-block;
  775. font-weight: 400;
  776. padding: 12px 24px;
  777. color: rgb(252, 252, 253);
  778. border-radius: 100px;
  779. background-color: #657081;
  780. &:hover{
  781. background-color: rgb(44, 52, 63);
  782. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  783. }
  784. &.big--btn{
  785. font-size: 16px;
  786. padding: 16px 32px;
  787. width: 248px;
  788. }
  789. }
  790. .btn--border--gray{
  791. transition: all 0.3s;
  792. width: fit-content;
  793. font-size: 14px;
  794. display: inline-block;
  795. font-weight: 400;
  796. padding: 12px 24px;
  797. color: rgb(252, 252, 253);
  798. border-radius: 100px;
  799. background-color: #181d25;
  800. box-shadow: rgb(44, 52, 63) 0px 0px 0px 1px inset;
  801. &:hover{
  802. background-color: rgb(44, 52, 63);
  803. box-shadow: rgba(219, 223, 230, 0.2) 0px 0px 0px 1px inset;
  804. }
  805. &.big--btn{
  806. padding: 16px 32px;
  807. font-size: 16px;
  808. }
  809. }
  810. // 페이지네이션
  811. .pagination--wrap{
  812. display: flex;
  813. justify-content: center;
  814. align-items: center;
  815. gap: 16px;
  816. padding: 40px 0;
  817. .pagination--btn{
  818. width: 48px;
  819. height: 48px;
  820. border-radius: 50%;
  821. background-color: transparent;
  822. border: 1px solid rgba(252, 252, 253, 0.3);
  823. display: flex;
  824. align-items: center;
  825. justify-content: center;
  826. transition: all 0.3s;
  827. svg{
  828. fill: rgba(252, 252, 253, 0.7);
  829. }
  830. &:hover:not(:disabled){
  831. background-color: rgba(252, 252, 253, 0.1);
  832. border-color: rgba(252, 252, 253, 0.5);
  833. }
  834. &:disabled{
  835. opacity: 0.3;
  836. cursor: not-allowed;
  837. }
  838. }
  839. .pagination--numbers{
  840. display: flex;
  841. gap: 8px;
  842. .pagination--number{
  843. min-width: 48px;
  844. height: 48px;
  845. border-radius: 50%;
  846. background-color: transparent;
  847. border: none;
  848. color: rgba(252, 252, 253, 0.7);
  849. font-size: 16px;
  850. transition: all 0.3s;
  851. &:hover{
  852. background-color: rgba(252, 252, 253, 0.1);
  853. color: rgba(252, 252, 253, 1);
  854. }
  855. &.active{
  856. background-color: rgba(252, 252, 253, 1);
  857. color: rgb(2, 2, 3);
  858. }
  859. }
  860. }
  861. }
  862. .dealer--popup--overlay{
  863. &.type2{
  864. .dealer--popup--content{
  865. padding: 0;
  866. .dealer--thumb--wrap{
  867. .swiper{
  868. height: 100%;
  869. }
  870. img{
  871. width: 100%;
  872. max-width: 100%;
  873. max-height: 100%;
  874. height: 100%;
  875. object-fit: cover;
  876. }
  877. .swiper-button-next{
  878. width: 40px;
  879. height: 40px;
  880. background-image: url(../img/ico--arrow.svg);
  881. background-size: 100%;
  882. background-color: rgba(0, 0, 0, 0.6);
  883. right: 0;
  884. svg{
  885. display: none;
  886. }
  887. }
  888. .swiper-button-prev{
  889. background-image: url(../img/ico--arrow.svg);
  890. background-size: 100%;
  891. background-color: rgba(0, 0, 0, 0.6);
  892. left: 0;
  893. width: 40px;
  894. height: 40px;
  895. transform: rotate(180deg);
  896. svg{
  897. display: none;
  898. }
  899. }
  900. }
  901. .dealer--infos--wrap{
  902. padding-right: 0;
  903. .info--label{
  904. &.desc--type{
  905. max-height: 200px;
  906. overflow-y: auto;
  907. }
  908. }
  909. }
  910. }
  911. }
  912. }