@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgb(38, 40, 42);
  background: #fff;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
  padding: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #46a5c1;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

button, input, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  border: none;
  background: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  min-height: 100vh;
}

/* 顶部导航栏 */
.navbar {
  background-color: #2c3e50;
  padding: 0 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}
.logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.nav-menu a:hover, .nav-menu .active a {
  background-color: #34495e;
}

/* 主要内容区域 */
.main-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

/* 左侧内容区 */
.content-area {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 头条新闻区域 */
.hero-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.main-story {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px;
}

.story-category {
  background-color: #e74c3c;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

.story-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.story-description {
  font-size: 14px;
  opacity: 0.9;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.side-stories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-story {
  position: relative;
  height: calc(50% - 5px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.side-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-story .story-overlay {
  padding: 20px;
}

.side-story .story-title {
  font-size: 16px;
}

.side-story .story-description {
  font-size: 12px;
}

/* 新闻分类区域 */
.news-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #3498db;
}

.section-title {
  font-size: 22px;
  font-weight: bold;
  color: #2c3e50;
}

.view-more-btn {
  background-color: #3498db;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.view-more-btn:hover {
  background-color: #2980b9;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.news-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.news-item:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-item img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.news-content {
  flex: 1;
}

.news-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.news-description {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-meta {
  font-size: 12px;
  color: #95a5a6;
}

/* 右侧边栏 */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* 广告位 */
.ad-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ad-description {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.ad-btn {
  background-color: white;
  color: #667eea;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
}

.ad-btn:hover {
  transform: scale(1.05);
}

/* 热门新闻 */
.hot-news {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hot-news-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #ecf0f1;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s;
}

.hot-news-item:hover {
  background-color: #f8f9fa;
}

.hot-news-item:last-child {
  border-bottom: none;
}

.hot-news-rank {
  background-color: #f39e95;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.hot-news-rank.rank-1 {
  background-color: #e74c3c;
}

.hot-news-rank.rank-2 {
  background-color: #f39c12;
}

.hot-news-rank.rank-3 {
  background-color: #f1c40f;
}

.hot-news-title {
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 底部 */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: #3498db;
}

.footer-section p, .footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: white;
}

.footer-links {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #34495e;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #95a5a6;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .main-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .hero-section {
    grid-template-columns: 1fr;
    height: auto;
  }
  .main-story {
    height: 250px;
  }
  .side-stories {
    flex-direction: row;
    gap: 15px;
  }
  .side-story {
    height: 200px;
    width: 50%;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-item {
    flex-direction: column;
  }
  .news-item img {
    width: 100%;
    height: 150px;
  }
  .section-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links a {
    display: block;
    margin: 5px 0;
  }
}
@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }
  .logo {
    font-size: 20px;
  }
  .story-overlay {
    padding: 20px;
  }
  .story-title {
    font-size: 18px;
  }
  .news-section {
    padding: 20px;
  }
  .side-stories {
    flex-direction: column;
  }
  .side-story {
    width: 100%;
    height: 150px;
  }
}
/* 移动端菜单按钮 */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 移动端菜单遮罩层 */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* 顶部导航栏 */
.navbar {
  background-color: #2c3e50;
  padding: 0 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

/* 移动端菜单按钮 */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 移动端菜单遮罩层 */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #2c3e50;
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 0;
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .nav-menu.active {
    display: flex;
    transform: translateX(0);
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu a {
    display: block;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid #34495e;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .nav-menu a:hover {
    background-color: #34495e;
    padding-left: 10px;
    padding-right: 10px;
  }
  .nav-menu a:last-child {
    border-bottom: none;
  }
  .nav-container {
    position: relative;
  }
  /* 防止滚动 */
  body.menu-open {
    overflow: hidden;
  }
  .main-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .hero-section {
    grid-template-columns: 1fr;
    height: auto;
  }
  .main-story {
    height: 250px;
  }
  .side-stories {
    flex-direction: row;
    gap: 15px;
  }
  .side-story {
    height: 200px;
    width: 50%;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-item {
    flex-direction: column;
  }
  .news-item img {
    width: 100%;
    height: 150px;
  }
  .section-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links a {
    display: block;
    margin: 5px 0;
  }
}
/* 响应式设计 */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #2c3e50;
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 0;
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .nav-menu.active {
    display: flex;
    transform: translateX(0);
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu a {
    display: block;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid #34495e;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .nav-menu a:hover {
    background-color: #34495e;
    padding-left: 10px;
    padding-right: 10px;
  }
  .nav-menu a:last-child {
    border-bottom: none;
  }
  .nav-container {
    position: relative;
  }
}
.list-page {
  /* Main Content */
  /* Category Tags */
  /* Articles List */
  /* Pagination */
  /* Responsive Design */
}
.list-page .main-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.list-page .page-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ecf0f1;
}
.list-page .back-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #495057;
  transition: all 0.3s ease;
  text-decoration: none;
}
.list-page .back-btn:hover {
  background: #e9ecef;
  color: #212529;
}
.list-page .section-title {
  font-size: 28px;
  font-weight: bold;
  color: #2c3e50;
  position: relative;
}
.list-page .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.list-page .category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.list-page .category-tag {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.list-page .category-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.list-page .category-tag.politics {
  background-color: #e74c3c;
}
.list-page .category-tag.fashion {
  background-color: #f39c12;
}
.list-page .category-tag.football {
  background-color: #3498db;
}
.list-page .category-tag.food {
  background-color: #e67e22;
}
.list-page .category-tag.nature {
  background-color: #27ae60;
}
.list-page .category-tag.science {
  background-color: #9b59b6;
}
.list-page .category-tag.business {
  background-color: #34495e;
}
.list-page .category-tag.entertainment {
  background-color: #e91e63;
}
.list-page .category-tag.active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.list-page .articles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list-page .article-item {
  display: flex;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.list-page .article-img {
  width: 200px;
  height: 150px;
  flex-shrink: 0;
}
.list-page .article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-page .article-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.list-page .article-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  flex-shrink: 0;
}
.list-page .article-content {
  padding: 20px;
  flex: 1;
}
.list-page .article-category {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: white;
}
.list-page .article-title {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin: 10px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.list-page .article-excerpt {
  color: #7f8c8d;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.list-page .article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  color: #95a5a6;
}
.list-page .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 20px 0;
}
.list-page .page-btn {
  background: white;
  border: 1px solid #dee2e6;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #495057;
  transition: all 0.3s ease;
  min-width: 40px;
}
.list-page .page-btn:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}
.list-page .page-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}
.list-page .page-btn.next {
  padding: 8px 16px;
  min-width: auto;
}
@media (max-width: 768px) {
  .list-page .article-img {
    width: 100% !important;
  }
  .list-page .nav-menu {
    display: none;
  }
  .list-page .mobile-menu-btn {
    display: block;
  }
  .list-page .article-item {
    flex-direction: column;
  }
  .list-page .article-image {
    width: 100%;
    height: 200px;
  }
  .list-page .category-tags {
    padding: 15px;
  }
  .list-page .category-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
}
@media (max-width: 480px) {
  .list-page .main-content {
    padding: 0 15px;
  }
  .list-page .article-content {
    padding: 15px;
  }
  .list-page .article-title {
    font-size: 16px;
  }
  .list-page .pagination {
    flex-wrap: wrap;
    gap: 5px;
  }
  .list-page .page-btn {
    padding: 6px 10px;
    font-size: 12px;
    min-width: 35px;
  }
  .list-page .section-title {
    font-size: 24px;
  }
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 20px;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: #46a5c1;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #999;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container ul li a.active {
  background: #46a5c1;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}

@media (max-width: 768px) {
  .pagination-container {
    margin-top: 15px;
    transform: scale(0.8);
  }
}
.detail-page {
  width: min(1200px, 100%);
  margin: 0 auto;
  min-height: calc(100vh - 70px);
  padding-bottom: 20px;
  padding-top: 20px;
}
.detail-page .detail-box .title {
  margin-top: 38px;
  margin-bottom: 20px;
  line-height: 23px;
  font-size: 20px;
  color: rgb(38, 40, 42);
  font-weight: bold;
}
.detail-page .detail-box .source {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.detail-page .detail-box .source img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 18px;
}
.detail-page .detail-box .source .name-info .name {
  margin-bottom: 8px;
  color: rgb(38, 38, 38);
  font-size: 16px;
  line-height: 18px;
}
.detail-page .detail-box .source .name-info .time {
  font-size: 14px;
  line-height: 18px;
  color: rgb(140, 140, 140);
}

@media (max-width: 768px) {
  .detail-page {
    padding: 0 8px;
    margin: 8px auto;
    padding-top: 20px;
  }
  .detail-page .detail-box .title {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .detail-page .detail-box .source {
    margin-bottom: 10px;
  }
  .detail-page .detail-box .source img {
    margin-right: 10px;
  }
  .detail-page .detail-box .source .name-info .name {
    font-size: 16px;
  }
  .detail-page .content {
    word-break: break-all;
  }
}
@media (max-width: 768px) {
  .bread {
    margin-bottom: 20px;
    margin-left: 5px !important;
  }
}
.bread {
  display: flex;
  align-items: center;
  gap: 8px;
  left: 22px;
  font-size: 14px;
  line-height: 22px;
  width: min(1200px, 100%);
  margin: 0 auto;
  margin-bottom: 20px;
}
.bread .link {
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.bread .link a {
  color: rgba(0, 0, 0, 0.45);
}
.bread .text {
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-links {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #34495e;
  font-size: 14px;
  color: #95a5a6;
}

/*# sourceMappingURL=index.css.map */
