/* 关于我们页面样式 */

/* 页面顶部横幅 */
.product-banner {
  height: 450px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 65px;
  position: relative;
}

.product-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.01);
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.product-banner h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

/* 面包屑导航 - 胶囊形状 */
.breadcrumb {
  position: absolute;
  bottom: -26px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}


.breadcrumb a {
  color: #2C2C2C;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb a:hover {
  color: #66cc33;
}

/* 页面主体内容 */
.about-us-content {
  padding: 50px 0;
  background-color: #fff;
}

.about-us-main {
  max-width: 1200px;
  margin: 0 auto;
}

/* 公司介绍部分 */
.company-intro {
  display: flex;
  /*margin-bottom: 60px;*/
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.company-intro.animated {
  opacity: 1;
  transform: translateY(0);
}

.intro-images {
  flex: 0 0 46%;
  position: relative;
}

.intro-images .main-image {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.intro-images .second-image {
  position: absolute;
  width: 70%;
  right: -10%;
  bottom: -15%;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.intro-text {
  flex: 0 0 50%;
  padding-left: 4%;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.intro-text p {
  margin-bottom: 18px;
  text-align: justify;
}

/* 公司数据统计部分 */
.company-stats {
  display: flex;
  justify-content: space-around;
  margin: 80px 0 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.company-stats.animated {
  opacity: 1;
  transform: translateY(0);
}

.stat-item {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  text-align: center;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 64px;
  font-weight: 700;
  color: #66cc33;
  line-height: 1;
  margin-bottom: 15px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 18px;
  color: #333;
  /* margin-top: 10px; */
  line-height: 1.4;
  padding: 20px 0;
  border-left: 1px solid #D8D8D8;
  margin-left: 20px;
  padding-left: 20px;
}

.stat-desc p {
  margin: 0;
}

/* 美食广场部分样式补充 */
.food-court {
  background-color: #f8f9f2;
  padding: 60px 0;
}

.food-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.food-content.animated {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  color: #333;
  font-weight: 500;
  margin-bottom: 5px;
}

.section-header h3 {
  font-size: 20px;
  color: #66cc33;
  font-weight: 400;
}

/* 按钮样式 */
/* .btn {
  display: inline-block;
  padding: 10px 28px;
  background-color: #66cc33;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #6aa916;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

/* 响应式设计 */
@media (max-width: 992px) {
  .about-us-main {
    padding: 0 20px;
  }

  .company-intro {
    flex-direction: column;
  }

  .intro-images {
    flex: none;
    width: 100%;
    margin-bottom: 40px;
  }

  .intro-text {
    flex: none;
    width: 100%;
    padding-left: 0;
  }

  .company-stats {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 30%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .about-us-content {
    padding: 30px 0;
  }

  .intro-images .second-image {
    width: 60%;
    right: 5%;
    bottom: -10%;
  }

  .intro-text {
    font-size: 15px;
  }

  .company-stats {
    margin: 40px 0;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-desc {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .section-header h3 {
    font-size: 18px;
  }
  
  /* 横幅响应式调整 */
  .product-banner {
    height: 300px;
  }
  
  .breadcrumb .container {
    width: 180px;
    height: 46px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .about-us-content {
    padding: 20px 0;
  }

  .intro-images .second-image {
    width: 55%;
    right: 10%;
    bottom: -5%;
  }

  .stat-item {
    flex: 0 0 100%;
  }

  .company-stats {
    flex-direction: column;
    align-items: center;
  }

  .company-stats .stat-item {
    /* margin-bottom: 40px; */
  }

  .company-stats .stat-item:last-child {
    margin-bottom: 0;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-desc {
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header h3 {
    font-size: 16px;
  }

  .food-content {
    flex-direction: column;
  }

  .food-image {
    margin-bottom: 20px;
  }
  
  /* 小屏幕横幅调整 */
  .product-banner {
    height: 250px;
  }

  .product-banner h1 {
    font-size: 24px;
  }
  
  .breadcrumb {
    bottom: -20px;
  }
  
  .breadcrumb .container {
    width: 160px;
    height: 40px;
    font-size: 12px;
  }
}

/* 确保从index.html导入的food-court部分样式正确 */
.food-content {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 1016px;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.food-image {
  flex: 0 0 333px;
  /* padding: 34px 46px; */
  transition: all 0.4s ease;
}

.food-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.food-content:hover .food-image img {
  transform: scale(1.05);
}

.food-info {
  flex: 1;
  /* padding: 40px; */
  transition: all 0.4s ease;
}

.food-info h4 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.food-content:hover .food-info h4 {
  color: #66cc33;
}

.divider {
  height: 1px;
  background-color: #ececec;
  margin: 10px 0 20px;
  width: 100%;
  transition: width 0.4s ease;
}

.food-content:hover .divider {
  width: 80%;
  background-color: #66cc33;
}

.food-info p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* 移动端美食广场样式 */
@media (max-width: 768px) {
  .food-court {
    padding: 0 15px 40px;
  }
  
  .food-content {
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .food-image {
    flex: none;
    width: 100%;
    padding: 30px;
    text-align: center;
  }
  
  .food-image img {
    max-width: 200px;
  }
  
  .food-info {
    padding: 20px 25px 30px;
  }
  
  .food-info h4 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .divider {
    margin: 15px auto 20px;
    width: 80%;
  }
  
  .food-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  .food-info .btn {
    display: block;
    margin: 0 auto;
    max-width: 200px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .food-image {
    padding: 25px 15px;
  }
  
  .food-image img {
    max-width: 180px;
  }
  
  .food-info {
    padding: 15px 20px 25px;
  }
  
  .food-info h4 {
    font-size: 16px;
  }
  
  .food-info p {
    font-size: 13px;
    line-height: 1.5;
  }
} 