/* roulang page: index */
:root {
    --primary: #6F4E37;
    --primary-hover: #5A3E2B;
    --accent: #D4A24E;
    --bg-main: #FAF6F0;
    --bg-panel: #fff;
    --bg-dark: #2B2118;
    --text-main: #2A211A;
    --text-sub: #6F6A64;
    --line: #EAE0D4;
    --ok: #4C8C6A;
    --warn: #C07A3C;
    --shadow-card: 0 4px 16px rgba(86, 62, 40, .08);
    --shadow-card-hover: 0 8px 24px rgba(86, 62, 40, .14);
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  img,
  svg {
    display: block;
    max-width: 100%;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  button {
    font-family: inherit;
    cursor: pointer;
  }
  input,
  select,
  textarea {
    font-family: inherit;
  }
  .container-site {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  @media (min-width: 768px) {
    .container-site {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
  .section-title {
    position: relative;
    padding-left: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.3;
  }
  .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
  }
  @media (min-width: 768px) {
    .section-title {
      font-size: 1.875rem;
    }
  }
  .prose-desc {
    font-size: .9375rem;
    line-height: 1.75;
    color: var(--text-sub);
  }
  @media (min-width: 768px) {
    .prose-desc {
      font-size: 1rem;
    }
  }
  .step-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .375rem .75rem;
    border-radius: 9999px;
    font-size: .8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    transition: all .3s ease;
    white-space: nowrap;
    cursor: pointer;
  }
  .step-item .step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    transition: all .3s ease;
    flex-shrink: 0;
  }
  .step-item.active {
    color: #fff;
    background: rgba(255, 255, 255, .08);
  }
  .step-item.active .step-dot {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 162, 78, .2);
  }
  .step-arrow {
    color: rgba(255, 255, 255, .25);
    font-size: .75rem;
    flex-shrink: 0;
  }
  .card-hover {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 162, 78, .4);
  }
  .btn-primary {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border-radius: .5rem;
    padding: .625rem 1.25rem;
    font-size: .875rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .2s ease;
    border: none;
  }
  .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
  }
  .btn-primary:active {
    transform: scale(.98);
  }
  .btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: .5rem;
    padding: .5rem 1rem;
    font-size: .875rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .2s ease;
  }
  .btn-outline:hover {
    background: rgba(111, 78, 55, .06);
    border-color: var(--primary-hover);
  }
  .btn-accent {
    background: var(--accent);
    color: #2B2118;
    font-weight: 700;
    border-radius: .5rem;
    padding: .625rem 1.25rem;
    font-size: .875rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .2s ease;
    border: none;
  }
  .btn-accent:hover {
    background: #deb36a;
    box-shadow: 0 4px 14px rgba(212, 162, 78, .3);
    transform: translateY(-1px);
  }
  .btn-accent:active {
    transform: scale(.98);
  }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    font-size: .75rem;
    font-weight: 600;
    padding: .25rem .75rem;
    border-radius: 9999px;
    line-height: 1.5;
  }
  .badge-ok {
    background: rgba(76, 140, 106, .1);
    color: #3d7256;
  }
  .badge-warn {
    background: rgba(192, 122, 60, .1);
    color: #9c5f2d;
  }
  .badge-region {
    background: rgba(111, 78, 55, .08);
    color: var(--primary);
  }
  .filter-pill {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .8125rem;
    font-weight: 600;
    padding: .4375rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text-sub);
    transition: all .2s ease;
    white-space: nowrap;
  }
  .filter-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
  .filter-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }
  .work-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 162, 78, .35);
  }
  .work-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 10.5rem;
  }
  .work-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
  }
  .work-card:hover .card-img-wrap img {
    transform: scale(1.05);
  }
  .form-input {
    width: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: .5rem;
    padding: .625rem .875rem;
    font-size: .875rem;
    color: var(--text-main);
    transition: all .2s ease;
  }
  .form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 162, 78, .15);
  }
  .form-select {
    width: 100%;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236F6A64'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right .75rem center;
    background-size: 1rem;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid var(--line);
    border-radius: .5rem;
    padding: .625rem 2rem .625rem .875rem;
    font-size: .875rem;
    color: var(--text-main);
    transition: all .2s ease;
  }
  .form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 162, 78, .15);
  }
  .faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: .75rem;
    overflow: hidden;
    transition: border-color .2s ease;
  }
  .faq-item.open {
    border-color: rgba(212, 162, 78, .4);
  }
  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .9375rem;
  }
  .faq-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--primary);
    transition: all .25s ease;
    flex-shrink: 0;
  }
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .faq-a-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: .875rem;
    color: var(--text-sub);
    line-height: 1.75;
  }
  .scrollbar-thin::-webkit-scrollbar {
    height: 4px;
    width: 4px;
  }
  .scrollbar-thin::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
  }
  .scrollbar-thin::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 2px;
  }
  .header-blur {
    backdrop-filter: blur(10px);
    background: rgba(43, 33, 24, .92);
    transition: background .3s ease;
  }
  .hero-bg {
    background-image: linear-gradient(100deg, rgba(43, 33, 24, .96) 0%, rgba(43, 33, 24, .82) 45%, rgba(43, 33, 24, .45) 80%, rgba(43, 33, 24, .5) 100%);
  }
  .time-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .4rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .8125rem;
  }
  .time-row:last-child {
    border-bottom: none;
  }
  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
  }
  .review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: all .3s ease;
  }
  .review-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
  }
  .news-item {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    padding: .875rem 0;
    border-bottom: 1px solid var(--line);
    transition: background .2s ease;
  }
  .news-item:hover {
    background: rgba(111, 78, 55, .03);
  }
  .news-item .num {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 1.75rem;
    line-height: 1.75rem;
    text-align: center;
    background: rgba(212, 162, 78, .08);
    border-radius: .375rem;
    flex-shrink: 0;
  }
  .footer-link {
    color: rgba(255, 255, 255, .6);
    font-size: .875rem;
    transition: color .2s ease;
    line-height: 1.8;
  }
  .footer-link:hover {
    color: var(--accent);
  }
  @media (max-width: 640px) {
    .step-item {
      padding: .25rem .5rem;
      font-size: .75rem;
    }
    .step-arrow {
      display: none;
    }
    .section-title {
      font-size: 1.3125rem;
    }
    .prose-desc {
      font-size: .875rem;
    }
  }

/* roulang page: category1 */
:root {
  --primary: #6F4E37;
  --primary-hover: #5A3E2B;
  --accent: #D4A24E;
  --bg-main: #FAF6F0;
  --bg-panel: #fff;
  --bg-dark: #2B2118;
  --text-main: #2A211A;
  --text-sub: #6F6A64;
  --line: #EAE0D4;
  --ok: #4C8C6A;
  --warn: #C07A3C;
  --shadow-card: 0 4px 16px rgba(86, 62, 40, .08);
  --shadow-card-hover: 0 8px 24px rgba(86, 62, 40, .14);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img, svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input, select, textarea {
  font-family: inherit;
}
.container-site {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container-site {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.section-title {
  position: relative;
  padding-left: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--primary);
  border-radius: 2px;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 1.875rem;
  }
}
.step-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem .75rem;
  border-radius: 9999px;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  transition: all .3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.step-item .step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transition: all .3s ease;
  flex-shrink: 0;
}
.step-item.active {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}
.step-item.active .step-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 162, 78, .2);
}
.step-arrow {
  color: rgba(255, 255, 255, .25);
  font-size: .75rem;
  flex-shrink: 0;
}
.card-hover {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(212, 162, 78, .4);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: .5rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .2s ease;
  border: none;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: scale(.98);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .2s ease;
}
.btn-outline:hover {
  background: rgba(111, 78, 55, .06);
  border-color: var(--primary-hover);
}
.btn-accent {
  background: var(--accent);
  color: #2B2118;
  font-weight: 700;
  border-radius: .5rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .2s ease;
  border: none;
}
.btn-accent:hover {
  background: #deb36a;
  box-shadow: 0 4px 14px rgba(212, 162, 78, .3);
  transform: translateY(-1px);
}
.btn-accent:active {
  transform: scale(.98);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 9999px;
  line-height: 1.5;
}
.badge-ok {
  background: rgba(76, 140, 106, .1);
  color: #3d7256;
}
.badge-warn {
  background: rgba(192, 122, 60, .1);
  color: #9c5f2d;
}
.badge-region {
  background: rgba(111, 78, 55, .08);
  color: var(--primary);
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .8125rem;
  font-weight: 600;
  padding: .4375rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-sub);
  transition: all .2s ease;
  white-space: nowrap;
}
.filter-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.work-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(212, 162, 78, .35);
}
.work-card .card-img-wrap {
  position: relative;
  overflow: hidden;
}
.work-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.work-card:hover .card-img-wrap img {
  transform: scale(1.05);
}
.form-input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .5rem;
  padding: .625rem .875rem;
  font-size: .875rem;
  color: var(--text-main);
  transition: all .2s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 162, 78, .15);
}
.form-input::placeholder {
  color: #b0a9a2;
}
.form-select {
  width: 100%;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236F6A64'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right .75rem center;
  background-size: 1rem;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: .5rem;
  padding: .625rem 2rem .625rem .875rem;
  font-size: .875rem;
  color: var(--text-main);
  transition: all .2s ease;
}
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 162, 78, .15);
}
.slot-btn {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .75rem;
  font-weight: 600;
  padding: .375rem .875rem;
  border-radius: .5rem;
  transition: all .2s ease;
  border: 1px solid transparent;
  background: #fff;
}
.slot-ok {
  border-color: var(--primary);
  color: var(--primary);
}
.slot-ok:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.slot-warn {
  border-color: var(--warn);
  color: var(--warn);
}
.slot-warn:hover {
  background: var(--warn);
  color: #fff;
  transform: translateY(-1px);
}
.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 .75rem;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-sub);
  transition: all .2s ease;
}
.pagination-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pagination-link.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .75rem;
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item.active {
  border-color: rgba(212, 162, 78, .5);
}
.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: .75rem;
  flex-shrink: 0;
  transition: transform .25s ease, background-color .25s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(212, 162, 78, .1);
}
.sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}
.scrollbar-thin::-webkit-scrollbar {
  height: 4px;
}
.scrollbar-thin::-webkit-scrollbar-track {
  background: transparent;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .2);
  border-radius: 4px;
}
.footer-link {
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
  transition: color .2s ease;
}
.footer-link:hover {
  color: #fff;
}
.district-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--line);
}
.district-group-title h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}
@media (min-width: 768px) {
  .district-group-title h2 {
    font-size: 1.375rem;
  }
}
.time-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .625rem 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.time-list-item:last-child {
  border-bottom: none;
}
.time-list-item:hover {
  background: rgba(111, 78, 55, .02);
}
.page-hero-img {
  border-bottom: 2px solid rgba(212, 162, 78, .4);
}
