:root {
  color-scheme: light;
}

body {
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.nav-desktop,
.nav-mobile {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop li {
  display: inline-flex;
  align-items: center;
}

.nav-desktop li + li {
  margin-left: 1.75rem;
}

.nav-desktop li a {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: #4b5563;
  transition: color 0.2s ease-in-out;
}

.nav-desktop li.current a,
.nav-desktop li a:hover {
  color: #165dff;
}

.nav-mobile li {
  margin-bottom: 0.5rem;
}

.nav-mobile li a {
  display: flex;
  width: 100%;
  padding: 0.75rem 0;
  font-weight: 500;
  color: #4b5563;
  border-bottom: 1px solid #e5e7eb;
}

.nav-mobile li.current a,
.nav-mobile li a:hover {
  color: #165dff;
}

.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(22, 93, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -12px rgba(15, 198, 194, 0.3);
}

.post-card__image {
  position: relative;
  padding-top: 62%;
  overflow: hidden;
}

.post-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  flex: 1 1 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.post-card__meta {
  font-size: 0.85rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.post-card__title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.post-card__excerpt {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1 1 auto;
}

.post-card__more {
  margin-top: 1.5rem;
  font-weight: 600;
  color: #165dff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.meta-dot::before {
  content: "•";
  color: #d1d5db;
  margin: 0 0.35rem;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #1f2937;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  font-weight: 700;
  color: #111827;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.75rem;
  margin-bottom: 1.5rem;
}

.article-content img {
  border-radius: 18px;
  margin: 1.5rem 0;
}

.pagebar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

.pagebar a,
.pagebar span {
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #4b5563;
  transition: all 0.2s ease;
  padding: 0 0.75rem;
}

.pagebar a:hover {
  color: #165dff;
  background-color: rgba(22, 93, 255, 0.1);
}

.pagebar span.current {
  background: linear-gradient(135deg, #165dff 0%, #0fc6c2 100%);
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(22, 93, 255, 0.4);
}

.pagebar .ellipsis {
  color: #9ca3af;
  cursor: default;
}

.hero-section {
  position: relative;
  padding: 4.5rem 1.5rem 3.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #165dff 0%, #0fc6c2 100%);
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.18), transparent 50%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 24px 48px rgba(22, 93, 255, 0.4);
}

.hero-subtitle {
  max-width: 720px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-search {
  position: relative;
  width: 100%;
  max-width: 620px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.7rem 0.7rem 0.7rem 3rem;
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-search input[type="text"] {
  flex: 1;
  height: 42px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.hero-search__icon {
  position: absolute;
  left: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.hero-search button {
  border: none;
  background: linear-gradient(135deg, #fff 0%, #ebf1ff 100%);
  color: #165dff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 25px -15px rgba(255, 255, 255, 0.7);
}

.hero-search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px -18px rgba(255, 255, 255, 0.75);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.65rem 1.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn__primary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 24px 46px -24px rgba(0, 0, 0, 0.35);
}

.hero-btn__secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -24px rgba(0, 0, 0, 0.38);
}

.filter-bar {
  background: #fff;
  border-bottom: 1px solid #eef1f6;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1.5rem 1rem;
  margin-top: -1.5rem;
}

.filter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  color: #4b5563;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.filter-tab span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #e5e7eb;
  color: #4b5563;
  font-size: 0.75rem;
  font-weight: 600;
}

.filter-tab:hover {
  color: #165dff;
  border-color: #165dff;
  background: rgba(22, 93, 255, 0.08);
}

.filter-tab.active {
  background: linear-gradient(135deg, #165dff 0%, #0fc6c2 100%);
  border-color: transparent;
  color: #fff;
}

.filter-tab.active span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.filter-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-label {
  font-size: 0.9rem;
  color: #6b7280;
}

.sort-option {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  color: #4b5563;
  transition: all 0.2s ease;
}

.sort-option:hover {
  color: #165dff;
  border-color: rgba(22, 93, 255, 0.3);
  background: rgba(22, 93, 255, 0.08);
}

.sort-option.active {
  color: #165dff;
  background: rgba(22, 93, 255, 0.12);
  border-color: rgba(22, 93, 255, 0.35);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 2.5rem auto 3.5rem;
  padding: 0 1rem;
}

.news-main {
  min-width: 0;
}

.section-head h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #111827;
}

.section-head p {
  margin-top: 0.4rem;
  color: #6b7280;
}

.featured-article {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 40px 80px -45px rgba(22, 93, 255, 0.35);
  margin-top: 1.75rem;
}

.featured-thumb {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  padding-top: 56%;
}

.featured-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-thumb:hover img {
  transform: scale(1.04);
}

.featured-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.featured-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.featured-meta a {
  color: inherit;
  transition: color 0.2s ease;
}

.featured-meta a:hover {
  color: #165dff;
}

.featured-body h3 {
  font-size: clamp(1.6rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #0f172a;
}

.featured-body h3 a {
  color: inherit;
  transition: color 0.2s ease;
}

.featured-body h3 a:hover {
  color: #165dff;
}

.featured-body p {
  color: #475569;
  line-height: 1.75;
  font-size: 1rem;
}

.featured-footer {
  display: flex;
  justify-content: flex-end;
}

.featured-footer .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #165dff;
  font-weight: 600;
}

.article-list {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.25rem;
}

.article-item {
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 70px -55px rgba(15, 198, 194, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px -60px rgba(15, 198, 194, 0.55);
}

.article-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding-top: 62%;
}

.article-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-thumb:hover img {
  transform: scale(1.05);
}

.article-content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #6b7280;
  font-size: 0.85rem;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.article-content h3 a {
  color: inherit;
  transition: color 0.2s ease;
}

.article-content h3 a:hover {
  color: #165dff;
}

.article-content p {
  color: #4b5563;
  line-height: 1.7;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.article-stats {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

.article-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.article-read {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #165dff;
  font-weight: 600;
}

.empty-block {
  margin-top: 2rem;
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  background: rgba(22, 93, 255, 0.08);
  border: 1px dashed rgba(22, 93, 255, 0.35);
}

.empty-block h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.empty-block p {
  color: #64748b;
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 25px 60px -45px rgba(22, 93, 255, 0.25);
}

.sidebar-card__head {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #111827;
  margin-bottom: 1.25rem;
}

.sidebar-card__head i {
  color: #ff7d00;
}

.hot-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hot-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.85rem;
  color: inherit;
}

.hot-thumb {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
}

.hot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-body h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.35rem;
  transition: color 0.2s ease;
}

.hot-item:hover h4 {
  color: #165dff;
}

.hot-body p {
  font-size: 0.8rem;
  color: #9ca3af;
}

.latest-list {
  display: grid;
  gap: 0.75rem;
}

.latest-list li a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #4b5563;
  transition: color 0.2s ease;
}

.latest-list li a:hover {
  color: #165dff;
}

.latest-list li i {
  color: #d1d5db;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.category-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  background: #f9fafb;
  color: #374151;
  font-weight: 600;
  transition: all 0.2s ease;
}

.category-pill:hover {
  background: rgba(22, 93, 255, 0.08);
  color: #165dff;
}

.category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(22, 93, 255, 0.12);
  color: #165dff;
  font-size: 0.75rem;
}

.subscribe-card {
  background: linear-gradient(135deg, #165dff 0%, #0fc6c2 100%);
  color: #fff;
  box-shadow: 0 30px 70px -40px rgba(22, 93, 255, 0.55);
}

.subscribe-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.subscribe-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
}

.subscribe-card form {
  display: grid;
  gap: 0.75rem;
}

.subscribe-card input[type="email"] {
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 0.75rem 1.1rem;
  font-size: 0.95rem;
  color: #0f172a;
}

.subscribe-agreement {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.76);
  display: inline-flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.subscribe-card button {
  border: none;
  border-radius: 999px;
  padding: 0.75rem;
  font-weight: 700;
  color: #165dff;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-card button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px -18px rgba(255, 255, 255, 0.75);
}

.catalog-search-form {
  position: relative;
}

.filter-search-input {
  width: 100%;
  padding: 0.85rem 3.25rem 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
  background: #f3f4f6;
  color: #1f2937;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.filter-search-input:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.15);
}

.filter-search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #165dff;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.filter-search-btn:hover {
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 10px 20px -10px rgba(22, 93, 255, 0.45);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #4b5563;
  background: #f3f4f6;
  margin-right: 0.75rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-chip:hover {
  color: #165dff;
  background: rgba(22, 93, 255, 0.12);
}

.filter-chip.active {
  background: #165dff;
  color: #fff;
  box-shadow: 0 15px 30px -20px rgba(22, 93, 255, 0.45);
}

.sort-options {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #6b7280;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.sort-chip:hover {
  color: #165dff;
  background: rgba(22, 93, 255, 0.12);
}

.sort-chip.active {
  color: #fff;
  background: #165dff;
  box-shadow: 0 10px 24px -16px rgba(22, 93, 255, 0.45);
}

.CatalogSort {
  display: flex;
  align-items: center;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px -35px rgba(22, 93, 255, 0.35);
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

@media (max-width: 992px) {
  .article-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-thumb {
    padding-top: 56%;
  }
}

@media (max-width: 860px) {
  .news-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-sidebar {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 4rem 1.25rem 3rem;
  }

  .hero-search {
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem 0.65rem 0.65rem 2.75rem;
    border-radius: 20px;
  }

  .hero-search button {
    margin-top: 0.5rem;
  }

  .filter-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .featured-article {
    padding: 1.35rem;
  }

  .article-item {
    padding: 1.2rem;
  }
}

.feature-card {
  border-radius: 16px;
  padding: 1.75rem;
  background: #ffffff;
  box-shadow: 0 12px 30px -15px rgba(15, 198, 194, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -20px rgba(15, 198, 194, 0.45);
}

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #165dff;
  background: rgba(22, 93, 255, 0.12);
  margin-bottom: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.mobile-nav-open {
  overflow: hidden;
}

.reading-container {
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

.to-secondary {
    --tw-gradient-to: #0FC6C2 var(--tw-gradient-to-position) !important;
}
 
.from-primary {
    --tw-gradient-from: #165DFF var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(22 93 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
 
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.text-primary {
    --tw-text-opacity: 1;
    color: rgb(22 93 255 / var(--tw-text-opacity, 1));
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
 
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
 
.bg-primary {
    --tw-bg-opacity: 1;
    background-color: rgb(22 93 255 / var(--tw-bg-opacity, 1));
}
 
*, ::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}
.bg-primary\/10 {
    background-color: rgb(22 93 255 / 0.1);
}
 
.rounded-lg {
    border-radius: 0.5rem;
}
 
.justify-center {
    justify-content: center;
}
 
.items-center {
    align-items: center;
}
 
.w-12 {
    width: 3rem;
}
 
.h-12 {
    height: 3rem;
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
 
.pt-16 {
    padding-top: 4rem;
}
 
.pb-8 {
    padding-bottom: 2rem;
}
 
.bg-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(29 33 41 / var(--tw-bg-opacity, 1));
}

/* 为文章内容中的图片添加统一样式 */
.article-content img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  border-radius: 0.5rem;
}

/* 如果你想让内嵌图片也具有封面图的样式 */
.article-content p > img,
.article-content div > img {
  width: 100% !important;
  height: 22rem !important; /* h-56 对应的高度 */
  object-fit: cover !important;
  border-radius: 0 !important;
}

@media (min-width: 768px) {
  .article-content p > img,
  .article-content div > img {
    height: 20rem !important; /* md:h-80 对应的高度 */
  }
}
.object-cover {
  object-fit: cover !important;
}

 
.w-full {
  width: 100% !important;
}
 
.h-full {
  height: 100% !important;
}