* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      
      body {
        font-family: "Microsoft YaHei", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        background: #fff;
        min-height: 100vh;
      }
      
      header {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        padding: 1rem 0;
      }
      
      .header-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      
      .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }
      
      .logo img {
        width: 40px;
        height: 40px;
      }
      
      .logo span {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
      }
      
      .nav-links {
        display: flex;
        gap: 1rem;
      }
      
      .home-link {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
      }
      
      .home-link:hover {
        color: rgba(255, 255, 255, 0.8);
      }
      
      .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 2rem;
        background: #fff;
        min-height: calc(100vh - 200px);
        display: flex;
        gap: 2rem;
        position: relative;
      }
      
      .main-content {
        flex: 1;
        max-width: 1100px;
      }
      
      footer {
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 3rem 0 2rem;
        margin-top: 4rem;
        position: relative;
      }
      
      footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
      }
      
      .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
      }
      
      .footer-info {
        flex: 1;
      }
      
      .footer-info p {
        color: rgba(255, 255, 255, 0.8);
      }
      
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
      }
      
      .contact-info p {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.9);
      }
      
      .icp-link {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
      }
      
      .icp-link:hover {
        color: #667eea;
        border-color: #667eea;
        background: rgba(102, 126, 234, 0.1);
      }
      
      .footer-contact {
        text-align: center;
      }
      
      .footer-contact h4 {
        margin-bottom: 1rem;
        color: #fff;
        font-size: 1.1rem;
      }
      
      .qrcode-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
      }
      
      .qrcode {
        width: 120px;
        height: 120px;
        border-radius: 8px;
        border: 2px solid rgba(255, 255, 255, 0.2);
      }
      
      .qrcode-container p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
      }


      .article-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
      }
      
      .article-item {
        display: flex;
        gap: 1.5rem;
        padding: 1.5rem;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
      }
      
      .article-item:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
      }
      
      .article-image {
        flex-shrink: 0;
        width: 230px;
        height: 120px;
        border-radius: 8px;
        overflow: hidden;
      }
      
      .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .article-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      
      .article-content .article-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.8rem;
        line-height: 1.4;
      }

      .article-content .article-title a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
      }
      
      .article-content .article-title a:hover {
        color: #4285f4;
      }
      
      .article-content .article-subtitle {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin: 0;
      }
      
      .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 2rem;
      }
      
      .page-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 1px solid #ddd;
        border-radius: 6px;
        text-decoration: none;
        color: #666;
        font-size: 14px;
        transition: all 0.3s ease;
      }
      
      .page-item:hover {
        background: #f5f5f5;
        border-color: #4285f4;
        color: #4285f4;
      }
      
      .page-item.active {
        background: #4285f4;
        border-color: #4285f4;
        color: #fff;
      }
      
      .page-item.next {
        width: auto;
        padding: 0 12px;
      }
      
      @media (max-width: 768px) {
        .article-item {
          flex-direction: column;
          gap: 1rem;
        }
        
        .article-image {
          width: 100%;
          height: 180px;
        }
        
        .article-content .article-title {
          font-size: 16px;
        }
        
        .article-content .article-subtitle {
          font-size: 13px;
        }
        
        .pagination {
          flex-wrap: wrap;
          gap: 0.3rem;
        }
        
        .page-item {
          width: 32px;
          height: 32px;
          font-size: 13px;
        }
      }
      
      @media (max-width: 768px) {
        .header-content {
          padding: 0 1rem;
        }
        
        .logo span {
          font-size: 1.2rem;
        }
        
        .home-link {
          padding: 0.4rem 0.8rem;
          font-size: 0.9rem;
        }
        
        .container {
          flex-direction: column;
          padding: 1rem;
        }
        
        .footer-content {
          flex-direction: column;
          text-align: center;
          gap: 2rem;
        }
        
        .footer-info {
          order: 2;
        }
        
        .footer-contact {
          order: 1;
        }
      }
      
      @media (max-width: 480px) {
        .footer-content {
          flex-direction: column;
          text-align: left;
          gap: 2rem;
        }
        
        .footer-info {
          order: 1;
          text-align: left;
        }
        
        .footer-info p:first-child,
        .footer-info p:nth-child(2),
        .footer-info p:nth-child(3) {
          text-align: left;
        }

        .article-content p img {
          max-width: 100%;
          margin: 0 auto;
          display: block;
          padding: 0;
          border: 0;
        }
        
        .footer-contact {
          display: none;
        }
        
        .contact-info {
          align-items: flex-start;
          gap: 0.5rem;
        }
        
        .contact-info p {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          flex-wrap: nowrap;
        }
        
        .contact-info img {
          flex-shrink: 0;
        }

        .qrcode {
          width: 100px;
          height: 100px;
        }
        
        .contact-info {
          align-items: flex-start;
          gap: 0.5rem;
        }
      }