It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://xn--ok0bv0ct6mu93a.cnfwkdtiq.top

  1. <html lang="ko">
  2. <head>
  3. <meta charset="UTF-8" />
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  5. <meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1"/>
  6. <meta name="theme-color" content="#ffffff"/>
  7. <title>이슈, 상식, 정보, 투자, 건강 꿀팁 모음 - 케이알좀</title>
  8. <meta name="description" content="빠르고 간결한 정보를 만나보세요!"/>
  9. <link rel="canonical" href="https://krzom.org/" />
  10. <link rel="icon" type="image/png" href="https://krzom.org/img/favicon-32x32.png" sizes="32x32">
  11. <link rel="icon" type="image/png" href="https://krzom.org/img/favicon-48x48.png" sizes="48x48">
  12. <link rel="icon" type="image/png" href="https://krzom.org/img/favicon-64x64.png" sizes="64x64">
  13. <link rel="apple-touch-icon" sizes="152x152" href="https://krzom.org/img/apple-icon-152x152.png">
  14. <link rel="apple-touch-icon" sizes="180x180" href="https://krzom.org/img/apple-icon-180x180.png">
  15. <meta property="og:locale" content="ko_KR" />
  16. <meta property="og:type" content="article" />
  17. <meta property="og:title" content="이슈, 상식, 정보, 투자, 건강 꿀팁 모음 - 케이알좀" />
  18. <meta property="og:description" content="빠르고 간결한 정보를 만나보세요!" />
  19. <meta property="og:url" content="https://krzom.org/" />
  20. <meta property="og:site_name" content="케이알좀" />
  21. <meta property="article:modified_time" content="2026-05-20T21:33:58+09:00" />
  22. <meta property="og:image" content="https://krzom.org/img/pre_img.png" />
  23. <meta property="og:image:width" content="1080" />
  24. <meta property="og:image:height" content="1080" />
  25. <meta property="og:image:alt" content="케이알좀" />
  26. <meta property="og:image:type" content="image/png" />
  27. <meta name="twitter:card" content="summary_large_image"/>
  28. <meta name="twitter:title" content="이슈, 상식, 정보, 투자, 건강 꿀팁 모음 - 케이알좀" />
  29. <meta name="twitter:description" content="빠르고 간결한 정보를 만나보세요!" />
  30. <meta name="twitter:image" content="https://krzom.org/img/pre_img.png" />
  31. <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7657419419382444" crossorigin="anonymous"></script>
  32. <link rel="stylesheet" href="https://krzom.org/assets/.css?v=20251130" as="style">
  33. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
  34. <style>
  35. @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
  36.  
  37. :root {
  38. --primary-color: #007bff;
  39. --accent-color: #28a745;
  40. --bg-color: #f0f2f5;
  41. --card-bg: #ffffff;
  42. --text-main: #212529;
  43. --text-sub: #6c757d;
  44. --news-card-base-color: #f8f8f8;
  45. --border-radius: 10px;
  46. --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  47. --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
  48. --rank-1: #dc3545;
  49. --rank-2: #ffc107;
  50. --rank-3: #17a2b8;
  51. }
  52.  
  53. [data-theme="dark"] {
  54. --primary-color: #72b2ff;
  55. --accent-color: #4cd17a;
  56. --bg-color: #0a0a1a;
  57. --card-bg: #16162e;
  58. --text-main: #f8f9fa;
  59. --text-sub: #adb5bd;
  60. --news-card-base-color: #3b3b5b;
  61. --shadow-sm: 0 1px 3px rgba(0,0,0,0.5);
  62. --shadow-md: 0 5px 15px rgba(0,0,0,0.6);
  63. --rank-1: #e76f51;
  64. --rank-2: #fca311;
  65. --rank-3: #48bfe3;
  66. }
  67.  
  68. * {
  69. margin: 0;
  70. padding: 0;
  71. box-sizing: border-box;
  72. font-family: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  73. -webkit-font-smoothing: antialiased;
  74. }
  75.  
  76. a {
  77. text-decoration: none;
  78. color: inherit;
  79. }
  80.  
  81. body {
  82. background-color: var(--bg-color);
  83. color: var(--text-main);
  84. line-height: 1.6;
  85. transition: background-color 0.3s ease, color 0.3s ease;
  86. }
  87.  
  88. .container {
  89. max-width: 600px;
  90. margin: 0 auto;
  91. background: var(--card-bg);
  92. min-height: 100vh;
  93. box-shadow: 0 0 20px rgba(0,0,0,0.05);
  94. transition: background 0.3s ease, box-shadow 0.3s ease;
  95. }
  96.  
  97. @media (max-width: 600px) {
  98. body { background-color: var(--card-bg); }
  99. .container { box-shadow: none; }
  100. }
  101.  
  102.  
  103. @media (min-width: 768px) {
  104. .container { max-width: 720px; box-shadow: 0 0 20px rgba(0,0,0,0.05); }
  105. .search-list { gap: 16px; }
  106. body { background-color: var(--bg-color); }
  107. }
  108.  
  109. .banner {
  110. display: flex;
  111. justify-content: space-between;
  112. align-items: center;
  113. padding: 15px 20px;
  114. background: var(--card-bg);
  115. border-bottom: 1px solid rgba(0,0,0,0.05);
  116. position: sticky;
  117. top: 0;
  118. z-index: 100;
  119. box-shadow: var(--shadow-sm);
  120. transition: background 0.3s ease, border-color 0.3s ease;
  121. }
  122.  
  123. .banner-links {
  124. margin-left: auto;
  125. display: flex;
  126. gap: 5px;
  127. align-items: center;
  128. justify-content: flex-end;
  129. flex-wrap: wrap;
  130. }
  131.  
  132. [data-theme="dark"] .banner {
  133. border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  134. }
  135.  
  136. .brand-area { display: flex; align-items: center; gap: 8px; }
  137.  
  138. .brand-logo {
  139. font-size: 20px;
  140. font-weight: 900;
  141. color: var(--primary-color);
  142. letter-spacing: -0.8px;
  143. }
  144.  
  145. .banner-text {
  146. font-size: 11px;
  147. color: var(--text-sub);
  148. background: #e9ecef;
  149. padding: 4px 8px;
  150. border-radius: 4px;
  151. font-weight: 500;
  152. transition: background 0.3s ease, color 0.3s ease;
  153. }
  154.  
  155. [data-theme="dark"] .banner-text {
  156. color: var(--text-sub);
  157. background: #2a2a4a;
  158. }
  159.  
  160. .content { padding: 20px; }
  161.  
  162. .section-header {
  163. display: flex;
  164. justify-content: space-between;
  165. align-items: flex-end;
  166. margin-bottom: 20px;
  167. margin-top: 15px;
  168. }
  169.  
  170. .section-title {
  171. font-size: 21px;
  172. font-weight: 800;
  173. color: var(--text-main);
  174. letter-spacing: -0.5px;
  175. }
  176.  
  177. .section-subtitle {
  178. font-size: 13px;
  179. color: var(--text-sub);
  180. margin-top: 4px;
  181. font-weight: 400;
  182. }
  183.  
  184. .content-items {
  185. display: flex;
  186. flex-direction: column;
  187. gap: 24px;
  188. margin-top: 15px;
  189. }
  190.  
  191. .content-item {
  192. padding: 0;
  193. margin: 0;
  194. }
  195.  
  196. .content-item-title {
  197. font-size: 19px;
  198. font-weight: 700;
  199. color: var(--text-main);
  200. line-height: 1.6;
  201. margin-bottom: 12px;
  202. letter-spacing: -0.4px;
  203. }
  204.  
  205. .content-item-title a {
  206. color: inherit;
  207. text-decoration: none;
  208. }
  209.  
  210. .content-item-title a:hover {
  211. color: var(--primary-color);
  212. }
  213.  
  214. .content-item-url {
  215. font-size: 13px;
  216. color: var(--primary-color);
  217. font-weight: 500;
  218. margin-bottom: 5px;
  219. display: inline-block;
  220. }
  221.  
  222. [data-theme="dark"] .content-item-url {
  223. color: var(--primary-color);
  224. }
  225.  
  226. .content-item-text {
  227. font-size: 14px;
  228. color: var(--text-main);
  229. line-height: 1.7;
  230. margin-top: 8px;
  231. }
  232.  
  233. .content-item-text p {
  234. margin: 8px 0;
  235. }
  236.  
  237. .content-item-text:first-of-type {
  238. margin-top: 0;
  239. }
  240.  
  241. .additional-info {
  242. padding: 0;
  243. margin-top: 32px;
  244. }
  245.  
  246. .additional-info-header {
  247. display: flex;
  248. align-items: center;
  249. gap: 10px;
  250. margin-bottom: 16px;
  251. padding-bottom: 12px;
  252. border-bottom: 1px solid rgba(0,0,0,0.08);
  253. }
  254.  
  255. [data-theme="dark"] .additional-info-header {
  256. border-bottom-color: rgba(255, 255, 255, 0.1);
  257. }
  258.  
  259. .additional-info-header i {
  260. font-size: 18px;
  261. color: var(--primary-color);
  262. width: 20px;
  263. text-align: center;
  264. }
  265.  
  266. .additional-info-header h2 {
  267. font-size: 18px;
  268. font-weight: 700;
  269. color: var(--text-main);
  270. margin: 0;
  271. letter-spacing: -0.3px;
  272. }
  273.  
  274. .additional-info-content {
  275. display: flex;
  276. flex-direction: column;
  277. gap: 10px;
  278. }
  279.  
  280. .additional-info-link {
  281. display: block;
  282. padding: 0;
  283. color: var(--text-main);
  284. font-size: 15px;
  285. font-weight: 500;
  286. text-decoration: none;
  287. line-height: 1.8;
  288. }
  289.  
  290. [data-theme="dark"] .additional-info-link {
  291. color: var(--text-main);
  292. }
  293.  
  294. .additional-info-link:hover {
  295. color: var(--primary-color);
  296. }
  297.  
  298. .additional-info-text {
  299. font-size: 15px;
  300. color: var(--text-main);
  301. line-height: 1.8;
  302. }
  303.  
  304. .additional-info-text p {
  305. margin: 12px 0;
  306. }
  307.  
  308. .additional-info-text p:first-child {
  309. margin-top: 0;
  310. }
  311.  
  312. .additional-info-text p:last-child {
  313. margin-bottom: 0;
  314. }
  315.  
  316. .additional-info-text ul,
  317. .additional-info-text ol {
  318. margin: 12px 0;
  319. padding-left: 24px;
  320. }
  321.  
  322. .additional-info-text li {
  323. margin: 8px 0;
  324. }
  325.  
  326.  
  327.  
  328. .search-list {
  329. display: grid;
  330. grid-template-columns: repeat(2, 1fr);
  331. gap: 10px;
  332. margin-bottom: 30px;
  333. }
  334.  
  335. .search-item {
  336. display: flex;
  337. align-items: center;
  338. padding: 14px 16px;
  339. background: var(--card-bg);
  340. border: 1px solid rgba(0,0,0,0.08);
  341. border-radius: var(--border-radius);
  342. font-size: 15px;
  343. transition: all 0.2s ease;
  344. cursor: pointer;
  345. box-shadow: var(--shadow-sm);
  346. }
  347.  
  348. [data-theme="dark"] .search-item {
  349. border-color: rgba(255, 255, 255, 0.1);
  350. background: var(--card-bg);
  351. }
  352.  
  353. .search-item:hover {
  354. transform: translateY(-2px);
  355. box-shadow: var(--shadow-md);
  356. border-color: var(--primary-color);
  357. }
  358.  
  359. .search-rank {
  360. font-weight: 900;
  361. width: 28px;
  362. font-size: 16px;
  363. color: var(--text-sub);
  364. font-style: italic;
  365. text-align: left;
  366. }
  367.  
  368. .search-list > a:nth-child(1) .search-rank { color: var(--rank-1); font-size: 18px; }
  369. .search-list > a:nth-child(2) .search-rank { color: var(--rank-2); font-size: 17px; }
  370. .search-list > a:nth-child(3) .search-rank { color: var(--rank-3); font-size: 16px; }
  371.  
  372. .search-list > a:nth-child(n+4) .search-rank { color: var(--text-sub); }
  373.  
  374. .search-keyword {
  375. flex-grow: 1;
  376. margin-left: 5px;
  377. overflow: hidden;
  378. text-overflow: ellipsis;
  379. white-space: nowrap;
  380. font-weight: 600;
  381. color: var(--text-main);
  382. }
  383.  
  384. .search-trend {
  385. font-size: 12px;
  386. font-weight: 800;
  387. width: 18px;
  388. text-align: right;
  389. }
  390. .trend-up { color: var(--rank-1); }
  391. .trend-down { color: var(--primary-color); }
  392. .trend-none { color: var(--text-sub); font-weight: 500; }
  393.  
  394. .search-list > a:nth-child(1) .search-trend.trend-up { color: var(--rank-1); }
  395. .search-list > a:nth-child(2) .search-trend.trend-up { color: var(--rank-2); }
  396. .search-list > a:nth-child(3) .search-trend.trend-up { color: var(--rank-3); }
  397.  
  398. .news-slider-container {
  399. position: relative;
  400. margin-bottom: 30px;
  401. overflow: hidden;
  402. width: 100%;
  403. }
  404.  
  405. .news-slider-wrapper {
  406. display: flex;
  407. transition: transform 0.5s ease;
  408. width: 100%;
  409. position: relative;
  410. }
  411.  
  412. .news-slider-wrapper .news-grid {
  413. display: grid;
  414. grid-template-columns: repeat(2, 1fr);
  415. gap: 15px;
  416. flex-shrink: 0;
  417. min-height: auto;
  418. grid-auto-rows: minmax(auto, 1fr);
  419. }
  420.  
  421. .news-card {
  422. position: relative;
  423. border-radius: var(--border-radius);
  424. overflow: hidden;
  425. aspect-ratio: 4/3;
  426. box-shadow: var(--shadow-md);
  427. cursor: pointer;
  428. transition: transform 0.3s, box-shadow 0.3s;
  429. }
  430.  
  431. .news-card:hover {
  432. transform: translateY(-4px);
  433. box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  434. }
  435.  
  436. .news-img {
  437. width: 100%;
  438. height: 100%;
  439. object-fit: cover;
  440. opacity: 0.8;
  441. background: var(--news-card-base-color) !important;
  442. }
  443.  
  444. .news-img img {
  445. width: 100%;
  446. height: 100%;
  447. object-fit: cover;
  448. display: block;
  449. }
  450.  
  451. .news-overlay {
  452. position: absolute;
  453. bottom: 0;
  454. left: 0;
  455. right: 0;
  456. background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
  457. color: white;
  458. padding: 20px 15px 15px;
  459. display: flex;
  460. flex-direction: column;
  461. justify-content: flex-end;
  462. }
  463.  
  464. .news-card-title {
  465. font-size: 14px;
  466. font-weight: 700;
  467. line-height: 1.4;
  468. margin-bottom: 8px;
  469. display: -webkit-box;
  470. -webkit-line-clamp: 2;
  471. -webkit-box-orient: vertical;
  472. overflow: hidden;
  473. text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  474. }
  475.  
  476. .news-source {
  477. display: flex;
  478. align-items: center;
  479. font-size: 11px;
  480. color: rgba(255,255,255,0.9);
  481. font-weight: 500;
  482. }
  483.  
  484. .source-logo {
  485. width: 16px;
  486. height: 16px;
  487. background: #fff;
  488. color: var(--news-card-base-color);
  489. border-radius: 50%;
  490. margin-right: 6px;
  491. display: flex;
  492. align-items: center;
  493. justify-content: center;
  494. font-size: 9px;
  495. font-weight: bold;
  496. flex-shrink: 0;
  497. }
  498.  
  499. .popular-news { margin-top: 10px; }
  500.  
  501. .news-item {
  502. padding: 18px 0;
  503. border-bottom: 1px solid rgba(0,0,0,0.08);
  504. cursor: pointer;
  505. transition: border-color 0.3s ease;
  506. }
  507.  
  508. .news-item-content {
  509. display: flex;
  510. gap: 15px;
  511. align-items: flex-start;
  512. }
  513.  
  514. .news-item-image {
  515. flex-shrink: 0;
  516. width: 120px;
  517. height: 80px;
  518. border-radius: var(--border-radius);
  519. overflow: hidden;
  520. background: var(--news-card-base-color);
  521. }
  522.  
  523. .news-item-image img {
  524. width: 100%;
  525. height: 100%;
  526. object-fit: cover;
  527. display: block;
  528. transition: transform 0.3s ease;
  529. }
  530.  
  531. .news-item:hover .news-item-image img {
  532. transform: scale(1.05);
  533. }
  534.  
  535. .news-item-text {
  536. flex: 1;
  537. display: flex;
  538. flex-direction: column;
  539. gap: 6px;
  540. min-width: 0;
  541. }
  542.  
  543. .news-item:not(:has(.news-item-image)) .news-item-text {
  544. width: 100%;
  545. }
  546.  
  547. [data-theme="dark"] .news-item {
  548. border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  549. }
  550.  
  551. .news-item:last-child { border-bottom: none; }
  552.  
  553. .news-item:hover .news-title { color: var(--primary-color); }
  554.  
  555. .news-rank {
  556. font-size: 13px;
  557. font-weight: 600;
  558. color: var(--text-sub);
  559. line-height: 1.4;
  560. margin-bottom: 4px;
  561. }
  562.  
  563. .news-title {
  564. font-size: 17px;
  565. font-weight: 700;
  566. color: var(--text-main);
  567. line-height: 1.4;
  568. transition: color 0.3s ease;
  569. }
  570.  
  571. .news-summary {
  572. font-size: 14px;
  573. color: var(--text-sub);
  574. line-height: 1.5;
  575. display: -webkit-box;
  576. -webkit-line-clamp: 2;
  577. -webkit-box-orient: vertical;
  578. overflow: hidden;
  579. transition: color 0.3s ease;
  580. }
  581.  
  582. .slider-nav {
  583. display: flex;
  584. justify-content: center;
  585. align-items: center;
  586. gap: 10px;
  587. margin: 20px 0;
  588. }
  589.  
  590. .slider-btn {
  591. width: 40px;
  592. height: 40px;
  593. background: var(--card-bg);
  594. border: 1px solid rgba(0,0,0,0.1);
  595. border-radius: 50%;
  596. display: flex;
  597. align-items: center;
  598. justify-content: center;
  599. font-size: 20px;
  600. color: var(--text-main);
  601. cursor: pointer;
  602. transition: all 0.2s;
  603. user-select: none;
  604. }
  605.  
  606. [data-theme="dark"] .slider-btn {
  607. background: #1e1e3e;
  608. border-color: rgba(255, 255, 255, 0.1);
  609. color: var(--text-main);
  610. }
  611.  
  612. .slider-btn:hover {
  613. background: var(--primary-color);
  614. color: white;
  615. border-color: var(--primary-color);
  616. }
  617.  
  618. .slider-btn:disabled {
  619. opacity: 0.3;
  620. cursor: not-allowed;
  621. }
  622.  
  623. .slider-btn:disabled:hover {
  624. background: var(--card-bg);
  625. color: var(--text-main);
  626. border-color: rgba(0,0,0,0.1);
  627. }
  628.  
  629. .slider-indicator {
  630. font-size: 14px;
  631. color: var(--text-sub);
  632. font-weight: 500;
  633. min-width: 60px;
  634. text-align: center;
  635. }
  636.  
  637. .pagination {
  638. display: flex;
  639. justify-content: center;
  640. align-items: center;
  641. gap: 10px;
  642. margin: 30px 0 40px;
  643. }
  644.  
  645. .page-btn {
  646. width: 36px;
  647. height: 36px;
  648. background: var(--card-bg);
  649. border: 1px solid rgba(0,0,0,0.1);
  650. border-radius: 50%;
  651. display: flex;
  652. align-items: center;
  653. justify-content: center;
  654. font-size: 18px;
  655. color: var(--text-sub);
  656. cursor: pointer;
  657. transition: all 0.2s;
  658. }
  659.  
  660. [data-theme="dark"] .page-btn {
  661. background: #1e1e3e;
  662. border-color: rgba(255, 255, 255, 0.1);
  663. color: var(--text-sub);
  664. }
  665.  
  666. .page-btn:hover { background: #e9ecef; }
  667.  
  668. [data-theme="dark"] .page-btn:hover { background: #25254d; }
  669.  
  670. .page-current {
  671. background: var(--primary-color);
  672. color: white;
  673. border-color: var(--primary-color);
  674. font-weight: 700;
  675. font-size: 13px;
  676. width: auto;
  677. padding: 0 16px;
  678. border-radius: 18px;
  679. box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
  680. }
  681.  
  682. .footer {
  683. background: var(--card-bg);
  684. color: var(--text-sub);
  685. padding: 30px 20px;
  686. text-align: center;
  687. font-size: 12px;
  688. border-top: 1px solid rgba(0,0,0,0.08);
  689. transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  690. }
  691.  
  692. [data-theme="dark"] .footer {
  693. background: var(--card-bg);
  694. color: #adb5bd;
  695. border-top: 1px solid rgba(255, 255, 255, 0.1);
  696. }
  697.  
  698. .footer p { margin: 6px 0; }
  699. .footer strong { color: var(--primary-color); }
  700.  
  701. [data-theme="dark"] .footer strong { color: var(--primary-color); }
  702.  
  703. .divider {
  704. border-color: rgba(0,0,0,0.08) !important;
  705. transition: border-color 0.3s ease;
  706. }
  707.  
  708. [data-theme="dark"] .divider {
  709. border-color: rgba(255, 255, 255, 0.1) !important;
  710. }
  711.  
  712.  
  713. @media (max-width: 480px) {
  714. .search-list { grid-template-columns: 1fr; gap: 10px; }
  715. .news-slider-wrapper .news-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  716. .news-card { aspect-ratio: 16/9; }
  717. .content { padding: 15px; }
  718. .news-summary { display: none; }
  719. .news-item-image {
  720. width: 100px;
  721. height: 70px;
  722. }
  723. .news-item-content {
  724. gap: 12px;
  725. }
  726. }
  727.  
  728. .site-benefits-list1 {
  729.  list-style-position: inside;
  730. }
  731. .site-benefits-list1 li {
  732.  padding-left: 5px;
  733. }
  734. .site-benefits-list1 ul {
  735.  margin-bottom: 15px;
  736. }
  737.  
  738. /* Pagination styles */
  739. .navigation.pagination { margin: 10px 0 15px; text-align: center; }
  740. .nav-links { display: inline-flex; align-items: center; gap: 3px; flex-wrap: wrap; justify-content: center; }
  741. .page-numbers { padding: 6px 10px; text-decoration: none; color: var(--text-color); border: 1px solid var(--border-color); background: var(--card-bg); border-radius: 4px; transition: background-color 0.2s ease; font-size: 14px; min-width: 32px; text-align: center; }
  742. .page-numbers:hover { background: var(--bg-color); }
  743. .page-numbers.current { background: var(--primary-color); color: white; border-color: var(--primary-color); }
  744. .page-numbers.dots { border: none; background: transparent; cursor: default; padding: 6px 5px; }
  745.  
  746. /* Post view navigation buttons */
  747. .post-navigation {
  748. margin: 30px 0;
  749. display: flex;
  750. align-items: center;
  751. }
  752. .post-nav-col {
  753. flex: 1;
  754. display: flex;
  755. align-items: center;
  756. }
  757. .post-nav-col.center {
  758. justify-content: center;
  759. }
  760. .post-nav-col.prev {
  761. justify-content: flex-start;
  762. }
  763. .post-nav-col.next {
  764. justify-content: flex-end;
  765. }
  766. .post-nav-button {
  767. display: inline-flex;
  768. align-items: center;
  769. justify-content: center;
  770. gap: 8px;
  771. padding: 10px 14px;
  772. border-radius: 0;
  773. border: none;
  774. background: var(--card-bg);
  775. color: var(--text-color);
  776. text-decoration: none;
  777. font-weight: 600;
  778. box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  779. transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  780. }
  781. .post-nav-button i { font-size: 14px; color: var(--primary-color); }
  782. .post-nav-button:hover {
  783. transform: translateY(-1px);
  784. box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  785. }
  786. .post-nav-button.list {
  787. background: var(--primary-color);
  788. color: #fff;
  789. border-color: var(--primary-color);
  790. }
  791. .post-nav-button.list i { color: #fff; }
  792. .post-nav-button.disabled {
  793. opacity: 0.5;
  794. cursor: not-allowed;
  795. background: var(--bg-color);
  796. }
  797. </style>
  798. </head>
  799. <body>
  800. <div class="container">
  801. <header class="banner">
  802. <div class="brand-area">
  803. <a href="https://krzom.org/"><div class="brand-logo">케이알좀</div></a>
  804. </div>
  805. <div class="banner-links">
  806.  
  807. <span class="banner-text">2026년 5월 20일 오후 9:33</span>
  808. </div>
  809. </header><style>
  810. .elementor-section[data-id="e9c34a0"] {
  811.    padding: 8px 0;
  812.    margin-bottom: 4px;
  813. }
  814.  
  815. .elementor-section[data-id="e9c34a0"] .elementor-container {
  816.    display: flex;
  817.    flex-wrap: nowrap;
  818.    gap: 20px;
  819.    align-items: center;
  820.    max-width: 680px;
  821.    width: 680px;
  822.    margin: 0 auto;
  823. }
  824.  
  825. .elementor-section[data-id="e9c34a0"] .elementor-column {
  826.    flex: 1;
  827.    min-width: 0;
  828. }
  829.  
  830. .elementor-section[data-id="e9c34a0"] .elementor-col-50 {
  831.    flex: 0 0 calc(50% - 10px);
  832. }
  833.  
  834. .elementor-section[data-id="e9c34a0"] .elementor-element-7d1ce6b.elementor-col-50 {
  835.    flex: 0 0 61%;
  836.    max-width: 61%;
  837. }
  838.  
  839. .elementor-section[data-id="e9c34a0"] .elementor-col-100 {
  840.    flex: 0 0 100%;
  841.    max-width: 100%;
  842. }
  843.  
  844. .elementor-section[data-id="e9c34a0"] .elementor-single-column {
  845.    gap: 0;
  846. }
  847.  
  848. /* Left Column - Image */
  849. .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="3f52b6b"] {
  850.    order: 1;
  851.    flex: 0 0 240px;
  852.    width: 240px;
  853.    max-width: 240px;
  854.    min-width: 240px;
  855. }
  856.  
  857. .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="3f52b6b"] img {
  858.    width: 240px;
  859.    height: auto;
  860.    border-radius: var(--border-radius, 10px);
  861.    box-shadow: var(--shadow-md, 0 5px 15px rgba(0,0,0,0.1));
  862.    transition: transform 0.3s ease, box-shadow 0.3s ease;
  863.    display: block;
  864. }
  865.  
  866. .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="3f52b6b"] a:hover img {
  867.    transform: translateY(-2px);
  868.    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  869. }
  870.  
  871. /* Right Column - Text */
  872. .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="7d1ce6b"] {
  873.    order: 2;
  874.    flex: 0 0 420px;
  875.    width: 420px;
  876.    max-width: 420px;
  877.    display: flex;
  878.    flex-direction: column;
  879.    justify-content: center;
  880.    min-width: 0;
  881. }
  882.  
  883. .elementor-section[data-id="e9c34a0"] .elementor-heading-title {
  884.    font-size: 20px;
  885.    font-weight: 800;
  886.    color: var(--text-main, #212529);
  887.    letter-spacing: -0.5px;
  888.    line-height: 1.4;
  889.    margin-bottom: 12px;
  890. }
  891.  
  892. .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="366e49c2"] .elementor-heading-title {
  893.    font-size: 13px;
  894.    font-weight: 400;
  895.    color: var(--text-sub, #6c757d);
  896.    line-height: 1.6;
  897.    margin-bottom: 12px;
  898. }
  899.  
  900. /* Button Styles */
  901. .elementor-section[data-id="e9c34a0"] .elementor-button {
  902.    display: block;
  903.    padding: 8px 14px;
  904.    background: #007bff;
  905.    color: #ffffff;
  906.    border-radius: var(--border-radius, 10px);
  907.    font-size: 13px;
  908.    font-weight: 100%;
  909.    text-align: center;
  910.    transition: all 0.3s ease;
  911.    border: none;
  912.    cursor: pointer;
  913.    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.06));
  914. }
  915.  
  916. /* Full-width button wrapper, text centered on all devices */
  917. .elementor-section[data-id="e9c34a0"] .elementor-button-wrapper {
  918.    width: 100%;
  919. }
  920.  
  921. .elementor-section[data-id="e9c34a0"] .elementor-button.elementor-button-link {
  922.    width: 100%;
  923. }
  924.  
  925. .elementor-section[data-id="e9c34a0"] .elementor-button:hover {
  926.    background: #007bff;
  927.    box-shadow: var(--shadow-md, 0 5px 15px rgba(0,0,0,0.1));
  928. }
  929.  
  930. .elementor-section[data-id="e9c34a0"] .elementor-button-text {
  931.    color: inherit;
  932. }
  933.  
  934.  
  935.  
  936. /* Responsive Design */
  937. @media (max-width: 768px) {
  938.    .elementor-section[data-id="e9c34a0"] .elementor-container {
  939.        flex-wrap: wrap;
  940.        max-width: 100%;
  941.        width: 100%;
  942.    }
  943.    
  944.    .elementor-section[data-id="e9c34a0"] .elementor-col-50 {
  945.        flex: 0 0 100%;
  946.    }
  947.    .elementor-section[data-id="e9c34a0"] .elementor-element-7d1ce6b.elementor-col-50 {
  948.        flex: 0 0 100%;
  949.        max-width: 100%;
  950.    }
  951.    
  952.    .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="3f52b6b"] {
  953.        flex: 0 0 100%;
  954.        width: 100%;
  955.        max-width: 100%;
  956.        min-width: 0;
  957.    }
  958.    
  959.    .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="7d1ce6b"] {
  960.        flex: 0 0 100%;
  961.        width: 100%;
  962.        max-width: 100%;
  963.    }
  964.    
  965.    .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="3f52b6b"] {
  966.        order: 1;
  967.        margin-bottom: 20px;
  968.        max-width: 240px;
  969.        margin-left: auto;
  970.        margin-right: auto;
  971.    }
  972.    
  973.    .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="3f52b6b"] img {
  974.        width: 240px;
  975.    }
  976.    
  977.    .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="7d1ce6b"] {
  978.        order: 2;
  979.    }
  980.    
  981.    .elementor-section[data-id="e9c34a0"] .elementor-heading-title {
  982.        font-size: 19px;
  983.    }
  984. }
  985.  
  986. @media (max-width: 480px) {
  987.    .elementor-section[data-id="e9c34a0"] {
  988.        padding: 15px 0;
  989.    }
  990.    
  991.    .elementor-section[data-id="e9c34a0"] .elementor-container {
  992.        gap: 15px;
  993.    }
  994.    
  995.    .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="3f52b6b"] {
  996.        max-width: 240px;
  997.    }
  998.    
  999.    .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="3f52b6b"] img {
  1000.        width: 240px;
  1001.        max-width: 100%;
  1002.    }
  1003.    
  1004.    .elementor-section[data-id="e9c34a0"] .elementor-heading-title {
  1005.        font-size: 18px;
  1006.    }
  1007.    
  1008.    .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="366e49c2"] .elementor-heading-title {
  1009.        font-size: 14px;
  1010.    }
  1011.    
  1012.    .elementor-section[data-id="e9c34a0"] .elementor-button {
  1013.        padding: 10px 20px;
  1014.        font-size: 14px;
  1015.    }
  1016. }
  1017.  
  1018. /* Dark Theme Support */
  1019. [data-theme="dark"] .elementor-section[data-id="e9c34a0"] .elementor-heading-title {
  1020.    color: var(--text-main, #f8f9fa);
  1021. }
  1022.  
  1023. [data-theme="dark"] .elementor-section[data-id="e9c34a0"] .elementor-element[data-id="366e49c2"] .elementor-heading-title {
  1024.    color: var(--text-sub, #adb5bd);
  1025. }
  1026. </style>
  1027.  
  1028. <div class="content">
  1029.  
  1030. <div>
  1031. <div class="section-header">
  1032. <div>
  1033. <div class="section-title">최신 핫이슈</div>
  1034. <div class="section-subtitle">Latest hot issues</div>
  1035. </div>
  1036. </div>
  1037. <div class="section-header">
  1038. <section class="elementor-section elementor-inner-section elementor-element elementor-element-e9c34a0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e9c34a0" data-element_type="section">
  1039. <div class="elementor-container elementor-column-gap-default ">
  1040. <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3f52b6b" data-id="3f52b6b" data-element_type="column">
  1041. <div class="elementor-widget-wrap elementor-element-populated">
  1042. <div class="elementor-element elementor-element-3ef920a9 elementor-widget elementor-widget-image" data-id="3ef920a9" data-element_type="widget" data-widget_type="image.default">
  1043. <div class="elementor-widget-container"><a href="https://ddak1bun.top/" target="_blank"><img fetchpriority="high" decoding="async" width="240" height="160" src="https://loanmoa.top/index_ad1/img/home/d_1.png"></a>
  1044. </div>
  1045. </div>
  1046. </div>
  1047. </div>
  1048. <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d1ce6b" data-id="7d1ce6b" data-element_type="column">
  1049. <div class="elementor-widget-wrap elementor-element-populated">
  1050. <a href="https://ddak1bun.top/"target="_blank">
  1051. <div class="elementor-element elementor-element-91acfd elementor-widget elementor-widget-heading" data-id="91acfd" data-element_type="widget" data-widget_type="heading.default">
  1052. <div class="elementor-widget-container">
  1053. <p class="elementor-heading-title elementor-size-default">가까운거리 무료 채팅 | 1분채팅</p>
  1054. </div>
  1055. </div>
  1056. <div class="elementor-element elementor-element-366e49c2 elementor-widget elementor-widget-heading" data-id="366e49c2" data-element_type="widget" data-widget_type="heading.default">
  1057. <div class="elementor-widget-container">
  1058. <p class="elementor-heading-title elementor-size-default">서로 얼굴을 마주하고 대화를 나누며 마치 상대방과 함께 있는 듯한 느낌을 받게 될 것입니다.<br />
  1059. <br />
  1060. </p>
  1061. </div>
  1062. </div>
  1063. </a>
  1064.  
  1065. <div class="elementor-element elementor-element-456d5c5b elementor-align-justify elementor-widget elementor-widget-button" data-id="456d5c5b" data-element_type="widget" data-widget_type="button.default">
  1066. <div class="elementor-widget-container">
  1067. <div class="elementor-button-wrapper">
  1068. <a href="https://ddak1bun.top/" class="elementor-button elementor-button-link elementor-size-md" target="_blank">
  1069. <span class="elementor-button-content-wrapper">
  1070. <span class="elementor-button-text">채팅사이트에서 만남 어때</span>
  1071. </span>
  1072. </a>
  1073. </div>
  1074. </div>
  1075. </div>
  1076.  
  1077. </div>
  1078. </div>
  1079. </div>
  1080. </section>
  1081. </div>
  1082. </div>
  1083.  
  1084. <div style="height: 15px;"></div>
  1085. <div class="section-header">
  1086. <div>
  1087. <a href="https://krzom.org/?JoinID=realtime_search">
  1088. <div class="section-title">실시간 급상승 키워드</div>
  1089. <div class="section-subtitle">현재 사용자들의 관심사를 반영한 최신 검색어입니다.</div>
  1090. </a>
  1091. </div>
  1092. </div>
  1093.  
  1094. <div class="search-list">
  1095. <a href="https://krzom.org/?JoinID=realtime_search&DistributionID=4841">
  1096. <div class="search-item">
  1097. <span class="search-rank">1</span>
  1098. <span class="search-keyword">세븐과 이다해 임신 발표</span>
  1099. <span class="search-trend trend-up">▲</span></div>
  1100. </a>
  1101. <a href="https://krzom.org/?JoinID=realtime_search&DistributionID=4840">
  1102. <div class="search-item">
  1103. <span class="search-rank">2</span>
  1104. <span class="search-keyword">두나무 지분 추가 확보</span>
  1105. <span class="search-trend trend-up">▲</span></div>
  1106. </a>
  1107. <a href="https://krzom.org/?JoinID=realtime_search&DistributionID=4839">
  1108. <div class="search-item">
  1109. <span class="search-rank">3</span>
  1110. <span class="search-keyword">경기장 향하는 내고향여자축구단</span>
  1111. <span class="search-trend trend-up">▲</span></div>
  1112. </a>
  1113. <a href="https://krzom.org/?JoinID=realtime_search&DistributionID=4838">
  1114. <div class="search-item">
  1115. <span class="search-rank">4</span>
  1116. <span class="search-keyword">네타냐후 체포 영장</span>
  1117. <span class="search-trend trend-none">―</span></div>
  1118. </a>
  1119. <a href="https://krzom.org/?JoinID=realtime_search&DistributionID=4837">
  1120. <div class="search-item">
  1121. <span class="search-rank">5</span>
  1122. <span class="search-keyword">삼성전자 노사 협상 중재</span>
  1123. <span class="search-trend trend-none">―</span></div>
  1124. </a>
  1125. <a href="https://krzom.org/?JoinID=realtime_search&DistributionID=4836">
  1126. <div class="search-item">
  1127. <span class="search-rank">6</span>
  1128. <span class="search-keyword">한국프로농구</span>
  1129. <span class="search-trend trend-none">―</span></div>
  1130. </a>
  1131. <a href="https://krzom.org/?JoinID=realtime_search&DistributionID=4835">
  1132. <div class="search-item">
  1133. <span class="search-rank">7</span>
  1134. <span class="search-keyword">스타벅스 굿즈 논란</span>
  1135. <span class="search-trend trend-none">―</span></div>
  1136. </a>
  1137. <a href="https://krzom.org/?JoinID=realtime_search&DistributionID=4834">
  1138. <div class="search-item">
  1139. <span class="search-rank">8</span>
  1140. <span class="search-keyword">알 테오 젠</span>
  1141. <span class="search-trend trend-none">―</span></div>
  1142. </a>
  1143. <a href="https://krzom.org/?JoinID=realtime_search&DistributionID=4833">
  1144. <div class="search-item">
  1145. <span class="search-rank">9</span>
  1146. <span class="search-keyword">허수아비 시청률 경신과 존재감</span>
  1147. <span class="search-trend trend-none">―</span></div>
  1148. </a>
  1149. <a href="https://krzom.org/?JoinID=realtime_search&DistributionID=4832">
  1150. <div class="search-item">
  1151. <span class="search-rank">10</span>
  1152. <span class="search-keyword">의령군</span>
  1153. <span class="search-trend trend-none">―</span></div>
  1154. </a>
  1155. </div>
  1156.  
  1157. <hr class="divider" style="border: 0; border-top: 1px solid; margin: 30px 0;">
  1158.  
  1159. <div class="section-header">
  1160. <section class="elementor-section elementor-inner-section elementor-element elementor-element-e9c34a0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e9c34a0" data-element_type="section">
  1161. <div class="elementor-container elementor-column-gap-default ">
  1162. <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3f52b6b" data-id="3f52b6b" data-element_type="column">
  1163. <div class="elementor-widget-wrap elementor-element-populated">
  1164. <div class="elementor-element elementor-element-3ef920a9 elementor-widget elementor-widget-image" data-id="3ef920a9" data-element_type="widget" data-widget_type="image.default">
  1165. <div class="elementor-widget-container"><a href="https://kcoupon.top" target="_blank"><img fetchpriority="high" decoding="async" width="240" height="160" src="https://i.imgur.com/MmS89J8.png"></a>
  1166. </div>
  1167. </div>
  1168. </div>
  1169. </div>
  1170. <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d1ce6b" data-id="7d1ce6b" data-element_type="column">
  1171. <div class="elementor-widget-wrap elementor-element-populated">
  1172. <a href="https://kcoupon.top"target="_blank">
  1173. <div class="elementor-element elementor-element-91acfd elementor-widget elementor-widget-heading" data-id="91acfd" data-element_type="widget" data-widget_type="heading.default">
  1174. <div class="elementor-widget-container">
  1175. <p class="elementor-heading-title elementor-size-default">TEMU 쇼핑 할인</p>
  1176. </div>
  1177. </div>
  1178. <div class="elementor-element elementor-element-366e49c2 elementor-widget elementor-widget-heading" data-id="366e49c2" data-element_type="widget" data-widget_type="heading.default">
  1179. <div class="elementor-widget-container">
  1180. <p class="elementor-heading-title elementor-size-default">테무(Temu)는 소비자들이 최고의 삶을 누릴 수 있도록 합니다. 합리적인 가격으로 고품질의 제품을 제공하기 위해 최선을 다하고 있습니다.</p>
  1181. </div>
  1182. </div>
  1183. </a>
  1184.  
  1185. <div class="elementor-element elementor-element-456d5c5b elementor-align-justify elementor-widget elementor-widget-button" data-id="456d5c5b" data-element_type="widget" data-widget_type="button.default">
  1186. <div class="elementor-widget-container">
  1187. <div class="elementor-button-wrapper">
  1188. <a href="https://kcoupon.top" class="elementor-button elementor-button-link elementor-size-md" target="_blank">
  1189. <span class="elementor-button-content-wrapper">
  1190. <span class="elementor-button-text">Temu 바로가기</span>
  1191. </span>
  1192. </a>
  1193. </div>
  1194. </div>
  1195. </div>
  1196.  
  1197. </div>
  1198. </div>
  1199. </div>
  1200. </section>
  1201. </div>
  1202. <div class="section-header">
  1203. <section class="elementor-section elementor-inner-section elementor-element elementor-element-e9c34a0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e9c34a0" data-element_type="section">
  1204. <div class="elementor-container elementor-column-gap-default ">
  1205. <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3f52b6b" data-id="3f52b6b" data-element_type="column">
  1206. <div class="elementor-widget-wrap elementor-element-populated">
  1207. <div class="elementor-element elementor-element-3ef920a9 elementor-widget elementor-widget-image" data-id="3ef920a9" data-element_type="widget" data-widget_type="image.default">
  1208. <div class="elementor-widget-container"><a href="https://manduya.org" target="_blank"><img fetchpriority="high" decoding="async" width="240" height="160" src="https://i.imgur.com/dp62vj8.png"></a>
  1209. </div>
  1210. </div>
  1211. </div>
  1212. </div>
  1213. <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-7d1ce6b" data-id="7d1ce6b" data-element_type="column">
  1214. <div class="elementor-widget-wrap elementor-element-populated">
  1215. <a href="https://manduya.org"target="_blank">
  1216. <div class="elementor-element elementor-element-91acfd elementor-widget elementor-widget-heading" data-id="91acfd" data-element_type="widget" data-widget_type="heading.default">
  1217. <div class="elementor-widget-container">
  1218. <p class="elementor-heading-title elementor-size-default">전국 대부업체 랭킹 -  론365</p>
  1219. </div>
  1220. </div>
  1221. <div class="elementor-element elementor-element-366e49c2 elementor-widget elementor-widget-heading" data-id="366e49c2" data-element_type="widget" data-widget_type="heading.default">
  1222. <div class="elementor-widget-container">
  1223. <p class="elementor-heading-title elementor-size-default">안전한 대출 직거래 사이트,전국 대출업체가 모두 한곳에! 대출, 비교, 상담까지 다이렉트로</p>
  1224. </div>
  1225. </div>
  1226. </a>
  1227.  
  1228.  
  1229. </div>
  1230. </div>
  1231. </div>
  1232. </section>
  1233. </div>
  1234.  
  1235.  
  1236.  
  1237. <div align="center">
  1238. 인기 검색어:&nbsp;
  1239. <a href="https://krzom.org/?contentlist=webtoon">웹툰</a> &nbsp;
  1240. <a href="https://krzom.org/?contentlist=webhard">웹하드</a> &nbsp;
  1241. <a href="https://krzom.org/?contentlist=tv">티비</a> &nbsp;
  1242. <a href="https://krzom.org/?contentlist=ting">만남</a> &nbsp;
  1243. <a href="https://krzom.org/?contentlist=link">링크</a> &nbsp;
  1244. <a href="https://krzom.org/?cpa_list=link">할인</a>
  1245. </div>
  1246.  
  1247. <hr class="divider" style="border: 0; border-top: 1px solid; margin: 30px 0;">
  1248.  
  1249. <div class="section-header">
  1250. <div>
  1251. <a href="https://krzom.org/?JoinID=realnews">
  1252. <div class="section-title">오늘뉴스</div>
  1253. <div class="section-subtitle">krzom.org</div>
  1254. </a>
  1255. </div>
  1256. </div>
  1257.  
  1258. <div class="popular-news">
  1259. <div class="news-item">
  1260. <a href="https://bukgu.gwangju.kr/menu.es?mid=a10409100100" target="_self">
  1261. <div class="news-title">광주 부끄머니 구매하기</div>
  1262. <div class="news-summary">광주 부끄머니는 광주 북구의 지역화폐로, 2026년 3월 3일(화)부터 예산 소진 시까지 총 80억 원 규모로 발행됩니다. 만 14세 이상이면 누구나 구매 가능하며, 신분증 지참 후 광주 전역 광주은행 영업점을 방문하면 됩니다. 구매 금액은 3·5·10·20·50만 원권 선불카드 형태로 제공되며, 1인당 최대 50만 원까지 구매 가능합니다. 가장 큰 혜택은...</div>
  1263. </a>
  1264. </div>
  1265. <div class="news-item">
  1266. <a href="https://res.knps.or.kr/eco/searchEcoReservation.do" target="_self">
  1267. <div class="news-title">한려해상 생태탐방원 예약하기</div>
  1268. <div class="news-summary">한려해상 생태탐방원 예약은 국립공원공단 예약시스템에서 회원가입 후 온라인으로만 가능합니다. 접속 후 ‘생태탐방원 → 한려해상’ 선택 → 입·퇴실 날짜 설정 → 프로그램 및 숙박 유형 선택 → 결제 순으로 진행됩니다. 매월 예약 오픈일에 경쟁이 치열하므로 오픈 시각에 맞춰 접속해야 하며, 취소는 입실 3일 전까지 무료입니다.아래에서 빠르게 한려해상 생태탐방원...</div>
  1269. </a>
  1270. </div>
  1271. <div class="news-item">
  1272. <a href="https://krzom.org/?JoinID=realnews&DistributionID=350" target="_self">
  1273. <div class="news-title">운명전쟁49 노슬비 예약하기</div>
  1274. <div class="news-summary">디즈니+ 운명전쟁49 출연으로 화제가 된 MZ 무당 노슬비의 예약은 현재 100% 사전 예약제로만 운영됩니다. 가장 빠른 공식 예약 방법은 ①카카오톡 플러스 채널 ‘슬비로운생활’ 또는 ②인스타그램 공식 계정(@sheknoh) DM 문의이며, 전화로도 가능합니다. 방송 이후 예약 문의가 폭주해 예약 오픈 일을 인스타그램 공지로 먼저 확인한 뒤 신청해야 하며,...</div>
  1275. </a>
  1276. </div>
  1277. <div class="news-item">
  1278. <a href="https://krzom.org/?JoinID=realnews&DistributionID=349" target="_self">
  1279. <div class="news-title">목포 매화도령 예약하기</div>
  1280. <div class="news-summary">목포 매화도령(만천주월신당)은 '운명전쟁 49' 방영 이후 예약이 폭주하여 2026년 주말 예약은 모두 마감되었으며, 평일만 일부 가능합니다. 2027년부터 주말 예약이 가능합니다. 예약은 전화(010-7418-1065)로만 가능하며, DM과 카카오톡은 확인하지 않습니다.
  1281.    아래에서 빠르게 목포 매화도령을 예약하세요!
  1282.    키워드: 목포, 매화도...</div>
  1283. </a>
  1284. </div>
  1285. <div class="news-item">
  1286. <a href="https://www.inicis.com/payment-view" target="_self">
  1287. <div class="news-title">이니시스 결제내역 조회하기</div>
  1288. <div class="news-summary">이니시스 결제 내역은 KG이니시스 공식 홈페이지(www.inicis.com)의 상단 메뉴 ‘고객센터 → 결제 내역 조회’에서 확인할 수 있습니다. 신용카드, 계좌이체, 휴대폰 등 결제 수단을 선택하고 카드 번호(또는 계좌 번호, 휴대폰 번호), 결제 일자, 금액, 구매자명 등을 입력하면 2014년 1월 이후 거래 내역과 실제 쇼핑몰명, 승인 번호를 조회할 ...</div>
  1289. </a>
  1290. </div>
  1291. </div>
  1292.  
  1293. <hr class="divider" style="border: 0; border-top: 1px solid; margin: 30px 0;">
  1294.  
  1295. <div class="section-header">
  1296. <section class="elementor-section elementor-inner-section elementor-element elementor-element-e9c34a0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e9c34a0" data-element_type="section">
  1297. <div class="elementor-container elementor-column-gap-default elementor-single-column">
  1298. <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-7d1ce6b" data-id="7d1ce6b" data-element_type="column">
  1299. <div class="elementor-widget-wrap elementor-element-populated">
  1300. <a href=""target="_blank">
  1301. <div class="elementor-element elementor-element-91acfd elementor-widget elementor-widget-heading" data-id="91acfd" data-element_type="widget" data-widget_type="heading.default">
  1302. <div class="elementor-widget-container">
  1303. <p class="elementor-heading-title elementor-size-default">입점문의</p>
  1304. </div>
  1305. </div>
  1306. <div class="elementor-element elementor-element-366e49c2 elementor-widget elementor-widget-heading" data-id="366e49c2" data-element_type="widget" data-widget_type="heading.default">
  1307. <div class="elementor-widget-container">
  1308. <p class="elementor-heading-title elementor-size-default">어떤 업체들보다 빠르고, 효과적으로</p>
  1309. </div>
  1310. </div>
  1311. </a>
  1312.  
  1313.  
  1314. </div>
  1315. </div>
  1316. </div>
  1317. </section>
  1318. </div>
  1319. </div>
  1320.  
  1321.  
  1322. <div class="section-subtitle" align="center" style="margin-bottom: 20px;"> <a href="https://krzom.org/?category=1049" class='sort-button'>24시 약국 찾기</a>  <a href="https://krzom.org/?category=85" class='sort-button'>무료IQ테스트</a>  <a href="https://krzom.org/?category=49" class='sort-button'>무료 심리테스트 </a> </div>
  1323. <div class="footer">
  1324. <p>케이알좀은 원하는 소식을 가장 빠르고 정확하게 전달합니다.</p>
  1325. <p>본 서비스는 포털 사이트와 무관한 독립 서비스입니다.</p>
  1326. <p style="margin-top: 15px; opacity: 0.6;">© krzom Corp. All Rights Reserved.</p>
  1327.  
  1328. <a href="https://trendsk.org" class='sort-button'>약국찾기</a>  <a href="https://sohaewang.top" class='sort-button'>소개왕</a>  <a href="https://newtoki.org" class='sort-button'>뉴토끼 | newtoki </a>  <a href="https://financedb.top" class='sort-button'>금융DB</a>  <a href="https://wnth.top" class='sort-button'>뉴스주소</a> </div>
  1329. </div>
  1330. </div>
  1331. </div>
  1332. <script>
  1333.  
  1334. let currentSlide = 0;
  1335. const slider = document.getElementById('newsSlider');
  1336. const totalPages = 1;
  1337. const prevBtn = document.getElementById('prevBtn');
  1338. const nextBtn = document.getElementById('nextBtn');
  1339. const currentPageSpan = document.getElementById('currentPage');
  1340.  
  1341. function updateSliderButtons() {
  1342. if (prevBtn && nextBtn) {
  1343.    prevBtn.disabled = currentSlide === 0;
  1344.    nextBtn.disabled = currentSlide >= totalPages - 1;
  1345. }
  1346. }
  1347.  
  1348. function slideNews(direction) {
  1349. const slides = slider.querySelectorAll('.news-grid');
  1350. if (!slides || slides.length === 0) return;
  1351.  
  1352. currentSlide += direction;
  1353.  
  1354. if (currentSlide < 0) {
  1355.    currentSlide = 0;
  1356. } else if (currentSlide >= slides.length) {
  1357.    currentSlide = slides.length - 1;
  1358. }
  1359.  
  1360. const slideWidthPercent = 100 / totalPages;
  1361. slider.style.transform = `translateX(-${currentSlide * slideWidthPercent}%)`;
  1362.  
  1363. if (currentPageSpan) {
  1364.    currentPageSpan.textContent = currentSlide + 1;
  1365. }
  1366.  
  1367. updateSliderButtons();
  1368. }
  1369.  
  1370. document.addEventListener('DOMContentLoaded', function() {
  1371. if (slider && totalPages > 0) {
  1372.    slider.style.display = 'flex';
  1373.    slider.style.width = `${totalPages * 100}%`;
  1374.  
  1375.    const slides = slider.querySelectorAll('.news-grid');
  1376.    const slideWidth = 100 / totalPages;
  1377.    slides.forEach((slide, index) => {
  1378.        slide.style.width = `${slideWidth}%`;
  1379.        slide.style.flexShrink = 0;
  1380.        slide.style.minWidth = `${slideWidth}%`;
  1381.    });
  1382.  
  1383.    const container = slider.parentElement;
  1384.    if (container) {
  1385.        container.style.width = '100%';
  1386.        container.style.overflow = 'hidden';
  1387.    }
  1388.    slider.style.transform = 'translateX(0%)';
  1389.    updateSliderButtons();
  1390. }
  1391. });
  1392.  
  1393. if (document.readyState === 'loading') {
  1394. } else {
  1395. if (slider && totalPages > 0) {
  1396.    slider.style.display = 'flex';
  1397.    slider.style.width = `${totalPages * 100}%`;
  1398.    const slides = slider.querySelectorAll('.news-grid');
  1399.    const slideWidth = 100 / totalPages;
  1400.    slides.forEach((slide, index) => {
  1401.        slide.style.width = `${slideWidth}%`;
  1402.        slide.style.flexShrink = 0;
  1403.        slide.style.minWidth = `${slideWidth}%`;
  1404.    });
  1405.    const container = slider.parentElement;
  1406.    if (container) {
  1407.        container.style.width = '100%';
  1408.        container.style.overflow = 'hidden';
  1409.    }
  1410.    slider.style.transform = 'translateX(0%)';
  1411.    updateSliderButtons();
  1412. }
  1413. }
  1414. </script>
  1415. <script defer src="https://static.cloudflareinsights.com/beacon.min.js/v833ccba57c9e4d2798f2e76cebdd09a11778172276447" integrity="sha512-57MDmcccJXYtNnH+ZiBwzC4jb2rvgVCEokYN+L/nLlmO8rfYT/gIpW2A569iJ/3b+0UEasghjuZH/ma3wIs/EQ==" data-cf-beacon='{"version":"2024.11.0","token":"5a89a0d4f57c4137b3a167ee6ad4dda7","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
  1416. </body>
  1417. </html>
  1418.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda