﻿@charset "UTF-8";
/*主色调*/
/*文字文本*/
/*单行省略号*/
/*多行省略号*/
/*箭头*/
/**a标签hoverboder效果**/
/**使用vw适配**/
.border {
    border-width: 1px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2) {
    .border {
        border-width: 0.5px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 3) {
    .border {
        border-width: 0.333333px;
    }
}

.topBanner {
    margin-top: 1px;
    color: white;
    padding: 1.5% 0 3%;
}

    .topBanner .crumbs {
        font-size: 14px;
        color: white;
    }

    .topBanner .txtImg {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

        .topBanner .txtImg .txt {
            width: 57%;
            color: white;
            margin-top: 5%;
        }

            .topBanner .txtImg .txt h2 {
                font-size: 48px;
            }

            .topBanner .txtImg .txt span {
                font-size: 48px;
                margin: 2% 0 4%;
                display: inline-block;
            }

            .topBanner .txtImg .txt p {
                font-size: 18px;
            }

        .topBanner .txtImg .img {
            width: 43%;
        }

@media (max-width: 1200px) {
    .topBanner .txtImg .txt h2, .topBanner .txtImg .txt span {
        font-size: 38px;
    }

    .topBanner .txtImg .txt p {
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .topBanner .txtImg .txt h2, .topBanner .txtImg .txt span {
        font-size: 30px;
    }

    .topBanner .txtImg .txt p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .topBanner {
        margin: 0;
    }

        .topBanner .txtImg {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

            .topBanner .txtImg .txt {
                width: 100%;
                text-align: center;
                margin-bottom: 5%;
            }

            .topBanner .txtImg .img {
                width: 55%;
                margin: 0 auto;
            }
}

@media (max-width: 480px) {
    .topBanner .crumbs {
        font-size: 12px;
    }

    .topBanner .txtImg .txt h2, .topBanner .txtImg .txt span {
        font-size: 20px;
    }

    .topBanner .txtImg .txt p {
        font-size: 13px;
    }
}

.productIntroduce {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .productIntroduce p {
        width: 62%;
        font-size: 18px;
        color: #222;
        line-height: 36px;
    }

    .productIntroduce img {
        width: 28%;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
    }

        .productIntroduce img:hover {
            transform: translateX(5px);
            -webkit-transform: translateX(5px);
        }

@media (max-width: 992px) {
    .productIntroduce p {
        font-size: 16px;
        line-height: 30px;
    }
}

@media (max-width: 768px) {
    .productIntroduce {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .productIntroduce p {
            width: 100%;
        }

        .productIntroduce img {
            width: 80%;
            margin-top: 5%;
        }
}

@media (max-width: 480px) {
    .productIntroduce p {
        font-size: 13px;
        line-height: 26px;
        margin-top: 2%;
    }
}

.features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 3%;
    flex-wrap:wrap;
}

    .features li, .features img {
        border-radius: 4px;
    }

    .features li {
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        width: 24%;
        color: white;
        line-height: 36px;
        position: relative;
    }

        .features li .txt {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            padding: 7%;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

    .features .left span {
        font-size: 30px;
        margin-top: 15%;
    }

    .features .conter .txt {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .features .conter span {
        font-size: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 7;
    }

    .features .right span {
        font-size: 30px;
        margin-top: 15%;
    }

    .features li:hover {
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
    }

@media (max-width: 1200px) {
    .features .left span, .features .right span {
        font-size: 24px;
    }

    .features .conter span {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 992px) {
    .features .left span, .features .right span {
        font-size: 20px;
    }

    .features .conter span {
        font-size: 15px;
        line-height: 23px;
    }

    .features li .txt {
        padding: 2%;
    }
}

@media (max-width: 768px) {
    .features {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .features li {
            width: 80%;
            margin: 0 auto 3%;
        }

            .features li .txt {
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                padding: 6%;
            }

            .features li span {
                margin: 0;
            }

        .features .left span, .features .right span {
            margin: 0;
        }
}

@media (max-width: 480px) {
    .features li {
        width: 95%;
    }
}

table {
    border-collapse: collapse;
    font-size: 18px;
    color: #333;
    margin-top: 5%;
}

    table th {
        background: #000;
        color: white;
        font-size: 22px;
        height: 60px;
    }

    table tr {
        height: 50px;
    }

    table td {
        padding: 1%;
    }

    table .tabTit {
        text-align: center;
    }

.down {
    margin: 3% 0 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .down li {
        width: 33%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border: 1px solid #e5e5e5;
        height: 320px;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
    }

        .down li img {
            width: 42%;
        }

        .down li a {
            display: inline-block;
            width: 158px;
            height: 42px;
            line-height: 42px;
            text-align: center;
            color: white;
            background: #952222;
            border-radius: 4px;
            margin-top: 15%;
            font-size: 18px;
        }

        .down li:hover {
            transform: translateY(-5px);
            -webkit-transform: translateY(-5px);
            -webkit-box-shadow: 0 0 15px 3px #e5e5e5;
            box-shadow: 0 0 15px 3px #e5e5e5;
        }

@media (max-width: 992px) {
    .down li {
        height: 256px;
    }

        .down li a {
            width: 126px;
            height: 34px;
            line-height: 34px;
            font-size: 15px;
        }
}

@media (max-width: 768px) {
    .down li {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .down li {
        height: 205px;
    }
}

.fooContact {
    height: 115px;
    line-height: 115px;
}

    .fooContact .content {
        width:100%;
        height:100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .fooContact img {
        width: 48px;
    }

    .fooContact a {
        font-size: 22px;
        color: white;
        margin-left: 1%;
    }

@media (max-width: 768px) {
    .fooContact a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .fooContact {
        height: 95px;
        line-height: 95px;
    }

        .fooContact a {
            font-size: 18px;
        }
}

.features li .hide img {
    height: 300px;
}

.features li .hide span {
    font-size: 18px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
}

/*.features li:hover .show {
    display: none;
}

.features li:hover .hide {
    display: block;
}*/

@media (max-width: 996px) {
    .features li .hide span {
        -webkit-line-clamp: 8;
    }
}

@media (max-width: 1200px) {
    .features li .txt {
        height: 98%;
    }
}




.topBanner1 {
    width: 100%;
    height: 560px;
    position: relative;
}

@media (max-width: 1200px) {
    .topBanner1 {
        height: 450px;
    }
}

@media (max-width: 996px) {
    .topBanner1 {
        height: 385px;
    }
}

@media (max-width: 768px) {
    .topBanner1 {
        height: 308px;
    }
}

@media (max-width: 480px) {
    .topBanner1 {
        height: 265px;
    }
}
.coreDetail li{
  list-style:disc !important;
}