   :root {
      --primary: #c30000;
      --text: #333;
      --text-secondary: #666;
      --bg: #f9f9f9;
      --border: #ddd;
      --card-bg: #fff;
      --link: #0066cc;
      --gray-light: #f5f5f5;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
      line-height: 1.7;
      color: var(--text);
      background-color: var(--bg);
      font-size: 16px;
    }

    /* 头部导航 */
    header {
      background: #fff;
      border-bottom: 2px solid var(--primary);
      padding: 8px 0;
    }

    .top-nav {
      max-width: 1200px; /* 调整最大宽度为 800 + 380 */
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
    }

    .logo {
      height: 32px;
    }
    .logo img {
      height: 100%;
    }

    .menu {
      display: flex;
      gap: 20px;
      font-size: 14px;
    }
    .menu a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
    }
    .menu a:hover {
      color: var(--primary);
    }

    .search-bar {
      display: flex;
      align-items: center;
      background: #f0f0f0;
      border-radius: 4px;
      padding: 4px 8px;
    }
    .search-bar input {
      border: none;
      background: transparent;
      outline: none;
      font-size: 14px;
      width: 120px;
    }
    .search-bar button {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-secondary);
    }

    /* 主体容器：左侧 800px + 右侧 380px */
    .container {
      max-width: 1200px; /* 调整最大宽度为 800 + 380 */
      margin: 0 auto;
      display: grid;
      grid-template-columns: 800px 380px; /* 关键：左侧固定 800px，右侧固定 380px */
      gap: 24px;
      padding: 20px 20px;
	   /* 调整 padding 以适应 article 的负边距 */
    }

    @media (max-width: 768px) {
      .container {
        grid-template-columns: 1fr;
      }
      .sidebar {
        display: none; /* 移动端隐藏侧边栏 */
      }
    }

    /* 文章区域 */
    article {
      background: #fff;
      padding: 24px; /* 保持上下和右边的内边距 */
      border-radius: 4px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
      margin-left: -64px; /* 关键：向左移动，使其内容与顶部“湖南要闻”对齐 */
    }

    .article-header {
      margin-bottom: 24px;
      text-align: center;
    }

    .article-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
    }

    .article-meta {
      font-size: 14px;
      color: var(--text-secondary);
      margin-bottom: 16px;
    }
    .article-meta span {
      margin: 0 8px;
    }

    .article-content p {
      margin-bottom: 1.5em;
      
    }

    .article-content img {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 20px auto;
      border-radius: 4px;
    }

    .quote {
      background: #f8f8f8;
      border-left: 4px solid var(--primary);
      padding: 16px 20px;
      margin: 24px 0;
      font-style: italic;
      color: var(--text-secondary);
    }

    .highlight {
      background: #fffde7;
      padding: 0 4px;
      border-radius: 2px;
    }

    /* 评论区 */
    .comments-section {
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .comment-form {
      margin-bottom: 24px;
      padding: 16px;
      background: var(--gray-light);
      border-radius: 4px;
    }
    .comment-form textarea {
      width: 100%;
      height: 80px;
      padding: 12px;
      border: 1px solid var(--border);
      border-radius: 4px;
      resize: vertical;
      font-family: inherit;
    }
    .comment-submit {
      margin-top: 12px;
      padding: 8px 16px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    .comment-list {
      list-style: none;
    }

    .comment-item {
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .comment-header {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }
    .comment-avatar {
      width: 32px;
      height: 32px;
      background: #ccc;
      border-radius: 50%;
      margin-right: 10px;
    }
    .comment-author {
      font-weight: 600;
      font-size: 14px;
    }
    .comment-time {
      font-size: 12px;
      color: var(--text-secondary);
      margin-left: 12px;
    }
    .comment-content {
      font-size: 14px;
      line-height: 1.6;
    }

    /* 经济新闻推荐 */
    .recommend-section {
      margin-top: 40px;
    }
    .recommend-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 16px;
    }
    .recommend-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    .recommend-card {
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    .recommend-img {
      height: 120px;
      background: #eee;
    }
    .recommend-info {
      padding: 16px;
    }
    .recommend-title-link {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
    }
    .recommend-title-link:hover {
      color: var(--link);
    }
    .recommend-date {
      font-size: 12px;
      color: var(--text-secondary);
    }

    /* 小技巧：模拟“更多内容”按钮 */
    .more-btn {
      display: inline-block;
      margin: 20px auto;
      padding: 8px 24px;
      background: #fff;
      border: 1px dashed var(--border);
      color: var(--primary);
      text-decoration: none;
      border-radius: 4px;
    }
    .more-btn:hover {
      background: #f9f9f9;
    }

    /* ============ 右侧边栏样式 ============ */
    .sidebar {
      width: 380px; /* 固定宽度 */
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .widget {
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    .widget-title {
      background: #f5f5f5;
      padding: 12px 16px;
      font-size: 14px;
      font-weight: 600;
      color: #333;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .widget-title::before {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      background: var(--primary);
      border-radius: 50%;
    }

    /* 湖南要闻 */
    .news-list {
      list-style: none;
      padding: 12px 16px;
    }
    .news-list li {
      padding: 8px 0;
      border-bottom: 1px solid #eee;
    }
    .news-list li:last-child {
      border-bottom: none;
    }
    .news-list a {
      color: var(--text);
      text-decoration: none;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .news-list a::before {
      content: "·";
      color: var(--primary);
      font-size: 16px;
    }
    .news-list a:hover {
      color: var(--link);
    }

    /* 广告位 */
    .ad-slot {
      width: 100%;
      height: 240px;
      background: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      font-size: 14px;
    }

    /* 中新视频 */
    .video-container {
      padding: 12px 16px;
    }
    .video-row {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
    }
    .video-item-wide {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .video-thumb-wide {
      width: 100%;
      height: 100px; /* 固定高度 */
      background: #eee;
      border-radius: 4px;
      margin-bottom: 8px;
    }
    .video-title-wide {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }
    .video-title-wide a {
      color: inherit;
      text-decoration: none;
    }
    .video-title-wide a:hover {
      color: var(--link);
    }

    .video-links {
      list-style: none;
      padding: 0 16px 16px;
    }
    .video-links li {
      padding: 6px 0;
      border-bottom: 1px solid #eee;
    }
    .video-links li:last-child {
      border-bottom: none;
    }
    .video-links a {
      color: var(--text);
      text-decoration: none;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .video-links a::before {
      content: "·";
      color: var(--primary);
      font-size: 16px;
    }
    .video-links a:hover {
      color: var(--link);
    }


    /* 镜观湖南 */
    .photo-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      padding: 12px 16px;
    }
    .photo-item {
      text-align: center;
    }
    .photo-item img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      border-radius: 4px;
    }
    .photo-item a {
      display: block;
      margin-top: 8px;
      font-size: 12px;
      color: var(--text);
      text-decoration: none;
    }
    .photo-item a:hover { color: var(--link); }

    /* 湖南新闻网微博 */
    .weibo-card {
      padding: 16px;
    }
    .weibo-header {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
    }
    .weibo-avatar {
      width: 36px;
      height: 36px;
      background: #ccc;
      border-radius: 50%;
      margin-right: 10px;
    }
    .weibo-user {
      font-weight: 600;
      font-size: 14px;
    }
    .weibo-time {
      font-size: 12px;
      color: var(--text-secondary);
      margin-top: 4px;
    }
    .weibo-content {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .weibo-stats {
      display: flex;
      gap: 16px;
      font-size: 12px;
      color: var(--text-secondary);
    }
    .weibo-stats a {
      color: inherit;
      text-decoration: none;
    }
    .weibo-stats a:hover { color: var(--link); }

    /* 底部 */
    footer {
      background: #fff;
      border-top: 1px solid var(--border);
      margin-top: 60px;
      padding: 30px 0;
      font-size: 12px;
      color: var(--text-secondary);
    }
    .footer-links {
      display: flex;
      gap: 24px;
      margin-bottom: 16px;
    }
    .footer-links a {
      color: var(--text-secondary);
      text-decoration: none;
    }
    .footer-links a:hover {
      color: var(--link);
    }
    .copyright {
      text-align: center;
    }

.smalllogo{display:none;}


 .article-meta1 {
      font-size: 12px;
      color: var(--text-secondary);
      margin-bottom: 16px;
	  display:none
    }
    .article-meta1 span {
      margin: 0 8px;
	  display:none;
	  float:left;
    }