/* 样式文件优化 */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

header {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.search-container {
    text-align: center;
    margin-top: 20px;
}

.search-container input[type="text"] {
    padding: 8px;
    font-size: 16px;
    width: 50%;
    max-width: 400px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.product-item {
    width: 20%;
    padding: 10px;
    margin: 10px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-item h3 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

.product-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-item .price {
    font-size: 18px;
    color: #ff5722;
    font-weight: bold;
}

.product-item .view-link {
    display: inline-block;
    padding: 8px 12px;
    background-color: #ff5722;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
}

.product-item .view-link:hover {
    background-color: #e64a19;
}
