/* 产品页面宽屏大图标题样式 */

/* 页面标题区域 */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background-image: url('../images/products-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 80px;
  color: #fff;
  width: 100%;
}

/* 添加暗色遮罩，使文字更加清晰可见 */
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 产品特色标签 */
.product-tags {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.product-tag {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.product-tag:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* 响应式样式 */
@media (max-width: 992px) {
  .page-header {
    padding: 120px 0 60px;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 50px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .product-tags {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 80px 0 40px;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
}
