﻿@charset "utf-8";
/* CSS Document */

img {
    border-style: none;
}
/*select, input, textarea {
    outline: 0;
}*/
/*----------框架----------*/
/*  
   huangyuting
   2022-05-26
*/
/*滚动条整体部分*/
.prod_imgSmall ul::-webkit-scrollbar,
.fancybox-lock::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #fff;
}
/*滚动条的轨道*/
.prod_imgSmall ul::-webkit-scrollbar-track,
.fancybox-lock::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px #e4eaf5;
    background-color: #fff;
}
/*滚动条的滑块按钮*/
.prod_imgSmall ul::-webkit-scrollbar-thumb,
.fancybox-lock::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #e4e6ea;
    box-shadow: inset 0 0 3px #e4e6ea;
}
/*滚动条的上下两端的按钮*/
.prod_imgSmall ul::-webkit-scrollbar-button,
.fancybox-lock::-webkit-scrollbar-button,
body::-webkit-scrollbar-button {
    height: 0px;
    background-color: #e4e6ea;
}

.prod_imgSmall ul,
.fancybox-lock,
body {
    /*三角箭头的颜色*/
    scrollbar-arrow-color: #e2e5e7;
    /*滚动条滑块按钮的颜色*/
    scrollbar-face-color: #e2e5e7;
    /*滚动条整体颜色*/
    scrollbar-highlight-color: #f6fafe;
    /*滚动条阴影*/
    scrollbar-shadow-color: #e4eaf5;
    /*滚动条轨道颜色*/
    scrollbar-track-color: #f6fafe;
}

body, input, select, textarea, table {
    /*font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;*/
    font-family: "PingFang SC", "WenQuanYi Micro Hei", "Hiragino Sans GB", "Heiti SC",Arial, sans-serif;
}

body {
    width: 100%;
    background-color: white;
}

    body.bac01 {
        background-color: white;
    }

input, select, option, textarea, button {
    outline: none !important;
}

    input:focus {
        outline: none !important;
    }

    textarea:focus {
        outline: none !important;
    }

    select:focus {
        outline: none !important;
    }

    option:focus {
        outline: none !important;
    }

    button:focus {
        outline: none !important;
    }

a {
    cursor: pointer;
}

.main_miw {
    min-width: 1300px;
}

.main_bg {
    width: 100%;
    min-width: 1300px;
}

.main_bgc {
    width: 1300px;
    margin: 0 auto;
}

.main_page {
    width: 100%;
    padding: 40px 0 60px 0;
    text-align: center;
}

.gotop {
    width: 54px;
    height: 54px;
    background: url(../images/ico_gotop1.png) center no-repeat;
    border: 1px solid #e0e2e4;
    background-color: white;
    position: fixed;
    right: 2%;
    bottom: 10%;
    z-index: 999;
    cursor: pointer;
    border-radius: 15px;
    display: none;
}

    .gotop:hover {
        background: url(../images/ico_gotop2.png) center no-repeat;
        border: 1px solid #c11920;
        background-color: #c11920;
    }
/***
    index
*/

.nav_bg {
    width: 100%;
    height: 140px;
    background-color: white;
}

.nav_fix {
    width: 100%;
    min-width: 1300px;
    height: 140px;
    background-color: white;
    border-bottom: 1px solid #f5f6f9;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
}

    .nav_fix .n_logo {
        display: block;
        float: left;
        width: 243px;
        height: 100px;
        background: url(../images/logo.png) center no-repeat;
        background-size: auto 100%;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        margin-left: 12px;
        margin-top: 20px;
    }

        .nav_fix .n_logo:hover {
            filter: alpha(opacity=70);
            -moz-opacity: 0.7;
            -webkit-opacity: 0.7;
            -khtml-opacity: 0.7;
            opacity: 0.7;
        }

.n_nav {
    width: 550px;
    height: 140px;
    float: left;
    margin-right: 15px;
    margin-left: 260px;
}

    .n_nav ul {
        width: 100%;
        text-align: right;
        padding-top: 50px;
    }

        .n_nav ul li {
            height: 90px;
            display: inline-block;
            *display: inline;
            *zoom: 1;
            position: relative;
            padding: 0 5px;
        }

            .n_nav ul li > a {
                display: inline-block;
                padding: 0 18px;
                border-radius: 15px;
                height: 35px;
                line-height: 35px;
                font-size: 16px;
                color: #171d2b;
                text-align: center;
                /*text-transform: uppercase;*/
                position: relative;
            }

            .n_nav ul li.n_li > a > span {
                display: inline-block;
                vertical-align: middle;
            }

            /*   .nav_fix .n_nav ul li.n_li .dl {
                    width: 7px;
                    height: 5px;
                    background: url(../images/ico_triangle3.png) center no-repeat;
                    margin-left: 8px;
                    -webkit-transition: all 0.3s ease 0s;
                    -moz-transition: all 0.3s ease 0s;
                    -o-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
                }

                .nav_fix .n_nav ul li.n_li:hover > a .dl,
                .nav_fix .n_nav ul li.n_li > a.act .dl {
                    background: url(../images/ico_triangle3_2.png) center no-repeat;
                }*/

            .n_nav ul li a:hover,
            .n_nav ul li a.act {
                color: white;
                background: -webkit-linear-gradient(to right, #c11920, #e60012);
                background: -o-linear-gradient(to right, #c11920, #e60012);
                background: -moz-linear-gradient(to right, #c11920, #e60012);
                background: linear-gradient(to right, #c11920, #e60012);
                background: #c11920\9;
            }
            /*.nav_fix .n_nav ul li > a i {
                    display: inline-block;
                    width: 0;
                    height: 4px;
                    border-radius: 6px;
                    background-color: #c11920;
                    position: absolute;
                    top: 90px;
                    left: 50%;
                    margin-left: -13px;
                    -webkit-transition: all 0.3s ease 0s;
                    -moz-transition: all 0.3s ease 0s;
                    -o-transition: all 0.3s ease 0s;
                    transition: all 0.3s ease 0s;
                }

                .nav_fix .n_nav ul li > a:hover i,
                .nav_fix .n_nav ul li > a.act i {
                    width: 26px;
                }*/

            .n_nav ul li .n_nav_droplist {
                position: absolute;
                top: 70px;
                left: 50%;
                -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
                background-color: white;
                border: 1px solid #e3e3e3;
                z-index: 9999;
                text-align: center;
                white-space: nowrap;
                -moz-box-shadow: 0px 0px 10px rgba(14,14,14,0.15);
                -webkit-box-shadow: 0px 0px 10px rgba(14,14,14,0.15);
                box-shadow: 0px 0px 10px rgba(14,14,14,0.15);
                border-radius: 8px;
                display: none;
            }

                .n_nav ul li .n_nav_droplist > a {
                    min-width: 240px;
                    display: block;
                    height: 60px;
                    line-height: 60px;
                    white-space: nowrap;
                    text-align: center;
                    color: #595e63;
                    font-size: 16px;
                    border-bottom: 1px solid #dadada;
                    margin: 5px 0;
                }

                    .n_nav ul li .n_nav_droplist > a:last-child {
                        border-bottom: 0;
                    }

                    .n_nav ul li .n_nav_droplist > a:hover {
                        color: #c11920;
                        background: none;
                    }

            .n_nav ul li.n_li:hover .n_nav_droplist {
                display: block;
            }

.nav_fix.active {
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: white;
    /*border-bottom: 1px solid #eeeff2;*/
    -moz-box-shadow: 0 0 13px rgba(120,131,139,0.2);
    -webkit-box-shadow: 0 0 13px rgba(120,131,139,0.2);
    box-shadow: 0 0 13px rgba(120,131,139,0.2);
}

    .nav_fix.active .n_logo {
        width: 158px;
        height: 65px;
        margin-top: 4px;
    }

    .nav_fix.active .n_nav {
        height: 70px;
    }

        .nav_fix.active .n_nav ul {
            padding-top: 22px;
        }

            .nav_fix.active .n_nav ul li {
                height: 46px;
            }

                .nav_fix.active .n_nav ul li > a {
                    height: 30px;
                    line-height: 30px;
                }

                    .nav_fix.active .n_nav ul li > a i {
                        top: 58px;
                    }

    .nav_fix.active ul li .n_nav_droplist {
        top: 45px;
    }

.footer_dbgc {
    width: 100%;
    color: white;
    background-color: #191f24;
    padding: 30px 0;
    font-size: 16px;
    text-align: center;
}

    .footer_dbgc span {
        color: #e60012;
        padding: 0 15px 0 0;
        display: inline-block;
        vertical-align: middle;
    }

    .footer_dbgc a {
        color: white;
        padding: 0 2px;
        display: inline-block;
        margin-left: 25px;
    }

        .footer_dbgc a:hover {
            color: #e60012;
            text-decoration: underline;
        }

/*弹出框*/
.popUp {
    width: 800px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -400px;
    margin-top: -295px;
    z-index: 9999;
    background-color: white;
    display: none;
}

    .popUp div.popUp_con {
        width: auto;
        -moz-box-shadow: 0 2px 18px rgba(0,0,0,0.23);
        -webkit-box-shadow: 0 2px 18px rgba(0,0,0,0.23);
        box-shadow: 0 2px 18px rgba(0,0,0,0.23);
        margin-bottom: 0;
        background-color: white;
    }

.popUp_wbg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    filter: alpha(opacity=20);
    -moz-opacity: 0.2;
    -webkit-opacity: 0.2;
    -khtml-opacity: 0.2;
    opacity: 0.2;
    z-index: 9998;
    display: none;
}

.popUp_tit {
    width: 100%;
    height: 42px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #dddddd;
}

    .popUp_tit .tit {
        height: 42px;
        line-height: 42px;
        padding-left: 20px;
        font-weight: bold;
        color: black;
        font-size: 14px;
        float: left;
        text-transform: uppercase;
    }

    .popUp_tit .popUp_clo {
        float: right;
        display: block;
        width: 55px;
        height: 45px;
        background: url(../images/pop_close.png) center no-repeat;
        transition: all 0.5s ease 0s;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
    }

        .popUp_tit .popUp_clo:hover {
            background: url(../images/pop_close2.png) center no-repeat;
            transform: rotate(180deg);
            -ms-transform: rotate(180deg); /* IE 9 */
            -moz-transform: rotate(180deg); /* Firefox */
            -webkit-transform: rotate(180deg); /* Safari and Chrome */
            -o-transform: rotate(180deg); /* Opera */
        }

.popUp_con .btn {
    width: 100%;
    padding: 6px 0 20px 0;
    text-align: center;
    background-color: #f5f5f5;
}

.popUp_con .con {
    width: 100%;
    height: 450px;
}

.popUp_con .pad {
    padding: 13px 12px 0 12px;
}

.fhlhbtn {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    *line-height: normal;
    border: 1px solid #c11920;
    background-color: #c11920;
    cursor: pointer;
    margin-top: 14px;
    border-radius: 4px;
    padding: 0 30px;
    *padding: 0 12px;
    font-size: 14px;
    color: White;
    text-transform: uppercase;
}

    .fhlhbtn:hover {
        background-color: #f89c14;
    }

.fhlhbtn_qx {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    *line-height: normal;
    background-color: white;
    border: 1px solid #dddddd;
    cursor: pointer;
    margin-top: 14px;
    border-radius: 4px;
    padding: 0 30px;
    *padding: 0 12px;
    font-size: 14px;
    color: black;
    margin-left: 15px;
}

    .fhlhbtn_qx:hover {
        background-color: #f9fafe;
        border: 1px solid #24325d;
        color: #24325d;
    }
/*弹出框end*/
.all_posi {
    width: 100%;
    color: #4c4948;
    font-size: 15px;
    text-transform: uppercase;
    padding: 25px 0;
}

    .all_posi .tit {
        padding-left: 32px;
        height: 25px;
        line-height: 25px;
        background: url(../images/ico_triangle2.png) 16px no-repeat;
    }

    .all_posi a {
        display: inline-block;
        vertical-align: middle;
        color: #4c4948;
    }

        .all_posi a:hover {
            color: #f5ab1b;
        }

    .all_posi i {
        display: inline-block;
        vertical-align: middle;
        color: #4c4948;
        padding: 0 10px;
    }

    .all_posi span {
        display: inline-block;
        vertical-align: middle;
        color: #c11920;
    }

.all_con {
    width: 1078px;
    margin: 0 auto;
    background-color: white;
    border: 1px solid #eceff1;
}

.all_tit {
    width: 1048px;
    margin: 0 auto;
    color: #c11920;
    font-size: 16px;
    text-transform: uppercase;
    padding: 20px 0 17px 0;
    border-bottom: 1px solid #dddddd;
}

.det_con {
    width: 1300px;
    min-height: 400px;
    margin: 0 auto;
}

    .det_con.bgwhite {
        background-color: white;
    }

.det_cpa {
    padding: 50px 80px 80px 80px;
}

.det_tit {
    font-size: 36px;
    font-weight: bold;
    color: #c11920;
    line-height: 1.2;
    /*  text-transform: uppercase;
    border-bottom: 1px solid #c11920;*/
    padding: 25px 0;
    text-align: center;
}

.det_pb {
    width: 100%;
    padding-bottom: 20px;
}

.det_c {
    padding-top: 10px;
    color: #222222;
    line-height: 1.5;
}

    .det_c img {
        display: inline-block;
        vertical-align: middle;
        max-width: 100% !important;
        height: auto !important;
    }

    .det_c table,
    .det_c div,
    .det_c p,
    .det_c h1,
    .det_c h2 {
        max-width: 100% !important;
    }

    .det_c table {
        width: 100% !important;
    }
/**
        detail
    */
.img_auto {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

    .img_auto img {
        display: inline-block;
        max-width: 100%;
        min-height: 100%;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

/**
        other
    */

.ind_ban {
    width: 100%;
    height: 795px;
    margin: 0 auto;
    background-color: #121212;
}

.ind_bant {
    position: relative;
    width: 100%;
    height: 795px;
    overflow: hidden;
    zoom: 1;
}

    .ind_bant ul.ban_slides li {
        width: 100%;
        height: 795px;
        /* background-position: top center;
        background-size: cover;
        background-repeat: no-repeat;*/
        background-color: #121212;
    }

.ind_banimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
}

.ban_btn a {
    width: 65px;
    height: 65px;
    overflow: hidden;
    display: block;
    cursor: pointer;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    -webkit-transition: all .3s ease;
}

    .ban_btn a.ban_next {
        background: url(../images/ban_right.png) no-repeat;
        position: absolute;
        top: 50%;
        right: 10%;
        margin-top: -30px;
        z-index: 10;
    }

    .ban_btn a.ban_pre {
        background: url(../images/ban_left.png) no-repeat;
        position: absolute;
        top: 50%;
        left: 10%;
        margin-top: -30px;
        z-index: 10;
    }

.ind_bant:hover .ban_next {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.ind_bant:hover .ban_pre {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

    .ind_bant:hover .ban_next:hover, .ind_bant:hover .ban_pre:hover {
        filter: alpha(opacity=100);
        -moz-opacity: 1;
        -webkit-opacity: 1;
        -khtml-opacity: 1;
        opacity: 1;
    }

#focus .btn {
    width: 100%;
    height: 40px;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 15;
}

    #focus .btn span {
        display: inline-block;
        _zoom: 1;
        width: 15px;
        height: 8px;
        background-color: #f5f6f9;
        _font-size: 0;
        margin-left: 5px;
        cursor: pointer;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }

        #focus .btn span.on,
        #focus .btn span:hover {
            width: 26px;
            background-color: #ff6334;
        }

.b_box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.flew_1 {
    flex: 1;
}

.fw_w {
    flex-wrap: wrap;
}

.f_fl {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
}

.f_fl_nc {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}

.f_fr {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
}

.f_fr_nc {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.f_fc {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.f_fc_nc {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
}

.f_flrb {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.f_flrb_nc {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.f_flra {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
}

.f_flrc {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.pager .act {
    border: 1px solid #c11920 !important;
    background: #c11920 !important;
}

.pager a {
    border: 1px solid #ededed !important;
}

/*.swiper-slide {
    background: #fff;*/
/* Center slide text vertically */
/*display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}


    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }*/

.swiper-button-next, .swiper-button-prev {
    width: 65px !important;
    height: 65px !important;
    color: transparent !important;
    margin-top: -33px !important;
    outline: 0 !important;
}


    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
        content: '' !important;
        outline: 0 !important;
        filter: drop-shadow(1px 2px 4px rgb(0,0,0,0.15)) !important;
    }

    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
        pointer-events: all !important;
    }

.ind_banner_swiper .swiper-button-next {
    right: 6%;
}

.ind_banner_swiper .swiper-button-prev {
    left: 6%;
}

.swiper-button-next:after {
    width: 65px !important;
    height: 65px !important;
    background: url(../images/ban_right.png) center no-repeat;
}

.swiper-button-prev:after {
    width: 65px !important;
    height: 65px !important;
    background: url(../images/ban_left.png) center no-repeat;
}

.ind_banner_swiper {
    width: 100%;
    height: 795px;
    /*max-width: 1920px;*/
    min-width: 1300px;
    margin: 0 auto;
    background-color: #141414;
}

    .ind_banner_swiper .swiper {
        width: 100%;
        height: 100%;
    }

.ind_banner_swiper_con {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/**
    other
*/
.b_box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.fw_w {
    flex-wrap: wrap;
}

.f_fl {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
}

.f_fr {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
}

.f_fc {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.f_flrb {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.f_flra {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
}

.f_flrc {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.f_fl_nc {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}

.f_fr_nc {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.f_fc_nc {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
}

.f_flrb_nc {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.f_flra_nc {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    -webkit-justify-content: space-around;
}

.f_flrc_nc {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
}

.ind_about {
    width: 100%;
    padding-top: 35px;
    padding-bottom: 80px;
}

.ind_about_c {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 25px 45px rgba(193,193,193,0.3);
    border-radius: 60px;
}

.ind_about_cpa {
    padding: 40px 50px 65px 50px;
}

.ind_about .con {
    width: 100%;
    color: #011B29 !important;
    font-size: 16px !important;
    line-height: 25px !important;
    max-height: 260px !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    overflow: hidden !important;
    margin-bottom: 40px;
}

.ind_pro {
    width: 100%;
    background: url(../images/ind_pro_bg.jpg) center bottom no-repeat;
    background-size: cover;
    background-color: #faf9f9;
    padding-top: 57px;
    padding-bottom: 57px;
    -webkit-transition: all 0.35s ease 0s;
    -moz-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
}

.ind_pro_tit {
    width: 100%;
    text-align: center;
    font-size: 46px;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 40px;
}

    .ind_pro_tit i {
        display: inline-block;
        width: 44px;
        height: 34px;
    }


.ind_choose {
    width: 100%;
    background-color: #F5F5F5;
    padding-top: 57px;
    padding-bottom: 57px;
}

.ind_choose_con {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.ind_about_c .ind_choose_con {
    padding-bottom: 62px
}

.ind_choose_c {
    width: 271px;
    text-align: center;
    float: left;
    margin: 0 27px;
}

a.ind_choose_c {
    display: block;
    -webkit-transition: all 0.35s ease 0s;
    -moz-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
}

.ind_choose_c .ico {
    width: 124px;
    height: 124px;
    margin: 0 auto;
    background: url(../images/ind_ci1.png) center no-repeat;
}

    .ind_choose_c .ico.ico1 {
        background: url(../images/ind_ci1.png) center no-repeat;
    }

    .ind_choose_c .ico.ico2 {
        background: url(../images/ind_ci2.png) center no-repeat;
    }

    .ind_choose_c .ico.ico3 {
        background: url(../images/ind_ci3.png) center no-repeat;
    }

    .ind_choose_c .ico.ico4 {
        background: url(../images/ind_ci4.png) center no-repeat;
    }

.ind_choose_c .con1,
.ind_choose_c .con2 {
    width: 100%;
    text-align: center;
    padding-top: 38px;
    font-size: 24px;
    color: #C4171F;
    line-height: 1.1;
    font-weight: bold;
    -webkit-transition: all 0.35s ease 0s;
    -moz-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
}

.ind_choose_c .con2 {
    padding-top: 13px;
    font-size: 19px;
    color: #474747;
    font-weight: normal;
}

a.ind_choose_c:hover {
    margin-top: -15px;
}

    a.ind_choose_c:hover .con2 {
        color: #e13030;
    }

.ind_about_c .ind_choose_c .ico.ico1 {
    background: url(../images/ind_ab1.png) center no-repeat;
}

.ind_about_c .ind_choose_c .ico.ico2 {
    background: url(../images/ind_ab2.png) center no-repeat;
}

.ind_about_c .ind_choose_c .ico.ico3 {
    background: url(../images/ind_ab3.png) center no-repeat;
}

.ind_about_c .ind_choose_c .ico.ico4 {
    background: url(../images/ind_ab4.png) center no-repeat;
}

.ind_about_c .ind_choose_c .con1,
.ind_about_c .ind_choose_c .con2 {
    width: 100%;
    text-align: center;
    padding-top: 26px;
    font-size: 30px;
    color: #000000;
    line-height: 1.1;
    font-weight: bold;
}

.ind_about_c .ind_choose_c .con2 {
    padding-top: 12px;
    font-size: 18px;
    font-weight: normal;
}

.ind_pro_tab_c {
    width: 100%;
    padding-top: 40px;
}

.ind_pro_tab_detc {
    width: 100%;
    min-height: 400px;
}

.ind_pro_list {
    width: 100%;
}

    .ind_pro_list ul {
        width: 100%;
    }

        .ind_pro_list ul li {
            float: left;
            margin: 0 16px 30px 16px;
            width: 293px;
        }


            .ind_pro_list ul li a {
                display: block;
                width: 100%;
                height: 362px;
                overflow: hidden;
                -webkit-transition: all 0.35s ease 0s;
                -moz-transition: all 0.35s ease 0s;
                -o-transition: all 0.35s ease 0s;
                transition: all 0.35s ease 0s;
            }

                .ind_pro_list ul li a .img {
                    width: 100%;
                    height: 293px;
                    overflow: hidden;
                    background-color: white;
                    text-align: center;
                    position: relative;
                }

                    .ind_pro_list ul li a .img img {
                        width: 100%;
                        height: 100% !important;
                        object-fit: cover;
                        display: inline-block;
                        vertical-align: middle;
                        -webkit-transition: all 0.35s ease 0s;
                        -moz-transition: all 0.35s ease 0s;
                        -o-transition: all 0.35s ease 0s;
                        transition: all 0.35s ease 0s;
                    }

                .ind_pro_list ul li a .con {
                    width: 100%;
                    padding: 16px 0 0 0;
                    -webkit-transition: all 0.35s ease 0s;
                    -moz-transition: all 0.35s ease 0s;
                    -o-transition: all 0.35s ease 0s;
                    transition: all 0.35s ease 0s;
                }

                    .ind_pro_list ul li a .con p {
                        width: 100%;
                        height: 1px;
                        background-color: #adc0c9;
                        position: relative;
                    }

                        .ind_pro_list ul li a .con p span {
                            display: inline-block;
                            width: 60px;
                            height: 4px;
                            background-color: #c11920;
                            position: absolute;
                            left: 0;
                            top: -2px;
                            z-index: 15;
                            -webkit-transition: all 0.35s ease 0s;
                            -moz-transition: all 0.35s ease 0s;
                            -o-transition: all 0.35s ease 0s;
                            transition: all 0.35s ease 0s;
                        }

                    .ind_pro_list ul li a .con .tit {
                        width: 100%;
                        color: #000000;
                        font-size: 18px;
                        line-height: 26px;
                        padding: 18px 0 6px 0;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                        -webkit-transition: all 0.35s ease 0s;
                        -moz-transition: all 0.35s ease 0s;
                        -o-transition: all 0.35s ease 0s;
                        transition: all 0.35s ease 0s;
                    }

                    .ind_pro_list ul li a .con .more {
                        width: 100%;
                        text-align: center;
                        padding: 0 0 15px 0;
                        display: none;
                        -webkit-transition: all 0.35s ease 0s;
                        -moz-transition: all 0.35s ease 0s;
                        -o-transition: all 0.35s ease 0s;
                        transition: all 0.35s ease 0s;
                    }

                        .ind_pro_list ul li a .con .more span {
                            display: inline-block;
                            width: 109px;
                            height: 34px;
                            line-height: 34px;
                            color: white;
                            font-size: 14px;
                            background-color: #c11920;
                            border-radius: 5px;
                            text-align: center;
                        }

                .ind_pro_list ul li a:hover {
                    -moz-box-shadow: 0 2px 22px rgba(120,131,139,0.25);
                    -webkit-box-shadow: 0 2px 22px rgba(120,131,139,0.25);
                    box-shadow: 0 2px 22px rgba(120,131,139,0.25);
                    background-color: white;
                }

                    .ind_pro_list ul li a:hover .con p span {
                        width: 30px;
                        left: 50%;
                        margin-left: -15px;
                    }

                    .ind_pro_list ul li a:hover .con p {
                        background-color: #d6d9dc;
                    }


                    .ind_pro_list ul li a:hover .con {
                        margin-top: -49px;
                        position: relative;
                    }

                        .ind_pro_list ul li a:hover .con .tit {
                            width: 92%;
                            padding: 10px 4% 6px 4%;
                            text-align: center;
                            margin-top: 13px;
                            color: #c11920;
                            line-height: 1.3;
                            background-color: white;
                        }

                        .ind_pro_list ul li a:hover .con .more {
                            display: block;
                            background-color: white;
                        }

                    .ind_pro_list ul li a:hover img {
                        /*filter: alpha(opacity=80);
                        -moz-opacity: 0.8;
                        -webkit-opacity: 0.8;
                        -khtml-opacity: 0.8;
                        opacity: 0.8;*/
                        transform: scale(1.16) rotateY(180deg);
                        -webkit-transform: scale(1.16) rotateY(180deg);
                        -moz-transform: scale(1.16) rotateY(180deg);
                        -o-transform: scale(1.16) rotateY(180deg);
                    }


.ind_news {
    width: 100%;
    background-color: white;
    padding-top: 57px;
    padding-bottom: 57px;
}

.ind_news_c {
    width: 100%;
}

.det_pb .ind_news_c {
    padding-top: 40px;
}

.ind_news_c ul {
    width: 100%;
}

    .ind_news_c ul li {
        float: left;
        width: 410px;
        height: 441px;
        margin: 0 11px 22px 12px;
    }

        .ind_news_c ul li a {
            display: block;
            width: 410px;
            height: 441px;
            background-color: white;
            border: 1px solid #dedede;
            border-radius: 12px;
            overflow: hidden;
            -webkit-transition: all 0.35s ease 0s;
            -moz-transition: all 0.35s ease 0s;
            -o-transition: all 0.35s ease 0s;
            transition: all 0.35s ease 0s;
        }

            .ind_news_c ul li a .img {
                width: 100%;
                height: 285px;
                overflow: hidden;
                position: relative;
                background-color: #5c5c5c;
            }

                .ind_news_c ul li a .img img {
                    width: 100%;
                    height: 100% !important;
                    object-fit: cover;
                    /*position: absolute;
                        top: 50%;
                        left: 50%;
                        -webkit-transform: translate(-50%, -50%);
                        transform: translate(-50%, -50%);*/
                    display: inline-block;
                    vertical-align: middle;
                    -webkit-transition: all 0.35s ease 0s;
                    -moz-transition: all 0.35s ease 0s;
                    -o-transition: all 0.35s ease 0s;
                    transition: all 0.35s ease 0s;
                }

            .ind_news_c ul li a .con {
                width: 372px;
                margin: 20px auto 0 auto;
            }

                .ind_news_c ul li a .con .tit {
                    width: 100%;
                    color: black;
                    font-size: 19px;
                    line-height: 22px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }

                .ind_news_c ul li a .con .con_c {
                    color: #6f6f6f !important;
                    font-size: 16px !important;
                    line-height: 1.4 !important;
                    margin-top: 8px !important;
                    display: -webkit-box !important;
                    -webkit-box-orient: vertical !important;
                    -webkit-line-clamp: 2 !important;
                    height: 47px !important;
                    overflow: hidden !important;
                }

            .ind_news_c ul li a:hover {
                border: 1px solid #fdfdfd;
                -moz-box-shadow: 0 2px 22px rgba(120,131,139,0.3);
                -webkit-box-shadow: 0 2px 22px rgba(120,131,139,0.3);
                box-shadow: 0 2px 22px rgba(120,131,139,0.3);
                margin-top: -8px;
            }

                .ind_news_c ul li a:hover img {
                    transform: scale(1.1);
                    -webkit-transform: scale(1.1);
                    -moz-transform: scale(1.1);
                    -o-transform: scale(1.1);
                    filter: alpha(opacity=80);
                    -moz-opacity: 0.8;
                    -webkit-opacity: 0.8;
                    -khtml-opacity: 0.8;
                    opacity: 0.8;
                }

                .ind_news_c ul li a:hover .con .tit {
                    color: #c11920;
                }


            .ind_news_c ul li a .more {
                width: 372px;
                height: 17px;
                margin: 22px auto 0 auto;
                position: relative;
            }

                .ind_news_c ul li a .more span {
                    display: inline-block;
                    width: 41px;
                    height: 17px;
                    background: url(../images/ind_arrow1.png) center no-repeat;
                    position: absolute;
                    right: 50%;
                    top: 0;
                    z-index: 10;
                    margin-right: -20px;
                    -webkit-transition: all 0.35s ease 0s;
                    -moz-transition: all 0.35s ease 0s;
                    -o-transition: all 0.35s ease 0s;
                    transition: all 0.35s ease 0s;
                }

            .ind_news_c ul li a:hover .more span {
                right: 21px;
                background: url(../images/ind_arrow2.png) center no-repeat;
            }

.ind_more {
    display: block;
    width: 160px;
    height: 50px;
    line-height: 50px;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-size: 16px;
    /*text-transform: uppercase;*/
    background: -webkit-linear-gradient(to right, #c11920, #e60012);
    background: -o-linear-gradient(to right, #c11920, #e60012);
    background: -moz-linear-gradient(to right, #c11920, #e60012);
    background: linear-gradient(to right, #c11920, #e60012);
    background: #e60012\9;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    margin: 30px auto 0 auto;
    font-weight: bold;
}

    .ind_more:hover {
        background: -webkit-linear-gradient(to left, #c11920, #e60012);
        background: -o-linear-gradient(to left, #c11920, #e60012);
        background: -moz-linear-gradient(to left, #c11920, #e60012);
        background: linear-gradient(to left, #c11920, #e60012);
        background: #e60012\9;
    }

.pro_con {
    width: 100%;
    min-height: 400px;
    padding-bottom: 40px;
}

    .pro_con .ind_pro_tab {
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0 16px 54px rgba(132,136,139,0.2);
        border-radius: 0 0 50px 50px;
        text-align: center;
    }

        .pro_con .ind_pro_tab .title {
            width: 100%;
            height: 77px;
            line-height: 77px;
            background: #c11920;
            font-size: 24px;
            color: #FFFFFF;
            border-radius: 8px 8px 0 0;
            text-transform: uppercase;
        }

        .pro_con .ind_pro_tab .tablist a {
            display: block;
            color: #595E63;
            padding: 33px 5px;
            line-height: 1.2;
            border-bottom: 1px solid #dadada;
        }

            .pro_con .ind_pro_tab .tablist a:last-child {
                border-bottom: 0;
            }

            .pro_con .ind_pro_tab .tablist a.act {
                color: #c11920;
                font-weight: bold;
            }

            .pro_con .ind_pro_tab .tablist a:hover {
                color: #c11920;
            }

    .pro_con .n_nav {
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0 16px 54px rgba(132,136,139,0.2);
        border-radius: 0 0 50px 50px;
        height: auto;
        float: none;
        margin-right: 0;
        margin-top: 12px;
        margin-left: 0;
    }

        .pro_con .n_nav ul {
            width: auto;
            text-align: left;
            padding: 35px 40px 18px 40px;
        }

            .pro_con .n_nav ul li {
                height: 55px;
                padding: 0 16px;
            }

                .pro_con .n_nav ul li > a {
                    border-radius: 8px;
                    background-color: #f3f3f3;
                    padding: 0 24px;
                }

                .pro_con .n_nav ul li .n_nav_droplist {
                    top: 50px;
                }

                .pro_con .n_nav ul li a:hover,
                .pro_con .n_nav ul li a.act {
                    color: white;
                    background: -webkit-linear-gradient(to right, #c11920, #e60012);
                    background: -o-linear-gradient(to right, #c11920, #e60012);
                    background: -moz-linear-gradient(to right, #c11920, #e60012);
                    background: linear-gradient(to right, #c11920, #e60012);
                    background: #c11920\9;
                }

    .pro_con.pb0 {
        padding-bottom: 0;
    }

.prod_con {
    width: 100%;
    padding-top: 30px;
}

.prod_tit {
    width: 100%;
}

    .prod_tit p {
        width: 100%;
        height: 2px;
        background-color: #d6d9dc;
        position: relative;
    }

        .prod_tit p span {
            display: inline-block;
            width: 100px;
            height: 8px;
            background-color: #c11920;
            position: absolute;
            left: 50%;
            top: -4px;
            margin-left: -50px;
            z-index: 15;
            -webkit-transition: all 0.35s ease 0s;
            -moz-transition: all 0.35s ease 0s;
            -o-transition: all 0.35s ease 0s;
            transition: all 0.35s ease 0s;
        }

    .prod_tit .tit {
        width: 100%;
        color: #c11920;
        font-size: 36px;
        line-height: 1.3;
        padding: 10px 0 20px 0;
        overflow: hidden;
        text-align: center;
    }

.prod_img {
    width: 446px;
    padding: 52px 0 0 52px;
    float: left;
}

    .prod_img .prod_imgBig {
        width: 446px;
        height: 446px;
        background: #F2F2F2;
        border-radius: 8px;
        border: 10px solid #EBF0EE;
        margin: 0 auto;
        background-color: white;
    }

        .prod_img .prod_imgBig .fancybox {
            display: block;
            width: 446px;
            height: 446px;
            line-height: 446px;
            text-align: center;
            overflow: hidden;
            margin: 0 auto;
        }

            .prod_img .prod_imgBig .fancybox img {
                max-height: 100%;
                object-fit: cover;
                display: inline-block;
                vertical-align: middle;
                -webkit-transition: all 0.35s ease 0s;
                -moz-transition: all 0.35s ease 0s;
                -o-transition: all 0.35s ease 0s;
                transition: all 0.35s ease 0s;
            }

    .prod_img img {
        max-width: 100%;
        height: auto !important;
        display: inline-block;
        vertical-align: middle;
    }

.prod_imgSmall {
    width: 446px;
    margin-top: 10px;
}

    .prod_imgSmall ul {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 20px;
        white-space: nowrap;
    }

        /*.prod_imgSmall ul::-webkit-scrollbar {
            display: none;*/ /* Chrome Safari */
        /*}

    .prod_imgSmall ul {
        scrollbar-width: none;*/ /* firefox */
        /*-ms-overflow-style: none;*/ /* IE 10+ */
        /*}*/

        .prod_imgSmall ul li {
            width: 75px;
            margin-right: 10px;
            display: inline-block;
            vertical-align: middle;
            *display: inline;
            *zoom: 1;
        }

            .prod_imgSmall ul li a {
                width: 75px;
                height: 75px;
                line-height: 75px;
                display: block;
                overflow: hidden;
                text-align: center;
                margin: 0 auto;
                background-color: white;
                border: 1px solid #f9f9f9;
            }

                .prod_imgSmall ul li a.act {
                    -moz-box-shadow: 0 0 10px rgba(120,131,139,0.2);
                    -webkit-box-shadow: 0 0 10px rgba(120,131,139,0.2);
                    box-shadow: 0 0 10px rgba(120,131,139,0.2);
                }

                .prod_imgSmall ul li a img {
                    /*min-width: 100% !important;*/
                    max-height: 100% !important;
                    display: inline-block;
                    vertical-align: middle;
                    object-fit: cover;
                    filter: alpha(opacity=70);
                    -moz-opacity: 0.7;
                    -webkit-opacity: 0.7;
                    -khtml-opacity: 0.7;
                    opacity: 0.7;
                }

                .prod_imgSmall ul li a:hover img,
                .prod_imgSmall ul li a.act img {
                    min-width: 100% !important;
                    min-height: 100% !important;
                    display: inline-block;
                    vertical-align: unset;
                    filter: alpha(opacity=100);
                    -moz-opacity: 1;
                    -webkit-opacity: 1;
                    -khtml-opacity: 1;
                    opacity: 1;
                }

.prod_cw {
    width: 810px;
    margin: 0 auto;
    line-height: 23px;
    padding-top: 60px;
    padding-bottom: 20px;
}

    .prod_cw .tit {
        color: #c11920;
        font-size: 30px;
        padding-bottom: 25px;
        font-weight: bold;
    }

    .prod_cw .con img {
        max-width: 100% !important;
        height: auto !important;
        display: inline-block;
        vertical-align: middle;
    }

    .prod_cw .con table,
    .prod_cw .con div,
    .prod_cw .con p,
    .prod_cw .con span,
    .prod_cw .con h1,
    .prod_cw .con h2 {
        max-width: 100% !important;
    }

    .prod_cw .con table {
        width: 100% !important;
    }

.about_img {
    width: 100%;
}

    .about_img img {
        width: 100%;
        display: inline-block;
        vertical-align: middle;
    }

.ind_case {
    width: 100%;
    padding-top: 57px;
    padding-bottom: 57px;
    -webkit-transition: all 0.35s ease 0s;
    -moz-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
}

.case_list {
    width: 100%;
}

    .case_list ul, .case_list .swiper {
        width: 100%;
    }

        .case_list ul li {
            float: left;
            margin: 0 13px 35px 13px;
            width: 373px;
        }

    .case_list .swiper-slide {
        margin: 0 0 50px 0;
        width: 373px;
    }

    .case_list .swiper-button-next:after, .case_list .swiper-rtl .swiper-button-prev:after,
    .case_list .swiper-button-prev:after, .case_list .swiper-rtl .swiper-button-next:after {
        content: '';
    }

.case_ld {
    display: block;
    width: 373px;
    -webkit-transition: all 0.35s ease 0s;
    -moz-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
    position: relative;
}

.swiper-slide .case_ld {
    margin: 0 auto;
}

.case_ld .img {
    width: 100%;
    height: 502px;
    overflow: hidden;
    background-color: white;
    text-align: center;
    border: 1px solid #DCDCDC;
}

    .case_ld .img img {
        width: auto;
        height: 502px !important;
        object-fit: cover;
        display: inline-block;
        vertical-align: middle;
        -webkit-transition: all 0.35s ease 0s;
        -moz-transition: all 0.35s ease 0s;
        -o-transition: all 0.35s ease 0s;
        transition: all 0.35s ease 0s;
    }

.case_ld .con {
    padding: 12px;
    background: #FFFFFF;
    box-shadow: 0 0 22px 2px rgba(120,131,139,0.22);
    position: absolute;
    left: 50%;
    margin-left: -147px;
    bottom: -70px;
    z-index: 10;
    text-align: center;
}

    .case_ld .con .con_c {
        width: 273px;
        height: 92px;
        border: 1px solid #DCDCDC;
        font-size: 18px;
        color: #333333;
        line-height: 1.1;
    }

.ind_case .ind_more {
    margin: 10px auto 0 auto;
}

.master_t_fr {
    float: right;
    padding: 15px 10px 0 15px;
    -webkit-transition: all 0.35s ease 0s;
    -moz-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
}

.master_search {
    width: 177px;
    height: 28px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DCDCDC;
    margin-top: 16px;
    display: block;
    -webkit-transition: all 0.35s ease 0s;
    -moz-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
    color: black;
}

select.master_search {
    width: 179px;
    height: 30px;
}

.nav_fix.active .master_t_fr {
    padding: 0 10px 0 15px;
}

.nav_fix.active .master_search {
    margin-top: 3px;
}

.master_search .master_stext {
    float: left;
    display: block;
    width: 125px;
    height: 25px;
    line-height: 25px;
    padding: 0 0 0 8px;
    border: 0;
    outline: 0;
    color: black;
    font-size: 14px;
    background-color: transparent;
}

.master_search .master_sbtn {
    float: right;
    display: block;
    width: 33px;
    height: 25px;
    cursor: pointer;
    border: 0;
    outline: 0;
    background: url(../images/ico_s1.png) center no-repeat;
}

    .master_search .master_sbtn:hover {
        filter: alpha(opacity=70);
        -moz-opacity: 0.7;
        -webkit-opacity: 0.7;
        -khtml-opacity: 0.7;
        opacity: 0.7;
    }

.all_ban {
    width: 100%;
    height: 260px;
    /*border-top: 1px solid #595d60;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #060606;
}

    .all_ban.top_about {
        background-image: url(../images/top_about.jpg);
    }

    .all_ban.top_contact {
        background-image: url(../images/top_contact.jpg);
    }

    .all_ban.top_pro {
        background-image: url(../images/top_pro.jpg);
    }

    .all_ban.top_sup {
        background-image: url(../images/top_sup.jpg);
    }

    .all_ban.top_sup2 {
        background-image: url(../images/top_sup2.jpg);
    }

    .all_ban.top_news {
        background-image: url(../images/top_news.jpg);
    }

.all_banc {
    width: 100%;
    max-width: 1920px;
    min-width: 1300px;
    margin: 0 auto;
}

.all_ban .tit {
    text-transform: uppercase;
    color: white;
    font-size: 66px;
    line-height: 1.1;
    font-weight: bold;
    padding-top: 72px;
    padding-left: 60px;
    font-style: italic;
}

.all_bantit {
    font-size: 20px;
    /*text-transform: uppercase;*/
    color: white;
    padding-top: 20px;
    padding-left: 60px;
}

    .all_bantit a {
        height: 25px;
        line-height: 25px;
        display: inline-block;
        vertical-align: middle;
        color: white;
    }

        .all_bantit a:hover {
            color: #e60012;
        }

    .all_bantit i {
        display: inline-block;
        vertical-align: middle;
        padding: 0 10px;
    }

    .all_bantit span {
        display: inline-block;
        vertical-align: middle;
    }

.pro_detc_con {
    width: 650px;
    float: right;
    padding-right: 52px;
    padding-top: 60px;
}

    .pro_detc_con .title {
        font-size: 52px;
        color: #c11920;
        font-weight: bold;
        padding-bottom: 30px;
        border-bottom: 1px solid #b6b6b6;
    }

.pro_detc_t {
    width: 100%;
    padding-top: 10px;
}

.pro_detc_table {
    width: 100%;
    border: 2px solid white;
    font-size: 24px;
    color: #616767;
    border-collapse: collapse;
}

    .pro_detc_table th,
    .pro_detc_table td {
        padding: 5px 8px 5px 0;
        height: 60px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        text-align: left;
    }

    .pro_detc_table th {
        padding: 18px 8px 2px 0;
        font-size: 18px;
        color: #e60012;
    }

    .pro_detc_table td {
        font-size: 16px;
        color: #000000;
        vertical-align: top;
    }

        .pro_detc_table td p {
            padding: 5px 0;
            line-height: 1.2;
        }

.c_red {
    color: #c11920;
}

.footer_bg {
    width: 100%;
    padding: 50px 0;
    background-color: #EBEBEB;
}

.footer_fl {
    float: left;
    margin-left: 80px;
    max-width: 360px;
}

    .footer_fl.ml10 {
        margin-left: 10px;
    }

.footer_tit {
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    position: relative;
    padding-bottom: 28px;
}

    .footer_tit i {
        display: block;
        width: 40px;
        height: 5px;
        background-color: #c11920;
        border-radius: 10px;
        position: absolute;
        left: 0;
        top: 36px;
        z-index: 1;
    }

.footer_c {
    width: 100%;
}

    .footer_c .footer_ca {
        display: block;
        font-size: 18px;
        color: #282828;
        line-height: 1.2;
        margin-top: 7px;
    }

        .footer_c .footer_ca span {
            display: inline-block;
            padding: 3px 0;
        }

        .footer_c .footer_ca .f_ico {
            display: inline-block;
            padding-left: 37px;
        }

            .footer_c .footer_ca .f_ico.ico1 {
                background: url(../images/ico_fi1.png) 5px center no-repeat;
            }

            .footer_c .footer_ca .f_ico.ico2 {
                background: url(../images/ico_fi2.png) 3px center no-repeat;
            }

            .footer_c .footer_ca .f_ico.ico3 {
                background: url(../images/ico_fi3.png) 2px center no-repeat;
            }

            .footer_c .footer_ca .f_ico.ico4 {
                background: url(../images/ico_fi4.png) left center no-repeat;
            }

            .footer_c .footer_ca .f_ico.ico5 {
                background: url(../images/ico_fi5.png) 2px center no-repeat;
            }

    .footer_c a.footer_ca:hover .f_ico.ico1 {
        background: url(../images/ico_fi1_2.png) 5px center no-repeat;
    }

    .footer_c a.footer_ca:hover .f_ico.ico2 {
        background: url(../images/ico_fi2_2.png) 3px center no-repeat;
    }

    .footer_c a.footer_ca:hover .f_ico.ico3 {
        background: url(../images/ico_fi3_2.png) 2px center no-repeat;
    }

    .footer_c a.footer_ca:hover .f_ico.ico4 {
        background: url(../images/ico_fi4_2.png) left center no-repeat;
    }

    .footer_c a.footer_ca:hover .f_ico.ico5 {
        background: url(../images/ico_fi5_2.png) 2px center no-repeat;
    }

    .footer_c a.footer_ca:hover {
        display: block;
        color: #c11920;
    }


.about_swiper {
    width: 547px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 50px;
    float: left;
}

.about_swiper_tcon {
    width: 547px;
    height: 547px;
    box-shadow: 0 0 32px rgba(175,175,175,0.35);
    border-radius: 8px;
    border: 1px solid #EFEFEF;
    background-color: white;
    overflow: hidden;
    position: relative;
}

.about_swiper_bottom {
    width: 100%;
    padding: 0 0 0 0;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 35px;
}

.about_swiper .swiper-slide {
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.about_swiper .swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.about_swiper .mySwiper2 {
    width: 100%;
    height: 100%;
}

.about_swiper .mySwiper {
    height: 100%;
    box-sizing: border-box;
}

    .about_swiper .mySwiper .swiper-slide {
        width: 114px !important;
        height: 114px;
        background: #FFFFFF;
        border-radius: 3px;
        border: 1px solid #E0E7F4;
        overflow: hidden;
        margin-right: 25px !important;
        cursor: pointer;
    }

    .about_swiper .mySwiper .swiper-slide-thumb-active {
        opacity: 1;
        border: 1px solid #FF8187;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.about_swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.det_tit.pro_det_tit {
    font-size: 36px;
    padding: 50px 10px 25px 10px;
    text-align: left;
}

.det_c.pro_det_c {
    padding: 0 10px 50px 10px;
}

.sup_s_tabd {
    width: 100%;
    padding-top: 50px;
}

.sup_s_tab {
    width: 100%;
}

    .sup_s_tab td {
        padding: 7px 10px;
    }

.sup_s_tit {
    width: 100%;
    font-size: 20px;
    color: #C3181F;
    padding: 40px 0 0 0;
}

.sup_s_tit2 {
    width: 100%;
    font-size: 16px;
    color: #222222;
}

.sup_s_txt {
    width: 100%;
    padding-top: 12px;
}

.sup_s_sel,
.sup_s_text {
    min-height: 20px;
    padding: 10px;
    background: #FCFCFC;
    border-radius: 3px;
    border: 1px solid #EDEEEF;
    font-size: 16px;
    color: black;
    outline: 0;
}

.sup_s_sel {
    width: 512px;
    min-height: 40px;
    padding: 5px 10px;
}

.sup_s_text {
    width: 490px;
}

textarea.sup_s_text {
    width: 1059px;
}

.sup_s_btn {
    width: 100%;
    padding: 30px 0 40px 0;
}

    .sup_s_btn .ind_more {
        width: 201px;
        height: 63px;
        line-height: 63px;
        font-size: 22px;
        outline: 0;
        border: 0;
    }

.sup_d_top {
    width: 95%;
    padding: 68px 0;
    margin: 0 auto;
    text-align: center;
}

.sup_d_topa {
    display: inline-block;
    width: 230px;
    margin: 0 45px;
    font-size: 20px;
    color: #292929;
    text-align: center;
}

    .sup_d_topa:hover,
    .sup_d_topa.active {
        color: #C3181F;
    }

    .sup_d_topa span {
        width: 100%;
        display: inline-block;
        padding-top: 90px;
    }

    .sup_d_topa.ico1 span {
        background: url(../images/sup_d_i1.png) center top no-repeat;
    }

    .sup_d_topa.ico2 span {
        background: url(../images/sup_d_i2.png) center top no-repeat;
    }

    .sup_d_topa.ico3 span {
        background: url(../images/sup_d_i3.png) center top no-repeat;
    }

    .sup_d_topa.ico1.active span {
        background: url(../images/sup_d_i1_2.png) center top no-repeat;
    }

    .sup_d_topa.ico2.active span {
        background: url(../images/sup_d_i2_2.png) center top no-repeat;
    }

    .sup_d_topa.ico3.active span {
        background: url(../images/sup_d_i3_2.png) center top no-repeat;
    }

.sup_d_con {
    width: 1280px;
    padding-bottom: 80px;
    margin: 0 auto;
}

    .sup_d_con.pb0 {
        padding-bottom: 0;
    }

    .sup_d_con ul {
        width: 100%;
    }

        .sup_d_con ul li {
            width: 1278px;
            margin: 0 auto;
            border: 1px solid #e4e5e9;
            margin-bottom: 30px;
        }

.sup_d_cpa {
    padding: 50px 58px;
}

.sup_d_cfr_tit {
    font-size: 20px;
    color: #000000;
    font-weight: bold;
    line-height: 1.2;
    padding: 5px 0;
}

.sup_d_cfr_c {
    padding-top: 10px;
    font-size: 18px !important;
    color: #565961 !important;
    line-height: 1.5;
}

    .sup_d_cfr_c img {
        display: inline-block;
        vertical-align: middle;
        max-width: 100% !important;
        height: auto !important;
    }

    .sup_d_cfr_c table,
    .sup_d_cfr_c div,
    .sup_d_cfr_c p,
    .sup_d_cfr_c h1,
    .sup_d_cfr_c h2 {
        max-width: 100% !important;
    }

    .sup_d_cfr_c table {
        width: 100% !important;
    }

.sup_d_cfr_btn {
    width: 100%;
    padding-top: 40px;
}

.sup_d_cfr_ba {
    display: inline-block;
    vertical-align: middle;
    width: 126px;
    height: 40px;
    line-height: 40px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #E60012;
    outline: 0;
    font-size: 17px;
    color: #E60012;
    margin-right: 34px;
    text-align: center;
}

    .sup_d_cfr_ba:hover {
        background: #E60012;
        border: 1px solid #E60012;
        color: white;
        font-weight: bold;
    }

.sup_d_cfl {
    width: 180px;
    height: 180px;
    background: url(../images/sup_d_img.png) center no-repeat #F5F5F5;
    border-radius: 30px;
    float: left;
    overflow: hidden;
}

.sup_d_cfr {
    width: 930px;
    float: right;
}


.sup_d_manu.sup_d_con {
    width: 1300px;
}

    .sup_d_manu.sup_d_con ul li {
        width: 625px;
        margin: 5px 11px;
        float: left;
    }

.sup_d_manu .sup_d_cpa {
    padding: 18px;
}

.sup_d_manu .sup_d_cfr_tit {
    width: 100%;
    font-size: 18px;
    padding: 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sup_d_manu .sup_d_cfr_c {
    padding-top: 0;
    font-size: 16px !important;
    color: #565961 !important;
    line-height: 1.45 !important;
    margin-top: 8px !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    height: 49px !important;
    overflow: hidden !important;
}

.sup_d_manu .sup_d_cfl {
    width: 200px;
    height: 134px;
    background: url(../images/sup_d_img.png) center no-repeat #F5F5F5;
    background-size: auto 75%;
    border-radius: 0;
}

.sup_d_manu .sup_d_cfr {
    width: 360px;
}

.sup_d_manu .sup_d_cfr_btn {
    text-align: right;
    padding-top: 15px;
}

.sup_d_manu .sup_d_cfr_ba {
    width: 88px;
    height: 28px;
    line-height: 28px;
    font-size: 15px;
    margin-right: 0;
    margin-left: 11px;
}
