/*
Theme Name: 恒盛花园
Template: hengshengGarden
*/

a {
  color: #1e3a5f; /* 链接颜色 */
  text-decoration: none !important; /* 去除下划线 */
  transition: all 0.3s ease; /* 平滑过渡效果 */
}

/* 鼠标悬停状态 */
a:hover {
  color: #235c3f; /* 悬停时颜色变深 */
  text-decoration: underline; /* 悬停时显示下划线 */
}

/* 点击时的状态 */
a:active {
  color: #2c724f; /* 点击时颜色 */
}


/* ===== 不同位置的链接可以有不同的样式 ===== */

/* 导航菜单中的链接 */
nav a {
  font-weight: 500;
  padding: 8px 12px;
}

/* 文章内容中的链接 */
.entry-content a {
  color: #2c724f;
  border-bottom: 1px solid transparent;
}

.entry-content a:hover {
  border-bottom-color: #2c724f;
}

/* 按钮样式的链接（把链接变成按钮） */
.button-link,
a.button {
  display: inline-block;
  background-color: #0c1725;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
}

.button-link:hover,
a.button:hover {
  background-color: #0a192a;
  color: white;
  text-decoration: none;
}

/* 页脚中的链接 */
footer a {
  color: #0a192a;
}

footer a:hover {
  color: #2c724f;
}