* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

html,
body {
  background-color: #e9e9e9;
  color: #333;
  margin: 0;
  padding: 0;
  overflow: hidden !important;
  height: 100%;
}

.desktop-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden !important;
}

.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  background: url("/src/assets/icons/header.svg") center/cover no-repeat;
  isolation: isolate;
}

.header-content {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  position: absolute;
  left: 35px;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.user-avatar {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ddd;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

.logo-image {
  width: 200px;
  height: 100px;
  object-fit: contain;
  transform: scale(1.2);
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-item {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 26px;
  border-radius: 20px;
  cursor: pointer;
}

.nav-item:hover {
  color: #000;
  font-weight: 600;
  transform: scale(1.1);
}

.nav-item.active {
  color: #000;
  font-weight: 600;
  transform: scale(1.1);
}

.news-detail-content {
  min-height: 100vh;
}

.background-layer {
  position: relative;
  width: 100%;
  min-height: 100%;
  background-color: #e9e9e9;
}

.news-section {
  gap: 20px;
  height: 100vh;
  overflow-y: auto !important;
  box-sizing: border-box;
}

.news-section::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

.news-section::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
  border-radius: 3px !important;
}

.news-section::-webkit-scrollbar-thumb {
  background: #c1c1c1 !important;
  border-radius: 3px !important;
}

.news-section::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8 !important;
}

.news-header {
  position: relative;
  height: 480px;
  overflow: hidden;
  margin-bottom: 20px;
}

.news-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  padding-left: 200px;
  box-sizing: border-box;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.article-number {
  font-size: 16px;
  font-weight: 500;
}

.article-category {
  font-size: 16px;
  padding: 2px 10px;
}

.article-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.article-summary {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 30px 0;
  max-width: 70%;
}

.article-footer {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  font-size: 14px;
  align-self: flex-end;
}

.article-date {
  font-size: 14px;
}

.article-editor {
  font-size: 14px;
}

.news-size {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  align-self: flex-end;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 4px;
}

.news-content {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 20px;
}

.news-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.news-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #666;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.news-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.news-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.news-excerpt {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #666;
}

.read-more {
  display: inline-block;
  padding: 8px 16px;
  background-color: #0052cc;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #003f9e;
}

.article-content {
  max-width: 716px;
  margin: 100px auto;
  padding: 0 20px;
}

.text-section {
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: 16px;
  color: #333;
}

.text-section p {
  margin-bottom: 20px;
}

.image-section {
  margin-bottom: 40px;
}

.article-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

