/* 基本设置 */ * { box-sizing: border-box; } body { font-family: Arial, sans-serif; margin: 0; padding: 0; } .container { display: flex; justify-content: space-between; align-items: center; height: 100vh; background-color: white; } .card { width: calc(33.33% - 20px); text-align: center; padding: 20px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: all 0.3s ease-in-out; } .card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); } .card img { max-width: 100%; height: auto; } .card p { margin-top: 10px; color: black; background: darkgrey; font-weight: bold; }