/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#current-date,
#current-time {
  font-size: 18px;
  color: #333;
  margin-right: 10px;
}

.daily-horoscope {
  font-size: 14px;
  margin-bottom: 10px;
  color: #666;
}

.mood-score-section {
  margin-bottom: 20px;
}

.score {
  font-size: 28px;
  color: #009688;
  font-weight: bold;
}

.view-details {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.view-details:hover {
  color: #0056b3;
}

.question-section {
  display: flex;
}

.question-section input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 20px 0 0 20px;
  background-color: #f0f9f8;
  color: #333;
}

.ask-button {
  background-color: #009688;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ask-button:hover {
  background-color: #00796b;
}

/* .test-item {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; 添加背景颜色变化的过渡效果
}

.test-item:hover {
  transform: translateY(-5px); 鼠标悬停时向上移动5px
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); 增加阴影效果
  background-color: #f0f9f8; 改变背景颜色
}

.test-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
} */

.knowledge-base {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.article-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.analysis-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.analysis-button:hover {
  background-color: #0056b3;
}