/*
Theme Name: Your Theme Child
Description: Child theme for Your Theme
Template: twentytwentyfive
Version: 1.0
*/

/* ============================= */
/*   子页面内容美化（通用）        */
/* ============================= */

/* 子页面主体容器 */
.content-wrapper {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 50px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* 页面标题（H1）美化 */
.content-wrapper h1 {
  text-align: center;
  font-size: 38px;
  color: #00b894; /* 健康绿色主题 */
  margin-bottom: 10px;
}

/* 副标题（说明文字） */
.content-wrapper .subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

/* 列表整体容器 */
.content-list {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

/* 列表中的每一行 */
.content-list li {
  margin: 12px 0;
  font-size: 18px;
}

/* 链接样式 */
.content-wrapper a {
  color: #0984e3;
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin: 10px 0;
  transition: 0.2s;
}

/* 悬停效果 */
.content-wrapper a:hover {
  color: #00b894;
  transform: translateX(4px);
}

/* 小箭头图标（纯 CSS，不需要图片） */
.content-list a::before {
  content: "▶ ";
  color: #00b894;
  font-size: 14px;
}

/* 子页面背景（为了与首页风格一致） */
body {
  background: #f4f7fb !important;
}
