.detail-main {
    max-width: 900px;
    margin: 2.5rem auto 3rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 2.5rem 2.2rem 2.5rem 2.2rem;
  }

  .detail-title {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
  }
  .detail-meta {
    text-align: center;
    color: #888;
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .detail-divider {
    height: 1px;
    background: #eee;
    margin: 1.2rem 0 2rem 0;
  }
  .detail-content {
    font-size:1.25rem;
    color: #222;
    line-height: 2.1;
  }
  .detail-content p {
    margin: 1.2em 0;
    text-indent: 2em;
  }
  .detail-img {
    display: block;
    max-width: 90%;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
  .detail-content span{
    font-size:1.25rem;
    color: #222;

  }
  .detail-pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    font-size: 1.1rem;
  }
  .detail-pagination a{
    font-size: 1.1rem;
  }
  .detail-prev, .detail-next,.detail-pagination a {
    color: #1677ff;
    text-decoration: none;
    padding: 0.3em 1.2em;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
  }
  .detail-pagination a:hover{
    font-weight: bold;
    color: #1677ff;
     
  }
  @media (max-width: 600px) {
    .detail-main { padding: 1.2rem 0.5rem; }
    .detail-title { font-size: 1.3rem; }
    .detail-content { font-size: 1rem; }
  }