/* theme1 经典酒业 — 基于 moban.html 红白金风格 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --hc-red: #8B0000;
  --hc-red-dark: #6b0000;
  --hc-gold: #C9A96E;
  --hc-navy: #1a1a2e;
  --hc-navy-mid: #16213e;
  --hc-navy-light: #0f3460;
  --hc-text: #333;
  --hc-muted: #666;
  --hc-muted-light: #999;
  --hc-bg-alt: #f8f9fa;
  --hc-max: 1200px;
  --hc-header-h: 80px;
}

html { scroll-behavior: smooth; }

body.hc-site.theme-skin-classic {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: var(--hc-text);
  background: #fff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.hc-container {
  max-width: var(--hc-max);
  margin: 0 auto;
  padding: 0 20px;
}

.hc-preview-bar {
  background: #b45309;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 13px;
}

/* —— 顶栏 —— */
.hc-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hc-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--hc-header-h);
  gap: 16px;
}

.hc-logo {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: bold;
  color: var(--hc-red);
  letter-spacing: 2px;
  flex-shrink: 0;
}

.hc-logo span {
  color: var(--hc-gold);
  font-size: 12px;
  font-weight: normal;
  display: block;
  letter-spacing: 4px;
  margin-top: 2px;
}

.hc-nav {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}

.hc-nav a {
  font-size: 16px;
  color: var(--hc-text);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.hc-nav a:hover,
.hc-nav a.is-active { color: var(--hc-red); }

.hc-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hc-gold);
  transition: width 0.3s;
}

.hc-nav a:hover::after,
.hc-nav a.is-active::after { width: 100%; }

.hc-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.hc-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--hc-red);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.hc-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hc-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.hc-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* —— Banner —— */
.hc-banner {
  min-height: clamp(360px, 55vh, 600px);
  background: linear-gradient(135deg, var(--hc-navy) 0%, var(--hc-navy-mid) 50%, var(--hc-navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hc-banner--img {
  background-size: cover;
  background-position: center;
}

.hc-banner--img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.82) 0%, rgba(15, 52, 96, 0.75) 100%);
}

.hc-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,169,110,0.1)" stroke-width="0.5"/></svg>');
  background-size: 200px;
  opacity: 0.5;
  z-index: 0;
}

.hc-banner-content {
  position: relative;
  z-index: 1;
  padding: 48px 20px;
}

.hc-banner h1 {
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 300;
  letter-spacing: clamp(2px, 1.5vw, 8px);
  margin-bottom: 20px;
}

.hc-banner p {
  font-size: clamp(15px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: clamp(1px, 0.8vw, 4px);
  margin-bottom: 36px;
}

.hc-banner-btn {
  display: inline-block;
  padding: 14px 50px;
  border: 2px solid var(--hc-gold);
  color: var(--hc-gold);
  font-size: 16px;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.hc-banner-btn:hover {
  background: var(--hc-gold);
  color: var(--hc-navy);
}

/* —— 通用板块 —— */
.hc-section { padding: clamp(48px, 8vw, 80px) 0; }
.hc-section--alt { background: var(--hc-bg-alt); }

.hc-section-title {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 50px);
}

.hc-section-title h2 {
  font-size: clamp(24px, 4vw, 32px);
  color: var(--hc-text);
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.hc-line {
  width: 60px;
  height: 3px;
  background: var(--hc-gold);
  margin: 0 auto;
}

.hc-section-title p {
  color: var(--hc-muted-light);
  font-size: 14px;
  margin-top: 15px;
  letter-spacing: 2px;
}

.hc-section-more { text-align: center; margin-top: 40px; }

.hc-btn-outline {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid var(--hc-red);
  color: var(--hc-red);
  transition: all 0.3s;
}

.hc-btn-outline:hover {
  background: var(--hc-red);
  color: #fff;
}

.hc-btn-primary {
  display: inline-block;
  padding: 14px 50px;
  background: var(--hc-red);
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  transition: background 0.3s;
}

.hc-btn-primary:hover { background: var(--hc-red-dark); }

/* —— 关于 —— */
.hc-about-grid {
  display: flex;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.hc-about-visual {
  flex: 1;
  min-height: 280px;
  height: clamp(280px, 40vw, 400px);
  background: linear-gradient(45deg, #f5f5f5, #e8e8e8);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 18px;
}

.hc-about-text { flex: 1; }

.hc-about-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 400;
}

.hc-about-text p {
  color: var(--hc-muted);
  margin-bottom: 15px;
  text-align: justify;
}

.hc-more-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--hc-red);
  border-bottom: 1px solid var(--hc-red);
  padding-bottom: 5px;
  transition: color 0.3s, border-color 0.3s;
}

.hc-more-link:hover {
  color: var(--hc-gold);
  border-color: var(--hc-gold);
}

/* —— 产品 —— */
.hc-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 30px);
}

.hc-product-grid--page { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.hc-product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}

.hc-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hc-product-img {
  height: clamp(180px, 28vw, 250px);
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hc-product-img .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-product-img .product-img--placeholder {
  object-fit: contain;
  padding: 24px;
  opacity: 0.55;
}

.hc-product-info {
  padding: 20px;
  text-align: center;
}

.hc-product-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 400;
}

.hc-product-info p {
  color: var(--hc-muted-light);
  font-size: 14px;
}

.hc-contact-tip {
  color: var(--hc-red) !important;
  font-size: 13px !important;
  margin-top: 10px !important;
}

/* —— 招商 —— */
.hc-join-grid {
  display: flex;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.hc-join-text { flex: 1; }

.hc-join-text h3 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 20px;
  font-weight: 400;
}

.hc-join-text > p {
  color: var(--hc-muted);
  margin-bottom: 20px;
}

.hc-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.hc-advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.hc-advantage-icon {
  width: 50px;
  height: 50px;
  background: var(--hc-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-red);
  font-size: 18px;
  flex-shrink: 0;
}

.hc-advantage-text h4 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 400;
}

.hc-advantage-text p {
  font-size: 14px;
  color: var(--hc-muted-light);
  margin: 0;
}

.hc-join-visual {
  flex: 1;
  min-height: 280px;
  height: clamp(300px, 42vw, 450px);
  background: linear-gradient(45deg, #f5f5f5, #e8e8e8);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 18px;
}

/* —— 资讯 —— */
.hc-news-list {
  background: #fff;
  border-radius: 4px;
  padding: clamp(20px, 4vw, 40px);
}

.hc-news-list--page { padding: 0; background: transparent; }

.hc-news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: padding-left 0.3s;
}

.hc-news-item:hover { padding-left: 10px; }
.hc-news-item:last-child { border-bottom: none; }

.hc-news-title {
  font-size: 16px;
  color: var(--hc-text);
  transition: color 0.3s;
  flex: 1;
  min-width: 0;
}

.hc-news-item:hover .hc-news-title { color: var(--hc-red); }

.hc-news-date {
  color: var(--hc-muted-light);
  font-size: 14px;
  flex-shrink: 0;
}

.hc-news-more {
  text-align: center;
  margin-top: 30px;
}

.hc-news-more a {
  color: var(--hc-red);
  font-size: 14px;
  transition: color 0.3s;
}

.hc-news-more a:hover { color: var(--hc-gold); }

/* —— 联系 —— */
.hc-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.hc-contact-grid--page { margin-top: 0; }

.hc-contact-card {
  text-align: center;
  padding: clamp(28px, 4vw, 40px) 24px;
  background: var(--hc-bg-alt);
  border-radius: 4px;
  transition: transform 0.3s;
}

.hc-contact-card:hover { transform: translateY(-5px); }

.hc-contact-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--hc-red);
  font-size: 22px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hc-contact-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 400;
}

.hc-contact-card p {
  color: var(--hc-muted);
  font-size: 15px;
  line-height: 1.8;
  word-break: break-word;
}

/* —— 友商 —— */
.hc-peer-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hc-peer-list a {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 14px;
  color: var(--hc-muted);
  background: #fff;
  transition: border-color 0.3s, color 0.3s;
}

.hc-peer-list a:hover {
  border-color: var(--hc-gold);
  color: var(--hc-red);
}

/* —— 页脚 —— */
.hc-footer {
  background: var(--hc-navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  text-align: center;
}

.hc-footer-links {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.hc-footer-links a {
  font-size: 14px;
  transition: color 0.3s;
}

.hc-footer-links a:hover { color: var(--hc-gold); }

.hc-footer p {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.hc-footer-meta { font-size: 13px !important; opacity: 0.85; }

/* —— 内页 —— */
.hc-page-banner {
  background: linear-gradient(135deg, var(--hc-navy) 0%, var(--hc-navy-light) 100%);
  color: #fff;
  padding: clamp(48px, 8vw, 72px) 0 clamp(36px, 6vw, 56px);
  text-align: center;
}

.hc-page-banner--compact { padding: 36px 0 28px; text-align: left; }

.hc-page-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--hc-gold);
  margin-bottom: 10px;
}

.hc-page-banner h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: 2px;
}

.hc-breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.hc-breadcrumb a:hover { color: var(--hc-gold); }
.hc-breadcrumb span { margin: 0 6px; opacity: 0.5; }

.hc-back {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.hc-back:hover { color: var(--hc-gold); }

.hc-page-body { padding: clamp(32px, 6vw, 56px) 20px clamp(48px, 8vw, 80px); }

.hc-prose {
  max-width: 860px;
  margin: 0 auto;
  color: var(--hc-muted);
  line-height: 1.9;
  font-size: 16px;
}

.hc-prose p { margin-bottom: 1em; }
.hc-prose img { max-width: 100%; height: auto; margin: 1em auto; border-radius: 4px; }
.hc-prose h2, .hc-prose h3 { color: var(--hc-text); margin: 1.4em 0 0.6em; font-weight: 500; }
.hc-prose ul, .hc-prose ol { padding-left: 1.5em; margin-bottom: 1em; }

.hc-empty { text-align: center; color: var(--hc-muted-light); padding: 40px 0; }

.hc-product-detail .hc-product-hero {
  max-width: 480px;
  margin: 0 auto 32px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--hc-bg-alt);
}

.hc-product-detail .hc-product-hero .product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hc-product-detail .hc-product-hero .product-img--placeholder {
  object-fit: contain;
  padding: 40px;
  opacity: 0.55;
}

.hc-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 15px;
}

.hc-product-meta span {
  color: var(--hc-muted-light);
  margin-right: 8px;
}

.hc-product-meta strong { color: var(--hc-text); }

.hc-article-meta {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.hc-article-related {
  max-width: 860px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.hc-article-related h3 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 500;
}

.hc-article-related ul { list-style: none; }

.hc-article-related li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hc-article-related a {
  color: var(--hc-muted);
  transition: color 0.3s;
}

.hc-article-related a:hover { color: var(--hc-red); }

.hc-contact-extra { margin-top: 48px; }

.hc-pagination {
  margin-top: 32px;
  text-align: center;
}

.hc-pagination ul {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.hc-pagination a,
.hc-pagination span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 14px;
  color: var(--hc-muted);
}

.hc-pagination a:hover,
.hc-pagination .active span {
  background: var(--hc-red);
  border-color: var(--hc-red);
  color: #fff;
}

/* —— 响应式 —— */
@media (max-width: 992px) {
  .hc-product-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hc-nav-toggle { display: flex; }

  .hc-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
  }

  .hc-nav.open { display: flex; }

  .hc-nav a {
    padding: 12px 24px;
    width: 100%;
  }

  .hc-nav a::after { display: none; }

  .hc-header { position: sticky; }
  .hc-header-inner { position: relative; flex-wrap: wrap; padding: 12px 0; min-height: auto; }

  .hc-about-grid,
  .hc-join-grid { flex-direction: column; }

  .hc-advantages { grid-template-columns: 1fr; }

  .hc-news-item { flex-direction: column; align-items: flex-start; gap: 6px; }

  .hc-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hc-product-grid { grid-template-columns: 1fr; }
}
