
.jd-dav-btn {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}


/* 最新文章列表，查看更多按钮样式 */
.jd-btn {
  /* 布局 - 确保完美居中 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  
  /* 添加上边距 */
  margin-top: 80px; /* 或者使用具体的数值 */
  
  /* 尺寸 */
  height: 60px;
  padding: 0 60px;
  
  /* 文字 */
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1;
  white-space: nowrap;
  
  /* 背景和描边 */
  background: #fff;
  border: 2px solid #dcdfe6;
  border-radius: 6px;
  
  /* 交互 */
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  
  /* 防止文字选择 */
  user-select: none;
}

.jd-btn:hover {
  /* 放大效果 */
  transform: scale(1.03);
  
  /* 阴影增强 */
  box-shadow: 0 6px 16px rgba(64, 158, 255, 0.2);
}

.jd-btn:active {
  transform: scale(1.02);
  transition-duration: 0.1s;
}