.news-hero {
  background: #FFFFFF;
  padding: 60px 0 40px;
  text-align: center;
}
.news-hero .hero-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 48px;
  color: #03256C;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 40px;
}
.news-hero .hero-title .highlight-text {
  color: #353CF6;
}
.news-hero .search-filter-row {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
}
.news-hero .search-filter-row .search-form {
  flex: 1;
}
.news-hero .search-filter-row .search-form .search-input-container {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 16px;
  gap: 12px;
  height: 52px;
}
.news-hero .search-filter-row .search-form .search-input-container .search-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.news-hero .search-filter-row .search-form .search-input-container .search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  color: #374151;
  background: transparent;
}
.news-hero .search-filter-row .search-form .search-input-container .search-input::placeholder {
  color: #9CA3AF;
}
.news-hero .search-filter-row .search-form .search-input-container .search-button {
  background: #353CF6;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.news-hero .search-filter-row .search-form .search-input-container .search-button:hover:not(:disabled) {
  background: #2C35E0;
}
.news-hero .search-filter-row .search-form .search-input-container .search-button:disabled {
  background: #D1D5DB;
  cursor: not-allowed;
}
.news-hero .search-filter-row .custom-dropdown {
  flex-shrink: 0;
  width: 200px;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 52px;
}
.news-hero .search-filter-row .custom-dropdown:hover {
  border-color: #353CF6;
}
.news-hero .search-filter-row .custom-dropdown.active {
  border-color: #353CF6;
  box-shadow: 0 4px 12px rgba(53, 60, 246, 0.15);
}
.news-hero .search-filter-row .custom-dropdown.active .dropdown-trigger .dropdown-arrow {
  transform: rotate(180deg);
  color: #353CF6;
}
.news-hero .search-filter-row .custom-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.news-hero .search-filter-row .custom-dropdown .dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #374151;
  height: 100%;
  box-sizing: border-box;
}
.news-hero .search-filter-row .custom-dropdown .dropdown-trigger .dropdown-text {
  font-weight: 500;
}
.news-hero .search-filter-row .custom-dropdown .dropdown-trigger .dropdown-arrow {
  color: #9CA3AF;
  transition: all 0.3s ease;
  font-size: 12px;
}
.news-hero .search-filter-row .custom-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #353CF6;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 200px;
  overflow-y: auto;
}
.news-hero .search-filter-row .custom-dropdown .dropdown-menu .dropdown-item {
  padding: 12px 16px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #F3F4F6;
}
.news-hero .search-filter-row .custom-dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.news-hero .search-filter-row .custom-dropdown .dropdown-menu .dropdown-item:hover {
  background: #F8FAFC;
  color: #353CF6;
}
.news-hero .search-filter-row .custom-dropdown .dropdown-menu .dropdown-item.active {
  background: #EEF2FF;
  color: #353CF6;
  font-weight: 500;
}
.news-content {
  padding: 40px 0;
  background: #FFFFFF;
}
.news-content .news-container .news-main {
  width: 100%;
}
.news-content .news-container .news-main .news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.news-content .news-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.news-content .news-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.news-content .news-card .news-image {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}
.news-content .news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-content .news-card .news-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-content .news-card .news-content-wrapper .news-card-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #03256C;
  line-height: 24px;
  margin: 0;
}
.news-content .news-card .news-content-wrapper .news-excerpt {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #6B7280;
  line-height: 20px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-content .news-card .news-content-wrapper .news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 16px;
}
.news-content .news-card .news-content-wrapper .news-meta .meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-content .news-card .news-content-wrapper .news-meta .meta-left .author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-content .news-card .news-content-wrapper .news-meta .meta-left .author-info .author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.news-content .news-card .news-content-wrapper .news-meta .meta-left .author-info .author-name {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #374151;
}
.news-content .news-card .news-content-wrapper .news-meta .meta-left .news-category {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 12px;
  color: #353CF6;
  background: #EEF2FF;
  padding: 4px 8px;
  border-radius: 4px;
}
.news-content .news-card .news-content-wrapper .news-meta .news-actions {
  flex-shrink: 0;
}
.news-content .news-card .news-content-wrapper .news-meta .news-actions .view-button {
  background: #353CF6;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-content .news-card .news-content-wrapper .news-meta .news-actions .view-button:hover {
  background: #2C35E0;
  transform: translateY(-1px);
}
.news-content .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0 20px;
  margin: 0 auto;
}
.news-content .pagination .page-button {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  color: #374151;
}
.news-content .pagination .page-button:hover:not(:disabled) {
  background: #F3F4F6;
  border-color: #353CF6;
  color: #353CF6;
}
.news-content .pagination .page-button:active:not(:disabled) {
  background: #EEF2FF;
  border-color: #353CF6;
  color: #353CF6;
}
.news-content .pagination .page-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #D1D5DB;
  background: #F9FAFB;
  border-color: #F3F4F6;
}
.news-content .pagination .pagination-info {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-content .pagination .pagination-info .page-number {
  color: #353CF6;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .news-hero .search-filter-row {
    flex-direction: column;
    gap: 16px;
  }
  .news-hero .search-filter-row .custom-dropdown {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .news-hero {
    padding: 40px 0 30px;
  }
  .news-hero .hero-title {
    font-size: 28px;
  }
  .news-hero .search-filter-row .search-form .search-input-container {
    flex-direction: column;
    gap: 12px;
  }
  .news-hero .search-filter-row .search-form .search-input-container .search-button {
    width: 100%;
  }
  .news-content {
    padding: 30px 0;
  }
  .news-content .news-card {
    flex-direction: column;
    gap: 16px;
  }
  .news-content .news-card .news-image {
    width: 100%;
    height: 200px;
  }
  .news-content .news-card .news-content-wrapper .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .news-content .news-card .news-content-wrapper .news-meta .meta-left {
    width: 100%;
  }
  .news-content .news-card .news-content-wrapper .news-meta .news-actions {
    width: 100%;
  }
  .news-content .news-card .news-content-wrapper .news-meta .news-actions .view-button {
    width: 100%;
  }
  .news-content .pagination {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .news-hero .hero-title {
    font-size: 24px;
  }
  .news-hero .search-filter-row {
    padding: 0 16px;
  }
  .news-content .news-card {
    padding: 16px;
    gap: 12px;
  }
  .news-content .news-card .news-image {
    height: 150px;
  }
  .news-content .news-card .news-content-wrapper .news-card-title {
    font-size: 16px;
    line-height: 22px;
  }
  .news-content .news-card .news-content-wrapper .news-excerpt {
    font-size: 13px;
    line-height: 18px;
  }
}
