media.scss 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  1. @media(max-width: 1920px){
  2. main{
  3. .detail--container{
  4. padding: 0 20px;
  5. .title--wrap{
  6. padding-left: 0;
  7. padding-right: 0;
  8. h2{
  9. font-size: 60px;
  10. }
  11. }
  12. .content--wrap{
  13. padding-left: 0;
  14. padding-right: 0;
  15. .tech--card--wrap{
  16. .tech--card{
  17. h3{
  18. font-size: 18px;
  19. }
  20. }
  21. }
  22. }
  23. .more--section{
  24. >h2{
  25. font-size: 36px;
  26. }
  27. .tech--card--wrap{
  28. .tech--card{
  29. h3{
  30. font-size: 18px;
  31. }
  32. }
  33. }
  34. }
  35. .img--desc--section{
  36. &.reverse{
  37. .desc--wrap{
  38. padding-left: 0;
  39. padding-right: 20px;
  40. }
  41. }
  42. .desc--wrap{
  43. padding-right: 0;
  44. padding-left: 20px;
  45. h3{
  46. font-size: 24px;
  47. }
  48. }
  49. }
  50. }
  51. }
  52. footer{
  53. .footer--wrap{
  54. padding: 40px 20px;
  55. }
  56. }
  57. }
  58. @media (max-width: 1440px) {
  59. header{
  60. .header--wrap{
  61. padding: 20px;
  62. .header--search--wrap{
  63. opacity: 0;
  64. transition: opacity 0.3s;
  65. pointer-events: none;
  66. }
  67. }
  68. .header--hamburger{
  69. display: flex;
  70. order: -1;
  71. &.active{
  72. &~.header--logo--wrap{
  73. opacity: 0;
  74. }
  75. &~.header--search--wrap{
  76. opacity: 1;
  77. }
  78. }
  79. }
  80. .header--logo--wrap{
  81. position: absolute;
  82. left: 50%;
  83. transform: translateX(-50%);
  84. }
  85. .header--menu--wrap{
  86. display: none;
  87. }
  88. .header--submenu{
  89. display: none;
  90. }
  91. .header--dim{
  92. display: none;
  93. }
  94. .mobile--menu{
  95. display: block;
  96. .mobile--menu--main{
  97. }
  98. }
  99. }
  100. }
  101. @media(max-width: 1024px){
  102. main{
  103. .visual--section{
  104. .title--wrap{
  105. width: 100%;
  106. padding: 40px 20px;
  107. >h2{
  108. font-size: 28px;
  109. }
  110. >p{
  111. font-size: 16px;
  112. }
  113. }
  114. .desc--wrap{
  115. .desc{
  116. padding: 20px;
  117. }
  118. }
  119. }
  120. .detail--container{
  121. .title--wrap{
  122. h2{
  123. font-size: 44px;
  124. }
  125. }
  126. .content--wrap{
  127. .tech--card--wrap{
  128. .tech--card{
  129. width: calc(50% - 8px);
  130. }
  131. }
  132. .event--wrap{
  133. grid-template-columns: repeat(2, 1fr);
  134. .event--card{
  135. &:first-child{
  136. grid-column: 1 / -1;
  137. }
  138. h3{
  139. font-size: 20px;
  140. }
  141. }
  142. }
  143. .ls--card--wrap{
  144. .ls--card{
  145. gap: 36px;
  146. flex-wrap: wrap;
  147. .ls--img--wrap{
  148. width: 100%;
  149. }
  150. .ls--txt--wrap{
  151. width: 100%;
  152. }
  153. &.reverse{
  154. flex-direction: column-reverse;
  155. }
  156. }
  157. }
  158. .news--wrap{
  159. margin-bottom: 0;
  160. .news--table{
  161. .view{
  162. display: none;
  163. }
  164. thead{
  165. tr{
  166. th{
  167. padding: 15px 0;
  168. font-size: 14px;
  169. }
  170. }
  171. }
  172. tbody{
  173. tr{
  174. td{
  175. padding: 15px 0;
  176. font-size: 14px;
  177. &.date{
  178. overflow: hidden;
  179. text-overflow: ellipsis;
  180. }
  181. }
  182. }
  183. }
  184. }
  185. }
  186. .view--wrap{
  187. .title--wrap{
  188. padding: 20px 0;
  189. >h2{
  190. font-size: 36px;
  191. }
  192. }
  193. }
  194. .dealer--search--section{
  195. padding: 0;
  196. .dealer--toggle--icon{
  197. font-size: 24px;
  198. }
  199. .dealer--region--header{
  200. padding: 12px 0;
  201. }
  202. .dealer--region--name{
  203. font-size: 16px;
  204. }
  205. }
  206. .sales--advisor--wrap{
  207. .sales--team--wrap{
  208. .advisor--list{
  209. >ul{
  210. >li{
  211. width: 33.3333%;
  212. padding: 25px 20px;
  213. .advisor--info{
  214. margin-top: 15px;
  215. p{
  216. font-size: 14px;
  217. }
  218. }
  219. }
  220. }
  221. }
  222. }
  223. }
  224. }
  225. .title--section{
  226. padding-left: 0;
  227. padding-right: 0;
  228. >h2{
  229. font-size: 36px;
  230. &.big--title{
  231. font-size: 40px;
  232. }
  233. }
  234. >h3{
  235. font-size: 20px;
  236. &.big--title{
  237. font-size: 28px;
  238. }
  239. }
  240. }
  241. .desc--section{
  242. padding-left: 0;
  243. padding-right: 0;
  244. >h2{
  245. font-size: 36px;
  246. }
  247. >h3{
  248. font-size: 32px;
  249. &.big--title{
  250. font-size: 32px;
  251. }
  252. }
  253. &.full--type{
  254. >ul{
  255. >li{
  256. font-size: 20px;
  257. }
  258. }
  259. }
  260. }
  261. .img--desc--section{
  262. flex-direction: column;
  263. gap: 20px;
  264. &.reverse{
  265. flex-direction: column;
  266. .desc--wrap{
  267. padding: 0;
  268. }
  269. }
  270. .img--wrap{
  271. width: 100%;
  272. }
  273. .desc--wrap{
  274. padding: 0;
  275. width: 100%;
  276. }
  277. &.type2{
  278. .inner--box{
  279. width: 100%;
  280. }
  281. }
  282. }
  283. .more--section{
  284. >h2{
  285. font-size: 28px;
  286. }
  287. .tech--card--wrap{
  288. flex-wrap: wrap;
  289. row-gap: 16px;
  290. .tech--card{
  291. width: calc(50% - 8px);
  292. }
  293. }
  294. }
  295. }
  296. .inner--link--contents{
  297. ul{
  298. li{
  299. width: 100%;
  300. }
  301. }
  302. }
  303. }
  304. }
  305. @media(max-width: 768px){
  306. main{
  307. .visual--section{
  308. &.h--800{
  309. .img--wrap{
  310. height: 640px;
  311. }
  312. }
  313. }
  314. .detail--container{
  315. .title--wrap{
  316. h2{
  317. font-size: 24px;
  318. }
  319. }
  320. .content--wrap{
  321. .tech--card--wrap{
  322. .tech--card{
  323. width: 100%;
  324. }
  325. }
  326. .ls--card--wrap{
  327. .ls--card{
  328. .ls--txt--wrap{
  329. >h2{
  330. font-size: 24px;
  331. }
  332. >h3{
  333. font-size: 18px;
  334. }
  335. }
  336. }
  337. }
  338. .event--wrap{
  339. grid-template-columns: repeat(1, 1fr);
  340. }
  341. .sales--advisor--wrap{
  342. .sales--team--wrap{
  343. .advisor--list{
  344. >ul{
  345. >li{
  346. width: 50%;
  347. }
  348. }
  349. }
  350. }
  351. }
  352. .view--wrap{
  353. .title--wrap{
  354. >h2{
  355. font-size: 24px;
  356. }
  357. p{
  358. font-size: 14px;
  359. }
  360. }
  361. }
  362. }
  363. .more--section{
  364. .tech--card--wrap{
  365. .tech--card{
  366. width: 100%;
  367. }
  368. }
  369. &.type2{
  370. .tech--card--wrap{
  371. .tech--card{
  372. width: 100%;
  373. }
  374. }
  375. }
  376. &.type3{
  377. .tech--card--wrap{
  378. .tech--card{
  379. width: 100%;
  380. }
  381. }
  382. }
  383. }
  384. .title--section{
  385. >h2{
  386. font-size: 28px;
  387. &.big--title{
  388. font-size: 32px;
  389. }
  390. }
  391. }
  392. .desc--section{
  393. >h2{
  394. font-size: 28px;
  395. }
  396. >h3{
  397. font-size: 24px;
  398. &.big--title{
  399. font-size: 28px;
  400. }
  401. }
  402. }
  403. .img--section{
  404. &.type3{
  405. flex-wrap: wrap;
  406. .img--box{
  407. &:first-child{
  408. width: 100%;
  409. }
  410. &:last-child{
  411. width: 100%;
  412. }
  413. }
  414. }
  415. }
  416. }
  417. .pagination--wrap{
  418. .pagination--btn{
  419. width: 36px;
  420. height: 36px;
  421. }
  422. .pagination--numbers{
  423. .pagination--number{
  424. width: 36px;
  425. height: 36px;
  426. min-width: 36px;
  427. font-size: 14px;
  428. }
  429. }
  430. }
  431. }
  432. footer{
  433. .footer--wrap{
  434. padding: 70px 0 40px;
  435. .scroll--to--top{
  436. right: 20px;
  437. }
  438. .footer--info--wrap{
  439. padding: 40px 20px 0;
  440. .sns--wrap{
  441. justify-content: flex-start;
  442. }
  443. .copy--wrap{
  444. .link--list{
  445. gap: 12px;
  446. }
  447. }
  448. }
  449. }
  450. }
  451. .quick__menu__wrap{
  452. }
  453. }
  454. @media(max-width: 500px){
  455. main{
  456. .detail--container{
  457. .img--section{
  458. &.type2{
  459. flex-direction: column;
  460. .img--box{
  461. width: 100%;
  462. }
  463. }
  464. }
  465. .content--wrap{
  466. .sales--advisor--wrap{
  467. .sales--team--wrap{
  468. .advisor--list{
  469. >ul{
  470. >li{
  471. width: 100%;
  472. }
  473. }
  474. }
  475. }
  476. }
  477. }
  478. }
  479. }
  480. }