@charset "utf-8";

.main {
    background-color: #fff;
    padding: 32px 0;
}

.pc-only-show {
    display: block !important;
}

.wap-only-show {
    display: none !important;
}

@media (max-width: 992px) {
    .pc-only-show {
        display: none !important;
    }

    .wap-only-show {
        display: block !important;
    }
}


/*
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: 1400px;
    display: flex;
    flex-wrap: wrap;
}

.header_pc .header_logo {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_pc .header_logo img {
    max-width: 200px;
}

.header_body {
    flex: 1;
    height: 80px;
    display: flex;
    justify-content: space-between;
}


/*
header_nav
*/
.header_nav {
    position: relative;
    z-index: 800;
    display: flex;
    padding-top: 30px;
    flex: 1;
}

.header_nav .items {
    display: flex;
    flex: 1;
}

.header_nav .items .item {
    flex: 1;
    display: inline-block;
    font-size: 15px;
    position: relative;
    height: 50px;
    min-width: 100px;
    font-weight: bold;
    text-align: center;
}

.header_nav .items .item .link {
    display: block;
    height: 50px;
    line-height: 50px;
    transition: all .3s;
    -webkit-transition: all .3s;
    position: relative;
}

.header_nav .items .item .link::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #30975d;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.header_nav .items .item .link:hover {
    color: #30975d;
}

.header_nav .items .item .link:hover::before {
    width: 100%;
}


.header_nav .dropdown_menu {
    display: none;
    position: absolute;
    z-index: 800;
    top: 45px;
    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: #30975d;
    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: #30975d;
    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;
    align-items: center;
}

.header_wap_search {
    margin: 10px 0;
}

.search_wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    min-width: 200px;
}

.search_wrapper .search_body {
    background-color: #fcfcfc;
    border: 1px solid #ced4da;
    width: 100%;
    display: flex;
    border-radius: 4px;
}

.search_wrapper .search_input {
    border: 0;
    height: 30px;
    padding: 5px;
    width: 100%;
    background-color: #fcfcfc;
}

.search_wrapper .search_input:focus {
    border: 0;
}

.search_wrapper .search_btn {
    border: 0;
    background-color: #e9ecef;
    color: #495057;
    width: 120px;
    font-size: 14px;
    cursor: pointer;
    border-left: 1px solid #ced4da;
}

/*
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_menu
 */
.header_wap_menu .wap_menu_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4000;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
    cursor: pointer;
    display: none;
}

.header_wap_menu .wap_menu_layer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    z-index: 5100;
    background-color: #fff;
    transition: transform .5s;
    -webkit-transition: transform .5s;
    transform: translateX(150%);
    overflow: hidden;
}

.header_wap_menu .wap_menu_icon_close {
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 1200;
    color: #999;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.header_wap_menu.active .wap_menu_overlay {
    display: block;
}

.header_wap_menu.active .wap_menu_layer {
    transform: translateX(0);
}

.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 .item .item2 {
    padding-left: 40px;
}

.header_wap_menu .link {
    display: block;
    padding: 5px 0;
    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;
    }
}

/*
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;
}

.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 .link2{
    padding-left: 20px;
}

.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_qrcode {
    display: flex;
}

.footer_qrcode .dl {
    margin: 10px;
    text-align: center;
}

.footer_qrcode img {
    max-width: 150px;
}

@media (max-width: 992px) {
    .footer_nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .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%;
    }
}


/**
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: #e30016;
}

.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: 400px;
    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_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: #f8f8f8;
}

.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;
}


@media (max-width: 992px) {
    .breadcrumb {
        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;
    min-width: 245px;
    margin-right: 25px;
    margin-bottom: 50px;
}


.layout_sidebar .sidebar .card {
    margin-bottom: 10px;
}

.layout_sidebar .main {
    flex: 1;
    flex-grow: 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: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 0 15px;
}

.card_title dt {
    font-size: 16px;
    position: relative;
    padding-left: 12px;
}

.card_title dt:before {
    content: " ";
    background-color: #30975d;
    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: #30975d;
    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;
    border: 1px solid #fff;
}

.video_item .poster 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 .poster {
    display: none;
}

.video_item.active .bg {
    display: block;
}


.video_item2 .dl {
    width: 100%;
    position: relative;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}

.video_item2 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #111;
    display: none;
}

/**
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 .item {
    margin-bottom: 20px;
}

.hot_case_list .pic {
    position: relative;
    overflow: hidden;
    /*
        display: flex;
        justify-content: center;
        align-items: center;
    */
}

.hot_case_list .pic img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.hot_case_list .dt {
    margin: 10px;
    font-size: 15px;
    text-align: center;
    /*
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        */
}


/*
 * 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;
}

.product_list .pic img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.product_list .dl {
    margin: 20px 10px;
    /*border: 1px solid #eee;*/
}

.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%;
    }
}

@media (max-width: 400px) {
    .product_list .item {
        width: 100%;
    }

    .product_list_wap_2 .item {
        width: 50%;
    }
}
