:root {
  /* »ö»ó º¯¼ö */
  --primary-color: #1a56e1;
  --accent-color: #ff4b12;
  --text-primary: #1e1e1e;
  --text-secondary: #666;
  --border-color: #d9d9d9;
  --bg-light: #f6f8fc;
  --bg-lighter: #f8f8f8;
  --bg-white: #fff;

  /* °øÅë °£°Ý */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;

  /* ÆùÆ® Å©±â */
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.0625rem;
}
.list_container {
  width: 240px;
  float: left;
  margin: 6px;
  margin-bottom: 30px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
}

.list_container a {
  text-decoration: none;
  color: inherit;
}

.list_img {
  width: 100%;
  height: 200px;
  position: relative;
}

.list_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.list_like {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.list_info_container {
  padding: 15px;
}

.list_topinfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.list_code {
  color: #666;
  font-size: 14px;
}

.list_maker {
  font-size: 18px;
  font-weight: 700;
  color: #184079;
  margin-bottom: 10px;
}

.list_info {
  color: #717171;
  font-size: 14px;
  margin-bottom: 10px;
}

hr {
  border: none;
  border-top: 1px solid #eaeaea;
  margin: 10px 0;
}

.list_addr {
  color: #555555;
  font-size: 14px;
  margin-bottom: 5px;
}

.list_dt {
  color: #f00;
  font-size: 14px;
  font-weight: 600;
}

.list_todayend {
  background-color: #ff4444;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 5px;
  font-size: 12px;
}

.car_status {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
  background-color: #eee;
}

.status_transfer_total {
  background-color: #ff4444;
  color: white;
}

.status_transfer_partial {
  background-color: #ff8800;
  color: white;
}

.status_scrapped_total {
  background-color: #333333;
  color: white;
}

.sale_header {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1e1e1e;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 0.5rem;
  margin-inline: 1rem;
  position: relative;
  text-indent: 0.75rem;
  line-height: 1;
}
.sale_header::after {
  content: "";
  display: block;
  width: 0.25rem;
  height: 1.0625rem;
  background: #1a56e1;
  position: absolute;
  top: 0;
  left: 0;
}

/* ºä ÄÁÅ×ÀÌ³Ê */
.view_container {
  padding: 1.25rem; /* 20px */
}

/* ÀÌ¹ÌÁö ¿µ¿ª */
.view_imgarea {
  margin-bottom: 1.875rem; /* 30px */
}

.view_imglarge {
  width: 100%;
  margin-bottom: 0.625rem; /* 10px */
}

.view_imglarge img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border-color, #d7d7d7);
}

/* ½æ³×ÀÏ ÀÌ¹ÌÁö ¸ñ·Ï */
.view_imglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem; /* 10px */
}

.view_imglist div {
  width: 3.75rem; /* 60px */
  height: 3.125rem; /* 50px */
}

.view_imglist img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid var(--border-color, #d7d7d7);
  transition: opacity 0.2s ease;
}

.view_imglist img:hover {
  opacity: 0.8;
}

/* Á¤º¸ ¿µ¿ª */
.view_info {
  background: var(--bg-white, #fff);
  border-radius: 0.625rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.view_infotop {
  padding: var(--spacing-md);
  background-color: var(--bg-light);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

/* Å¸ÀÔ Á¤º¸ */
.view_type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9375rem; /* 15px */
}

.view_auctionnum {
  font-size: 1rem; /* 16px */
  font-weight: 700;
}

.view_auctiontype {
  /* color: var(--primary-color, #1a56e1); */
  font-weight: 500;
}

/* Â÷·® Á¤º¸ */
.view_infotitle {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.125rem 0;
}
.view_subinfo_container {
  composes: flex-col;
  gap: var(--spacing-sm);
  background-color: var(--bg-light);
  padding: var(--spacing-md);
}
.view_subinfo_divider {
  border-top: 1px solid #d9d9d9;
  margin: 0 0 0.125rem 0;
}
.view_subinfo {
  font-size: 0.875rem; /* 14px */
  color: #1e1e1e;
}

/* ÁÖÀÇ»çÇ× ¿µ¿ª */
.attention {
  margin-top: 20px;
  padding: 16px;
  background: #f8f8f8;
}

.attention p {
  font-weight: bold;
  margin-bottom: 10px;
}
.attention tbody {
  padding: 1rem;
}
.attention td {
  font-size: 0.75rem;
  line-height: 1.6;
  word-break: keep-all;
  font-weight: 400;
}
.attention-description {
  padding: 0.5rem;
}

/* ±Ý¾× Ç¥½Ã */
.pay.red {
  color: #ff4b12;
  font-weight: bold;
  margin: 15px 0;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.car_info_table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
  background-color: #f8f8f8;
}

.car_info_table_row {
  display: flex;
  min-height: 2.5rem; /* ÃÖ¼Ò ³ôÀÌ ¼³Á¤ */
  height: auto; /* ÀÚµ¿ ³ôÀÌ Á¶Àý */
}

.car_info_table_row:last-child {
  border-bottom: none;
}

.car_info_table_label {
  width: 4.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e1e1e;
  padding: 0.625rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  word-break: keep-all; /* ·¹ÀÌºí ÁÙ¹Ù²Þ ¹æÁö */
}

.car_info_table_value {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 400;
  color: #1e1e1e;
  padding: 0.625rem 0.75rem;
  box-sizing: border-box;
  background-color: #fff;
  min-height: 100%; /* ºÎ¸ð ³ôÀÌ¸¸Å­ ÃÖ¼Ò ³ôÀÌ ¼³Á¤ */
  line-height: 1.4;
  word-break: break-all; /* ±ä ÅØ½ºÆ® ÁÙ¹Ù²Þ */
}

.view_auction {
  margin-top: var(--spacing-md);
  gap: var(--spacing-xs);
}
div {
  box-sizing: border-box;
}

.view_auction_row {
  display: flex;
  height: 2.5rem;
  gap: 0.325rem;
  align-items: center;
}
.view_auction_label {
  font-size: 0.775rem;
  font-weight: 700;
  color: #1e1e1e;
  background-color: #ddd;
  padding: 0.625rem;
  min-height: 100%; /* ºÎ¸ð ³ôÀÌ¸¸Å­ ÃÖ¼Ò ³ôÀÌ ¼³Á¤ */
}

.view_auction_value {
  min-height: 100%; /* ºÎ¸ð ³ôÀÌ¸¸Å­ ÃÖ¼Ò ³ôÀÌ ¼³Á¤ */
  font-size: 0.875rem;
  flex: 1;
  font-weight: 400;
  color: #1e1e1e;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  padding: 0.25rem 0.875rem;
  gap: 0.5rem;
  text-align: right;
  justify-content: flex-end;
}
.view_auction_value input {
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  padding: 0.25rem 0.625rem;
  flex: 1;
  border: 1px solid #c4c4c4;
  text-align: right;
}
.style1 {
  font-size: 0.775rem;
  font-weight: 700;
  color: #1e1e1e;
  background-color: #ddd;
  padding: 0.625rem;
  min-height: 100%; /* ºÎ¸ð ³ôÀÌ¸¸Å­ ÃÖ¼Ò ³ôÀÌ ¼³Á¤ */
}

.style2 {
  min-height: 100%; /* ºÎ¸ð ³ôÀÌ¸¸Å­ ÃÖ¼Ò ³ôÀÌ ¼³Á¤ */
  font-size: 0.875rem;
  font-weight: 400;
  color: #1e1e1e;
  background-color: #f2f2f2;
  align-items: center;
  padding: 0.25rem 0.875rem;
  gap: 0.5rem;
  justify-content: flex-end;
}
.view_auction_value input {
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  padding: 0.25rem 0.625rem;
  flex: 1;
  border: 1px solid #c4c4c4;
  text-align: right;
}
.view_rule {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.view_rule input[type="checkbox"] {
}
.view_rule label {
  font-size: 0.875rem;
  color: #1e1e1e;
  margin: 0;
}
.view_buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  text-align: center;
}
.view_buttons > div {
  flex: 1;
  color: var(--bg-white);
  padding: var(--spacing-md);
  font-weight: 700;
}
.list_button {
  background-color: #b3b3b3;
}
.go_button {
  background-color: var(--primary-color);
}
.main_sul {
  color: var(--accent-color);
}
.car_charge_table tr {
  padding: 0.5rem;
}

/* °øÅë ½ºÅ¸ÀÏ */
.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  align-items: center;
}
.info_button {
  background-color: #d9d9d9;
  color: #555;
  width: 50%;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 700;
}
.info_button_active {
  background-color: #3a3a3a;
  color: #fff;
}
.info_title1 {
  background-color: var(--bg-light);
}
.info_title2 {
  background-color: var(--bg-white);
}
