.goods-container {
    width: 1200px;
    margin: 0 auto;
}

.goods-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 48px 64px;
    margin-top: 20px;
}

.goods-link {
    text-decoration: none;
    cursor: pointer;
}

.goods-item {
    width: 252px;
    height: 370px;
    border: 1px solid #eee;
}

.goods-img {
    width: 250px;
    height: 250px;
}

.goods-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goods-title {
    font-size: 14px;
    color: #666666;
    text-align: left;
    margin-top: 10px;
    padding: 0 10px;
    height: 45px;
    overflow: hidden;
}

.price-sales {
    font-size: 14px;
    padding: 0 10px;
    margin-top: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #FF0000;
    font-size: 18px;
}

.sales {
    color: #999999;
    font-size: 14px;
    font-weight: normal;
}

/* 添加提示信息相关样式 */
.message-container {
    width: 100%;
    text-align: center;
    padding: 20px;
}

.loading-tip {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading-tip i {
    font-size: 30px;
}

.loading-tip p {
    margin-top: 10px;
}