/* --------------------   index.html  -------------------- */
/* 移除全局样式，避免影响框架中的其他页面 */
.baige-wrapper {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

.baige-wrapper * {
  box-sizing: border-box;
}

.baige-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.baige-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 50px 0;
  margin: 0;
}

.baige-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: white;
}

.baige-hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: white;
}

.baige-cta-button {
  display: inline-block;
  background: #ff6b6b;
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.baige-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Product Carousel */
.baige-product-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.baige-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.baige-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.baige-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  color: #666;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 10;
  user-select: none;
}

.baige-carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.baige-carousel-arrow-left {
  left: 20px;
}

.baige-carousel-arrow-right {
  right: 20px;
}

.baige-carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.baige-carousel-item {
  min-width: 100%;
  position: relative;
}

.baige-carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.baige-carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
}

/* Testimonials */
.baige-testimonials {
  padding: 50px 0;
  background: white;
}

.baige-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.baige-stat-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
}

.baige-stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #4a90e2;
  display: block;
}

.baige-stat-label {
  font-size: 1.1rem;
  color: #666;
  margin-top: 0.5rem;
}

.baige-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.baige-testimonial-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.baige-testimonial-item:hover {
  transform: translateY(-5px);
}

.baige-testimonial-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.baige-testimonial-content {
  padding: 1.5rem;
}

.baige-testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #666;
}

.baige-testimonial-author {
  font-weight: 600;
  color: #333;
}

/* Certifications */
.baige-certifications {
  padding: 50px 0;
  background: #f8f9fa;
}

.baige-cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.baige-cert-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.baige-cert-item img {
  width: 100%;
  max-width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.baige-cert-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.baige-cert-desc {
  color: #666;
  font-size: 0.9rem;
}

/* CTA Section */
.baige-final-cta {
  padding: 50px 0;
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: white;
  text-align: center;
}

.baige-final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.baige-final-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.baige-contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.baige-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .baige-container {
    padding: 0 15px;
  }

  .baige-hero h1 {
    font-size: 2.5rem;
  }

  .baige-carousel-container {
    touch-action: pan-x;
  }

  /* 移动端隐藏箭头 */
  .baige-carousel-arrow {
    display: none;
  }

  .baige-contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .baige-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0 1rem 4rem 1rem;
  }

  .baige-stat-item {
    padding: 1.5rem 1rem;
  }

  .baige-stat-number {
    font-size: 2.5rem;
  }

  .baige-stat-label {
    font-size: 1rem;
  }
}

/* --------------------   about.html  -------------------- */
/* 移除全局样式，避免影响框架中的其他页面 */
.baige-wrapper {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

.baige-wrapper * {
  box-sizing: border-box;
}

.baige-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.baige-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 50px 0;
}

.baige-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.baige-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

/* Brand Story Section */
.baige-brand-story {
  padding: 50px 0;
  background: white;
}

.baige-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.baige-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.baige-story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.baige-story-text h3 {
  color: #4a90e2;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.baige-story-text p {
  margin-bottom: 1.5rem;
}

.baige-story-image {
  text-align: center;
}

.baige-story-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.baige-mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.baige-mission-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.baige-mission-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.baige-mission-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.baige-mission-item p {
  color: #666;
  line-height: 1.6;
}

/* Quality Assurance Section */
.baige-quality-section {
  padding: 50px 0;
  background: #f8f9fa;
}

.baige-quality-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.baige-quality-intro p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
}

.baige-certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.baige-certificate-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.baige-certificate-item:hover {
  transform: translateY(-5px);
}

.baige-certificate-item img {
  width: 100%;
  max-width: 250px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  border-radius: 10px;
}

.baige-certificate-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.baige-certificate-item p {
  color: #666;
  line-height: 1.6;
}

.baige-quality-promise {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.baige-quality-promise h3 {
  font-size: 2rem;
  color: #4a90e2;
  margin-bottom: 1.5rem;
}

.baige-promise-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.baige-promise-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.baige-promise-icon {
  font-size: 2rem;
  color: #4a90e2;
}

.baige-promise-text {
  font-weight: 500;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .baige-container {
    padding: 0 15px;
  }

  .baige-hero h1 {
    font-size: 2.5rem;
  }

  .baige-story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .baige-certificates-grid {
    grid-template-columns: 1fr;
  }

  .baige-promise-list {
    grid-template-columns: 1fr;
  }
}