/* 新闻页面专属样式 */

/* Hero区域 */
.press-hero {
  position: relative;
  min-height: 300px;
  padding: 3rem 0 0;
  background: #000000;
  
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.press-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.press-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.press-breadcrumb {
  margin-bottom: 1.5rem;
  padding-top: 0;
}

.press-breadcrumb .breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
}

.press-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.press-breadcrumb .breadcrumb-item a:hover {
  color: #ffffff;
}

.press-breadcrumb .breadcrumb-item.active {
  color: #ffffff;
}

.press-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.press-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

/* 主内容区域 */
.press-main {
  background: #ffffff;
  padding: 3rem 0 5rem;
  margin-top: 0;
}

.section-heading {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1.75rem;
  color: #0a0a0a;
  letter-spacing: -0.015em;
}

/* 新闻网格 */
.news-section {
  margin-top: 0;
  margin-bottom: 5rem;
  padding-top: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* 新闻卡片 */
.news-card {
  background: #ebebeb;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.news-card a img{
	width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.news-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.news-card:hover > img {
  transform: scale(1.05);
}

.news-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  gap: 0.75rem;
}

.news-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 0.5rem;
  width: 100%;
}

.news-date {
  font-size: 0.85rem;
  color: #4d4d4d;
  font-weight: 500;
  text-decoration: none;
  margin-right: auto;
}

.news-categories {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: baseline;
  margin-left: auto;
  text-decoration: none;
}

.news-category-separator {
  margin: 0 0.25rem;
  color: #666;
  font-size: 0.875rem;
}

.news-category {
  font-size: 0.85rem;
  color: #4d4d4d;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
  line-height: 1.45;
  flex: 1;
}

.news-excerpt {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4d4d4d;
  margin-bottom: 1rem;
  flex: 1;
}

.btn-news-link {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 0 1.25rem;
  border-radius: 999px;
  transition: background 0.3s ease;
  margin-top: auto;
}

.btn-news-link:hover {
  background: #333333;
  color: #ffffff;
}

.btn-more-news {
  background: #a27aff;
  color: #ffffff;
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

.btn-more-news:hover {
  background: #8f63ff;
  color: #ffffff;
}

/* 联系部分 */
.contact-section {
  margin-bottom: 5rem;
  text-align: center;
  background: #ebebeb;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

.contact-question {
  font-size: 1.125rem;
  color: #0a0a0a;
  margin-bottom: 2rem;
  font-weight: 500;
}

.contact-card {
  display: flex;
  gap: 2rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 2.25rem;
  align-items: center;
  max-width: 760px;
  width: min(90%, 760px);
  margin: 0 auto;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contact-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e5e5;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-info {
  flex: 1;
}

.contact-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}

.contact-role {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.contact-email,
.contact-phone {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-email a {
  color: #8248f6;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* 社交分享 */
.share-section {
  background: #ffffff;
  padding: 3rem 0;
  border-top: 1px solid #dedede;
  margin-top: 0;
}

.share-section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.share-title {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #0a0a0a;
}

.share-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.share-icon {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.share-icon:hover {
  color: #8248f6;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .press-hero {
    min-height: 250px;
    padding: 2rem 0 3rem;
  }


  .press-title {
    font-size: 2rem;
  }

  .press-main {
    padding: 2rem 0 3rem;
  }

  .section-heading {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-card > img {
    height: 180px;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .contact-image {
    width: 100px;
    height: 100px;
  }

  .share-icons {
    gap: 1rem;
  }
}


