/* assets/css/style.css */

/* 全局字体与颜色设置 */
body {
    background-color: #f9f7f1;
    color: #333;
    font-family: 'Arial', sans-serif;
  }
  
  /* 链接样式调整 */
  a {
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  
  /* 其他自然风格细节 */
  .container {
    /* 可适当加一点内边距，使内容更舒适 */
    padding: 20px;
  }