<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* 파란색 테마 최신글 스킨 (latest) */
.lat {
  position: relative;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.lat .lat_title {
  display: block;
  line-height: 60px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1a6ed8, #2c82e6);
  border-bottom: 1px solid #eaeaea;
}

.lat .lat_title a {
  position: relative;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  letter-spacing: -0.5px;
  transition: all 0.3s;
}

.lat .lat_title a:hover {
  color: #e8f1ff;
}

.lat table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}

.lat tr:nth-child(1) {
  background: #f8faff;
  border-bottom: 2px solid #d9e5f7;
}

.lat tr:nth-child(1) td {
  color: #1a6ed8;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 15px;
}

.lat tr {
  transition: all 0.2s;
}

.lat tr:hover:not(:first-child) {
  background-color: #f0f6ff !important;
}

.lat td {
  padding: 14px 15px;
  text-align: center;
  border-bottom: 1px solid #e8f0fb;
  font-size: 14px;
  letter-spacing: -0.5px;
  color: #555;
}

.lat td a {
  color: #333;
  transition: all 0.2s;
}

.lat td a:hover {
  color: #1a6ed8;
}

/* 지역 태그 스타일 */
.lat td p {
  padding: 4px 12px;
  background: #2c82e6;
  border-radius: 20px;
  display: inline-block;
  border: none;
  transition: all 0.3s;
}

.lat td p:hover {
  background: #1a6ed8;
  transform: translateY(-1px);
}

.lat td p a {
  color: #fff;
  white-space:nowrap;
  font-weight: 500;
  font-size: 12px;
}

.lat tr:nth-child(2n+1):not(:first-child) {
  background: #fbfcff;
}

/* 공지사항 스타일 */
.lat td p.notice {
  padding: 0;
  border-radius: 0;
  background: none !important;
}

.new_icon {
  display: inline-block;
  line-height: 16px;
  font-size: 0.8em;
  color: #fff;
  background: #1a6ed8;
  padding: 0px 4px;
  text-align: center;
  border-radius: 2px;
  margin-left: 4px;
  font-weight: bold;
  vertical-align: middle;
}

.hot_icon {
  display: inline-block;
  line-height: 16px;
  font-size: 0.8em;
  color: #fff;
  background: #3b9eff;
  padding: 3px 10px;
  border-radius: 3px;
  text-align: center;
  margin-left: 2px;
  font-weight: bold;
  vertical-align: top;
  box-shadow: 0 2px 4px rgba(26, 110, 216, 0.2);
}

.notice_bold {
  color: #1a6ed8;
  font-weight: 600;
}

/* 댓글 숫자 스타일 */
b.latest_main_comment {
  background: #3b9eff;
  color: #fff;
  padding: 1px 5px;
  margin-left: 5px;
  font-weight: 500;
  font-size: 0.8em;
  border-radius: 3px;
  letter-spacing: 0;
}

/* 깜빡임 효과 */
.blink {
  animation: blinker 1.5s ease-in-out infinite;
}

@keyframes blinker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* 더보기 버튼 */
.lat .lt_more {
  position: absolute;
  top: 18px;
  right: 15px;
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s;
}

.lat .lt_more:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

/* 빈 목록 */
.lat .empty_li {
  line-height: 100px;
  list-style: none;
  color: #888;
  text-align: center;
  padding: 30px;
  font-size: 14px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .lat td:nth-child(4) {
    display: none;
  }
  
  .lat tr:nth-child(1) td:nth-child(4) {
    display: none;
  }
}

@media (max-width: 640px) {
  .lat td:nth-child(1) {
    display: none;
  }
  
  .lat tr:nth-child(1) td:nth-child(1) {
    display: none;
  }
  
  .lat td {
    padding: 12px 8px;
    font-size: 13px;
  }
}</pre></body></html>