﻿html {
    overflow-y: scroll;
}

a:active, a:hover, a:focus, a:visited {
    outline: none;
    text-decoration: none;
}

ol, ul {
    padding: 0; /*li浮动时去掉左侧缩进*/
    list-style: none;
}


/*整站导航*/
.header {
    border: 0;
    border-bottom: 2px solid #0ba1e4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

    .header .wellcome {
        padding: 8px 0;
        background-color: #4682B4;
        color: #fff;
        margin-bottom: 5px;
    }

        .header .wellcome .login {
            float: right;
        }

            .header .wellcome .login .flex {
                display: flex;
            }

            .header .wellcome .login .flex span {
                display: inline-block;
                margin-left: 10px;
            }

            .header .wellcome .login a {
                color: #fff;
            }

            .header .wellcome .login .fa {
                color: gold;
            }

    .header .navbar-brand {
        padding: 5px;
    }

        .header .navbar-brand img {
            max-height: 40px;
        }

    /*带下画线的导航栏*/
    .header .navbar-nav > li {
        margin: 0 1px;
    }

        .header .navbar-nav > li > a {
            font-size: 16px;
            font-weight: 600;
            padding: 15px 3px !important;
        }

        .header .navbar-nav > li > a {
            height: 50px;
            border: 0;
            transition: all 0.3s ease 0s;
        }

            .header .navbar-nav > li > a:hover,
            .header .navbar-nav > .active > a,
            .header .navbar-nav > .active > a:hover,
            .header .navbar-nav > .active > a:focus {
                background-color: transparent;
                border-bottom: solid 3px #0088cc;
            }

/*小屏*/
@media (max-width: 767px) {
    body {
        padding-bottom: 55px;
    }

    .header {
        position: relative;
    }
}

/*大屏*/
@media (min-width: 768px) {
    body {
        padding-top: 108px;
    }

    .header {
        padding-bottom: 15px;
    }

        .header .wellcome .login {
            margin-right: -10px;
        }
}


/*轮播图*/
.carousel {
    height: 0;
    padding-bottom: 15%; /*高度占宽度的百分比*/
}
    /*指定高度，让指示器显示*/
    .carousel .el-carousel {
        height: 0;
        padding-bottom: 15%; 
    }

    .carousel .img {
        height: 0;
        padding-bottom: 15%; /*高度占宽度的百分比*/
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center center;
    }

    /* 轮播图loading start */
    .carousel .loading-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #05309c;
    }

        .carousel .loading-mask .dots {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
        }

            .carousel .loading-mask .dots .dot {
                height: 20px;
                width: 20px;
                margin-right: 10px;
                border-radius: 10px;
                background-color: #b3d4fc;
                animation: pulse 1.5s infinite ease-in-out;
            }

                .carousel .loading-mask .dots .dot:last-child {
                    margin-right: 0;
                }

                .carousel .loading-mask .dots .dot:nth-child(1) {
                    animation-delay: -0.3s;
                }

                .carousel .loading-mask .dots .dot:nth-child(2) {
                    animation-delay: -0.1s;
                }

                .carousel .loading-mask .dots .dot:nth-child(3) {
                    animation-delay: 0.1s;
                }

@keyframes pulse {
    0% {
        transform: scale(0.8);
        background-color: #b3d4fc;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }

    50% {
        transform: scale(1.2);
        background-color: #6793fb;
        box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
    }

    100% {
        transform: scale(0.8);
        background-color: #b3d4fc;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
}
/* 轮播图loading end */


/*立即咨询*/
.contact-banner {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: -webkit-linear-gradient(top,#0076d1,#5db8ff);
    background: -moz-linear-gradient(top,#0076d1,#5db8ff);
    background: -o-linear-gradient(top,#0076d1,#5db8ff);
}

    .contact-banner .waves {
        position: absolute;
        height: 100%;
    }

.contact-banner-box {
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
}

    .contact-banner-box h1 {
        display: block;
        max-width: 10em;
        margin: 0px auto;
        line-height: 2em;
        border-bottom: 2px solid #fff;
        color: #f5f5f5;
    }

    .contact-banner-box h4 {
        color: #f1f1f1;
    }

    .contact-banner-box .btn {
        font-size: 24px;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 20px;
    }

/*整站页脚*/
.footer {
    background-color: #363636;
}

    .footer .footer-item {
        height: 190px;
        margin-top: 40px;
        margin-bottom: 40px;
        overflow: hidden;
    }

    .footer dl {
        line-height: 26px;
    }

    .footer dt {
        position: relative;
        margin-top: 5px;
        margin-bottom: 15px;
        font-size: 16px;
        color: #eee;
        font-weight: bold;
    }

        .footer dt:after {
            position: absolute;
            left: 0;
            bottom: -9px;
            width: 64px;
            height: 3px;
            background: #f2ca91;
            transition-duration: .7s;
            content: '';
        }

    .footer dl:hover dt:after {
        width: 130px;
    }

    .footer dd, .footer dd a {
        color: #f5f5f5;
        line-height: 2.2em;
        font-size: 15px;
    }

    .footer .footer-qrcode img {
        max-height: 165px;
    }

    .footer .footer-qrcode .desc {
        color: #fff;
        margin-top: 5px;
    }


/*移动端底部*/
.footer-mobile {
    padding: 0;
}

    .footer-mobile .row > div {
        padding: 0;
    }

    .footer-mobile img {
        height: 20px;
        width: 20px;
    }


/*整站版权申明*/
.copyright {
    background-color: #666;
}

    .copyright p {
        text-align: center;
        margin: 10px;
        line-height: 40px;
        color: #fafafa;
    }

        .copyright p a {
            color: #fafafa;
        }


/*整站右侧导航*/
.nav-affix {
    position: fixed;
    top: 30%;
    right: .1%;
    z-index: 1000;
}

    .nav-affix ul {
        margin: 0;
        padding: 0;
        margin-top: -2px;
        list-style: none;
    }

        .nav-affix ul li {
            display: block;
            margin: 0;
            padding: 0;
            margin-top: 2px;
            position: relative;
        }

            .nav-affix ul li a {
                display: block;
                overflow: hidden;
                width: 48px;
                height: 48px;
                border: 1px solid #0ba1e4;
                background-color: #f5f5f5;
                background-image: url(/img/ow/nav-affix.png);
                background-repeat: no-repeat;
            }

.affix-chat {
    background-position: 0 -92px;
}

    .affix-chat:hover {
        background-position: -46px -92px;
        background-color: #0ba1e4;
    }

.affix-qq {
    background-position: 0 -138px;
}

    .affix-qq:hover {
        background-position: -46px -138px;
        background-color: #0ba1e4;
    }

.affix-phone {
    background-position: 0 -184px;
}

    .affix-phone:hover {
        background-position: -46px -184px;
        background-color: #0ba1e4;
    }

.affix-wechat {
    background-position: 0 -230px;
}

    .affix-wechat:hover {
        background-position: -46px -230px;
        background-color: #0ba1e4;
    }

.affix-goTop {
    background-position: 0 0;
}

    .affix-goTop:hover {
        background-position: -46px 0;
        background-color: #0ba1e4;
    }


.nav-affix .nav-affix-tips {
    position: absolute;
    top: 0;
    right: 48px;
    height: 48px;
    padding-left: 10px;
    padding-right: 2px;
    white-space: nowrap;
    border: 1px solid #0ba1e4;
    background-color: #0ba1e4;
    text-align: center;
    line-height: 48px;
    font-size: 18px;
    color: #fff;
    display: none;
}

.nav-affix .nav-affix-tips-wechat {
    position: absolute;
    background-color: #0ba1e4;
    padding: 1px;
    bottom: 0;
    right: 50px;
    display: none;
}

    .nav-affix .nav-affix-tips-wechat img {
        width: 186px;
        height: 186px;
    }

    .nav-affix .nav-affix-tips-wechat .desc {
        text-align: center;
        background-color: #fff;
        margin-top: -10px;
    }

/*带边框的垂直导航栏*/
.nav-stacked {
    border-radius: 4px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.067);
}

    .nav-stacked > li {
        margin: 0;
    }

        .nav-stacked > li > a {
            margin: 0 -1px;
            border-radius: 0;
            font-weight: 500;
        }

        .nav-stacked > li:first-child a {
            border-radius: 4px 4px 0 0;
        }

        .nav-stacked > li:last-child a {
            border-radius: 0 0 4px 4px;
        }

        .nav-stacked > li > a:hover {
            border-width: 1px;
            border-color: transparent #ddd;
        }

        .nav-stacked > li.active > a,
        .nav-stacked > li.active > a:hover,
        .nav-stacked > li.active > a:focus {
            color: #fff;
            background: #0088cc;
            border: 1px solid #0088cc;
        }

        .nav-stacked > li + li {
            margin: 0;
            border-top: 1px solid #ddd;
        }

/*带下画线的tab*/
.nav-tabs-underlined > li > a {
    border-width: 0;
    border-bottom: 3px solid transparent;
    font-weight: bold;
}

    .nav-tabs-underlined > li > a:hover,
    .nav-tabs-underlined > li.active > a,
    .nav-tabs-underlined > li.active > a:hover,
    .nav-tabs-underlined > li.active > a:focus {
        border-width: 0;
        border-bottom: 3px solid #0088cc;
        background-color: transparent;
    }

/*线条*/
.line-solid {
    border-top: 1px solid #ddd;
}

.line-solid-sm {
    margin: 15px auto;
}

.line-solid-lg {
    margin: 30px auto;
}

.left-line {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 5px;
    border-left: 1px solid #ddd;
}

.right-line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 5px;
    border-right: 1px solid #ddd;
}

/*所有按钮加渐变动画*/
.btn {
    -webkit-transition: all 0.225s ease-in-out;
    -moz-transition: all 0.225s ease-in-out;
    -o-transition: all 0.225s ease-in-out;
    transition: all 0.225s ease-in-out;
}

/*幽灵按钮*/
.btn-outline-blue {
    color: #0ba1e4;
    background: transparent;
    border-color: #0ba1e4;
}

    .btn-outline-blue:hover {
        color: #fff;
        text-shadow: none;
        background-color: #0ba1e4;
    }

.btn-outline-inverse {
    color: #fff;
    background: transparent;
    border-color: #fff;
}

    .btn-outline-inverse:hover {
        color: #0ba1e4;
        text-shadow: none;
        background-color: #fff;
    }



.mg-b30 {
    margin-bottom: 30px;
}


.pd0 {
    padding: 0;
}

.pd-l0 {
    padding-left: 0;
}

.pd-r0 {
    padding-right: 0;
}

.pd-b15 {
    padding-bottom: 15px;
}

.table {
    margin-bottom: 10px;
}

    .table .thead {
        color: #333;
        background-color: #f5f5f5;
        border-color: #ddd;
    }

    /*默认居中显示*/
    .table > thead > tr > th, .table > thead > tr > td {
        text-align: center;
        vertical-align: middle;
        border-bottom-width: 1px;
    }

    .table > tbody > tr > td, .table > tfoot > tr > td {
        position: relative; /*toolbar-order中使用*/
        vertical-align: middle;
    }

    .table caption {
        font-weight: bold;
        color: #333;
        font-size: 14px;
    }

.container-sm {
    margin-bottom: 15px;
}

.container-lg {
    margin-bottom: 30px;
}

.pagination, .progress {
    margin: 0;
}

    .pagination > li {
        display: inline-block;
        margin-bottom: 5px;
    }

.nav-pagination {
    margin-bottom: 20px;
}

.breadcrumb {
    margin: 10px 0;
}

    .breadcrumb > li + li:before {
        padding-right: 0;
        content: "";
    }

    .breadcrumb > li:nth-child(n+2) + li:before {
        padding-right: 5px;
        content: ">";
    }

/* -----------------display开始-------------*/

.block {
    display: block;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.dp-table {
    display: table;
    width: 100%;
}

.dp-table-cell {
    display: table-cell;
    vertical-align: middle;
}

/* -----------------display结束-------------*/

select::-ms-expand {
    display: none; /*清除IE默认下拉按钮。IE10以上有效，IE8，9默认下拉按钮仍旧存在*/
}

.form-control-select {
    outline: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url(/img/global/select-arrow.png) #fff no-repeat right !important;
    padding-right: 35px;
}


.btn-group-widen .btn, .btn-widen {
    padding-left: 30px;
    padding-right: 30px;
}

/*边框*/
.border-box {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: left;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.list-items {
    padding-left: 0;
    margin-bottom: 20px;
}

.list-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.list-items .list-item:last-child {
    border-bottom-width: 0;
}

.list-items .list-item:before, .list-items .list-item:after {
    clear: both;
    display: table;
    content: " ";
}


/* -----------------字体开始-------------*/
.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font24 {
    font-size: 24px;
}

.font32 {
    font-size: 32px;
}
/* -----------------字体结束-------------*/
