﻿html, body, div, a, ul, li {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input {
    outline: none;
}

body {
    background: #f3f3f3;
}

.red {
    color: #ff5858;
}

.bg-red {
    background: #ff5858;
}

.bg-header {
    background: #505050;
}

.btn {
    display: block;
    width: 90%;
    border-radius: 3px;
    font-size: 17px;
    margin: 0 auto;
    border: none;
    height: 50px;
    color: white;
    outline: none;
}

.btn-red {
    color: #ff5858;
}


.header {
    position: fixed;
    width: 100%;
    z-index: 10;
    height: 46px;
    background: #505050;
    color: white;
    text-align: center;
    line-height: 46px;
    font-size: 16px;
}

.height46 {
    height: 46px;
}

.header .back {
    position: absolute;
    top: 30%;
    left: 15px;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 0.21rem white solid;
    border-color: transparent transparent white white;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

.flex {
    display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE10*/
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
}

.flex-1 {
    -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1; /* OLD - Firefox 19- */
    -webkit-flex: 1; /* Chrome */
    -ms-flex: 1; /* IE 10 */
    flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.inner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #565252;
    width: 100%;
}
/*loading*/
.loading {
    text-align: center;
    height: 50px;
    line-height: 50px;
}

    .loading span {
        display: inline-block;
        height: 15px;
        width: 15px;
        border-radius: 100%;
        margin: 6px;
        border: 2px solid #00a0f4;
        border-bottom-color: transparent;
        vertical-align: middle;
        animation: rotate 0.75s linear infinite;
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*页面加载中Loading*/
.loadingTip {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 100;
}

    .loadingTip div {
        color: white;
        font-size: 16px;
        position: absolute;
        top: 45%;
        left: 38%;
        text-align: center;
    }

        .loadingTip div span {
            display: inline-block;
            height: 15px;
            width: 15px;
            border-radius: 100%;
            margin: 6px;
            border: 2px solid white;
            border-bottom-color: transparent;
            vertical-align: middle;
            -webkit-animation: rotate 0.75s linear infinite;
            animation: rotate 0.75s linear infinite;
        }

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

footer {
    background: #535353;
    height: 56px;
    line-height: 56px;
    text-align: right;
    padding-right: 5%;
    position: fixed;
    width: 95%;
    color: white;
    font-size: 17px;
    bottom: 0;
    z-index: 10;
}

    footer b {
        font-size: 20px;
        position: relative;
        top: 2px;
    }

[v-cloak] {
    display: none;
}



/*错误页*/
.errorBox {
    text-align: center;
    padding-top: 30%;
}

    .errorBox img {
        width: 30vw;
    }

    .errorBox p {
        font-size: 5vw;
        color: #8c8a8a;
        margin: 20px;
    }

.errorCase, .errorCase401, .errorCase404, .errorCase500 {
    display: none;
}
/*系统正在验票loading..*/
.loadingBox {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.load-box {
    background: #303030;
    border-radius: 6px;
    padding: 20px 0 8px 0;
    z-index: 101;
    position: absolute;
    width: 65%;
    top: 45%;
    left: 50%;
    text-align: center;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}

.loadingBox p {
    padding: 15px;
    color: white;
}
