* {
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    font-size: 16px;
    color: #333;
    min-height: 100%;
    font-family: 'Microsoft YaHei', '苹方', 'SimHei', Helvetica, sans-serif;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    vertical-align: top;
    max-width: 100%;
    border: none;
}

ul {
    list-style: none;
}

div, header, footer, a, input, ul, li {
    box-sizing: border-box;
}

input, textarea {
    border: 1px solid #efefef;
    border-radius: 3px;
}
/*滚动条样式*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
/*竖向滚动条宽度,横向滚动条高度*/
::-webkit-scrollbar-track {
    background-color: #efefef;
    cursor: pointer;
}
/* 轨道样式*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
}
    /*滑块样式*/
    ::-webkit-scrollbar-thumb:window-inactive {
        background: rgba(0, 0, 0, 0.1);
    }
    /*当前窗口未激活的情况下*/
    ::-webkit-scrollbar-thumb:vertical:active, ::-webkit-scrollbar-thumb:vertical:hover {
        background-color: rgba(0, 0, 0, 0.4);
    }
/*滚动条按下，hover到滚动条上*/
/*弹性盒子*/
.flex-box {
    display: flex;
}

.align-ic {
    align-items: center
}
/*单行垂直居中(子元素不换行的垂直居中)*/
.align-cc {
    align-content: center
}
/*多行垂直居中(子元素换行的垂直居中,即父元素设置flex-wrap: wrap;时)*/
.content-a {
    justify-content: space-around;
}
/*在每个子元素之间平均分割多余的空间（首个子元素前和最后一个子元素后的空间为相邻子元素间隔的一半）*/
.content-b {
    justify-content: space-between;
}
/*在每个子元素之间平均分割多余的空间（首个子元素前和最后一个子元素后没有多余的空间）*/
.content-c {
    justify-content: center;
}
/*水平居中*/
.flex1 {
    flex-grow: 1;
}
/*决定伸缩容器剩余空间按比例应扩展多少空间。*/
.flex-wrap {
    flex-wrap: wrap;
}
/*flex容器为多行。该情况下flex子项溢出的部分会被放置到新行，子项内部会发生断行。（默认值 nowrap：flex容器为单行，flex子项可能会溢出容器）*/
.btn {
    margin: 20px auto;
    min-width: 120px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    background: #00bbee;
    background: linear-gradient(#29ffad, #00bbee);
    background: -webkit-linear-gradient(left, #29ffad, #00bbee);
    transition: all 0.3s linear;
    cursor: pointer;
}

    .btn:hover {
        background: #00bbee;
    }

    .btn:active {
        background: #5badf4;
    }
/*常用class*/
.fl {
    float: left;
}

.fr {
    float: right;
}

.clear:after, header:after {
    content: '';
    display: block;
    clear: both;
}

.dis-none {
    display: none;
}

.dis-block {
    display: block;
}

.dis-in-block {
    display: inline-block;
}

.strong {
    font-weight: bold;
}

.text-c {
    text-align: center;
}

.text-r {
    text-align: right;
}

.color-main {
    color: #00bbee;
}

.color-333 {
    color: #333;
}

.color-7f {
    color: #7F7F7F;
}

.color-db {
    color: #DBDBDB;
}

.color-fff {
    color: #fff;
}

.color-5f {
    color: #5FB5FF;
}

.color-f90 {
    color: #FF9900;
}

.color-f6 {
    color: #F67200;
}

.color-fb {
    color: #FB5E50;
}

.bg-fff {
    background-color: #fff;
}

.bg-main {
    background-color: #00bbee;
}

.bg-5f {
    background-color: #5FB5FF;
}

.bg-f90 {
    background-color: #FF9900;
}

.bg-fb {
    background-color: #FB5E50;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.font-20 {
    font-size: 20px;
}

.font-22 {
    font-size: 22px;
}

.font-24 {
    font-size: 24px;
}

.font-30 {
    font-size: 30px;
}

.font-36 {
    font-size: 36px;
}

.font-44 {
    font-size: 44px;
}

.border-ef {
    border: 1px solid #EFEFEF;
}

.border-b-ef {
    border-bottom: 1px solid #EFEFEF;
}

.border-r-ef {
    border-right: 1px solid #EFEFEF;
}

.border-ra4 {
    border-radius: 4px;
}

.pointer {
    cursor: pointer;
}

.padding-20 {
    padding: 20px;
}

.padding-lr20 {
    padding: 0 20px;
}

.margin-b20 {
    margin-bottom: 20px;
}

.margin-b10 {
    margin-bottom: 10px;
}

[v-cloak] {
    display: none;
}

.pos-t50 {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
}

.elli {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bg-wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}

.mask {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}
/*页首*/
header {
    width: 100%;
    height: 80px;
    padding: 0 85px;
    position: fixed;
    top: 0;
    z-index: 999;
    /*background-color: rgba(0, 0, 0, 0.05);*/
    background-color:#ffffff;
}

.logo {
    height: 70px;
    margin-top: 5px;
}

.nav {
    float: right;
    color: #00bbee;
    overflow: hidden;
}

    .nav .link {
        float: left;
        width: 80px;
        line-height: 80px;
        margin-left: 1px;
        text-align: center;
        transition: all 0.2s linear;
    }

        .nav .link a {
            display: block;
            padding-left: 10px;
        }

            .nav .link a:before {
                content: '';
                width: 6px;
                height: 6px;
                display: inline-block;
                background-color: #00bbee;
                border-radius: 50%;
                position: relative;
                bottom: 2px;
                right: 10px;
            }

        .nav .link.on, .nav .link:hover {
            color: #fff;
            background-color: #00bbee;
        }

            .nav .link.on a:before, .nav .link:hover a:before {
                background-color: #fff;
            }
/*页尾*/
footer {
    width: 100%;
    height: 130px;
    background-color: #4D4D4D;
    padding: 15px 160px 0 160px;
    position: absolute;
    bottom: 0;
    color: #fff;
    font-size: 16px;
    line-height: 25px;
}

.footer {
    display: flex;
    justify-content: space-between;
}

footer a, footer .f-text {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

    footer a:hover {
        color: #00bbee;
    }

footer .f-title {
    margin-bottom: 5px;
}

footer .record {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
}

.text-l {
    text-align: left;
}

.code-item {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: relative;
    margin: 10px 0;
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.2s linear;
    background: url("../image/wx.png") center;
    background-size: contain;
}

.code-img {
    width: 0;
    height: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    transition: all 0.2s linear;
}

    .code-img img {
        height: 100%;
    }

    .code-img:after {
        opacity: 0;
        content: '';
        width: 0;
        height: 0;
        border-top: 10px solid rgba(0, 0, 0, 0.5);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        position: absolute;
        bottom: -10px;
        left: calc(50% - 10px );
    }

.code-item:hover {
    opacity: 1;
}

    .code-item:hover .code-img {
        width: 120px;
        height: 120px;
        padding: 6px;
        top: -130px;
        left: -30px;
    }

        .code-item:hover .code-img:after {
            opacity: 1;
        }

.code-item2 {
    margin-left: 10px;
    background-image: url("../image/call.png");
}

.code-item3 {
    margin-left: 10px;
    background-image: url("../image/computer.png");
}

#kf5-support-btn {
    right: 43px;
    bottom: 43px;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
    border: 1px solid #00bbee;
}

#fp-nav ul li a.active span, .fp-slidesNav ul li a.active span {
    background: #00bbee;
}

#error_txt {
    font-size: 14px;
    height: 19px;
    color: #ff0000;
}
/*loading 动画*/
#loadContainer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0.6;
}

.loader:before, .loader:after, .loader {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}

.loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-size: 10px;
    text-indent: -9999em;
    -webkit-animation-delay: 0.16s;
    animation-delay: 0.16s;
}

    .loader:before {
        left: -3.5em;
    }

    .loader:after {
        left: 3.5em;
        -webkit-animation-delay: 0.32s;
        animation-delay: 0.32s;
    }

    .loader:before, .loader:after {
        content: '';
        position: absolute;
        top: 0;
    }

@-webkit-keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em #ffffff;
    }

    40% {
        box-shadow: 0 2.5em 0 0 #FFF;
    }
}

@keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em #ffffff;
    }

    40% {
        box-shadow: 0 2.5em 0 0 #FFF;
    }
}
