/**
 * 示例CSS文件
 * 这个文件展示了如何在项目中使用CSS
 */

.example-class {
  color: #3498db;
  font-size: 16px;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.example-class:hover {
  color: #e74c3c;
  transform: scale(1.1);
}

/* 带浏览器前缀的CSS属性将被autoprefixer自动处理 */ 