.list-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    width: 100%;
}

.menu1 {
    background: #fff;
    border: 1px solid #eee;
    border-top: 2px solid #ff6600;
}

.menu2 {
    background: #fff;
    margin-top: 20px;
}

.list-menu {
    display: inline-block;
    width: 220px;
}

.list-menu ul li {
    list-style: none;
    cursor: pointer;
    padding: 0 20px;
    position: relative;
    -webkit-transition: background .2s ease;
    transition: background .2s ease;
    white-space: nowrap;
    line-height: 32px;
}

.list-menu ul li:hover {
    background: #f2f3f7;
    color: #333;
}

.list-menu ul li a {
    display: block;
    padding-right: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-menu-title {
    line-height: 45px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.product-list {
    width: 960px;
    margin: 0 auto;
}

.component-product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px; /* 替代 margin-right */
    margin-top: 30px;
}

.product-card {
    position: relative;
    padding: 8px;
    box-sizing: content-box;
    background-color: #fff;
    box-shadow: 0 2px 8px #0000001a;
    border-radius: 8px;
    width: 209px;
    flex: 0 0 209px; /* 固定宽度，不伸缩 */
}

.product-image {
    display: block;
    width: 209px;
    height: 209px;
}

.product-image img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain; /* 保持图片比例 */
}

.product-info {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-height: 18px;
    color: #222;
    font-size: 14px;
    font-weight: 400;
    white-space: normal;
}

.product-price {
    -webkit-line-clamp: 2;
    color: #222;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    margin-top: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price .num {
    color: #333;
    font-weight: 700;
}

.product-action-sku-chat-placeholder {
    height: 36px;
    width: 100%;
}

.product-action-sku-chat {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 0;
    width: 100%;
}

.im-alitalk-container {
    display: inline-block;
    padding: 5px 10px;
    color: #222;
    border-radius: 65px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #eee;
    font-weight: 500;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
    user-select: none;
}

/* 悬停效果 */
.im-alitalk-container:hover {
    background-color: #ff6600;
    color: #fff;
}

.page-list {
    display: flex;
    justify-content: flex-end; /* 靠右对齐 */
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e8e8e8;
    margin-top: 20px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pagination button {
    padding: 8px 16px;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination button:hover:not(:disabled) {
    border-color: #ff6600;
    color: #ff6600`;
}

.pagination button:disabled {
    color: #ccc;
    cursor: not-allowed;
    border-color: #d9d9d9;
}

.page-numbers {
    display: flex;
    gap: 8px;
}

.page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-number:hover {
    border-color: #ff6600;
    color: #ff6600;
}

.page-number.active {
    background-color: #ff6600;
    border-color: #ff6600;
    color: #fff;
}