@charset "utf-8";

.page_index {
    background-color: #fff;
}

/*
index_product_cat
*/
.index_product_cat {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.index_product_cat .items {
    display: flex;
}

.index_product_cat .item {
    width: 12.5%;
    padding: 10px;
}

.index_product_cat .item .dl {
    position: relative;
    padding-bottom: 75%;
}

.index_product_cat .item .pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    /*background-color: #EDE6E0;*/
    border: 1px solid #AC8241;
}

.index_product_cat .item img {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.6;
}

.index_product_cat .item .dl:hover img {
    opacity: 1;
}

.index_product_cat .item .tit {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding: 8px;
}

@media (max-width: 992px) {
    .index_product_cat .items {
        display: flex;
        flex-wrap: wrap;
    }

    .index_product_cat .item {
        width: 25%;
    }

    .index_product_cat .item img {
        opacity: 1;
    }

    .index_product_cat .item .tit {
        font-size: 13px;
        padding: 5px;
    }
}

/**

 */
.index_hot_cases {
    padding: 40px 0;
    background-color: #F7F2E8;
}

@media (max-width: 992px) {
    .index_hot_cases .wrapper {
        margin: 0 10px;
    }
}

/**

 */
.index_product_list {
    padding: 40px 0;
    background-color: #f8f8f8;
}

/**

 */
.index_space_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.index_space_list .item {
    padding: 10px;
}