        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            margin: 0;
            padding: 0;
        }
        header {
            background-color: #000;
            color: #fff;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header nav a {
            color: #fff;
            margin: 0 10px;
            text-decoration: none;
        }
        header nav a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .hero {
            text-align: center;
            margin: 20px 0;
        }
        .hero h1 {
            font-size: 24px;
            font-weight: bold;
        }
        .product-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
        }
        .card img {
            width: 100px;
            height: 100px;
            margin: 20px auto;
        }
        .card h3 {
            font-size: 18px;
            margin: 10px 0;
        }
        .card p {
            font-size: 14px;
            color: #666;
            padding: 0 10px;
        }
        .friend-links-section {
            margin: 20px 0; /* 上下间距 */
            text-align: center; /* 居中对齐 */
        }
        .friend-links {
            display: flex; /* 使用flex布局 */
            justify-content: center; /* 居中 */
            flex-wrap: wrap; /* 自动换行 */
            gap: 15px; /* 链接之间的间距 */
        }
        .friend-links a {
            color: #61dafb; /* 链接颜色 */
            text-decoration: none; /* 去掉下划线 */
            padding: 5px 10px; /* 内边距 */
            border: 1px solid transparent; /* 边框 */
            border-radius: 4px; /* 圆角 */
            transition: border-color 0.3s; /* 边框颜色变化的过渡效果 */
        }
        .friend-links a:hover {
            border-color: #61dafb; /* 悬停时边框颜色 */
            text-decoration: underline; /* 鼠标悬停时添加下划线 */
        }
.footer {
    background-color: #282c34; /* 深色背景 */
    color: #ffffff; /* 白色字体 */
    padding: 20px 0; /* 上下内边距 */
    text-align: center; /* 居中对齐 */
}

.footer-content {
    max-width: 1200px; /* 最大宽度 */
    margin: 0 auto; /* 居中 */
    display: flex; /* 使用flex布局 */
    justify-content: space-between; /* 两侧对齐 */
    align-items: center; /* 垂直居中 */
    padding: 0 20px; /* 左右内边距 */
}

.footer-section {
    flex: 1; /* 每个部分平分空间 */
}

.footer-section p {
    margin: 0; /* 去掉默认外边距 */
}

.footer-section a {
    color: #61dafb; /* 链接颜色 */
    text-decoration: none; /* 去掉下划线 */
}

.footer-section a:hover {
    text-decoration: underline; /* 鼠标悬停时添加下划线 */
}
.card-button {
    background-color: #007bff; /* 按钮背景色 */
    color: #fff; /* 按钮文字颜色 */
    border: none; /* 无边框 */
    padding: 8px 15px; /* 内边距 */
    cursor: pointer; /* 鼠标指针样式 */
    text-decoration: none; /* 去掉下划线 */
    display: inline-block; /* 使其表现得像块元素 */
    margin: 10px 0;
    border-radius: 4px; /* 圆角 */
}

.card-button:hover {
    background-color: #0056b3; /* 悬停时背景色 */
}