        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;
        }
        .product-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .product-header img {
            width: 100px;
            height: 100px;
            margin-right: 20px;
        }
        .product-header h1 {
            font-size: 24px;
            margin: 0;
        }
        .product-header button {
            background-color: #28a745;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            margin-top: 10px;
        }
        .product-header button:hover {
            background-color: #218838;
        }
        .info-table, .json-example {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            padding: 20px;
        }
        .info-table table {
            width: 100%;
            border-collapse: collapse;
        }
        .info-table th, .info-table td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
        .info-table th {
            background-color: #f2f2f2;
        }
        .json-example pre {
            margin: 0;
            overflow-x: auto;
        }
        footer {
            text-align: center;
            padding: 20px;
            color: #888;
        }	
.recommendations {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}
.recommendations h2 {
    margin: 0 0 15px 0; /* 调整标题与推荐项的间距 */
}
.recommendation-items {
    display: flex; /* 使推荐项横向排列 */
    flex-wrap: wrap; /* 允许换行 */
    gap: 20px; /* 推荐项之间的间距 */
}
.recommendation-item {
    display: flex;
    align-items: center;
    flex: 1 1 30%; /* 每个推荐项占据30%的宽度，允许自适应 */
}
.recommendation-item img {
    width: 100px;
    height: 100px;
    margin-right: 15px;
}
.recommendation-item h3 {
    margin: 0;
    font-size: 18px;
}
.recommendation-item button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    margin-top: 5px;
}
.recommendation-item button:hover {
    background-color: #0056b3;
}
.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; /* 鼠标悬停时添加下划线 */
}	
.recommendation-button {
    background-color: #007bff; /* 按钮背景色 */
    color: #fff; /* 按钮文字颜色 */
    border: none; /* 无边框 */
    padding: 8px 15px; /* 内边距 */
    cursor: pointer; /* 鼠标指针样式 */
    text-decoration: none; /* 去掉下划线 */
    display: inline-block; /* 使其表现得像块元素 */
    margin-top: 5px; /* 与其他元素的间距 */
    border-radius: 4px; /* 圆角 */
}
.recommendation-button:hover {
    background-color: #0056b3; /* 悬停时背景色 */
}


.test-section {
    background-color: #fff; /* 背景色与其他部分一致 */
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 阴影 */
    margin-bottom: 20px; /* 与其他元素的间距 */
    padding: 20px; /* 内边距 */
}

.test-section h2 {
    font-size: 1.5em; /* 标题字体大小 */
    margin-bottom: 15px; /* 标题与内容的间距 */
}

.test-link {
    display: inline-block; /* 使链接表现得像块元素 */
    background-color: #007bff; /* 链接背景色 */
    color: #fff; /* 链接文字颜色 */
    padding: 10px 15px; /* 内边距 */
    text-decoration: none; /* 去掉下划线 */
    border-radius: 4px; /* 圆角 */
    margin-top: 10px; /* 与其他元素的间距 */
}

.test-link:hover {
    background-color: #0056b3; /* 悬停时背景色 */
}