/* /skin/css/css.css */
/*! 新盛集团 企业官网样式 v1.0 | 高端商务，响应式设计 */

/* ---------- RESET & 基础 ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* 基础平滑滚动，但JS将覆盖偏移量 */
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ---------- 全局容器 ---------- */
.an1115-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* ---------- 色彩变量 (奢华深色系+点缀) ---------- */
:root {
  --an1115-primary: #2c5e3f;      /* 深绿 主按钮背景 */
  --an1115-primary-dark: #1f4530;
  --an1115-accent: #b76e3b;       /* 暖金/铜色 */
  --an1115-wine: #8b3c3c;         /* 酒红点缀 */
  --an1115-dark: #1a1a1a;
  --an1115-gray-bg: #f7f7f9;
  --an1115-text-dark: #222;
  --an1115-text-light: #fefefe;
  --an1115-border-light: #eaeef2;
  --an1115-shadow-sm: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

/* ---------- 标题字体衬线 ---------- */
.an1115-section-title,
.an1115-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.an1115-section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--an1115-dark);
  line-height: 1.2;
}

.an1115-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--an1115-accent);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.an1115-body-text {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ---------- 按钮系统 ---------- */
.an1115-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  cursor: pointer;
  transition: 0.25s;
  border: 1.5px solid transparent;
  text-align: center;
}

.an1115-btn-primary {
  background: var(--an1115-primary);
  color: white;
  border-color: var(--an1115-primary);
}

.an1115-btn-primary:hover {
  background: var(--an1115-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 94, 63, 0.3);
}

.an1115-btn-secondary {
  background: transparent;
  border-color: white;
  color: white;
}

.an1115-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.an1115-btn-outline {
  background: transparent;
  border-color: var(--an1115-primary);
  color: var(--an1115-primary);
}

.an1115-btn-outline:hover {
  background: var(--an1115-primary);
  color: white;
}

.an1115-btn-outline-dark {
  border-color: var(--an1115-dark);
  color: var(--an1115-dark);
}

.an1115-btn-outline-dark:hover {
  background: var(--an1115-dark);
  color: white;
}

.an1115-btn-outline-light {
  border-color: white;
  color: white;
}

.an1115-btn-outline-light:hover {
  background: white;
  color: var(--an1115-dark);
}

.an1115-btn-large {
  padding: 14px 38px;
  font-size: 1rem;
}

.an1115-btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* ---------- 头部导航 (半透明+滚动效果) ---------- */
.an1115-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(12px);
  transition: background 0.3s, box-shadow 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.an1115-header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.an1115-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 80px;
}

.an1115-logo-img {
  height: 48px;
  width: auto;
}

.an1115-nav-list {
  display: flex;
  gap: 1.6rem;
  margin: 0;
}

.an1115-nav-link {
  color: #f0f0f0;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: 0.2s;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.an1115-nav-link:hover,
.an1115-nav-link.active {
  color: var(--an1115-accent);
  border-bottom-color: var(--an1115-accent);
}

.an1115-header-actions {
  margin-left: 1rem;
}

/* 移动菜单按钮 */
.an1115-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 0;
}

.an1115-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: 0.2s;
}

/* ---------- 首屏 Hero ---------- */
.an1115-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.an1115-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.an1115-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.an1115-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.an1115-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 24px;
}

.an1115-hero-icon-logo {
  margin-bottom: 1.5rem;
}

.an1115-hero-icon-logo img {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  border-radius: 20px;
}

.an1115-hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.an1115-hero-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.an1115-hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 通用section间距 */
.an1115-section {
  padding: 90px 0;
}

.an1115-alt-bg {
  background-color: var(--an1115-gray-bg);
}

/* 栅格系统 */
.an1115-grid {
  display: grid;
  gap: 2rem;
}

.an1115-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.an1115-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.an1115-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* 卡片样式 */
.an1115-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--an1115-shadow-sm);
}

.an1115-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

.an1115-card-img {
  height: 220px;
  overflow: hidden;
}

.an1115-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.an1115-card:hover .an1115-card-img img {
  transform: scale(1.03);
}

.an1115-card h3 {
  font-size: 1.35rem;
  margin: 1.2rem 1.2rem 0.5rem;
  font-weight: 600;
}

.an1115-card p {
  margin: 0 1.2rem 1.5rem;
  color: #5a5a5a;
  font-size: 0.9rem;
}

/* 销售网络深色区（酒红奢华） */
.an1115-network-dark {
  background: linear-gradient(135deg, #231b1b 0%, #2d2125 100%);
  color: white;
}

.an1115-network-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.an1115-subtitle-light {
  color: #e3b87c;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.an1115-title-light {
  color: white;
}

.an1115-body-text-light {
  color: #d9cdc2;
  margin: 1.2rem 0;
}

.an1115-partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.8rem 0;
  font-weight: 500;
  opacity: 0.9;
}

.an1115-partner-logos span {
  background: rgba(255,255,240,0.12);
  padding: 6px 18px;
  border-radius: 60px;
  font-size: 0.85rem;
}

/* 客服模块 */
.an1115-service-alt {
  background: #fef8f2;
}

.an1115-service-card {
  background: white;
  border-radius: 32px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--an1115-shadow-sm);
}

.an1115-contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
  text-align: left;
  background: #fafafc;
  padding: 1.8rem;
  border-radius: 28px;
}

.an1115-contact-item {
  font-size: 1rem;
}

/* FAQ */
.an1115-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.an1115-faq-item {
  background: #f8f8fa;
  padding: 1.8rem;
  border-radius: 28px;
}

.an1115-faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.an1115-faq-cta {
  text-align: center;
  margin-top: 1rem;
}

/* 代理加盟 图文 */
.an1115-franchise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.an1115-franchise-text ul {
  margin: 1.5rem 0;
  list-style: none;
}

.an1115-franchise-text li {
  margin: 0.75rem 0;
  font-weight: 500;
}

/* APP区域 */
.an1115-app-section {
  background: var(--an1115-gray-bg);
}

.an1115-app-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.an1115-app-phone {
  border-radius: 32px;
  box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}

/* 产品展示图文 */
.an1115-product-item {
  text-align: center;
}

.an1115-product-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 28px;
  margin-bottom: 1rem;
}

.an1115-product-item h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

/* 人力资源列表 */
.an1115-hr-list {
  margin: 1.2rem 0 1.8rem;
  list-style: none;
}

.an1115-hr-list li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.an1115-hr-list li::before {
  content: "✓";
  color: var(--an1115-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.an1115-hr-img img {
  border-radius: 28px;
  width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 300px;
}

/* 页脚 */
.an1115-footer {
  background: #0a0a0c;
  color: #bcbcbc;
  padding: 60px 0 30px;
  font-size: 0.85rem;
}

.an1115-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.an1115-footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.an1115-footer-col ul li {
  margin-bottom: 0.6rem;
}

.an1115-footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.an1115-footer-links a {
  margin: 0 6px;
  color: #bcbcbc;
}

.an1115-footer-links a:hover {
  color: var(--an1115-accent);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .an1115-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .an1115-hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .an1115-menu-toggle {
    display: flex;
  }
  .an1115-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(16px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
  }
  .an1115-nav.open {
    max-height: 500px;
  }
  .an1115-nav-list {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1rem;
  }
  .an1115-header-actions {
    display: none;
  }
  .an1115-grid-2, .an1115-grid-3, .an1115-grid-4,
  .an1115-network-container, .an1115-franchise-inner,
  .an1115-app-container {
    grid-template-columns: 1fr;
  }
  .an1115-section {
    padding: 60px 0;
  }
  .an1115-section-title {
    font-size: 2rem;
  }
  .an1115-hero-title {
    font-size: 2.2rem;
  }
  .an1115-faq-grid {
    grid-template-columns: 1fr;
  }
  .an1115-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .an1115-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .an1115-btn-large {
    width: 100%;
  }
}