/*
Theme Name: Blankslate Child Catal
Theme URI: https://example.com/
Description: My custom Blankslate child theme
Author: Your Name
Author URI: https://yourwebsite.com/
Template: Blankslate
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Blankslate_Child_Catal
*/


/* 全局样式 */
:root {
  --primary-color: #19769e;
  --secondary-color: #19769e;
  --accent-color: #19769e;
  --text-dark: #2C2C2C;
  --text-light: #666;
  --bg-light: #F8F9FA;
  --border-color: #E5E5E5;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.mar-t-30 {
  margin-top: 30px;
}
.mar-t-70 {
  margin-top: 70px;
}
.pad-t-80 {
  padding-top: 80px;
}
.logo {
  width: 120px;
}
.aspect-radio {
  position: relative;
  width: 100%;
  padding-top: calc(9 / 16 * 100%);
  /* 56.25% */
}
.aspect-radio-1920-800 {
  padding-top: 41.66%;
}
.aspect-radio > .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-content {
  padding-top: 72px;
  min-height: calc(100vh - 393px);
}
@media (max-width: 780px) {
  .main-content {
    padding-top: 67px;
  }
}
.black-color {
  color: var(--accent-color) !important;
}
.btn-primary {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
}
.hero {
  height: 70vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}
.hero h1 {
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 48px;
}
.hero-overlay{
  width: 100%;
  text-align: center;
  color: #fff;
}

/* 导航栏样式 */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color) !important;
}
.navbar-brand img.logo {
  height: 40px;
  transition: all 0.3s ease;
}
.navbar-toggler {
  padding: 0.25rem 0.5rem;
  font-size: 1.1rem;
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}
/* PC端二级菜单样式 */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar-nav .mega-menu {
    position: fixed !important;
    left: 0;
    right: 0;
    width: 100vw;
    background-color: #fff;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 2rem 0;
    margin-top: 0;
    z-index: 1000;
    margin: 0;
  }
  .navbar-nav .mega-menu .container {
    max-width: 1200px;
  }
  .navbar-nav .mega-menu .dropdown-item {
    padding: 1rem 2rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
    text-align: center;
    white-space: nowrap;
    border-radius: 8px;
    margin: 0 0.5rem;
  }
  .navbar-nav .mega-menu .dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
    transform: translateY(-2px);
  }
  .navbar-nav .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    vertical-align: middle;
  }
  .navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
/* 移动端样式 */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
  }
  .nav-item {
    margin: 0.25rem 0;
  }
  .navbar-nav .nav-link {
    margin: 0;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
  }
  .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 8px;
  }
  .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 8px;
  }
  /* 移动端下拉菜单样式 */
  .dropdown-menu {
    border: none;
    box-shadow: none;
    margin-top: 0;
    border-radius: 10px;
    padding: 0.5rem 0;
  }
  .dropdown-item {
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
  }
  .dropdown-item:hover {
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--primary-color);
    padding-left: 2rem;
  }
  /* 移动端mega-menu重置 */
  .navbar-nav .mega-menu {
    position: static !important;
    width: auto;
    box-shadow: none;
    padding: 0.5rem 0;
    margin: 0;
  }
  .navbar-nav .mega-menu .container {
    max-width: none;
    padding: 0;
  }
  .navbar-nav .mega-menu .row {
    margin: 0;
  }
  .navbar-nav .mega-menu .col-auto {
    padding: 0;
    width: 100%;
  }
  .navbar-nav .mega-menu .dropdown-item {
    padding: 0.75rem 1.5rem;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    margin: 0;
  }
  .navbar-nav .mega-menu .dropdown-item:hover {
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--primary-color);
    transform: none;
    padding-left: 2rem;
  }
  /* 移动端下拉箭头 */
  .navbar-nav .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.3s ease;
  }
  .navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  /* 禁用移动端hover效果 */
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: none !important;
  }
  /* 移动端点击展开下拉菜单 */
  .navbar-nav .dropdown.show .dropdown-menu {
    display: block !important;
    border: none;
  }
}
/* 轮播图样式 */
.carousel-item {
  height: 100%;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
  bottom: 20%;
}
.carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
/* 按钮样式 */
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}
.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}
/* 区块标题样式 */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}
.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
/* 产品卡片样式 */
.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  padding: 16px;
}
.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.product-card .card-body {
  padding: 1.5rem;
}
.product-card .card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.product-card .card-text {
  color: var(--text-light);
  margin-bottom: 1rem;
}
/* 热销产品区域 */
.hot-deals {
  background-color: var(--bg-light);
  padding: 4rem 0;
}
.hot-deals .section-title h2 {
  color: var(--accent-color);
}
/* 定制服务区域 */
.custom-service {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}
.custom-service .section-title h2,
.custom-service .section-title p {
  color: white;
}
.custom-service .section-title h2::after {
  background-color: white;
}
/* 集团实力样式 */
.strength-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.strength-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.strength-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.strength-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.strength-card:hover .strength-image img {
  transform: scale(1.1);
}
.strength-content {
  padding: 1.5rem;
}
.strength-content h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: bold;
}
.strength-content p {
  color: var(--text-light);
  margin-bottom: 0;
}
/* 发展历程样式 */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-color, #ff6b35);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-year {
  background: var(--accent-color, #ff6b35);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.2rem;
  min-width: 100px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.timeline-year::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--accent-color, #ff6b35);
  border-radius: 50%;
  transform: translateY(-50%);
}
.timeline-item:nth-child(odd) .timeline-year::before {
  right: -35px;
}
.timeline-item:nth-child(even) .timeline-year::before {
  left: -35px;
}
.timeline-content {
  flex: 1;
  max-width: 400px;
  /* 控制宽度 */
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 1.5rem;
  transition: all 0.3s ease;
}
/* .timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
} */
.timeline-content h4 {
  color: var(--primary-color, #333);
  margin-bottom: 1rem;
  font-weight: bold;
}
.timeline-content p {
  color: var(--text-light, #666);
  margin-bottom: 0;
}
/* 响应式：移动端适配 */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
    transform: translateX(0);
  }
  .timeline-item {
    flex-direction: row !important;
    margin-left: 60px;
  }
  .timeline-year {
    position: absolute;
    left: -42px;
    top: 15px;
    transform: none;
  }
  .timeline-year::before {
    display: none;
  }
  .timeline-content {
    max-width: none;
    width: 100%;
    margin: 0 0 1rem 0;
    padding: 1rem;
  }
}
/* 企业文化样式 */
.culture-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.culture-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.culture-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.culture-icon i {
  font-size: 2rem;
  color: white;
}
.culture-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: bold;
}
.culture-card p {
  color: var(--text-light);
  margin-bottom: 0;
}
/* 荣誉资质样式 */
.honor-card {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.honor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.honor-card i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.honor-card h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.honor-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}
/* 品牌理念轮播图样式 */
/* 品牌理念 - 新樣式 */
.brand-concept-panel {
  position: relative;
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  color: white;
}

/* 使用偽元素添加漸變遮罩層，不影響背景圖片 */
.brand-concept-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.brand-concept-content {
  position: relative; /* 確保內容在遮罩層之上 */
  z-index: 2;
  padding: 4rem; /* 內邊距決定了容器的初始大小，並可隨內容擴展 */
  text-align: left;
}

.brand-concept-content h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-concept-content .concept-subtitle {
  margin-top: 3.5rem; /* 用於分隔兩塊內容 */
}

.concept-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.concept-features li {
  display: flex;
  align-items: flex-start; /* 處理多行文本時，讓圖標和文本頂部對齊 */
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.concept-features li i {
  color: var(--accent-color);
  margin-right: 1rem;
  font-size: 1.2rem;
  text-shadow: none;
  margin-top: 4px; /* 微調圖標的垂直位置，使其與文本更協調 */
}

/* 響應式設計 */
@media (max-width: 992px) {
  .brand-concept-content {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .brand-concept-content {
    padding: 2.5rem;
  }
  .brand-concept-content h3 {
    font-size: 2rem;
  }
  .concept-features li {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .brand-concept-content {
    padding: 2rem 1.5rem;
  }
  .brand-concept-content h3 {
    font-size: 1.75rem;
  }
  .concept-features li {
    font-size: 14px;
  }
  .brand-concept-content .concept-subtitle {
    margin-top: 2.5rem;
  }
}

/* 全球布局样式 */
.global-map-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.global-map-container {
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 3rem;
}
.map-info {
  flex: 1;
  padding-right: 3rem;
}
.map-info h3 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.map-info h4 {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.map-info p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.map-info .english-text {
  font-style: italic;
  font-size: 0.9rem;
  color: #888;
}
.map-visual {
  flex: 1;
  position: relative;
}
.world-map {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 500"><rect width="1000" height="500" fill="%23d4d4d4"/><path d="M200,100 Q300,80 400,100 L450,150 Q400,200 350,180 L300,200 Q250,150 200,100 Z" fill="%23a8a8a8"/><path d="M500,120 Q600,100 700,120 L750,170 Q700,220 650,200 L600,220 Q550,170 500,120 Z" fill="%23a8a8a8"/><path d="M100,200 Q200,180 300,200 L350,250 Q300,300 250,280 L200,300 Q150,250 100,200 Z" fill="%23a8a8a8"/><path d="M600,200 Q700,180 800,200 L850,250 Q800,300 750,280 L700,300 Q650,250 600,200 Z" fill="%23a8a8a8"/></svg>') no-repeat center;
  background-size: contain;
  border-radius: 15px;
}
.city-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.marker-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}
.city-name {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}
.global-statistics {
  background: var(--primary-color);
  padding: 3rem 0;
  margin-top: 0;
}
.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  height: 100%;
}
.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.stat-desc {
  font-size: 0.9rem;
  opacity: 0.8;
}
/* 可持续发展样式 */
.sustainability-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.sustainability-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.sustainability-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.sustainability-icon i {
  font-size: 2rem;
  color: white;
}
.sustainability-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: bold;
}
.sustainability-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.sustainability-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.sustainability-list li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.sustainability-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}
/* 创新研发样式 */
.innovation-content {
  padding-right: 2rem;
}
.innovation-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: bold;
}
.innovation-features {
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.feature-item i {
  font-size: 2rem;
  margin-right: 1rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.feature-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.feature-item p {
  color: var(--text-light);
  margin-bottom: 0;
}
.innovation-gallery img {
  transition: transform 0.3s ease;
}
.innovation-gallery img:hover {
  transform: scale(1.05);
}
/* 团队风采样式 */
.team-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.team-card img {
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.team-card:hover img {
  transform: scale(1.05);
}
.team-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: bold;
}
.team-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}
.team-card ul li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
/* 页脚样式 */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}
.footer h5 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer p {
  color: #ccc;
}
.footer ul li {
  margin-bottom: 0.5rem;
  color: #ccc;
}
.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer ul li a:hover {
  color: var(--accent-color);
}
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #ccc;
}
/* 响应式设计 */
@media (max-width: 768px) {
  .carousel-caption h2 {
    font-size: 1.8rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .navbar-nav .nav-link {
    margin: 0 0.5rem;
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }
  .timeline-year {
    position: absolute;
    left: 0;
    min-width: 80px;
    font-size: 1rem;
    padding: 0.5rem;
  }
  .timeline-year::before {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
  }
  .timeline-content {
    margin-left: 1rem;
    margin-right: 0;
  }
  .team-card .row {
    flex-direction: column;
  }
  .team-card .col-md-6:first-child {
    margin-bottom: 1rem;
  }
  .innovation-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .global-map-container {
    flex-direction: column;
    padding: 2rem;
  }
  .map-info {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .map-info h3 {
    font-size: 1.5rem;
  }
  .map-info h4 {
    font-size: 1.2rem;
  }
  .world-map {
    height: 300px;
  }
  .city-name {
    font-size: 0.65rem;
  }
  .stat-card {
    margin-bottom: 1rem;
  }
  .brand-concept-card {
    height: 250px;
    margin-bottom: 2rem;
  }
  .concept-overlay {
    padding: 1.5rem;
  }
  .global-map-card {
    height: 300px;
    margin-bottom: 2rem;
  }
  .sustainability-card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .carousel-caption {
    padding: 1rem;
    bottom: 10%;
  }
  .carousel-caption h2 {
    font-size: 1.5rem;
  }
  .culture-card,
  .honor-card {
    margin-bottom: 2rem;
  }
  .development-timeline {
    padding: 1rem 0;
  }
  .timeline-container {
    gap: 3rem;
  }
  .milestone-card {
    padding: 1.5rem;
  }
  .milestone-year {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .milestone-card h4 {
    font-size: 1.3rem;
  }
  .strength-content,
  .team-card {
    padding: 1.5rem;
  }
}
.swiper-container-team {
  overflow: hidden;
  width: calc(100% + 20vw);
  margin: 0 auto;
  padding-right: 20vw;
}
@media (max-width: 750px) {
  .swiper-container-team {
    width: 100%;
  }
}
/* ✅ .swiper-slide 是 Swiper 必须的类，不能改名！但可以在此基础上添加自定义样式 */
.swiper-container-team .swiper-slide {
  text-align: center;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* 自定义内容结构加 -team 前缀 */
.slide-content-team {
  position: relative;
}
.slide-content-team img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.slide-info-team {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  text-align: left;
}
.slide-info-team h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}
.slide-info-team p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #ccc;
}
/* 分页器和按钮用带前缀的类 */
.swiper-pagination-team {
  text-align: center;
  margin-top: 20px;
}
.swiper-button-next-team,
.swiper-button-prev-team {
  color: #007acc;
}
.swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}
.container-contact {
  padding: 80px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}
.contact-card {
  background: white;
  border: 3px solid transparent;
  border-radius: 20px;
  padding: 24px 24px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  background-clip: padding-box;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-card.highlighted {
  background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
  box-shadow: 0 12px 40px rgba(255, 69, 0, 0.2);
}
.contact-card.highlighted::before {
  background: linear-gradient(135deg, #ff4500, #ff6b35, #ff8c42, #ff4500);
  opacity: 1;
}
.contact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.store-image {
  max-width: 160px;
  object-fit: contain;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.store-name {
  font-size: 17px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.contact-info {
  display: flex;
  flex-direction: column;
}
.contact-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #666;
  padding: 8px 0 0 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.contact-item:nth-last-child(1) {
  cursor: pointer;
}
.contact-item:nth-last-child(1):hover {
  background: rgba(37, 150, 190, 0.05);
  padding-left: 8px;
  transform: translateX(4px);
}
.icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
}
.phone-icon {
  background: linear-gradient(135deg, #4CAF50, #45a049);
}
.phone-icon::before {
  content: '📞';
  font-size: 10px;
}
.whatsapp-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
}
.whatsapp-icon::before {
  content: '💬';
  font-size: 10px;
}
.contact-label {
  font-weight: 600;
  color: #34495e;
  min-width: 90px;
  transition: color 0.3s ease;
}
.contact-value {
  color: #2c3e50;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 12px 40px rgba(255, 69, 0, 0.2);
  }
  50% {
    box-shadow: 0 16px 50px rgba(255, 69, 0, 0.35);
  }
}
@keyframes highlightGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.05);
  }
}
@keyframes highlightPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }
  .nav-container.container {
    padding: 0px 16px;
  }
  .grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }
  .contact-card {
    border-radius: 16px;
    flex-direction: column;
    gap: 16px;
  }
  .contact-card::before {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 16px;
  }
  .store-image {
    width: 100%;
    height: 120px;
    align-self: center;
  }
  .store-name {
    font-size: 16px;
  }
  .contact-item {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact-card {
    padding: 16px;
  }
  .store-name {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .contact-label {
    min-width: 70px;
  }
  .store-image {
    height: 100px;
  }
}
/* Facebook 二维码模块样式 */
.facebook-section {
  margin-bottom: 50px;
}
.facebook-card {
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}
.facebook-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: bold;
}
.facebook-info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.5;
}
.facebook-details {
  display: flex;
  align-items: center;
}
.facebook-name {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
}
.facebook-name i {
  font-size: 1.5rem;
  margin-right: 10px;
}
.qr-code-container {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.qr-code img {
  width: 160px;
  border-radius: 10px;
}
.qr-text {
  color: #1877f2;
  font-weight: 600;
  font-size: 1rem;
}
/* 响应式设计 */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .page-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .facebook-card {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  .facebook-info {
    order: 2;
  }
  .qr-code-container {
    order: 1;
  }
  .stores-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .store-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .store-info {
    margin-right: 0;
  }
  .store-image img {
    width: 100%;
    max-width: 200px;
    height: 120px;
  }
  .facebook-details {
    justify-content: center;
  }
}
/* 产品模块 */
/* 头部样式 */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}
.site-title a {
  text-decoration: none;
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: bold;
}
.product-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.product-menu a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.product-menu a:hover {
  background: #3498db;
  color: white;
}
/* 主页样式 */
.hero-section {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  margin-bottom: 3rem;
}
.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-section p {
  font-size: 1.2rem;
  opacity: 0.9;
}
/* 产品类型网格 */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.category-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-card a {
  text-decoration: none;
  color: inherit;
}
.category-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.product-count {
  color: #7f8c8d;
  font-size: 0.9rem;
}
/* 产品网格 */
.products-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.product-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 15px;
}
.product-item img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #ecf0f1;
  color: #7f8c8d;
}
.product-info {
  padding: 1.5rem;
}
.product-title a {
  text-decoration: none;
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 600;
}
.product-excerpt {
  margin: 1rem 0;
  color: #666;
  line-height: 1.5;
}
.product-price .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #e74c3c;
}
.product-actions {
  margin-top: 1rem;
}
/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #3498db;
  color: white;
}
.btn-primary:hover {
  background: #2980b9;
}
.btn-secondary {
  background: #95a5a6;
  color: white;
}
.btn-secondary:hover {
  background: #7f8c8d;
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
/* 产品详情页样式 */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.gallery-thumbnails {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
}
.product-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.product-meta {
  margin-bottom: 1rem;
}
.category-tag {
  background: #ecf0f1;
  color: #2c3e50;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}
.product-price {
  margin-bottom: 2rem;
}
.product-price .price {
  font-size: 2rem;
  font-weight: bold;
  color: #e74c3c;
}
.product-description,
.product-specifications,
.product-features {
  margin-bottom: 2rem;
}
.product-description h3,
.product-specifications h3,
.product-features h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.specifications-content,
.features-content {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  white-space: pre-line;
}
.product-actions {
  display: flex;
  gap: 1rem;
}
/* 相关产品 */
.related-products {
  margin-top: 3rem;
}
.related-products h3 {
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.related-product {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.related-product:hover {
  transform: translateY(-3px);
}
.related-product a {
  text-decoration: none;
  color: inherit;
}
.related-product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.related-product h4 {
  padding: 1rem;
  color: #2c3e50;
  font-size: 1rem;
}
.related-product .price {
  padding: 0 1rem 1rem;
  color: #e74c3c;
  font-weight: bold;
}
/* 分页样式 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}
.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  border-radius: 3px;
}
.pagination a:hover {
  background: #3498db;
  color: white;
  border-color: #3498db;
}
.pagination .current {
  background: #3498db;
  color: white;
  border-color: #3498db;
}
/* 筛选器 */
.product-filters {
  margin-bottom: 2rem;
  padding: 1rem;
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.filter-options select {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: white;
}
/* 页面头部 */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}
.page-header h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.term-description {
  color: #666;
  font-size: 1.1rem;
}
/* 底部样式 */
.site-footer {
  background: #2C2C2C;
  color: white;
  text-align: center;
  padding: 2rem 0;
}
/* 响应式设计 */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: 1rem;
  }
  .product-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-actions {
    flex-direction: column;
  }
  .category-grid,
  .products-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
}
/* 无产品提示 */
.no-products {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.no-products p {
  color: #7f8c8d;
  font-size: 1.1rem;
}
.bottom-overlay {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 1rem 1.5rem;
  color: white;
}
.introduction .introduction-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}
.introduction .introduction-desc {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .introduction {
    padding-top: 0;
  }
  .introduction .introduction-title {
    margin-top: 50px;
  }
  .introduction .introduction-desc2 {
    margin-bottom: 0;
  }
}

.title-product-types {
  color: var(--accent-color);
}

.contact-item > i {
  margin-right: 12px;
}
