﻿/**top样式*/
.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5% 15%;
    background: url(../images/pro_bg.jpg) no-repeat center;
}

    .top .logo {
        width: 35%;
    }

        .top .logo img {
            width: 100%;
        }

    .top .tel {
        font-size: 20px;
        text-align: right;
        font-family: "DINOT";
    }

        .top .tel dt {
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

            .top .tel dt i {
                color: #0067AC;
                font-size: 20px;
                margin-right: 5px;
            }

        .top .tel dd {
            font-size: 30px;
        }
/**mobile-inner样式*/

.mobile-inner {
    position: absolute;
    width: 100%;
    z-index: 9999;
    right: 0;
    top: 2%;
    display: none;
}

.mobile-icon {
    color: #ffffff;
    background: #0067AC;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

    .mobile-icon:hover {
        cursor: pointer;
    }

    .mobile-icon span {
        position: absolute;
        left: calc((100% - 25px) / 2);
        top: calc((100% - 1px) / 2);
        width: 25px;
        height: 1px;
        background-color: rgba(255,255,255,1);
    }

        .mobile-icon span:nth-child(1) {
            transform: translateY(4px) rotate(0deg);
        }

        .mobile-icon span:nth-child(2) {
            transform: translateY(-4px) rotate(0deg);
        }

.mobile-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-nav {
    background: #338dca;
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
}

    .mobile-nav a {
        display: inline-block;
        line-height: 50px;
        text-decoration: none;
        width: 80%;
        margin-left: 10%;
        color: #FFFFFF;
        border-bottom: solid 1px rgba(255,255,255,0.3);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        font-weight: 300;
    }

        .mobile-nav a:hover {
            color: rgba(255,255,255,0.4);
            border-bottom: solid 1px rgba(255,255,255,0.2);
        }
/**nav样式*/
.nav {
    background: #0067AC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15%;
    font-size: 18px;
    height: 55px;
    line-height: 55px;
}

    .nav a {
        color: #fff;
        display: block;
        padding: 0 3%;
    }

    .nav span {
        color: rgba(255,255,255,.3);
        font-size: 12px;
    }

    .nav a:hover, .nav a.current {
        background: #338dca;
    }
/**banner样式*/
.banner .swiper-container {
    width: 100%;
    height: auto;
}

    .banner .swiper-container img {
        width: 100%;
    }

    .banner .swiper-container .s_img {
        display: none;
    }
/**ser样式*/
.ser {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5% 15%;
    font-size: 14px;
    background: #fafafa;
}

.ser_l em {
    font-size: 16px;
    font-style: normal;
}

.ser_l, .ser_r {
    display: flex;
    align-items: center;
}

    .ser_l i {
        margin: 0 10px;
        color: #999;
        font-size: 12px;
    }

    .ser_r input {
        height: 32px;
        width: 250px;
        padding-left: 10px;
        font-size: 14px;
        border: 1px solid #eee;
    }

    .ser_r button {
        background: #0067AC;
        height: 34px;
        width: 80px;
        border-radius: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

        .ser_r button i {
            color: #fff;
            font-size: 20px;
            margin-right: 5px;
        }
/**pro样式*/


.pro {
    display: flex;
    justify-content: space-between;
    padding: 1% 15%;
}

.pro_l {
    width: 20%;
}

    .pro_l h1 {
        background: #0067AC;
        padding: 8% 0;
        color: #fff;
        font-size: 30px;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }

        .pro_l h1 p {
            font-size: 12px;
            font-weight: normal;
            color: rgba(255,255,255,.5);
            text-transform: uppercase;
        }

    .pro_l ul {
        border: 1px solid #eee;
        line-height: 60px;
        font-size: 18px;
        background: #fafafa;
    }

        .pro_l ul li {
            border-bottom: 1px solid #eee;
            text-indent: 40px;
            position: relative;
        }

            .pro_l ul li::after {
                content: "";
                width: 7px;
                height: 7px;
                border-radius: 10px;
                border: 1px solid #0067AC;
                position: absolute;
                left: 20px;
                top: 25px;
            }

            .pro_l ul li:last-child {
                border-bottom: none;
            }

.pro_r, .contact {
    width: 78%;
}

    .pro_r ul {
        display: flex;
        justify-content: space-between;
        flex-flow: wrap;
    }

    .pro_r li {
        width: 31%;
        margin: 0% .5% 2% .5%;
        border: 5px solid #fafafa;
        background: #fafafa;
    }

        .pro_r li img {
            width: 100%;
        }

        .pro_r li p {
            text-align: center;
            line-height: 40px;
            font-size: 16px;
        }
/**liyou样式*/

.liyou {
    background: url(../images/bg01.png) repeat center;
    padding: 3% 15%;
    color: #fff;
}

    .liyou h2, .chang h2, .about h2, .news h2 {
        text-align: center;
        font-size: 30px;
        margin-bottom: 50px;
    }

        .liyou h2 p, .chang h2 p, .about h2 p, .news h2 p {
            font-size: 16px;
            margin-top: 10px;
            font-weight: normal;
            opacity: .5;
        }

    .liyou ul {
        display: flex;
        flex-flow: wrap;
        justify-content: space-between;
        font-size: 14px;
        line-height: 30px;
    }

        .liyou ul li {
            width: 22%;
            text-align: center;
            padding: 3% 1%;
            border-right: 1px solid rgba(255,255,255,.2);
        }

            .liyou ul li:hover {
                background: rgba(255,255,255,.1);
                border-radius: 5px;
            }

            .liyou ul li i {
                font-size: 55px;
                border: 2px solid #fff;
                width: 100px;
                height: 100px;
                border-radius: 100px;
                text-align: center;
                line-height: 100px;
                display: block;
                margin: 0 auto;
                background: rgba(255,255,255,.3);
                ;
                color: #0067AC;
            }

            .liyou ul li .p1 {
                font-size: 24px;
                margin: 10px 0;
            }
/**chang样式*/

.chang {
    padding: 3% 15%;
}

    .chang .swiper-container {
        width: 100%;
        height: auto;
    }

        .chang .swiper-container img {
            width: 100%;
        }

    .chang a p {
        text-align: center;
        line-height: 50px;
        font-size: 16px;
    }
/**about样式*/

.about {
    padding: 3% 15%;
    color: #fff;
    background: url(../images/banner02.jpg) no-repeat center fixed;
}

    .about dl {
        display: flex;
        justify-content: center;
    }

    .about dt {
        width: 30%;
        margin-right: 3%;
    }

        .about dt img {
            width: 100%;
            border: 3px solid #fff;
        }

    .about dd {
        width: 65%;
    }

        .about dd h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .about dd p {
            font-size: 15px;
            line-height: 30px;
            text-indent: 2em;
            margin-bottom: 20px;
        }

        .about dd a {
            background: #0067AC;
            color: #fff;
            padding: 1.5% 2.5%;
            border-radius: 3px;
        }
/**news样式*/

.news {
    padding: 3% 15%;
    background: url(../images/pro_bg.jpg) no-repeat center bottom fixed;
}

    .news .swiper-container {
        width: 100%;
        height: auto;
    }

        .news .swiper-container img {
            width: 100%;
        }

    .news .swiper-container {
        width: 100%;
        height: auto;
    }

    .news .swiper-slide a {
        border: 1px solid #eee;
        padding: 5%;
        display: block;
    }

    .news .swiper-slide h4 {
        font-size: 18px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        margin-top: 10px;
    }

    .news .swiper-slide .p1 {
        margin: 5px 0;
        color: #999;
    }

    .news .swiper-slide .p2 {
        text-indent: 2em;
        color: #666;
    }

    .news .swiper-pagination {
        z-index: 9999;
    }
/**footer样式*/
.footer {
    padding: 1.5% 15% 1% 15%;
    background: #0067AC;
}

.f_nav {
    font-size: 16px;
    padding-bottom: 1%;
    margin-bottom: 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

    .f_nav .f_logo {
        width: 50%;
    }

        .f_nav .f_logo img {
            height: 45px;
        }

    .f_nav p {
        display: flex;
        justify-content: space-between;
        width: 50%;
        align-items: center;
    }

        .f_nav p span {
            color: rgba(255,255,255,.5);
            font-size: 12px;
        }

    .f_nav a {
        color: rgba(255,255,255,.5);
    }

        .f_nav a:hover {
            color: #fff;
        }

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright_l {
    color: rgba(255,255,255,.7);
    line-height: 30px;
}

.copyright_r {
    width: 120px;
}

    .copyright_r img {
        width: 100%;
    }
/**地址样式*/

.dz {
    font-size: 14px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

    .dz .icon-weizhi {
        font-size: 28px;
        color: #0067AC;
        margin-right: 5px;
    }

    .dz .icon-jt {
        margin: 0 5px;
        font-size: 12px;
    }
/**新闻资讯样式*/
.news_r {
    width: 78%;
}

    .news_r li {
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

        .news_r li h1 {
            font-size: 18px;
            align-items: baseline;
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }

            .news_r li h1 span {
                font-weight: normal;
                font-size: 14px;
            }

        .news_r li p {
            line-height: 25px;
            color: #999;
        }
/**详情样式*/
.content {
    background: #fafafa;
    border-radius: 5px;
    padding: 2% 2px 5% 2%;
}

    .content h2 {
        line-height: 50px;
        color: #0067AC;
        text-align: center;
        font-size: 24px;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
    }

    .content p {
        line-height: 30px;
        font-size: 14px;
        text-indent: 2em;
    }

.news_up {
    border-top: 1px solid #eee;
    margin-top: 50px;
}

    .news_up a {
        display: block;
        font-size: 16px;
        margin-top: 20px;
    }

    .news_up span {
        background: #338dca;
        padding: 5px 10px;
        color: #fff;
        border-radius: 2px;
        margin-right: 5px;
    }
/**contact样式*/


.contact dl {
    font-size: 18px;
    background: #fafafa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

    .contact dl dt {
        font-size: 26px;
        font-weight: bold;
        color: #0067AC;
        line-height: 50px;
    }

    .contact dl dd {
        display: flex;
        align-items: center;
    }

    .contact dl i {
        font-size: 18px;
        margin-right: 10px;
        color: #0067AC;
        line-height: 40px;
    }

.contact ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .contact ul li {
        border: 1px solid #eee;
        line-height: 50px;
        margin-bottom: 5px;
        text-indent: 15px;
        width: 31%;
    }

.contact textarea {
    height: 100px;
    resize: none;
    padding-top: 20px;
    text-indent: 15px;
    width: 100%;
    border: 1px solid #eee;
}

.contact button {
    border: none;
    line-height: 50px;
    margin-top: 10px;
    height: 50px;
    font-size: 18px;
    background: #0067AC;
    color: #fff;
    text-align: center;
    width: 200px;
    border-radius: 5px;
}

/*分页样式*/
.pager {
    clear: both;
    display: block;
    margin: 0 0 20px 1px;
}


    .pager span.disabled {
        color: #999;
        background: #fff;
    }

    .pager span.current {
        color: #fff;
        background: #488FCD;
        border-color: #488FCD;
    }

    .pager a, .pagelist span {
        display: block;
        float: left;
        margin: 2px 0 0 -1px;
        padding: 4px 12px;
        line-height: 20px;
        height: 20px;
        border: 1px solid #e1e1e1;
        background: #fff;
        color: #333;
        text-decoration: none;
    }
