﻿@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    margin: 0px auto;
    font-size: 16px;
    color: #333;
    width: 100%;
    zoom: 1;
}

ul, li, form, dl, dt, dd, div {
    padding: 0px;
    margin: 0px;
}

    ul, ul li {
        list-style: none;
    }

.h1, .h2, .h3, .h4, .h5, .h6, .p {
    padding: 0px;
    margin: 0px;
}

select, input, textarea {
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #333;
}

    input:focus {
        outline: none;
    }

input, button, select, textarea {
    outline: none; /*-webkit-appearance:none;*/ /*强制去除表单自带的样式*/
}

textarea {
    resize: none; /*-webkit-appearance:none;*/ /*强制去除textarea自带的样式*/
}

textarea, input, select {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

article, aside, footer, header, hgroup, nav, section, figure, figcaption {
    display: block;
}
/*html5设置*/
figure, figcaption {
    margin: 0px;
    padding: 0px;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

img {
    border: none;
    border: 0;
    max-width: 100%;
    vertical-align: middle;
}

a {
    color: #333;
    text-decoration: none;
}

    a:focus {
        outline: none;
        -moz-outline: none;
    }

    a:hover {
        text-decoration: none;
        color: #1aa93a;
    }

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

/*单行文本省略号*/
.dot {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dot2, .dot3, .dot4 {
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
}

.dot2 {
    -webkit-line-clamp: 2;
}
/*多行文本省略号*/
.dot3 {
    -webkit-line-clamp: 3;
}

.dot4 {
    -webkit-line-clamp: 4;
}

.w1720 {
    width: 1720px;
    margin: 0 auto;
}

.w1440 {
    width: 1440px;
    margin: 0 auto;
}

.w1240 {
    width: 1240px;
    margin: 0 auto;
}

@media(max-width:1720px) {
    .w1720 {
        width: 95%;
    }
}

@media(max-width:1500px) {
    .w1440 {
        width: 92%;
    }

    .w1240 {
        width: 92%;
    }
}

@media(max-width:768px) {
    body {
        font-size: 14px;
    }
}

/* Header */
.Top {
    line-height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 0 10px #ddd;
    ;
}

.MainNav {
    margin-left: 10%;
}

    .MainNav ul::after {
        content: '';
        display: block;
        clear: both;
    }

    .MainNav ul li {
        float: left;
        margin: 0 30px;
        position: relative;
    }

        .MainNav ul li::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #1aa93a;
            position: absolute;
            bottom: 0;
            left: 0;
            transition: all .5s;
            -webkit-transition: all .5s;
        }

        .MainNav ul li:hover::after {
            width: 100%;
        }

        .MainNav ul li.on::after {
            width: 100%;
        }

        .MainNav ul li.on a {
            color: #1aa93a;
        }

        .MainNav ul li .Navpull {
            position: absolute;
            left: 50%;
            top: 80px;
            line-height: 35px;
            z-index: 99999;
            background: #fff;
            width: 140px;
            font-size: 15px;
            padding: 10px 10px 10px 10px;
            display: none;
            margin-left: -70px;
            box-sizing: border-box;
            text-align: center;
        }

            .MainNav ul li .Navpull dd {
                border-bottom: 1px dotted #e6e6e6;
            }

                .MainNav ul li .Navpull dd:last-child {
                    border-bottom: none;
                }

.Top .car {
    width: 90px;
    text-align: center;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.Top .m-btn {
    display: none;
    background: #fff;
    cursor: pointer;
    padding: 15px 5px;
    border-radius: 5px;
    z-index: 999;
    position: absolute;
    top: 20px;
    right: 10px;
}

    .Top .m-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: #1aa93a;
        position: relative;
        -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
        -o-transition: all 200ms cubic-bezier(.4,0,0,1);
        transition: all 200ms cubic-bezier(.4,0,0,1);
    }

        .Top .m-btn span::before, .m-btn span::after {
            content: '';
            display: block;
            height: 3px;
            width: 25px;
            background: #1aa93a;
            position: absolute;
            left: 0;
            -webkit-transition: all 200ms cubic-bezier(.4,0,0,1);
            -o-transition: all 200ms cubic-bezier(.4,0,0,1);
            transition: all 200ms cubic-bezier(.4,0,0,1);
        }

        .Top .m-btn span:before {
            top: -8px;
        }

        .Top .m-btn span:after {
            bottom: -8px;
        }

    .Top .m-btn.active span {
        background: transparent;
    }

        .Top .m-btn.active span:before {
            transform: rotate(-48deg) translate(-6px, 5px);
            -webkit-transform: rotate(-48deg) translate(-6px, 5px);
            -o-transform: rotate(-48deg) translate(-6px, 5px);
            width: 24px;
        }

        .Top .m-btn.active span:after {
            transform: rotate(48deg) translate(-6px, -5px);
            -webkit-transform: rotate(48deg) translate(-6px, -5px);
            -o-transform: rotate(48deg) translate(-6px, -5px);
            width: 24px;
        }

@media(max-width:1366px) {
    .MainNav ul li {
        margin: 0 25px;
    }
}

@media(max-width:1280px) {
    .MainNav ul li {
        margin: 0 20px;
    }
}

@media(max-width:1200px) {
    .MainNav {
        margin-left: 5%;
    }

        .MainNav ul li {
            margin: 0 15px;
        }
}

@media(max-width:1030px) {
    .MainNav ul li {
        margin: 0 10px;
    }
}

@media(max-width:992px) 
{
    body{padding-top:55px;}
    .Top {
        line-height: 55px;
        line-height: 55px;
        z-index:99999;
    }

        .Top .Logo img {
            height: 35px;
        }

        .Top .car {
            width: 70px;
            margin-right: 40px;
        }

    .MainNav {
        position: absolute;
        top: 55px;
        width: 100%;
        background: #1aa93a;
        left: 0;
        z-index: 999;
        display: none;
        padding: 10px 0 20px 0;
        box-sizing: border-box;
        margin-left: 0;
    }

        .MainNav ul {
            padding: 0 20px;
        }

            .MainNav ul li {
                line-height: 35px;
                display: block;
                border-bottom: 1px dotted rgba(255,255,255,0.5);
                text-align: left;
                width: 100%;
                margin: 0;
            }

                .MainNav ul li::after {
                    display: none;
                }

                .MainNav ul li a {
                    color: #fff;
                }

                .MainNav ul li b {
                    width: 35px;
                    height: 35px;
                    background: url(../uploadfiles/image/m-more.png) no-repeat center center;
                    display: block;
                    position: absolute;
                    top: 0;
                    right: 0;
                    z-index: 9999;
                }

                .MainNav ul li .Navpull {
                    position: static;
                    display: none;
                    padding: 10px;
                    background: #53ac66;
                    width: 100%;
                    margin-left: 0;
                }

    .Top .m-btn {
        display: block;
        top:10px;
    }

    .MainNav ul li.on a {
        color: #fff;
    }
}

/* HomeBan */
.HomeBan .owlBan .owl-nav {
    display: none;
}

.HomeBan .owlBan .owl-dots {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 110px;
    line-height: 110px;
    left: 0;
    text-align: center;
    background: url(../uploadfiles/image/dotbg.png) no-repeat bottom center;
    background-size: cover;
}

    .HomeBan .owlBan .owl-dots .owl-dot {
        width: 100px;
        height: 3px;
        background: rgba(255,255,255,0.3);
        margin: 0 10px;
    }

        .HomeBan .owlBan .owl-dots .owl-dot.active {
            background: #fff;
        }

.HomeBan .owlBan .item {
    position: relative;
}

    .HomeBan .owlBan .item .owlTxt {
        position: absolute;
        top: 25%;
        left: 0;
        width: 100%;
        color: #fff;
    }

        .HomeBan .owlBan .item .owlTxt b {
            display: block;
            width: 40px;
            height: 2px;
            background: #fff;
            margin: 20px 0 40px 0;
        }

        .HomeBan .owlBan .item .owlTxt h1 {
            font-family: "黑体";
            font-size: 64px;
            font-weight: normal;
        }

        .HomeBan .owlBan .item .owlTxt p {
            margin: 40px 0 60px 0;
            font-family: "黑体";
            font-size: 36px;
        }

            .HomeBan .owlBan .item .owlTxt p span {
                display: inline-block;
                padding-left: 15px;
                margin-right: 20px;
                position: relative;
            }

                .HomeBan .owlBan .item .owlTxt p span::before {
                    content: "";
                    display: block;
                    width: 5px;
                    height: 5px;
                    background: #fff;
                    border-radius: 50%;
                    position: absolute;
                    left: 0;
                    top: 50%;
                    margin-top: -2.5px;
                }

        .HomeBan .owlBan .item .owlTxt .Banlink {
            display: inline-block;
            width: 240px;
            line-height: 60px;
            border-radius: 60px;
            background: rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.2);
            text-align: center;
            color: #fff;
            font-family: "黑体";
            font-size: 24px;
        }

@media(max-width:1280px) {
    .HomeBan .owlBan .item .owlTxt h1 {
        font-size: 44px;
    }

    .HomeBan .owlBan .item .owlTxt p {
        font-size: 20px;
    }

    .HomeBan .owlBan .item .owlTxt .Banlink {
        width: 200px;
        line-height: 50px;
        border-radius: 50px;
        font-size: 18px;
    }
}

@media(max-width:768px) {
    .HomeBan .owlBan .item .owlTxt {
        top: 30%;
    }

        .HomeBan .owlBan .item .owlTxt b {
            margin: 10px 0;
            width: 20px;
        }

        .HomeBan .owlBan .item .owlTxt h1 {
            font-size: 16px;
        }

        .HomeBan .owlBan .item .owlTxt p {
            font-size: 14px;
            margin: 0 0;
        }
         .HomeBan .owlBan .item .owlTxt p span{
            font-size: 14px !important;
            margin: 10px 0;
        }

        .HomeBan .owlBan .item .owlTxt .Banlink {
            width: 100px;
            line-height: 20px;
            border-radius: 20px;
            font-size: 12px;
        }

    .HomeBan .owlBan .owl-dots {
        display: none;
    }
}



/* Bottom */
.Bottom {
    background: #f0f0f0;
}

.BottomBox {
    padding: 60px 0;
}

.BottomLeft {
    width: 70%;
}

    .BottomLeft .BottomNav {
        width: 20%;
        float: left;
    }

        .BottomLeft .BottomNav h1 a {
            font-size: 20px;
        }

        .BottomLeft .BottomNav b {
            display: block;
            width: 30px;
            height: 2px;
            background: #ccc;
            margin: 10px 0;
        }

        .BottomLeft .BottomNav ul li {
            color: #666666;
            font-size: 14px;
            line-height: 35px;
        }

            .BottomLeft .BottomNav ul li a {
                color: #666;
            }

.BottomRight {
    text-align: center;
}

    .BottomRight .BottomTel {
        padding: 10px 0 20px 0;
    }

        .BottomRight .BottomTel p {
            font-size: 16px;
            color: #000;
        }

        .BottomRight .BottomTel b {
            display: inline-block;
            width: 25px;
            height: 2px;
            background: #ccc;
        }

        .BottomRight .BottomTel h1 {
            font-size: 34px;
            font-family: DIN;
            color: #1aa93a;
            font-weight: normal;
        }

    .BottomRight .BottomEr {
    }

        .BottomRight .BottomEr ul li {
            display: inline-block;
        }

            .BottomRight .BottomEr ul li:nth-child(2) {
                margin: 0 5px;
            }

            .BottomRight .BottomEr ul li img {
                width: 120px;
            }

            .BottomRight .BottomEr ul li p {
                font-size: 14px;
                color: #000;
                padding: 10px 0 0 0;
            }

.Copy {
    padding: 15px 0 20px 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #666666;
    font-size: 14px;
}

    .Copy a {
        color: #666;
    }

@media(max-width:1400px) {
    .BottomRight .BottomEr ul li img {
        width: 100px;
    }
}

@media(max-width:1200px) {
    .BottomRight .BottomEr ul li img {
        width: 90px;
    }
}

@media(max-width:1024px) {
    .BottomLeft {
        display: none;
    }

    .BottomRight {
        width: 100%;
    }
}

/* 关于我们 */
.About {
    padding: 130px 0;
    background: url(../uploadfiles/image/aboutbg.png) no-repeat bottom center #f5f5f5;
}

    .About .HomeTit {
        text-align: center;
        padding: 0 10%;
    }

.HomeTit {
    margin-bottom: 50px;
}

    .HomeTit h1 {
        font-family: "黑体";
        font-size: 40px;
        color: #000;
    }

    .HomeTit b {
        display: inline-block;
        width: 20px;
        height: 2px;
        background: #1aa93a;
        margin: 10px 0;
    }

    .HomeTit p {
        line-height: 30px;
    }

.AboutBox ul {
    height: 450px;
    background: url(../uploadfiles/image/aboutbg1.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}
.AboutBox ul::before{content:'';display: block;width:100%;height:100%;background:rgba(26,169,58,0.9);position: absolute;top:0;left:0;}

    .AboutBox ul::after {
        content: '';
        display: block;
        clear: both;
    }

    .AboutBox ul li {
        width: 25%;
        float: left;
        position: relative;
        height: 450px;
        background: #bac2c4;
        transition: all .5s;
        -webkit-transition: all .5s;
    }

        .AboutBox ul li:nth-child(2n) {
            background:#d3d5d4;
        }

        .AboutBox ul li .AboutImg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 99;
            opacity: 0;
        }

            .AboutBox ul li .AboutImg img {
                width: 100%;
                height: 100%;
            }

            .AboutBox ul li .AboutImg::after {
                content: '';
                display: block;
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background: rgba(0,0,0,0.3);
            }

        .AboutBox ul li .AboutNum {
            height: 450px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            position: relative;
            z-index: 999;
            color: #1ea543;
            font-size: 18px;
            font-weight: lighter;
        }

            .AboutBox ul li .AboutNum p strong {
                font-size: 70px;
                font-family: DIN;
                font-weight: normal;
            }

        .AboutBox ul li:hover {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
            z-index: 999;
        }

            .AboutBox ul li:hover .AboutImg {
                opacity: 1;
            }

.More {
    width: 180px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.5);
}

    .More a {
        color: #fff;
    }

    .More img {
        display: inline-block;
        margin-left: 10px;
        position: relative;
        top: -2px;
    }

.AboutMore {
    border: 1px solid #d9d9d9;
    margin-top: 80px;
}

    .AboutMore .m2 {
        display: none;
    }

    .AboutMore a {
        color: #333;
    }

.More:hover {
    background: #1aa93a;
    border: 1px solid #1aa93a;
}

    .More:hover a {
        color: #fff;
    }

.AboutMore:hover .m2 {
    display: inline-block;
}

.AboutMore:hover .m1 {
    display: none;
}

@media(max-width:1200px) {
    .AboutBox ul {
        height: 350px;
    }

        .AboutBox ul li {
            height: 350px;
        }

            .AboutBox ul li .AboutNum {
                height: 350px;
            }

                .AboutBox ul li .AboutNum p strong {
                    font-size: 50px;
                }
}

@media(max-width:992px) {
    .About {
        padding: 50px 0;
    }
}

@media(max-width:768px) {
    .HomeTit h1 {
        font-size: 25px;
    }

    .About .HomeTit {
        padding: 0 10px;
    }

    .AboutBox ul li {
        width: 50%;
        height: 100px;
    }

    .AboutBox ul {
        height: 200px;
    }

        .AboutBox ul li .AboutNum {
            height: 100px;
            font-size: 14px;
        }

            .AboutBox ul li .AboutNum p strong {
                font-size: 25px;
            }
}



/* 汽车玻璃安装 */
.Qcblaz {
    position: relative;
}

    .Qcblaz .QcblazImg {
        position: relative;
    }

        .Qcblaz .QcblazImg::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(0,0,0,0.1);
        }

    .Qcblaz .QcblazTxt {
        position: absolute;
        padding: 5% 15%;
        bottom: 0;
        left: 0;
        background: rgba(26,169,58,0.9);
        width: 63%;
        box-sizing: border-box;
    }

        .Qcblaz .QcblazTxt .QcLogo {
            position: absolute;
            right: -60px;
            top: 50%;
            margin-top: -60px;
        }

        .Qcblaz .QcblazTxt::after {
            content: '';
            height: 100px;
            width: 1px;
            background: #1aa93a;
            position: absolute;
            top: -60px;
            right: 20%;
        }

.HomeTit1 h1 {
    color: #fff;
}

.HomeTit1 p {
    color: #fff;
    opacity: 0.5;
}

.Qcblaz .More {
    margin: 0;
}

    .Qcblaz .More:hover {
        background: none;
        border: 1px solid #fff;
    }

@media(min-width:1439px) {
    .Qcblaz .QcblazImg img {
        min-height: 1078px;
    }
}

@media(max-width:992px) {
    .Qcblaz .QcblazTxt {
        padding: 3% 10% 3% 3%;
    }

    .HomeTit1 h1 {
        font-size: 20px;
    }

    .Qcblaz .QcblazTxt .QcLogo {
        width: 80px;
        right: -40px;
    }

    .More {
        width: 130px;
        height: 40px;
        line-height: 40px;
    }
}

@media(max-width:768px) {
    .Qcblaz .QcblazTxt .QcLogo {
        display: none;
    }

    .Qcblaz .QcblazTxt {
        width: 100%;
        box-sizing: border-box;
        position: static;
    }

        .Qcblaz .QcblazTxt::after {
            display: none;
        }
}

/* 汽车玻璃修复 */
.Pro {
    padding: 100px 0;
}

    .Pro .ProBox {
        margin-left: -2%;
    }

        .Pro .ProBox .ProList {
            float: left;
            width: 48%;
            margin-left: 2%;
            position: relative;
        }

            .Pro .ProBox .ProList .Proimg {
                position: relative;
            }

                .Pro .ProBox .ProList .Proimg::after {
                    content: '';
                    display: block;
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: rgba(0,0,0,0.1);
                    top: 0;
                    left: 0;
                }

            .Pro .ProBox .ProList .ProTxt {
                padding: 70px 80px;
                box-sizing: border-box;
                width: 100%;
                background: rgba(26,169,58,0.9);
                position: absolute;
                bottom: 0;
                left: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                transition: all .5s;
                -webkit-transition: all .5s;
                height: 372px;
            }

                .Pro .ProBox .ProList .ProTxt .HomeTit {
                    text-align: center;
                }

            .Pro .ProBox .ProList:hover .ProTxt {
                height: 100%;
            }

            .Pro .ProBox .ProList:hover .More {
                background: none;
                border: 1px solid #fff;
            }

@media(max-width:992px) {
    .Pro {
        padding: 50px 0;
    }

    .HomeTit {
        margin-bottom: 20px;
    }

    .Pro .ProBox .ProList .ProTxt {
        padding: 5%;
        height: 200px;
    }
}

@media(max-width:768px) {
    .Pro .ProBox .ProList {
        width: 100%;
        margin-bottom: 20px;
        margin-left: 0;
    }
}




/* 栏目页 */
/* 汽车玻璃 */
.nBan {
    position: relative;
    margin-top: 75px;
}

    .nBan .nBanImg {
        position: relative;
    }

        .nBan .nBanImg img {
            width: 100%;
        }

        .nBan .nBanImg::after {
            content: '';
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.2);
            top: 0;
            left: 0;
        }

    .nBan .nBanTxt {
        position: absolute;
        width: 100%;
        color: #fff;
        left: 0;
        top: 40%;
        text-align: right;
    }

        .nBan .nBanTxt p {
            font-size: 40px;
            font-family: "黑体";
        }

        .nBan .nBanTxt b {
            width: 30px;
            height: 3px;
            display: inline-block;
            background: #fff;
        }

.nNav {
    line-height: 80px;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 5px 10px #e5e5e5;
    background: #fff;
    position: relative;
}

#middle {
    position: absolute;
    width: 1px;
    height: 1;
    right: 1000%;
    top: 0;
}

.nNav .nNavBox .nNavtype {
    display: none;
}

.nNav .nNavBox ul li {
    float: left;
    margin-right: 50px;
    font-size: 18px;
    font-weight: lighter;
    position: relative;
}

    .nNav .nNavBox ul li a {
        display: block;
    }

    .nNav .nNavBox ul li::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: #1aa93a;
        position: absolute;
        bottom: -1px;
        left: 0;
        transition: all .5s;
        -webkit-transition: all .5s;
    }

    .nNav .nNavBox ul li:hover::after {
        width: 100%;
    }

    .nNav .nNavBox ul li.on::after {
        width: 100%;
    }

    .nNav .nNavBox ul li.on a {
        color: #1aa93a;
    }

    .nNav .nNavBox ul li.onli::after {
        width: 100%;
    }

    .nNav .nNavBox ul li.onli a {
        color: #1aa93a;
    }

.nNav.fix {
    position: fixed;
    width: 100%;
    top: 80px;
    z-index: 99999;
}

.Localtion {
    color: #666;
}

    .Localtion a {
        color: #666666;
        font-size: 14px;
    }

        .Localtion a:last-child {
            color: #333;
        }

    .Localtion img {
        position: relative;
        top: -2px;
    }

.nQc {
    padding: 90px 0;
}

    .nQc .nQcInfo {
        background: #f5f5f5;
    }

        .nQc .nQcInfo .nQcInfoRight {
            width: 55%;
        }

            .nQc .nQcInfo .nQcInfoRight video {
                object-fit: fill;
                width: 100%;
            }

        .nQc .nQcInfo .nQcInfoLeft {
            width: 45%;
            box-sizing: border-box;
            padding: 80px 70px;
        }

            .nQc .nQcInfo .nQcInfoLeft h1 {
                font-size: 40px;
                font-family: "黑体";
                font-weight: normal;
            }

            .nQc .nQcInfo .nQcInfoLeft b {
                display: inline-block;
                width: 30px;
                height: 3px;
                background: #1aa93a;
                margin: 10px 0;
            }

            .nQc .nQcInfo .nQcInfoLeft p {
                font-weight: lighter;
                line-height: 36px;
            }

            .nQc .nQcInfo .nQcInfoLeft ul {
                margin-top: 50px;
            }

                .nQc .nQcInfo .nQcInfoLeft ul li {
                    display: inline-block;
                    width: 180px;
                    height: 50px;
                    line-height: 50px;
                    text-align: center;
                    border-radius: 50px;
                    background: #1aa93a;
                }

                    .nQc .nQcInfo .nQcInfoLeft ul li a {
                        color: #fff;
                    }

    .nQc .nQcCon {
        margin-top: 50px;
    }



@media(max-width:1440px) {
    .nQc .nQcInfo .nQcInfoLeft {
        padding: 5% 4%;
    }
}

@media(max-width:1280px) {
    .nQc .nQcInfo .nQcInfoLeft {
        padding: 4% 3%;
    }

        .nQc .nQcInfo .nQcInfoLeft ul {
            margin-top: 30px;
        }
}

@media(max-width:1200px) {
    .nQc .nQcInfo .nQcInfoLeft h1 {
        font-size: 30px;
    }

    .nQc .nQcInfo .nQcInfoLeft ul li {
        width: 150px;
        height: 40px;
        line-height: 40px;
        border-radius: 40px;
    }
}


@media(max-width:992px) {
    .nBan {
        margin-top: 0;
    }

        .nBan .nBanTxt {
            top: 30%;
        }

            .nBan .nBanTxt p {
                font-size: 18px;
            }

            .nBan .nBanTxt b {
                width: 20px;
                height: 2px;
            }

    .Localtion {
        display: none;
    }

    .nNav {
        line-height: 40px;
        margin-top: 20px;
    }

        .nNav .nNavBox {
            width: 100%;
        }

            .nNav .nNavBox .nNavtype {
                display: block;
                width: 100%;
                text-align: center;
                background: #1aa93a;
                color: #fff;
                line-height: 40px;
            }

                .nNav .nNavBox .nNavtype b {
                    display: inline-block;
                    border-top: 5px solid #fff;
                    border-bottom: 5px solid transparent;
                    border-left: 5px solid transparent;
                    border-right: 5px solid transparent;
                    position: relative;
                    top: 2px;
                    margin-left: 5px;
                }

            .nNav .nNavBox ul {
                display: none;
            }

                .nNav .nNavBox ul li {
                    width: 100%;
                    font-size: 15px;
                    text-align: center;
                    border-bottom: 1px dashed #e6e6e6;
                }

                    .nNav .nNavBox ul li::after {
                        display: none;
                    }

    .nQc .nQcInfo .nQcInfoRight {
        width: 100%;
    }

    .nQc .nQcInfo .nQcInfoLeft {
        width: 100%;
    }
}

@media(max-width:768px) {
    .nQc .nQcInfo .nQcInfoLeft h1 {
        font-size: 20px;
    }
}

/* 汽车玻璃更换 */
.nCommon {
    padding: 100px 0;
}

.nTit {
    text-align: center;
    margin-bottom: 50px;
}

    .nTit h1 {
        font-size: 40px;
        font-family: "黑体";
        font-weight: normal;
    }

    .nTit b {
        display: inline-block;
        width: 20px;
        height: 2px;
        background: #1aa93a;
    }

.BlghBox {
    background: #f5f5f5;
    padding: 80px 100px;
}

    .BlghBox .BlghImg:first-child {
        margin-bottom: 70px;
    }

.Shop {
    text-align: center;
    margin-top: 80px;
}

    .Shop ul li {
        display: inline-block;
        margin: 0 10px;
        width: 360px;
        height: 90px;
        line-height: 90px;
        border-radius: 90px;
        background: url(../uploadfiles/image/more.png) no-repeat center right 40px #f0f0f0;
        text-align: left;
        text-indent: 4em;
    }

        .Shop ul li img {
            display: inline-block;
            margin-right: 20px;
        }

        .Shop ul li:hover {
            background: url(../uploadfiles/image/cmore.png) no-repeat center right 40px #1aa93a;
        }

            .Shop ul li:hover a {
                color: #fff;
            }

@media(max-width:768px) {
    .nCommon {
        padding: 30px 0;
    }

    .nTit {
        margin-bottom: 20px;
    }

        .nTit h1 {
            font-size: 25px;
        }

    .BlghBox {
        padding: 10px;
    }

        .BlghBox .BlghImg:first-child {
            margin-bottom: 20px;
        }

    .Shop {
        margin-top: 30px;
    }

        .Shop ul li {
            width: 150px;
            height: 50px;
            line-height: 50px;
            border-radius: 50px;
            text-indent: 2em;
            background: url(../uploadfiles/image/more.png) no-repeat center right 20px #f0f0f0;
        }

            .Shop ul li img {
                height: 30px;
                margin-right: 10px;
            }

            .Shop ul li:hover {
                background: url(../uploadfiles/image/cmore.png) no-repeat center right 20px #1aa93a;
            }
}

/* 办理会员 */
.BlhyBox {
    padding: 80px 100px;
    background: #f5f5f5;
}

    .BlhyBox .BlhyTit {
        text-align: center;
        background: url(../uploadfiles/image/hytitbg.png) no-repeat center center;
        font-size: 32px;
        color: #1aa93a;
        margin-bottom: 30px;
    }

        .BlhyBox .BlhyTit span {
            position: relative;
            top: -2px;
        }

.BlhyInfo .BlhyPart .BlhyPartTit {
    position: relative;
    padding-left: 15px;
    font-size: 24px;
    font-family: "黑体";
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #e5e5e5;
}

    .BlhyInfo .BlhyPart .BlhyPartTit::before {
        content: '';
        display: block;
        width: 3px;
        height: 18px;
        background: #1aa93a;
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -9px;
    }

.BlhyInfo .BlhyPart .BlhyPartCon {
    margin: 20px 0;
}

    .BlhyInfo .BlhyPart .BlhyPartCon table {
        background: #fff;
        width: 100%;
        text-align: center;
        border-collapse: collapse;
    }

        .BlhyInfo .BlhyPart .BlhyPartCon table td:first-child {
            width: 30%;
        }

        .BlhyInfo .BlhyPart .BlhyPartCon table td {
            border: 1px solid #e5e5e5;
            height: 70px
        }

            .BlhyInfo .BlhyPart .BlhyPartCon table td p {
                font-size: 14px;
                color: #666;
            }

        .BlhyInfo .BlhyPart .BlhyPartCon table tr:first-child {
            font-size: 18px;
        }

        .BlhyInfo .BlhyPart .BlhyPartCon table tr td:first-child {
            font-size: 18px;
        }

    .BlhyInfo .BlhyPart .BlhyPartCon .warn {
        font-weight: lighter;
        color: #ff0000;
        padding-top: 10px;
    }

    .BlhyInfo .BlhyPart .BlhyPartCon p {
        line-height: 30px;
        font-weight: lighter;
        padding: 10px 0;
    }

.BlhyInfo .BlhyInfoEnd {
    text-align: right;
}

    .BlhyInfo .BlhyInfoEnd p {
        font-size: 28px;
        padding: 10px 0;
        font-family: "黑体";
    }

    .BlhyInfo .BlhyInfoEnd span {
        font-size: 16px;
        color: #999999;
        font-weight: lighter;
    }

.ShopBtn {
    width: 300px;
    height: 80px;
    line-height: 80px;
    border-radius: 80px;
    background: url(../uploadfiles/image/cmore.png) no-repeat center right 40px #1aa93a;
    text-align: left;
    text-indent: 4em;
    margin: 80px auto 0;
}

    .ShopBtn a {
        color: #fff;
    }

    .ShopBtn img {
        display: inline-block;
        margin-right: 10px;
    }

@media(max-width:768px) {
    .BlhyBox {
        padding: 30px 10px 10px 10px;
    }

        .BlhyBox .BlhyTit {
            margin-bottom: 10px;
        }

            .BlhyBox .BlhyTit span {
                font-size: 20px;
            }

    .BlhyInfo .BlhyPart .BlhyPartTit {
        font-size: 18px;
    }

    .BlhyInfo .BlhyPart .BlhyPartCon table tr td:first-child {
        font-size: 14px;
    }

    .BlhyInfo .BlhyPart .BlhyPartCon table tr:first-child {
        font-size: 14px;
    }

    .ShopBtn {
        width: 200px;
        height: 50px;
        line-height: 50px;
        border-radius: 50px;
        margin-top: 30px;
    }

        .ShopBtn img {
            height: 25px;
        }

    .BlhyInfo .BlhyInfoEnd p {
        font-size: 16px;
    }
}

/* 服务网点 */
.WdcxSelect select {
    width: 46%;
    margin-right: 3%;
    float: left;
    height: 50px;
    border: 1px solid #d9d9d9;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    font-size: 16px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /*在选择框的最右侧中间显示小箭头图片*/
    background: url(../uploadfiles/image/select.png) no-repeat scroll right -1px center transparent;
}

.WdcxSelect button {
    width: 20%;
    float: left;
    height: 50px;
    border: none;
    background: #1aa93a;
    color: #fff;
    font-size: 18px;
}

.Wdcx .WdcxBox .WdcxCon {
    margin-top: 80px;
}

    .Wdcx .WdcxBox .WdcxCon .WdcxConLeft {
        width: 55%;
        height: 630px;
        overflow: auto;
    }

        .Wdcx .WdcxBox .WdcxCon .WdcxConLeft ul {
            padding-right: 30px;
        }

            .Wdcx .WdcxBox .WdcxCon .WdcxConLeft ul li {
                position: relative;
                padding: 0 0 30px 60px;
                border-bottom: 1px solid #e5e5e5;
                margin-top: 60px;
            }

                .Wdcx .WdcxBox .WdcxCon .WdcxConLeft ul li:first-child {
                    margin-top: 0;
                }

                .Wdcx .WdcxBox .WdcxCon .WdcxConLeft ul li .num {
                    width: 30px;
                    height: 30px;
                    background: #1aa93a;
                    text-align: center;
                    line-height: 30px;
                    color: #fff;
                    font-family: DIN;
                    font-size: 18px;
                    position: absolute;
                    left: 0;
                    top: 0;
                }

                .Wdcx .WdcxBox .WdcxCon .WdcxConLeft ul li .WdcxConTxt {
                    background: url(../uploadfiles/image/dw.png) no-repeat top right;
                }

                    .Wdcx .WdcxBox .WdcxCon .WdcxConLeft ul li .WdcxConTxt h1 {
                        font-size: 22px;
                        font-family: "黑体";
                        color: #333;
                    }

                    .Wdcx .WdcxBox .WdcxCon .WdcxConLeft ul li .WdcxConTxt b {
                        display: block;
                        width: 60px;
                        height: 2px;
                        background: #1aa93a;
                        margin: 10px 0;
                    }

                    .Wdcx .WdcxBox .WdcxCon .WdcxConLeft ul li .WdcxConTxt dl dd {
                        line-height: 30px;
                        font-weight: lighter;
                    }


/*    .Wdcx .WdcxBox .WdcxCon .WdcxConRight {
        width: 40%;
    }

        .Wdcx .WdcxBox .WdcxCon .WdcxConRight .Map #map {
            width: 100%;
            height: 630px;
        }*/
   .WdcxConRight {
        width: 100%;
    }

         .WdcxConRight .Map #map {
            width: 100%;
            height: 630px;
        }

::-webkit-scrollbar { /*滚动条整体样式*/
    width: 3px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #1aa93a;
}

::-webkit-scrollbar-track { /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 3px;
    background: #EDEDED;
}

@media(max-width:768px) {
    .WdcxSelect select {
        height: 35px;
        padding: 0 5px;
        font-size: 14px;
    }

    .WdcxSelect button {
        height: 35px;
        font-size: 14px;
    }

    .Wdcx .WdcxBox .WdcxCon {
        margin-top: 30px;
    }

        .Wdcx .WdcxBox .WdcxCon .WdcxConLeft {
            width: 100%;
            height: 395px
        }

        .Wdcx .WdcxBox .WdcxCon .WdcxConRight {
            width: 100%;
            margin-top: 20px;
        }

            .Wdcx .WdcxBox .WdcxCon .WdcxConRight .Map #map {
                height: 300px;
            }

        .Wdcx .WdcxBox .WdcxCon .WdcxConLeft ul li {
            padding: 0 0 20px 40px;
            margin-top: 30px;
        }

            .Wdcx .WdcxBox .WdcxCon .WdcxConLeft ul li .WdcxConTxt h1 {
                font-size: 16px;
            }
}

/* 其他常见问题 */
.Help {
    background: #f5f5f5;
}

    .Help .HelpList {
        background: url(../uploadfiles/image/help.png) no-repeat center right 50px #fff;
        margin-bottom: 20px;
        padding: 40px 120px 60px 60px;
        transition: all .5s;
        -webkit-transition: all .5s;
    }
.Help .shareList {
        background: url(../uploadfiles/image/help.png) no-repeat center right 50px #fff;
        margin-bottom: 20px;
        padding: 20px 100px 20px 20px;
        transition: all .5s;
        -webkit-transition: all .5s;
    }

        .Help .HelpList .HelpW {
            padding-bottom: 15px;
            border-bottom: 1px solid #1aa93a;
            margin-bottom: 15px;
        }

            .Help .HelpList .HelpW span {
                font-size: 22px;
                font-family: "黑体";
            }

            .Help .HelpList .HelpW b, .Help .HelpList .HelpD b {
                width: 3%;
                float: left;
                font-size: 22px;
                font-family: DIN;
                color: #333;
            }
             .Help .HelpList .HelpD {height:60px;overflow:hidden;}
              .Help .HelpList .HelpD.on{height:auto;}

            .Help .HelpList .HelpW span, .Help .HelpList .HelpD span {
                width: 97%;
                float: left;
            }

            .Help .HelpList .HelpW::after, .Help .HelpList .HelpD::after {
                content: '';
                display: block;
                clear: both;
            }

        .Help .HelpList .HelpD span {
            font-size: 14px;
            line-height: 30px;
            font-weight: lighter;
            color: #333;
        }

        .Help .HelpList:hover {
            background: url(../uploadfiles/image/chelp.png) no-repeat center right 50px #fff;
            transform: translate3d(0,-3px,0);
            -webkit-transform: translate3d(0,-3px,0);
            box-shadow: 0 10px 30px #c4c4c4;
        }

@media(max-width:768px) {
    .Help .HelpList {
        padding: 10px 40px 10px 10px;
        background: url(../uploadfiles/image/help.png) no-repeat center right 10px #fff;
    }

        .Help .HelpList .HelpW b, .Help .HelpList .HelpD b {
            width: 10%;
        }

        .Help .HelpList .HelpW span, .Help .HelpList .HelpD span {
            width: 90%;
        }

        .Help .HelpList:hover {
            background: url(../uploadfiles/image/chelp.png) no-repeat center right 10px #fff;
        }

        .Help .HelpList .HelpW {
            padding-bottom: 10px;
        }

            .Help .HelpList .HelpW b, .Help .HelpList .HelpD b {
                font-size: 16px;
            }

            .Help .HelpList .HelpW span {
                font-size: 16px;
                font-family: "微软雅黑";
            }
}


/* Pages */
.Pages {
    text-align: center;
    margin: 50px 0;
    color: #666666;
}

    .Pages a {
        height: 40px;
        width: 40px;
        background: #fff;
        display: inline-block;
        line-height: 40px;
        margin: 5px 2px;
    }

.Pages1 a {
    background: #f0f0f0;
}

.Pages a:hover {
    color: #fff;
    background: #1aa93a;
}

.Pages a.a_cur {
    color: #fff;
    background: #1aa93a;
}

.Pages .num a {
    width: 40px;
    padding: 0;
}

.Pages .num {
    font-style: normal;
}

.Pages .p_count {
    height: 34px;
    padding: 0 10px;
    border: 1px solid #e6e6e6;
    display: inline-block;
    line-height: 34px;
}

.Pages a.a_prev, .Pages a.a_next {
    width: 80px;
}

.Pages a.a_prev {
    margin-right: 20px;
}

.Pages a.a_next {
    margin-left: 20px;
}

.Pages a.a_prev b {
    display: inline-block;
    border-right: 5px solid #343434;
    border-left: 5px solid transparent;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.Pages a.a_next b {
    display: inline-block;
    border-left: 5px solid #343434;
    border-right: 5px solid transparent;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.Pages a.a_prev:hover b {
    border-right: 5px solid #fff;
}

.Pages a.a_next:hover b {
    border-left: 5px solid #fff;
}

@media(max-width:992px) {
    .Pages a {
        height: 30px;
        line-height: 30px;
        padding: 0 5px;
        margin: 5px 0;
    }

    .Pages .num a {
        width: 30px;
    }

    .Pages a.a_prev, .Pages a.a_next {
        width: 40px;
    }
}

/* 汽车玻璃基础知识 */
.BaseBox .BaseInfo .BaseTit {
    font-size: 28px;
    font-family: "黑体";
    position: relative;
    padding: 15px 0;
    padding-left: 15px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 20px;
}

    .BaseBox .BaseInfo .BaseTit::before {
        content: '';
        width: 2px;
        height: 24px;
        background: #1aa93a;
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -12px;
    }

.BaseBox .BaseInfo .BasePart .BaseDec {
    line-height: 35px;
    font-weight: lighter;
    margin-bottom: 10px;
}

.BaseBox .BaseInfo .BasePart {
    margin-bottom: 40px;
}

    .BaseBox .BaseInfo .BasePart ul {
        margin-left: -3%;
    }

        .BaseBox .BaseInfo .BasePart ul::after {
            content: '';
            display: block;
            clear: both;
        }

        .BaseBox .BaseInfo .BasePart ul li {
            width: 47%;
            margin-left: 3%;
            float: left;
            background: #f0f0f0;
            padding: 50px 40px 50px 50px;
            box-sizing: border-box;
        }

            .BaseBox .BaseInfo .BasePart ul li h1 {
                font-size: 24px;
                font-family: "黑体";
            }

            .BaseBox .BaseInfo .BasePart ul li b {
                display: block;
                width: 60px;
                height: 1px;
                background: #1aa93a;
                margin: 15px 0;
            }

            .BaseBox .BaseInfo .BasePart ul li .BaseTxt {
                line-height: 35px;
                font-weight: lighter;
                height: 210px;
                padding-right: 10px;
                overflow: auto;
            }

@media(max-width:768px) {
    .BaseBox .BaseInfo .BaseTit {
        font-size: 20px;
    }

    .BaseBox .BaseInfo .BasePart ul {
        margin-left: 0;
    }

        .BaseBox .BaseInfo .BasePart ul li {
            width: 100%;
            margin-left: 0;
            padding: 20px 10px 20px 20px;
            margin-bottom: 10px;
        }

            .BaseBox .BaseInfo .BasePart ul li h1 {
                font-size: 18px;
            }
}

/* 正品鉴别 */
.ZpjbBox .ZpjbLIst {
    background: #f0f0f0;
    margin-bottom: 30px;
    padding: 50px 100px 50px 60px
}

    .ZpjbBox .ZpjbLIst .ZpjbImg {
        width: 34.5%;
        position: relative;
        padding-top: 300px;
    }

        .ZpjbBox .ZpjbLIst .ZpjbImg span {
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
            position: absolute;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .ZpjbBox .ZpjbLIst .ZpjbTxt {
        width: 61%;
        height: 300px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

        .ZpjbBox .ZpjbLIst .ZpjbTxt h1 {
            font-size: 24px;
            font-family: "黑体";
        }

        .ZpjbBox .ZpjbLIst .ZpjbTxt b {
            display: block;
            width: 60px;
            height: 2px;
            background: #1aa93a;
            margin: 15px 0;
        }

        .ZpjbBox .ZpjbLIst .ZpjbTxt .ZpjbDec {
            font-weight: lighter;
            line-height: 35px;
        }

@media(max-width:992px) {
    .ZpjbBox .ZpjbLIst {
        padding: 30px;
    }

        .ZpjbBox .ZpjbLIst .ZpjbImg {
            width: 100%;
            padding-top: 69%;
        }

        .ZpjbBox .ZpjbLIst .ZpjbTxt {
            width: 100%;
            height: auto;
            margin-top: 20px;
        }

            .ZpjbBox .ZpjbLIst .ZpjbTxt h1 {
                font-size: 18px;
            }

            .ZpjbBox .ZpjbLIst .ZpjbTxt b {
                width: 40px;
            }
}

@media(max-width:768px) {
    .ZpjbBox .ZpjbLIst {
        padding: 10px;
    }
}



/* 注意事项 */
.ZysxBox {
    position: relative;
}

.ZysxLeft {
    position: absolute;
    border: 10px solid #fff;
    max-width: 42%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0;
    top: 50%;
}

    .ZysxLeft img {
        width: 100%;
    }

.ZysxRight {
    width: 70%;
    background: #f0f0f0;
    box-sizing: border-box;
    padding: 100px 100px 80px 20%;
}

    .ZysxRight .ZysxTxt p {
        line-height: 36px;
        padding: 15px 0;
        border-bottom: 1px solid #e6e6e6;
    }

        .ZysxRight .ZysxTxt p:last-child {
            border: none;
        }


@media(max-width:1440px) {
    .ZysxRight {
        padding: 70px 70px 70px 18%;
    }
}

@media(max-width:992px) {
    .ZysxLeft {
        box-sizing: border-box;
        border: none;
        max-width: 100%;
        width: 100%;
        position: static;
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }

    .ZysxRight {
        width: 100%;
        padding: 10px;
    }

        .ZysxRight .ZysxTxt p {
            line-height: 28px;
            padding: 10px 0;
        }
}

/* 公司介绍 */
.nAboutBox {
    min-height: 740px;
}

    .nAboutBox .nAboutImg {
        margin-right: 50px;
        margin-bottom: 20px;
        position: relative;
        max-width: 50%;
    }

        .nAboutBox .nAboutImg::before {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            background: #f8f8f8;
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: -1;
        }

.nAboutTxt .nTit {
    text-align: left;
}

.nAboutTxt .nAboutDetail {
    line-height: 35px;
    font-weight: lighter;
}

@media(max-width:768px) {
    .nAboutBox .nAboutImg {
        margin-right: 20px;
    }

        .nAboutBox .nAboutImg::before {
            left: 5px;
            top: 5px;
        }
}

/* 联系我们 */
.conDetail {
    background: url(../uploadfiles/image/contactbg.png) no-repeat bottom left 90px #f5f5f5;
    padding: 60px 100px 40px 100px;
}

    .conDetail .item1 {
        width: 40%;
        margin-right: 5%;
    }

    .conDetail .item h1 {
        font-size: 28px;
        font-family: "黑体";
    }

    .conDetail .item b {
        display: block;
        width: 60px;
        height: 2px;
        background: #1aa93a;
        margin: 15px 0;
    }

    .conDetail .item .itemTxt {
        margin-top: 10px;
        font-weight: lighter;
        line-height: 35px;
    }

    .conDetail .item .itemTel {
        margin-top: 10px;
        font-size: 32px;
        font-family: DIN;
        color: #1aa93a;
    }

    .conDetail .item .conEr {
        text-align: center;
    }

        .conDetail .item .conEr img {
            width: 180px;
        }

        .conDetail .item .conEr p {
            padding-top: 10px;
        }

.conMap #map {
    height: 500px;
}

@media(max-width:1200px) {
    .conDetail {
        padding: 30px 50px;
    }

        .conDetail .item h1 {
            font-size: 20px;
        }

        .conDetail .item .conEr img {
            width: 130px;
        }
}

@media(max-width:992px) {
    .conDetail {
        padding: 15px;
    }

        .conDetail .item1 {
            margin-right: 0;
        }

        .conDetail .item {
            width: 100%;
            margin-bottom: 20px;
        }

            .conDetail .item h1 {
                font-size: 18px;
            }

            .conDetail .item .itemTel {
                font-size: 20px;
            }

    .conMap #map {
        height: 300px;
    }
}

/* 荣誉照片 */
.Honor {
    background: #f5f5f5;
}

.HonorBox {
    margin-left: -2%;
}

    .HonorBox .HonorList {
        width: 23%;
        margin-left: 2%;
        float: left;
        box-sizing: border-box;
        margin-bottom: 30px;
    }

        .HonorBox .HonorList .HonorImg {
            border: 10px solid #fff;
            overflow: hidden;
        }

            .HonorBox .HonorList .HonorImg img {
                width: 100%;
                transition: all .5s;
                -webkit-transition: all .5s;
            }

        .HonorBox .HonorList p {
            text-align: center;
            padding-top: 10px;
            font-weight: lighter;
        }

        .HonorBox .HonorList:hover .HonorImg img {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
        }

@media(max-width:1439px) {
    .HonorBox .HonorList .HonorImg img {
        height: 205px;
    }
}

@media(max-width:1366px) {
    .HonorBox .HonorList .HonorImg img {
        height: 193px;
    }
}

@media(max-width:1280px) {
    .HonorBox .HonorList .HonorImg img {
        height: 180px;
    }
}

@media(max-width:992px) {
    .HonorBox .HonorList {
        width: 48%;
    }

        .HonorBox .HonorList .HonorImg img {
            height: 300px;
        }
}

@media(max-width:768px) {
    .HonorBox .HonorList .HonorImg img {
        height: 230px;
    }
}

@media(max-width:480px) {
    .HonorBox .HonorList .HonorImg img {
        height: 105px;
    }
}


/* 宣传视频 */
.nVideo {
    background: #f5f5f5;
}

.nVideoList {
    background: #fff;
    margin-bottom: 30px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

    .nVideoList:hover {
        transform: translate3d(0,-3px,0);
        -webkit-transform: translate3d(0,-3px,0);
        box-shadow: 0 10px 20px #ddd;
        ;
    }

    .nVideoList .nVideoImg {
        width: 60%;
        float: left;
    }

        .nVideoList .nVideoImg video {
            object-fit: fill;
            width: 100%;
            position: relative;
            top: 2px;
        }

            .nVideoList .nVideoImg video:focus {
                outline: none;
            }

    .nVideoList .nVideoTxt {
        width: 40%;
        float: right;
        background: url(../uploadfiles/image/videologo.png) no-repeat bottom 10px right 10px;
        height: 485px;
        box-sizing: border-box;
        padding: 5% 3%;
    }

        .nVideoList .nVideoTxt h1 {
            font-size: 32px;
            font-family: "黑体";
        }

        .nVideoList .nVideoTxt b {
            display: block;
            width: 60px;
            height: 2px;
            background: #1aa93a;
            margin: 15px 0 25px 0;
        }

        .nVideoList .nVideoTxt .nVideoDec {
            line-height: 35px;
            font-weight: lighter;
            height: 280px;
            overflow: auto;
        }

    .nVideoList:nth-child(2n) .nVideoImg {
        float: right;
    }

@media(max-width:1500px) {
    .nVideoList .nVideoTxt {
        padding: 3%;
        height: 460px;
    }
}

@media(max-width:1366px) {
    .nVideoList .nVideoTxt {
        height: 415px;
    }
}

@media(max-width:1280px) {
    .nVideoList .nVideoTxt {
        height: 390px;
    }

        .nVideoList .nVideoTxt .nVideoDec {
            height: 210px;
        }

        .nVideoList .nVideoTxt h1 {
            font-size: 25px;
        }
}

@media(max-width:992px) {
    .nVideoList .nVideoImg {
        width: 100%;
    }

    .nVideoList .nVideoTxt {
        width: 100%;
        height: auto;
    }

        .nVideoList .nVideoTxt .nVideoDec {
            height: auto;
        }

        .nVideoList .nVideoTxt h1 {
            font-size: 18px;
        }

        .nVideoList .nVideoTxt b {
            width: 40px;
        }
}

/* 信艺玻璃历史 */
.deveBox {
    position: relative;
    padding: 30px 0;
}

    .deveBox::after {
        content: '';
        display: block;
        height: 100%;
        border-left: 1px solid #e6e6e6;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        background: #e6e6e6;
        z-index: 9;
    }

    .deveBox .deveList {
        background: url(../uploadfiles/image/lczs.png) no-repeat center center;
        height: 180px;
        margin-bottom: 20px;
    }

        .deveBox .deveList:first-child {
            background: url(../uploadfiles/image/firstlc.png) no-repeat center center;
            z-index: 999;
            position: relative;
        }

        .deveBox .deveList .deveTime, .deveBox .deveList .deveCon {
            width: 45%;
            height: 100%;
        }

        .deveBox .deveList .deveTime {
            float: right;
            display: flex;
            justify-content: center;
            flex-direction: column;
            height: 100%;
            font-size: 45px;
            font-family: DIN;
            color: #1aa93a;
        }

        .deveBox .deveList .deveCon {
            float: left;
            background: #f4f4f4;
        }

            .deveBox .deveList .deveCon .deveImg {
                width: 40%;
                height: 100%;
                vertical-align: middle;
            }

            .deveBox .deveList .deveCon .deveTxt {
                width: 60%;
                display: flex;
                justify-content: center;
                flex-direction: column;
                height: 100%;
                box-sizing: border-box;
                padding: 10px 20px;
                line-height: 25px;
                font-weight: lighter;
            }

                .deveBox .deveList .deveCon .deveTxt .Txt {
                    overflow: auto;
                }


        .deveBox .deveList:nth-child(2n) .deveTime {
            float: left;
            text-align: right;
        }

        .deveBox .deveList:nth-child(2n) .deveCon {
            float: right;
        }

@media(max-width:600px) {
    .deveBox .deveList {
        height: auto;
    }

        .deveBox .deveList .deveTime {
            height: 280px;
            font-size: 30px;
        }

        .deveBox .deveList .deveCon .deveImg {
            width: 100%;
        }

        .deveBox .deveList .deveCon .deveTxt {
            width: 100%;
            padding: 10px;
        }
}

/* 连锁加盟 */
.Jiameng {
    background: #f5f5f5;
}

.jmBox {
    padding: 100px 0;
}

.ysBox {
    position: relative;
}

    .ysBox::before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background: #e6e6e6;
        position: absolute;
        top: 5px;
    }

.jmys .w1440 .slider {
    padding: 0 100px;
}

.jmys .slider-for .ysTit {
    margin: 0 30px;
    text-align: center;
    padding-top: 30px;
    background: url(../uploadfiles/image/y.png) no-repeat top center;
}

    .jmys .slider-for .ysTit:before {
        content: '';
    }

.jmys .slider-nav {
    margin-top: 20px;
}

    .jmys .slider-nav .ysitem {
        margin: 0 30px;
    }

        .jmys .slider-nav .ysitem:focus {
            outline: none;
        }

        .jmys .slider-nav .ysitem .ysImg img {
            width: 100%;
        }

    .jmys .slider-nav .ysTxt {
        width: 80%;
        margin: -60px auto 0;
        background: #fff;
        z-index: 9999;
        position: relative;
        padding: 35px 40px 20px 40px;
        box-sizing: border-box;
    }

        .jmys .slider-nav .ysTxt h1 {
            font-size: 26px;
            font-family: "黑体";
            padding-bottom: 10px;
        }

        .jmys .slider-nav .ysTxt p {
            font-weight: lighter;
            line-height: 30px;
            height: 90px;
        }

.jmys .slider-for .ysTit:focus {
    outline: none;
}

.jmys .slick-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    z-index: 998;
    line-height: 1000px;
    overflow: hidden;
    top: -20px;
    ;
}

    .jmys .slick-arrow.slick-prev {
        background: url(../uploadfiles/image/prev.png) no-repeat center center #fff;
        left: 0;
    }

    .jmys .slick-arrow.slick-next {
        background: url(../uploadfiles/image/next.png) no-repeat center center #fff;
        right: 0;
    }

    .jmys .slick-arrow.slick-prev:hover {
        background: url(../uploadfiles/image/cprev.png) no-repeat center center #1aa93a;
    }

    .jmys .slick-arrow.slick-next:hover {
        background: url(../uploadfiles/image/cnext.png) no-repeat center center #1aa93a;
    }


.jmzz {
    background: url(../uploadfiles/image/jmbg1.jpg) no-repeat center center;
    background-size: cover;
}

    .jmzz .nTit {
        color: #fff;
    }

    .jmzz .zzTable table {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
    }

        .jmzz .zzTable table tr:first-child {
            background: #1aa93a;
            font-size: 24px;
            color: #fff;
            font-family: "黑体";
        }

            .jmzz .zzTable table tr:first-child td {
                border-top: none;
                border-left: none;
            }

                .jmzz .zzTable table tr:first-child td:last-child {
                    border-right: none
                }

        .jmzz .zzTable table tr:nth-child(2n) {
            background: #f5f5f5;
        }

        .jmzz .zzTable table td {
            height: 70px;
            border: 1px solid #fff;
            width: 25%;
            text-align: center;
            font-weight: lighter;
        }

    .jmzz .zzPart {
        margin-top: 30px;
    }

        .jmzz .zzPart .yqItem {
            width: 31%;
        }

        .jmzz .zzPart .tjItem {
            width: 67%;
        }

        .jmzz .zzPart .itemName {
            text-align: center;
        }

            .jmzz .zzPart .itemName span {
                font-size: 26px;
                font-family: "黑体";
                color: #fff;
            }

                .jmzz .zzPart .itemName span::before, .jmzz .zzPart .itemName span::after {
                    content: '';
                    display: inline-block;
                    width: 20px;
                    height: 2px;
                    background: #fff;
                    margin: 0 15px;
                    position: relative;
                    top: -7px;
                }

        .jmzz .zzPart .itemBox {
            background: #fff;
            margin-top: 20px;
        }

        .jmzz .zzPart .yqItem .itemBox {
            padding: 19px 30px;
        }

            .jmzz .zzPart .yqItem .itemBox ul li {
                padding: 10px 0 10px 20px;
                border-bottom: 1px solid #e5e5e5;
            }

                .jmzz .zzPart .yqItem .itemBox ul li p {
                    position: relative;
                    font-size: 18px;
                    padding-bottom: 5px;
                }

                    .jmzz .zzPart .yqItem .itemBox ul li p::before {
                        content: '';
                        display: block;
                        width: 5px;
                        height: 5px;
                        background: #1aa93a;
                        border-radius: 50%;
                        position: absolute;
                        top: 10px;
                        left: -20px;
                    }

                .jmzz .zzPart .yqItem .itemBox ul li span {
                    font-weight: lighter;
                    font-size: 14px;
                }

                .jmzz .zzPart .yqItem .itemBox ul li:last-child {
                    border: none;
                }

        .jmzz .zzPart .tjItem .itemBox {
            padding: 5px 30px;
        }

            .jmzz .zzPart .tjItem .itemBox ul li {
                padding: 15px 0;
                border-bottom: 1px solid #e5e5e5;
                font-weight: lighter;
            }

                .jmzz .zzPart .tjItem .itemBox ul li .num {
                    display: inline-block;
                    width: 30px;
                    height: 30px;
                    background: url(../uploadfiles/image/numbg.png) no-repeat;
                    background-size: 100% 100%;
                    color: #fff;
                    text-align: center;
                    line-height: 30px;
                    font-family: DIN;
                }

                .jmzz .zzPart .tjItem .itemBox ul li:last-child {
                    border: none;
                }

.jmlc {
    background: url(../uploadfiles/image/jmbg2.jpg) no-repeat center center;
    background-size: cover;
}

    .jmlc .lcBox {
        position: relative;
        height: 250px;
    }

        .jmlc .lcBox::after {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            background: #e5e5e5;
            position: absolute;
            top: 50%;
            left: 0;
            z-index: 9;
        }

        .jmlc .lcBox ul {
            position: relative;
        }

            .jmlc .lcBox ul li {
                width: 14.2857%;
                float: left;
                height: 250px;
                background: url(../uploadfiles/image/lczs1.png) no-repeat center center;
                z-index: 99;
                position: relative;
            }

                .jmlc .lcBox ul li::after {
                    content: '';
                    display: block;
                    width: 30px;
                    height: 30px;
                    background: url(../uploadfiles/image/lcjt.png) no-repeat center center;
                    position: absolute;
                    top: 50%;
                    right: 0;
                    margin-top: -15px;
                }

                .jmlc .lcBox ul li:last-child::after {
                    display: none;
                }

                .jmlc .lcBox ul li .lcTxt {
                    background: #fff;
                    text-align: center;
                    padding: 20px 0;
                    position: relative;
                }

                    .jmlc .lcBox ul li .lcTxt img {
                        height: 28px;
                    }

                    .jmlc .lcBox ul li .lcTxt p {
                        padding-top: 15px;
                        font-size: 18px;
                        font-family: "黑体";
                    }

                    .jmlc .lcBox ul li .lcTxt::after {
                        content: '';
                        display: block;
                        border-top: 10px solid #fff;
                        border-left: 10px solid transparent;
                        border-right: 10px solid transparent;
                        border-bottom: 10px solid transparent;
                        position: absolute;
                        bottom: -20px;
                        left: 50%;
                        margin-left: -10px;
                    }

                .jmlc .lcBox ul li:nth-child(2n) {
                }

                    .jmlc .lcBox ul li:nth-child(2n) .lcTxt {
                        margin-top: 148px;
                    }

                        .jmlc .lcBox ul li:nth-child(2n) .lcTxt::after {
                            display: none;
                        }

                        .jmlc .lcBox ul li:nth-child(2n) .lcTxt::before {
                            content: '';
                            display: block;
                            border-bottom: 10px solid #fff;
                            border-left: 10px solid transparent;
                            border-right: 10px solid transparent;
                            border-top: 10px solid transparent;
                            position: absolute;
                            top: -20px;
                            left: 50%;
                            margin-left: -10px;
                        }



.jmsq {
    background: #fff;
}

.sqBox {
    background: url(../uploadfiles/image/jmbg3.jpg) no-repeat center center;
    background-size: cover;
    padding: 80px 100px;
}

    .sqBox form {
        width: 100%;
    }

    .sqBox .formBox {
        margin-left: -2%;
    }

        .sqBox .formBox .formList {
            width: 48%;
            margin-left: 2%;
            float: left;
            height: 70px;
            background: #fff;
            margin-bottom: 20px;
        }

            .sqBox .formBox .formList input {
                width: 100%;
                box-sizing: border-box;
                padding: 0 20px;
                height: 100%;
                font-size: 16px;
            }

    .sqBox .formBtn {
        text-align: center;
        padding-top: 20px;
    }

        .sqBox .formBtn button {
            width: 300px;
            height: 70px;
            border: none;
            background: #1aa93a;
            color: #fff;
            font-size: 24px;
            font-family: "黑体";
            margin: 0 10px;
        }

            .sqBox .formBtn button.reset {
                background: #999999;
            }


.jlhBox .item ul li {
    background: #fff;
    margin-bottom: 30px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

    .jlhBox .item ul li .JlhImg {
        width: 30%;
        position: relative;
        padding-top: 255px;
    }

        .jlhBox .item ul li .JlhImg span {
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
            position: absolute;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .jlhBox .item ul li .JlhTxt {
        width: 70%;
        box-sizing: border-box;
        padding: 3%;
    }

        .jlhBox .item ul li .JlhTxt .JlhMore {
            font-size: 14px;
            font-weight: lighter;
            color: #333;
        }

            .jlhBox .item ul li .JlhTxt .JlhMore img {
                width: auto;
                display: inline-block;
                position: relative;
                top: -2px;
                margin-left: 10px;
            }

        .jlhBox .item ul li .JlhTxt .JlhName span {
            color: #bfbfbf;
            font-family: DIN;
        }

        .jlhBox .item ul li .JlhTxt .JlhName h1 {
            font-size: 24px;
            font-family: "黑体";
            margin: 10px 0;
        }

        .jlhBox .item ul li .JlhTxt .JlhName b {
            display: block;
            width: 30px;
            height: 2px;
            background: #1aa93a;
        }

        .jlhBox .item ul li .JlhTxt .JlhDec {
            line-height: 30px;
            font-weight: lighter;
            margin: 15px 0;
            color: #333;
        }

    .jlhBox .item ul li:hover {
        transform: translate3d(0,-3px,0);
        -webkit-transform: translate3d(0,-3px,0);
        box-shadow: 0 10px 20px #ddd;
    }

.jlhBox .owl-dots {
    display: none;
}

.jlhBox .owl-nav {
    display: block;
}

    .jlhBox .owl-nav button {
        position: absolute;
        top: 50%;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #e6e6e6;
        box-sizing: border-box;
        margin-top: -25px;
    }

        .jlhBox .owl-nav button.owl-prev {
            background: url(../uploadfiles/image/prev.png) no-repeat center center #fff;
            left: -70px;
        }

        .jlhBox .owl-nav button.owl-next {
            background: url(../uploadfiles/image/next.png) no-repeat center center #fff;
            right: -70px;
        }

        .jlhBox .owl-nav button span {
            display: none;
        }

        .jlhBox .owl-nav button.owl-prev:hover {
            background: url(../uploadfiles/image/cprev.png) no-repeat center center #1aa93a;
        }

        .jlhBox .owl-nav button.owl-next:hover {
            background: url(../uploadfiles/image/cnext.png) no-repeat center center #1aa93a;
        }

@media(max-width:992px) {
    .jmBox {
        padding: 30px 0;
    }

    .jmys .w1440 .slider {
        padding: 0 10px;
    }

    .jmys .slider-nav .ysitem {
        margin: 0;
    }

    .jmys .slider-nav .ysTxt {
        width: 100%;
        margin-top: 0;
        padding: 10px;
    }

        .jmys .slider-nav .ysTxt h1 {
            font-size: 20px;
        }

    .jmzz .zzTable table tr:first-child {
        font-size: 16px;
    }

    .jmzz .zzPart .yqItem {
        width: 100%;
    }

    .jmzz .zzPart .tjItem {
        width: 100%;
        margin-top: 20px;
    }





    .sqBox {
        padding: 20px;
    }

        .sqBox .formBox .formList {
            width: 100%;
            height: 50px;
        }

        .sqBox .formBtn button {
            width: 120px;
            height: 50px;
            font-size: 16px;
        }

    .jlhBox .item ul li .JlhImg {
        width: 100%;
        padding-top: 68%;
    }

    .jlhBox .item ul li .JlhTxt {
        width: 100%;
    }

        .jlhBox .item ul li .JlhTxt .JlhName h1 {
            font-size: 18px;
        }

    .jlhBox .owl-nav button {
        display: none;
    }

        .jlhBox .owl-nav button.owl-prev {
            left: 0;
        }

        .jlhBox .owl-nav button.owl-next {
            right: 0;
        }

    .nNav.fix {
        position: static;
    }
}

@media(max-width:768px) {
    .jmlc .lcBox {
        height: auto;
    }

        .jmlc .lcBox ul li {
            height: auto;
            background: none;
        }

        .jmlc .lcBox::after {
            display: none;
        }

        .jmlc .lcBox ul li::after {
            display: none;
        }

        .jmlc .lcBox ul li {
            width: 50%;
        }

            .jmlc .lcBox ul li:nth-child(2n) .lcTxt::before {
                display: none;
            }

            .jmlc .lcBox ul li .lcTxt::after {
                display: none;
            }

            .jmlc .lcBox ul li:nth-child(2n) .lcTxt {
                margin-top: 0;
            }

            .jmlc .lcBox ul li:nth-child(2) .lcTxt, .jmlc .lcBox ul li:nth-child(3) .lcTxt, .jmlc .lcBox ul li:nth-child(6) .lcTxt, .jmlc .lcBox ul li:nth-child(7) .lcTxt {
                background: #e6e6e6;
            }
}

/* 新闻详情 */
.NewsInfo {
    padding: 75px 0;
}

    .NewsInfo .NewsInfoTit {
        text-align: center;
        padding: 20px 0;
        border-bottom: 1px dashed #dedede;
    }

        .NewsInfo .NewsInfoTit h1 {
            font-size: 28px;
            font-weight: bold;
            color: #1aa93a;
        }

        .NewsInfo .NewsInfoTit p {
            color: #999;
            font-size: 14px;
            margin-top: 10px;
        }

    .NewsInfo .NewsInfoBox {
        padding: 30px 0;
        line-height: 30px;
        font-size: 16px;
    }
.NewsInfo .NewsInfoTit.tl{text-align:left;padding-top:0;padding-bottom:10px;}
.NewsInfo .NewsInfoTit.tl h1{color:#333;}
.NewsInfo .NewsInfoTit.tl p span{margin-right:15px;}
.NewsInfo .NewsInfoTit.tl p a {color: #999;}
.NewsInfo .NewsInfoTit.tl p a:hover {color: #04984a;}
 .NewsInfo .NewsInfoBox video{height:auto !important;width:100% !important;}


    .NewsInfo .prev-next {
        margin: 50px 0;
    }

        .NewsInfo .prev-next .btn_1 {
            width: 49%;
            line-height: 50px;
            text-align: center;
            background: #f7f7f7;
        }

            .NewsInfo .prev-next .btn_1.prev_1 {
                background: #1aa93a;
                color: #fff;
            }

                .NewsInfo .prev-next .btn_1.prev_1 a {
                    color: #fff;
                }

@media(max-width:992px) {
    .NewsInfo {
        padding: 30px 0;
    }

        .NewsInfo .NewsInfoTit h1 {
            font-size: 22px;
        }

        .NewsInfo .NewsInfoTit {
            padding: 20px 0;
        }

        .NewsInfo .NewsInfoBox {
            font-size: 14px;
            line-height: 28px;
        }

        .NewsInfo .prev-next .btn_1 {
            width: 100%;
            font-size: 14px;
            line-height: 40px;
            margin-bottom: 10px;
        }

        .NewsInfo .prev-next {
            margin: 20px 0;
        }
        .NewsInfo .NewsInfoBox video{width:100% !important;height:auto !important;}
}


.Float{position: fixed;right:30px;top:40%;width:120px;height:120px;background:url(../images/kfbg.jpg) no-repeat center center;text-align: center;z-index:999;box-shadow: 0 0 10px #ddd;box-sizing: border-box;}
.Float p{color:#fff;padding:5px;text-align:center;background:#fff;color:#000;font-size:14px;}

#contentid{border:1px solid #666;}


/* 新增手机页面 */
.mAdd{padding-bottom:50px;}
.mFloat{position: fixed;z-index:999;right:10px;top:20%;}
.mFoot{position: fixed;bottom:10px;left:0;width:100%;box-sizing: border-box;padding:0 30px;}
.mFoot ul{margin-left:-5%;}
.mFoot ul::after{content:'';display: block;clear: both;}
.mFoot ul li{width:45%;float:left;font-size:20px;line-height: 50px;margin-left:5%;background:#fff;text-align: center;border:1px solid #e5e5e5;background:#fff;box-sizing: border-box;}
.mFoot ul li a{display: block;}
.mFoot ul li:nth-child(2){background:#FDC740;border:1px solid #FDC740;}
.mFoot ul li:nth-child(2) a{color:#fff;}


@media(max-width:768px){
    .Float{width:80px;height:80px;right:10px;}
    .Float img{}
}
