* {
    padding: 0;
    margin: 0;
}

html {
    /* font-size: calc(100vw/20); */
    height: 100%;
    overflow: auto;
}

body {
    margin: 0 auto;
    background-color: #ededed;
    height: 100%;
    overflow: auto;
}

#page {
    padding: 0;
    /*max-width: 680px; */
    margin: 0 auto;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: auto;
}

.tips {
    font-size: 13px;
    height: 38px;
    line-height: 38px;
    padding-left: 5px;
    color: #666;
}


/* 时间地点标签容器 */

.date-place-tag {
    font-size: 12px;
    margin-bottom: 18px;
    margin-left: 18px;
}

/* 带img的页面提示 */

.md-result-image img {
    width: 88px !important;
}

/* 首屏加载动画提示 */

#Loading {
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 100;
    color: #666;
}

@-webkit-keyframes ball-beat {
    50% {
        opacity: 0.2;
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ball-beat {
    50% {
        opacity: 0.2;
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.ball-beat>div {
    background-color: #4999ff;
    width: 10px;
    height: 10px;
    border-radius: 100% !important;
    margin: 6px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
    -webkit-animation: ball-beat 0.7s 0s infinite linear;
    animation: ball-beat 0.7s 0s infinite linear;
}

.ball-beat>div:nth-child(2n-1) {
    -webkit-animation-delay: 0.35s !important;
    animation-delay: 0.35s !important;
}


/* 首屏加载动画提示结束 */