@charset "utf-8";

/*
header
*/
.header_pc {
    background-color: #EBE6E4;
    border-bottom: 1px solid #ddd;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
    width: 100%;
}

.header_pc_sp {
    height: 80px;
}

.header_pc_wrapper {
    margin: 0 auto;
    max-width: 1500px;
    display: flex;
}

.header_pc .header_logo {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_pc .header_logo img {
    max-width: 200px;
}

.header_pc .header_body {
    flex: 1;
    height: 80px;
    display: flex;
}


/*
header_nav
*/
.header_nav {
    z-index: 800;
    flex: 1;
    margin: 0 50px;
}

.header_nav .items {
    display: flex;
}

.header_nav .items .item {
    flex: 1;
    font-size: 18px;
    max-width: 150px;

    height: 80px;
}

.header_nav .items .item .link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    -webkit-transition: all .3s;
    position: relative;
}

.header_nav .items .item .link::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #AC8241;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.header_nav .items .item:hover .link {
    font-weight: bold;
    color: #AC8241;
}

.header_nav .items .item:hover .link::before {
    width: 100%;
    left: 0;
}

.header_nav .dropdown_link {
    display: block;
    margin: 3px 0;
    padding: 5px 10px;
}

.header_nav .dropdown_menu {
    display: none;
    position: absolute;
    z-index: 800;
    top: 78px;
    left: 50%;
    margin-left: -100px;
    width: 200px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-weight: normal;
    padding: 10px;
    text-align: left;
}

.header_nav .dropdown_menu .dropdown_link {
    -webkit-transition: transform .5s ease;
    transition: transform .5s ease;
    display: flex;
    align-items: center;
}

.header_nav .dropdown_menu .dropdown_link:hover {
    color: #AC8241;
    transform: translateX(15px);
}

.header_nav .dropdown {
    position: relative;
}

.header_nav .dropdown:hover .dropdown_menu {
    display: block;
}

/*
dropdown_cate_layer
*/
.dropdown_cate_layer {
    display: none;
    position: absolute;
    z-index: 800;
    top: 78px;
    left: 0;
    width: 100%;
    /*height: 600px;*/
    height: 100vh;
    text-align: left;
}

/*
这里下拉, 修改为js
.header_nav .dropdown_cate:hover .dropdown_cate_layer {
    display: block;
}
*/

.header_nav .dropdown_cate.active .dropdown_cate_layer {
    display: block;
}

.dropdown_cate_layer_mask {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /*-webkit-backdrop-filter: blur(15px);*/
    /*backdrop-filter: blur(15px);*/
}

.dropdown_cate_layer_wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -450px;
    z-index: 1000;
    width: 950px;
    height: 500px;
    background-color: #EBE6E4;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
}

.header_cate_items {
    width: 200px;
}

.header_sub_cate_items {
    position: absolute;
    top: 0;
    left: 200px;
    width: 750px;
    height: 100%;
    background-color: #DECDB3;
    display: none;
}

.header_cate_item {
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    font-weight: normal;
}

.header_cate_item .more {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.header_cate_item:hover {
    background-color: #DECDB3;
    color: #AC6006;
}

.header_cate_item.active {
    background-color: #DECDB3;
    color: #AC6006;
}

.header_cate_item.active .header_sub_cate_items {
    display: block;
}

.header_cate_item.active .cate_link {
    color: #AC6006;
}

.header_cate_item .cate_link {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    cursor: pointer;
    text-align: center;
    color: #333;
}

.header_cate_item .cate_link:hover {
    color: #AC6006;
}

.header_sub_cate_body {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.header_sub_cate_item {
    width: 120px;
    height: 130px;
    text-align: center;
    margin: 10px;
    background-color: #fff;
    border: 1px solid #DECDB3;
    border-radius: 5px;
    overflow: hidden;
}

.header_sub_cate_item:hover {
    border: 1px solid #AC6006;
    color: #AC6006;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.header_sub_cate_pic {
    display: flex;
}

.header_sub_cate_item img {
    width: 120px;
    height: 90px;
    display: block;
}

.header_sub_cate_tit {
    padding: 5px;
    width: 100%;
    height: 40px;
    line-height: 18px;
    overflow: hidden;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
header_search
*/
.header_pc_right {
    width: 250px;
}


.header_wap_search {
    margin: 10px 0;
}

/*
change_lang
*/
.change_lang {
    display: flex;
}

.change_lang .item {
    font-size: 12px;
    margin-right: 20px;
    cursor: pointer;
}

.change_lang .item.active {
    color: #AC6006;
}

.change_lang .item:hover {
    color: #AC6006;
}

.header_pc_right .change_lang {
    justify-content: flex-end;
    margin-bottom: 10px;
    padding-top: 5px;
}

.wap_footer_lang .change_lang {
    width: 100%;

}

.wap_footer_lang .change_lang .item {
    font-size: 14px;
    flex: 1;
    text-align: center;
}

/*
search_wrapper
*/
.search_wrapper {
    position: relative;
}

.search_wrapper .search_body {
    display: flex;
    width: 100%;
    height: 32px;
    background-color: #EBE6E4;
    padding: 5px 5px 5px 10px;
    color: #898989;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;

    border: 1px solid #ccc;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);

}

.search_wrapper .search_input {
    border: 0;
    background-color: #EBE6E4;
    width: 100%;
}

.search_wrapper .search_input:focus {
    border: 0;
    outline: none;
}

.search_wrapper .search_btn {
    border: 0;
    background-color: #EBE6E4;
    color: #898989;
    width: 50px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.header_pc_right .search_body {
    cursor: pointer;
}

@media (max-width: 1500px) {
    .header_nav {
        margin: 0;
    }

    .header_pc_right {
        padding-right: 15px;
    }
}


@media (max-width: 1300px) {
    .header_pc_right {
        width: 220px;
    }
}


@media (max-width: 1100px) {
    .header_pc_right {
        width: 180px;
    }
}


.search_dropdown {
    width: 250px;
    min-height: 100px;
    position: absolute;
    top: 35px;
    right: 0;
    background-color: #EBE6E4;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    display: none;
}

.search_dropdown.active {
    display: block;
}

.hot_search_list {
    display: block;
    color: #666;
}

.hot_search_list .tit {
    font-weight: bold;
    padding: 3px 10px;
    margin: 5px 0;
    border-bottom: 1px dashed #ccc;
}

.hot_search_list .item {
    display: block;
    padding: 3px 10px;
    margin-bottom: 5px;
    cursor: pointer;
}

.hot_search_list .item:hover {
    background-color: #DECDB3;
    color: #AC6006;
}


#header_wap_search .hot_search_list .tit {
    margin: 15px 0 10px;
}

#header_wap_search .hot_search_list .item {
    display: inline-block;
}

/*
header_wap
*/
.header_wap {
    display: none;
}

.header_wap_topbar {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    background-color: #EBE6E4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ccc;
}

.header_wap_sp {
    height: 44px;
}

.header_wap .header_logo {
    width: 200px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_wap .header_logo img {
    width: auto;
    height: 34px;
}

.header_wap .header_wap_btn {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_wap .header_wap_btn .remixicon {
    font-size: 20px;
}

/**
header_wap_menu
 */
.header_wap_menu .items {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 20px 15px;
}

.header_wap_menu .item .item {
    padding-left: 20px;
}

.header_wap_menu .link {
    display: block;
    padding: 5px;
    margin-bottom: 5px;
    border-bottom: 1px dotted #ccc;
}

.header_wap_menu .item.active {
    border-radius: 4px;
    background-color: #BA9F74;
    color: #fff;
}

.header_wap_menu .item.active .link {
    color: #fff;
}


@media (max-width: 992px) {
    .header_pc {
        display: none;
    }

    .header_pc_sp {
        display: none;
    }

    .header_wap {
        display: block;
    }
}

/*
wap_tabbar
*/
.wap_tabbar {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    height: 50px;
    overflow: hidden;
    background-color: #EBE6E4;
    border-top: 1px solid #ddd;
    display: none;
}

.wap_tabbar_sp {
    height: 50px;
    display: none;
}

.wap_tabbar .items {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wap_tabbar .item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;

    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    user-select: none;
    position: relative;
    color: #666;
    font-size: 16px;
    text-align: center;
}

.wap_tabbar .item .pic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.wap_tabbar .item .pic .remixicon {
    font-size: 20px;
}

.wap_tabbar .item .txt {
    font-size: 13px;
}

.wap_tabbar .item.active {
    color: #FF4949;
    font-weight: bold;
}


@media (max-width: 992px) {
    .wap_tabbar,
    .wap_tabbar_sp {
        display: block;
    }
}

/*
footer
*/
.footer {
    padding: 20px 15px;
    background-color: #EBE6E4;
    border-top: 1px solid #e5e5e5;
    width: 100%;
}

.footer_body {
    display: flex;
    text-align: center;
    color: #666;
}

/*
footer_about
*/
.footer_about {
    width: 20%;
    padding: 0 20px;
}

.footer_about .logo {
    max-width: 140px;
    border-radius: 5px;
}

.footer_about .tit {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.footer_about .txt {
    text-align: left;
    text-indent: 2em;
    font-size: 14px;
    line-height: 1.8;
    word-wrap: break-word;
}

/*
footer_nav
*/
.footer_nav {
    display: flex;
    flex: 1;
    padding: 0 20px;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

.footer_nav .dl {
    flex: 1;
    padding: 0 20px;
}

.footer_nav .dt {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.footer_nav .dd .item {
    display: block;
    text-align: left;
    margin-bottom: 10px;
}

.footer_nav .link {
    padding: 5px 20px;

    transition: all .3s;
    -webkit-transition: all .3s;
    position: relative;
}

.footer_nav .link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #AC8241;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.footer_nav .link:hover {
    color: #AC8241;
}

.footer_nav .link:hover::before {
    width: 100%;
    left: 0;
}

/*
footer_qrcode
*/
.footer_contact {
    width: 25%;
}

.footer_contact .dt {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.footer_contact .txt {
    display: block;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
    word-wrap: break-word;
}

/*
footer_qrcode
*/
.footer_qrcode {
    display: flex;
    justify-content: flex-end;
    width: 300px;
}

.footer_qrcode .dl {
    margin: 10px;
    text-align: center;
}

.footer_qrcode img {
    max-width: 120px;
}

@media (max-width: 1400px) {
    .footer_nav {
        display: block;
    }
}


@media (max-width: 1200px) {
    .footer_nav {
        display: none;
    }

    .footer_about,
    .footer_contact,
    .footer_qrcode {
        width: 33%;
        padding: 20px;
    }

}

@media (max-width: 992px) {
    .footer_body {
        flex-wrap: wrap;
    }

    .footer_about {
        width: 100%;
        padding: 20px;
    }

    .footer_contact,
    .footer_qrcode {
        width: 50%;
        padding: 20px;
    }

    .footer_qrcode {
        justify-content: center;
    }
}


@media (max-width: 750px) {
    .footer_body {
        display: block;
    }

    .footer_nav {
        display: none;
    }

    .footer_about,
    .footer_contact,
    .footer_qrcode {
        width: 100%;
        padding: 20px 0;

    }
}

/**
footer_copyright
 */
.footer_copyright {
    text-align: center;
}

.footer_copyright .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_copyright .inner {
    margin: 10px;
}

@media (max-width: 992px) {
    .footer_copyright .wrapper {
        display: block;
    }
}

/*
section_title
*/
.section_title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.section_title .dl {
    width: 100%;
    max-width: 400px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_title .dt {
    font-size: 26px;
    margin: 0 15px;
}

.section_title .sp {
    flex: 1;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #ccc;
    line-height: 1px;
    font-size: 0;
}


@media (max-width: 992px) {
    .section_title {
        font-size: 20px;
        padding: 0 20px;
        margin-bottom: 20px;
    }
}

.section_more {
    text-align: center;
    font-size: 20px;
    padding: 20px;
}

/*
section_title2
*/
.section_title2 {
    min-height: 60px;
    display: flex;
    align-items: center;
}

.section_title2 .dt {
    font-size: 18px;
    padding-left: 14px;
    position: relative;
}

.section_title2 .dt:before {
    content: " ";
    background-color: #AC8241;
    border-radius: 10px;
    width: 5px;
    height: 16px;
    position: absolute;
    top: 3px;
    left: 0;
}

/*
section_nav
*/
.section_nav {
    font-size: 16px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.section_nav .link {
    padding: 5px 10px;
    margin: 5px;
    display: block;
}

.section_nav .link.active {
    color: #fff;
    background-color: #777;
    border-radius: 2px;
}

/*
layout_sidebar
*/
.layout_sidebar {
    position: relative;
    display: flex;
    margin-bottom: 50px;
}

.layout_sidebar .sidebar {
    width: 250px;
    min-width: 250px;
    margin-right: 30px;
    margin-bottom: 40px;
}

.layout_sidebar .main {
    flex: 1;
}

@media (max-width: 1400px) {
    .layout_sidebar .sidebar {
        width: 230px;
        min-width: 230px;
        margin-right: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .layout_sidebar {
        display: block;
    }

    .layout_sidebar .sidebar {
        display: none;
    }
}


/*
sidebar_nav
*/
.sidebar_nav .dl {
    margin-bottom: 10px;
}

.sidebar_nav .dt {
    position: relative;
}

.sidebar_nav .dd {
    display: none;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}

.sidebar_nav .dropdown:after {
    font-family: 'remixicon' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 18px;
    content: "\ea4d";
    color: #BCA065;
    transition: transform .3s ease-in-out;
}

.sidebar_nav .active .dt:after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    color: #fff;
}

.sidebar_nav .active .dd {
    display: block;
}

.sidebar_nav .link {
    width: 100%;
    display: block;
    border-radius: 4px;
    margin: 5px 0;
    padding: 5px 10px;
}

.sidebar_nav .dd .link {
    padding-left: 30px;
}

.sidebar_nav .link:hover,
.sidebar_nav .link.selected {
    background-color: #AC8241;
    color: #fff;
}

/*
sidebar_nav1 一级
*/
.sidebar_nav1 {
    background-color: #fff;
}

.sidebar_nav1 .item {
    position: relative;
    border-bottom: 1px solid #ddd;
}

.sidebar_nav1 .item::before {
    content: " ";
    background-color: #AC8241;
    width: 4px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -8px;
    display: none;
}

.sidebar_nav1 .item .link {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 15px;
}

.sidebar_nav1 .item .link:hover {
    background-color: #AC8241;
    color: #fff;
}

.sidebar_nav1 .item.active {
    color: #AC8241;
    font-weight: bold;
}

.sidebar_nav1 .item.active .link {
    color: #AC8241;
}

.sidebar_nav1 .item.active .link:hover {
    background-color: #AC8241;
    color: #fff;
}

.sidebar_nav1 .item.active::before {
    display: block;
}

.sidebar_nav1 .item2 {
    padding-left: 20px;
}


/*
wap_view_nav
*/
.wap_view_nav {
    width: 100%;
    height: 50px;
    display: none;
}

.wap_view_nav .items {
    white-space: nowrap;
    width: 100%;
    height: 50px;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wap_view_nav .item {
    display: inline-block;
}

.wap_view_nav .item .link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    height: 50px;
    padding: 0 20px;
    user-select: none;
}

.wap_view_nav .item .active {
    background-color: #fff;
    color: #AC8241;
    font-weight: bold;
}

@media (max-width: 992px) {
    .wap_view_nav {
        display: block;
    }
}


/**
hot_product_list
*/
.hot_product_list {
    display: block;
}

.hot_product_list .item {
    margin-bottom: 20px;
}

.hot_product_list .pic {
    position: relative;
    overflow: hidden;
    /*
        display: flex;
        justify-content: center;
        align-items: center;
    */
}

.hot_product_list .pic img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.hot_product_list .dt {
    margin: 10px;
    font-size: 15px;
    text-align: center;
    /*
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        */
}

.hot_product_list .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;

    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
    opacity: 0;
}

.hot_product_list .mask a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot_product_list .pic:hover .mask {
    opacity: 1;
}


/**
hot_case_list
*/
.hot_case_list {
    display: block;
}

.hot_case_list .items {
    display: flex;
    flex-wrap: wrap;
}

.hot_case_list .item {
    width: 33.333%;
}

.hot_case_list .dl {
    margin: 20px;
    padding-bottom: 10px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;

}

.hot_case_list .pic {
    position: relative;
    overflow: hidden;

    width: 100%;
    padding-bottom: 60%;

    border-radius: 5px;
}

.hot_case_list .pic_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot_case_list .dl:hover .pic img {
    transform: scale(1.1);
}

.hot_case_list .dl .pic img {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    transition: transform .5s ease-in-out;
}

.hot_case_list .tit {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 6px 10px;
    font-size: 16px;
    text-align: center;
    display: none;
    width: 100%;
    color: #fff;
    background-color: rgba(171, 127, 67, 0.8);
}

.hot_case_list .dl:hover .tit {
    display: block;
}

@media (max-width: 992px) {
    .hot_case_list .dl {
        margin: 10px;
    }

    .hot_case_list .item {
        width: 50%;
    }
    .hot_case_list .tit {
        position: relative;
        display: block;
        background-color: transparent;
        color: #AC8241;
    }
}


/*
 * product_list
 * */
.product_list .items {
    display: flex;
    flex-wrap: wrap;
}

.product_list .item {
    width: 33.333%;
}

.product_list2 .item {
    width: 50%;
}

.product_list3 .item {
    width: 33.333%;
}

.product_list4 .item {
    width: 25%;
}

.product_list5 .item {
    width: 20%;
}

.product_list .dl {
    margin: 20px;
    padding-bottom: 10px;
}

.product_list .pic {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.product_list .dl:hover .pic img {
    transform: scale(1.1);
}

.product_list .pic img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    overflow: hidden;
    transition: transform .5s ease-in-out;
}

.product_list .pic .ico_tag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.product_list .pic .new_tag,
.product_list .pic .hot_tag {
    color: #fff;
    padding: 3px 5px;
    margin: 5px 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;

    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.product_list .pic .new_tag {
    background-color: rgba(66, 161, 255, 0.8);
}

.product_list .pic .hot_tag {
    background-color: rgba(245, 108, 108, 0.8);
}

.product_list .tit {
    margin: 10px 0;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 992px) {
    .product_list {
        margin-left: -5px;
        margin-right: -5px;
    }

    .product_list .dl {
        margin: 10px;
    }

    .product_list .item {
        width: 50%;
    }
}

@media (max-width: 400px) {
    .product_list_wap_2 .item {
        width: 50%;
    }
}

/*
rel_product_list4
*/
.rel_product_list4 {
    margin: 10px;
}

.rel_product_list4 .item {
    width: 25%;
}

@media (max-width: 1200px) {
    .rel_product_list4 .item {
        width: 33.33%;
    }
}

@media (max-width: 768px) {
    .rel_product_list4 .item {
        width: 50%;
    }
}

/*
rel_product_list5
*/
.rel_product_list5 {
    margin: 10px;
}

.rel_product_list5 .item {
    width: 20%;
}

@media (max-width: 1200px) {
    .rel_product_list5 .item {
        width: 25%;
    }
}

@media (max-width: 992px) {
    .rel_product_list5 .item {
        width: 33.33%;
    }
}

@media (max-width: 768px) {
    .rel_product_list5 .item {
        width: 50%;
    }
}

/*
rel_product_list6
*/
.rel_product_list6 {
    margin: 10px;
}

.rel_product_list6 .item {
    width: 16.66%;
}

@media (max-width: 1400px) {
    .rel_product_list6 .item {
        width: 20%;
    }
}

@media (max-width: 1200px) {
    .rel_product_list6 .item {
        width: 25%;
    }
}

@media (max-width: 992px) {
    .rel_product_list6 .item {
        width: 33.33%;
    }
}

@media (max-width: 768px) {
    .rel_product_list6 .item {
        width: 50%;
    }
}
