@charset "utf-8";


/*
 * drawer
 * */
.drawer {
    overflow: hidden;
}

.drawer .drawer_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    cursor: pointer;
    display: none;
}

.drawer .drawer_layer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    z-index: 1100;
    background-color: #fff;
    transition: transform .5s;
    -webkit-transition: transform .5s;
    transform: translateX(150%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.drawer .drawer_header {
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid #ddd;
}

.drawer .drawer_title {
    flex: 1;
    font-size: 16px;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
}

.drawer .drawer_close {
    width: 40px;
    color: #999;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.drawer .drawer_body {
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

.drawer .drawer_body2 {
    padding: 15px;
}

.drawer .drawer_footer {
    height: 40px;
    border-top: 1px solid #ddd;

    display: flex;
    align-items: center;
    justify-content: center;
}


.drawer.active .drawer_overlay {
    display: block;
}

.drawer.active .drawer_layer {
    transform: translateX(0);
}

/*
header
*/
.header_pc {
    background-color: #fff;
    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: 1380px;
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}

.header_pc .header_logo {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_pc .header_logo img {
    max-width: 200px;
    max-height: 70px;
}

.header_body {
    flex: 1;
    height: 80px;
    display: flex;
    flex-direction: column;
}

/*
header_top
*/
.header_top {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
}

.header_top .cmd_flex i {
    font-size: 18px;
}

/*
header_nav
*/
.header_nav {
    position: relative;
    z-index: 800;
    display: flex;
}

.header_nav .items {
    display: flex;
    flex: 1;
}

.header_nav .items .item {
    flex: 1;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    height: 50px;
    min-width: 80px;
    text-align: center;
}

.header_nav .items .item .link {
    display: block;
    height: 50px;
    line-height: 50px;
    transition: all .3s;
    -webkit-transition: all .3s;
}


.header_nav .dropdown_menu {
    display: none;
    position: absolute;
    z-index: 800;
    top: 40px;
    left: 0;

    /*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: block;
    white-space: nowrap;
    padding-right: 30px;
}

.header_nav .dropdown_menu .dropdown_link:hover {
    transform: translateX(15px);
}

.header_nav .dropdown_menu .dropdown_link .front {
    transition: all .3s;
    -webkit-transition: all .3s;
    margin-right: 3px;
    opacity: 0;
}

.header_nav .dropdown_menu .dropdown_link:hover .front {
    opacity: 1;
}

.header_nav .dropdown_item {
    position: relative;
    border-radius: 4px;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.header_nav .dropdown_item2 {
    padding-left: 20px;
}

.header_nav .dropdown_item.active {
    background-color: #BA9F74;
    color: #fff;
}

.header_nav .dropdown_item.active .dropdown_link {
    color: #fff;
}

.header_nav .dropdown:hover .dropdown_menu {
    display: block;
}

.header_nav .dropdown_link {
    display: block;
    margin: 3px 0;
    padding: 5px 10px;
    border-radius: 4px;
    width: 100%;
}

/*.header_nav .dropdown_sub_menu {*/
/*    display: none;*/
/*    position: absolute;*/
/*    z-index: 800;*/
/*    top: 0;*/
/*    left: 100%;*/
/*    width: 200px;*/
/*    overflow: hidden;*/
/*    background-color: #fff;*/
/*    border: 1px solid #ccc;*/
/*    border-radius: 4px;*/
/*    font-size: 14px;*/
/*    font-weight: normal;*/
/*    padding: 5px;*/
/*}*/

/*.header_nav .dropdown_item:hover .dropdown_sub_menu {*/
/*    display: block;*/
/*}*/


/*
header_search
*/
.header_search {
    display: flex;
    justify-content: center;
    width: 150px;
    margin: 10px 10px 0 30px;
}

.search_wrapper {
    width: 100%;
}

.search_wrapper .search_body {
    background-color: #fcfcfc;
    border: 1px solid #ced4da;
    width: 100%;
    display: flex;
    border-radius: 4px;
}

.search_wrapper .search_input {
    border: 0;
    min-height: 30px;
    padding: 5px;
    flex: 1;
    background-color: #fcfcfc;
    color: #999;
}

.search_wrapper .search_input:focus {
    border: 0;
}

.search_wrapper .search_btn {
    border: 0;
    background-color: #e9ecef;
    color: #495057;
    font-size: 14px;
    cursor: pointer;
    border-left: 1px solid #ced4da;

    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.search_hots {
    color: #999;
    width: 100%;
    font-size: 13px;
    overflow: hidden;
    margin-top: 5px;
    white-space: nowrap;
    text-align: left;
}

@media (max-width: 992px) {
    .search_hots {
        white-space: normal;
    }
}

.search_hots .search_hots_link {
    color: #666;
    display: inline-block;
    padding: 5px;
}

.search_hots .search_hots_link:hover {
    color: #dc3545;
}

/*
pc_header_search_layer
*/
.pc_header_search_layer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 79px;
    background-color: #fff;
    text-align: center;
    display: none;
}

.pc_header_search_layer .search_wrapper {
    max-width: 900px;
}

.pc_header_search_layer .header_search_body {
    width: 1000px;
    margin: 10px auto;
    display: flex;
}

.pc_header_search_layer .close {
    margin-left: 50px;
    width: 50px;
    font-size: 40px;
    opacity: 0.6;
    color: #999;
    cursor: pointer;
    text-align: center;
}


/*
header_wap
*/
.header_wap {
    display: none;
    background-color: #fff;
}

.header_wap_topbar {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ccc;
}

.header_wap_sp {
    height: 44px;
}

.header_wap .header_logo img {
    width: auto;
    height: 34px;
    margin-top: 5px;
    margin-left: 10px;
}

.header_wap .header_wap_cmds {
    display: flex;
}

.header_wap .header_wap_btn {
    width: 44px;
}

.header_wap .header_wap_btn .remixicon {
    font-size: 20px;
}


/**
header_wap_nav
 */
.header_wap_nav .items {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 15px;
}

.header_wap_nav .item .item {
    padding-left: 20px;
}

.header_wap_nav .item .item2 {
    padding-left: 40px;
}

.header_wap_nav .link {
    display: block;
    padding: 5px 0;
    margin-bottom: 5px;
    border-bottom: 1px dotted #ccc;
}

.header_wap_nav .item.active {
    border-radius: 4px;
    background-color: #BA9F74;
    color: #fff;
}

.header_wap_nav .item.active .link {
    color: #fff;
}

.wap_footer_lang .cmd_flex {
    width: 50%;
    text-align: center;
    display: inline-block;
}

.wap_footer_lang .cmd_flex.active {
    color: #dc3545;
}

@media (max-width: 992px) {
    .header_pc {
        display: none;
    }

    .header_pc_sp {
        display: none;
    }

    .header_wap {
        display: block;
    }
}

/*
footer
*/
.footer {
    padding: 20px 15px;
    background-color: #EDEDE5;
    width: 100%;
    min-height: 100px;
    border-top: 1px solid #e5e5e5;
}

.footer_body {
    display: flex;
    text-align: center;
    color: #666;
}


.footer_info {
    width: 30%;
    padding: 20px;
    text-align: left;
}

.footer_info .txt {
    margin: 0 auto;
    color: #666;
}

.footer_logo img {
    max-width: 200px;
    margin-bottom: 10px;
}


.footer_nav {
    display: flex;
    width: 55%;
}

.footer_nav dl {
    width: 40%;
    padding: 0 20px;
}

.footer_nav dl.product_cat {
    width: 60%;
}


.footer_nav dt {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.footer_nav .link {
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

.footer_nav .link {
    -webkit-transition: transform .5s ease;
    transition: transform .5s ease;
}

.footer_nav .link:hover {
    transform: translateX(15px);
}

.footer_nav .link .front {
    transition: all .3s;
    -webkit-transition: all .3s;
    margin-right: 3px;
    opacity: 0;
}

.footer_nav .link:hover .front {
    opacity: 1;
}


.footer_contact {
    width: 44%;
    text-align: left;
    line-height: 1.7;
}

.footer_contact .pic {
    margin: 10px;
}

.footer_contact .pic img {
    max-width: 100px;
}


.footer_menu_wap_sp {
    display: none;
    height: 40px;
}

.footer_menu_wap {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    height: 40px;
    display: none;
    background-color: #333;
    color: #fff;
    width: 100%;
}

.footer_menu_wap .items {
    display: flex;
    text-align: center;
}

.footer_menu_wap .item {
    width: 50%;
    height: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_menu_wap .item:first-child {
    border-right: 1px dashed #fff;
}

.footer_menu_wap .item i {
    margin-right: 5px;
}

@media (max-width: 992px) {
    .footer_nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer_logo {
        text-align: center;
    }

    .footer_body {
        display: block;
    }

    .footer_nav {
        display: none;
    }

    .footer_info {
        width: 100%;
        padding: 20px 0;
    }

    .footer_contact {
        width: 100%;
        padding: 0;
    }

    .footer_qrcode img {
        max-width: 100%;
    }

    .footer_menu_wap_sp,
    .footer_menu_wap {
        display: block;
    }
}


/**
copyright
 */
.copyright {
    text-align: center;
    padding: 20px;
    width: 100%;
    background-color: #fff;
}

/**
gotop
 */
.gotop {
    position: fixed;
    right: 10px;
    bottom: 10%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    opacity: 0.7;
    cursor: pointer;
}

.gotop:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .gotop {
        display: none;
    }
}

/*
 * pagination2
 * */
.pagination2 {
    text-align: center;
    margin-top: 20px;
}

.pagination2 a,
.pagination2 span {
    margin: 3px;
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
    overflow: hidden;
    display: inline-block;
    font-size: 13px;
    color: #6c6c6c;
    text-align: center;
}

.pagination2 a {
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

.pagination2 a:hover {
    color: #ea471c;
}

.pagination2 .selected {
    color: #fff;
    background-color: #658DB3;
}

.pagination2 .disabled {
    color: #999;
    border-color: #ddd;
    background-color: #ddd;
    cursor: not-allowed;

}

/*
section_title
*/
.section_title {
    height: 40px;
    font-size: 24px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}


.section_title .dl {
    width: 100%;
    max-width: 600px;
    height: 20px;
    position: relative;
    border-bottom: 1px solid #ccc;
}


.section_title .dt {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_title .dd {
    background-color: #fff;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .section_title {
        font-size: 18px;
        padding: 0 20px;
        margin-bottom: 20px;
    }
}


.section_box {
    margin: 50px 0;
    display: block;
}

/*
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;
}

/*
main
*/
.jumbotron {
    background-color: #fff;
    padding: 32px 16px;
}

/*
breadcrumb
*/
.breadcrumb_box {
    width: 100%;
    min-height: 40px;
    line-height: 40px;
    background-color: #f5f5f5;
}

.breadcrumb .items {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb .breadcrumb_item {
    display: inline-block;
    color: #6c757d;
    padding-right: 8px;
}

.breadcrumb .breadcrumb_item::before {
    display: inline-block;
    padding-right: 8px;
    content: "/";
}

.breadcrumb .breadcrumb_item:first-child::before {
    display: none;
}


/*
alert
*/
.alert {
    position: relative;
    padding: 12px 20px;
    margin-bottom: 10px;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    color: #856404;
    background-color: #fff3cd;
}


/*
layout_sidebar
*/
.layout_sidebar {
    position: relative;
    display: flex;
}

.layout_sidebar .sidebar {
    width: 245px;
    margin-right: 25px;
    margin-bottom: 50px;
}


.layout_sidebar .sidebar .card {
    margin-bottom: 10px;
}

.layout_sidebar .main {
    flex: 1;
}

@media (max-width: 992px) {
    .layout_sidebar {
        display: block;
    }

    .layout_sidebar .sidebar {
        display: none;
    }
}


/*
card
*/
.card {
    background-color: #fff;
    /*border: 1px solid #ddd;*/
    border-radius: 4px;
    /*box-shadow: 0 2px 3px rgba(221, 221, 221, 0.6);*/
}

.card_title {
    min-height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 0 15px;
}

.card_title dt {
    font-size: 15px;
    position: relative;
    padding-left: 12px;
}

.card_title dt:before {
    content: " ";
    background-color: #BA9F74;
    border-radius: 10px;
    width: 5px;
    height: 16px;
    position: absolute;
    top: 3px;
    left: 0;
}


.card_body {
    padding: 15px;
}

@media (max-width: 768px) {
    .card_body {
        padding: 10px;
    }
}


/*
pics_tiled
*/
.pics_tiled_m20 img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
}


/*
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: #BA9F74;
    color: #fff;
}

/*
play_icon
*/
.play_icon {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    z-index: 100;
    border-radius: 50%;
    line-height: 0;
    background-color: rgba(100, 100, 100, 0.4);
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #fff;
}

.play_icon::before {
    content: " ";
    width: 32px;
    height: 32px;
    background: url("/res/site/img/play_icon.png") no-repeat center center;
    background-size: 100% 100%;
    display: inline-block;
    margin-left: 4px;
}

.video_click {
    cursor: pointer;
}

/**
video_item
 */
.video_item {
    width: 100%;
    position: relative;
}

.video_item .pic img {
    max-width: 100%;
}

.video_item .bg {
    width: 100%;
    height: 100%;
    background-color: #111;
    display: none;
}

.video_item .con {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_item.active .pic {
    display: none;
}

.video_item.active .bg {
    display: block;
}


/**
pics_list_up
 */

.pics_list_up .dl {
    position: relative;
    overflow: hidden;
}

.pics_list_up .dt {
    margin: 10px 0;
    font-size: 15px;
}

.pics_list_up .pic {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pics_list_up .pic img {
    display: block;
}

.pics_list_up .item .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);

    -webkit-transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    transform: translateY(200%);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 16px;
}

.pics_list_up .item .img_zoom_mask {
    cursor: pointer;
}

.pics_list_up .mask a {
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pics_list_up .item:hover .mask {
    transform: translateY(0);
}

.img_zoom {
    cursor: pointer;
}


/**
pics_list_tit
 */
.pics_list_tit .dl {
    position: relative;
    overflow: hidden;
}

.pics_list_tit .pic {
    position: relative;
}

.pics_list_tit .dt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    background-color: rgba(100, 100, 100, 0.3);
    text-shadow: 2px 2px 2px rgba(150, 150, 150, 0.8);
}

/**
pics_list_txt
 */
.pics_list_txt .dt {
    margin: 10px 0;
    font-size: 15px;
}

.pics_list_txt .txt {
    color: #999;
}


/**
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;
    */
    border: 1px solid #ddd;
}

.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;
}


/*
 * product_list
 * */
.product_list .items {
    display: flex;
    flex-wrap: wrap;
}

.product_list .item {
    width: 33.333%;
}


.product_list2 .item {
    width: 50%;
}


.product_list4 .item {
    width: 25%;
}


.product_list .pic {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
}


.product_list .pic img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    transition: transform ease 0.3s;
}

.product_list .pic a:hover img {
    transform: scale(1.05);
}

.product_list .dl {
    margin: 20px 10px;
}

.product_list .dt {
    margin: 10px 0;
    font-size: 15px;
    text-align: center;
}

.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;
}

.product_list .mask a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_list .pic:hover .mask {
    opacity: 1;
}

@media (max-width: 992px) {
    .product_list .item {
        width: 50%;
    }
}



