/* 全局重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "微软雅黑", "Microsoft YaHei", Arial, sans-serif;
}

body {
  background-color: #f8f8f8; /* 模板浅灰背景 */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* 首页容器 */
.home-container {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

/* 放大镜图标 */
.magnifier-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

/* 标题样式 */
.toolbox-header h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

/* 副标题样式 */
.toolbox-header .subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* 按钮容器 */
.toolbox-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列布局，和模板一致 */
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

/* 工具按钮样式（还原模板浅灰底色+圆角） */
.tool-btn {
  display: inline-block;
  padding: 15px 25px;
  background-color: #e0e0e0;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.tool-btn:hover {
  background-color: #d0d0d0;
  transform: translateY(-2px);
}

/* 移动端适配（屏幕小则1列） */
@media (max-width: 500px) {
  .toolbox-buttons {
    grid-template-columns: 1fr;
  }
  .toolbox-header h1 {
    font-size: 28px;
  }
  .magnifier-icon {
    width: 60px;
    height: 60px;
  }
}