@charset "utf-8";

.page_product .main {
    background-color: #fff;
    padding: 32px 16px;
}

@media (max-width: 768px) {
    .page_product .main {
        padding: 0;
    }
}

/*
product_category
*/
.product_category {
    max-width: 1200px;
    margin: 0 auto;
}

.product_category .inner {
    margin-bottom: 40px;
}

.product_category .dt {
    font-size: 15px;
    font-weight: bold;
    padding-left: 15px;
    position: relative;
}

.product_category .dt::before {
    content: " ";
    background-color: #AC8241;
    width: 4px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -8px;
    border-radius: 5px;
}

.product_category .items {
    display: flex;
    flex-wrap: wrap;
}

.product_category .item {
    width: 25%;
}

.product_category .dl{
    display: block;
    margin: 10px;
}

.product_category .pic {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 5px;
    border: 1px solid #AC6006;
}

.product_category .pic_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product_category .pic img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product_category .tit {
    margin: 10px 0;
    font-size: 14px;
    text-align: center;
}


@media (max-width: 992px) {
    .product_category .item {
        width: 33.333%;
    }
}
