

.cate-block {
    width: 1200px;
    margin: 0 auto;
}

.cate-block .content {
    display: flex;
    flex-direction: column;

    /*justify-content: center;*/
}

.cate-block .cate-level1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: #303030;
}

.cate-block .cate-level1 .item {
    min-width: 80px;
    padding: 0 10px;
    margin-right: 10px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;

}

.cate-block .cate-level1 .label {

}

.cate-block .cate-level1 .option {
    background-color: #79bb94;
    color: #ffffff;
    /*box-shadow: -2px 2px 4px 2px rgba(0,0,0,0.1);*/
    border-radius: 3px;
    cursor: pointer;

}

.cate-block .cate-level1 .option.active {
    background-color: #28a13a;
    color: #fff;
}


.product-block {
    width: 1200px;
    margin: 0 auto;

}

.product-block .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.product-block .item {
    cursor: pointer;
    margin-right: 24px;
    margin-bottom: 24px;
    box-shadow: -2px 2px 5px 2px rgba(0,0,0,0.1);
    border-radius: 3px;
    text-decoration: none;
}

.product-block .item:nth-child(4n) {
    margin-right: 0;
}

.product-block .item-content {
    padding: 10px;
    box-sizing: border-box;
}


.product-block .item .thumb-pic {
    width: 262px;
    height: 262px;
}
.product-block .item .thumb-pic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.product-block .product-name {
    text-align: center;
    font-size: 14px;
    color: #999;
}


.product-block .item-content .compare-block {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
    margin-top: 10px;
    color: #28a13a;
}
.main-content{
    text-align: center;
}

.compare-btn {
    position: fixed;
    right: 0;
    top: 120px;
    bottom: 0;
    height: 105px;
    margin: auto 0;
    background-color: #28a13a;
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    cursor: pointer;

}

.compare-btn.bounce {
    animation: bounce 200ms;
}

.compare-btn .label {
    width: 16px;
    font-size: 16px;
    padding-left: 5px;
    color: #fff;
}


@keyframes bounce {

    0% {
        transform: scale(1.5);
        top: 90px;
    }

    100% {
        transform: scale(1);
        top: 120px;

    }


}

.product-spec {
    margin: 0 auto;
    max-width: 800px;
}

.product-content {
    margin: 0 auto;
    max-width: 800px;
}

.product-content img {
    width: 100%;
    min-width: 100%;
}