﻿/*=================商品分類=======================*/

/*--------商品分類區------------*/
.goods-type-list {
    width: 1160px;
    padding: 20px;
    margin: 0 auto;
    overflow: hidden;
    background: white;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0;
}

.goods-type-item {
    width: 110px;
    height: 120px;
    margin: 2px;
    cursor: pointer;
    font-size:14px;
}

    .goods-type-item img {
        width: 80px;
        height: 75px;
        border-radius:10px;
    }

/*--------商品展示區------------*/
.goods-content {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 5px;
}

/*熱門商品*/
.goods-hot {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 20px;
    background: white;
    padding-bottom: 15px;
    border-radius: 10px;
}

.goods-hot-title {
    width: 1200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

    .goods-hot-title a {
        padding-left: 100px;
    }

.goods-hot-list {
    width: 1200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.goods-item {
    display: block;
    width: 255px;
    height: 330px;
    margin: 15px;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 15px;
}

    .goods-item img {
        width: 255px;
        height: 240px;
        border-radius: 15px;
    }

.good-title {
    font-size: 14px;
    color: #000000;
    text-align: left;
    padding-top: 10px;
}

.goods-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    color: #898989;
}

    .goods-price .goods-price-num {
        color: #F37E00;
        font-size: 16px;
        font-weight: bold;
    }

.more-hot-goods {
    background: #F2F2F2;
    font-size: 16px;
    text-align: center;
    padding: 8px 10px;
    width: 70%;
    border-radius: 20px;
    margin: 10px auto;
    cursor: pointer;
    margin-top: 20px;
}

    .more-hot-goods:hover {
        background: #FFD846;
    }

.goods-type-list .current-type-goods {
    color: red;
    font-weight: bold;
}