main {
    margin-top: 100px;
}

main .row {
    width: 100%;
    background-color: #f0f0f0;
}

main .row .bread {
    width: 80%;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
}

.breadcrumb-item {
    color: #606266;
    text-decoration: none;
}

.breadcrumb-item a {
    color: #606266;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #409eff;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #c0c4cc;
}

.breadcrumb-item:last-child {
    color: #303133;
}

/* 产品展示 */
.titles {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.titles h1 {
    display: flex;
    align-items: flex-end;
    width: 100%;
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0;
    border-bottom: 2px solid #409eff;
    margin-top: 30px;
}

.titles h1 p {
    font-size: 14px;
    margin-left: 10px;
    font-weight: 500;
    color: #555555;
}

.tabs {
    width: 80%;
    min-height: 50vh;
    margin: 0 auto;
}

.productShow {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0 20px 20px;
    box-sizing: border-box;
}

.productShow .item {
    width: 19%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 1%;
    margin-top: 20px;
    cursor: pointer;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
}

.productShow .item:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 8px -5px #409eff;
}

.productShow .item img {
    width: 100%;
    height: 200px;
    display: block;
}

.productShow .item p {
    width: 100%;
    text-align: center;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
}

.empty-content {
    text-align: center;
    color: #c0c4cc;
}

.empty-content .empty-img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.pagination {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.el-pagination {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.el-pagination button,
.el-pagination span {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #e5e7eb;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.el-pagination button:disabled {
    color: #c0c4cc;
    cursor: not-allowed;
}

.el-pagination .active {
    background-color: #409eff;
    color: #fff;
    border-color: #409eff;
}

.loading {
    text-align: center;
    padding: 50px 0;
    color: #606266;
}

@media only screen and (max-width: 576px) {
    main {
        width: 100%;
        box-sizing: border-box;
        margin-top: 60px;
    }
    main .row .bread,
    .titles {
        width: 90%;
    }
    .tabs,
    .title,
    .row .bread {
        width: 90%;
    }
    .productShow {
        padding: 0;
    }
    .productShow .item {
        width: 100%;
        margin-right: 0;
    }
}
