﻿.main {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #EAEAEA;
    position: relative;
    zoom: 1;
}
.productlist_cover_image {
    width: 100%;
    height: auto;
}
.productlist_wrapper {
    padding: 24px 48px;
    width: 100%;
    display: flex;
}
.productlist_menu {
    width: 16%;
}
.productlist_menu_wrapper {
    font-size: 14px;
    padding: 12px 24px;
}
.productlist_menu_title, .productlist_sub_menu_title {
    padding: 12;
    margin-bottom: 20px;
    cursor: pointer;
}
.productlist_menu_title {
    color: #000000;
    padding-bottom: 12px;
    border-bottom: 1px solid #979797;
    display: inline-block;
}
.productlist_sub_menu_title {
    color: #414245;
    white-space: nowrap;
}
.productlist_sub_menu_title:hover {
    color: #BF0017;
}
.productlist_list {
    width: 84%;
    display: flex;
    flex-wrap: wrap;
}
.product_card {
    width: 28%;
    height: 37.52vw;
    padding: 12px;
    background-color: #EAEAEA;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.product_card_images {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #ffffff;
    padding: 60px 12px;
    height: 100%;
    overflow: hidden;
}
.product_card_image_wrapper {
    padding: 48px;
    height: auto;
}
.product_card_image {
    height: 100%;
    width: 100%;
}
.product_card_icon {
    position: absolute;
    top: 10px;
    right: 10px;
}
.product_card_detail {
    text-align: center;
    padding: 24px 0;
}
.product_card_detail_name {
    color: #414245;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.product_card_detail_function {
    color: #414245;
    font-size: 10px;
}
.product_card_detail_price {
    display: inline-block;
}
.product_card_detail_price_wrapper {
    margin-top: 16px;
    height: 30px;
}
.product_card:hover .product_card_detail_view_more {
    display: inline-block;
}
.product_card:hover .product_card_detail_price {
/*    display: none;*/
}
.product_card_detail_view_more {
    background-color: #BF0017;
    color: #fff;
    display: none;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    padding: 2px 15px;
}

/* 响应式开始 */
@media (max-width: 767px) {
    .productlist_cover_image {
        margin-top: 60px;
    }
    .productlist_wrapper {
        padding: 0;
        display: block;
    }
    .productlist_menu {
        display: none;
    }
    .productlist_list {
        padding: 12px 6px;
    }
    .productlist_select_phone {
        margin: 12px;
        color: #000;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .productlist_select_icon {
        width: 14px;
    }
    .product_card {
        width: 45%;
        padding: 0 6px;
        height: auto;
    }
    .productlist_list {
        width: 100%;
    }
    .product_card_images {
        background-color: #ffffff;
        padding: 12px 0;
        width: 100%;
        height: 100%;
    }
    .product_card_detail {
        padding: 12px;
    }
    .product_card_image_wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 12px;
    }
    .product_card_image {
        height: auto;
    }
    .product_card_icon {
        top: 10px;
        right: 10px;
    }
    .productlist_menu_wrapper_phone {
        width: 0;
        height: 100%;
        background-color: rgba(225, 225, 225, 0.8);
        overflow-y: auto;
        position: fixed;
        top: 60px;
        left: 0;
        z-index: 2;
        transition-duration: 0.3s;
    }
    .productlist_menu_items_phone {
        width: 150px;
        background-color: rgba(255, 255, 255, 1);
    }
}

@media (min-width: 768px) {
    .productlist_menu_wrapper_phone, .productlist_select_phone {
        display: none;
    }
}