.share-wrap .prev-next-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.share-wrap .prev-article,
.share-wrap .next-article {
  display: flex;
  flex-direction: column;
  max-width: 40%;
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
  padding: 10px;
  border-radius: 4px;
}

.share-wrap .prev-article:hover,
.share-wrap .next-article:hover {
  color: #0073aa;
  background-color: #f5f5f5;
}

.share-wrap .prev-article {
  text-align: left;
  margin-right: auto;
}

.share-wrap .next-article {
  text-align: right;
  margin-left: auto;
}

.share-wrap .nav-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.share-wrap .nav-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.share-wrap .back-home {
  padding: 8px 16px;
  background-color: #f5f5f5;
  color: #666;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin: 0 10px;
}

.share-wrap .back-home:hover {
  background-color: #0073aa;
  color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .share-wrap .prev-next-nav {
    flex-direction: column;
    gap: 15px;
  }

  .share-wrap .prev-article,
  .share-wrap .next-article {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0 !important;
  }

  .share-wrap .back-home {
    order: 1;
    margin: 10px 0;
  }

  .share-wrap .prev-article {
    order: 0;
  }

  .share-wrap .next-article {
    order: 2;
  }
}
/* 友情链接容器 */
.yqlj {
    font-family: Arial, sans-serif;
    margin: auto;
    padding: 15px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #f9f9f9;
    width: 1200px;
    margin-bottom: 20px;
}

/* 标题样式 */
.yqlj_tit h2 {
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

/* 链接列表容器 */
.yqlj ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 链接项样式 */
.link-item {
    margin: 0;
    padding: 0;
}

/* 链接样式 */
.link-item a {
    display: inline-block;
    padding: 8px 16px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* 链接悬停效果 */
.link-item a:hover {
    background-color: #3498db;
    border-color: #2980b9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 链接激活状态 */
.link-item a:active {
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .yqlj ul {
        gap: 8px;
    }
    
    .link-item a {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .yqlj ul {
        flex-direction: column;
        align-items: center;
    }
    
    .link-item {
        width: 100%;
        text-align: center;
    }
}
