 body {
        background-color: aliceblue;
      }
      ul li {
        list-style: none;
        width: 700px;
      }
      h2 {
        text-align: center;
        color: orangered;
        font-size: 36px;
        padding-left: 40px;
      }
      #content {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 15px;
      }
      h3 {
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
        height: 24px;
      }

      .Monograph {
        height: 140px !important;
        width: auto !important;
        overflow: hidden;
      }

      .picture {
        float: left;
        margin-right: 10px;
        width: 200px;
        height: 140px;
        border-radius: 5px;
        overflow: hidden;
        min-width: 200px;
        max-width: 200px;
      }
      .info {
        height: 130px;
      }
      .binfo {
        color: #666;
        font-size: 12px;
      }
      .detailFont {
        font-size: 12px;
        color: grey;
      }
      .icon-hot {
        padding-right: 5px;
      }

      .back-to-home {
        display: inline-block;
        padding: 10px 20px;
        background-color: #40D3DC;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s;
        margin-left: 20px; /* 添加左边距 */
    }
    
    .back-to-home:hover {
        background-color: #35b6bf;
    }
    
    /* ... existing code ... */

.more-info-btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(45deg, #40D3DC 0%, #2a959b 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.more-info-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.more-info-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.more-info-btn:hover::before {
  left: 0;
}