html {
    overflow-y: scroll;
}

html,
body {
    text-align: left;
    font: 100% "Microsoft YaHei", Verdana, arial, sans-serif;
}

body,
ul,
li,
p {
    margin: 0px;
    padding: 0px;
}

.common-header~.container {
    margin-top: 2.5rem;
}

.common-header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 2.5rem;
    border-bottom: 1px solid rgb(239, 239, 244);
    z-index: 5;
    background: rgb(255, 255, 255);
}

.common-title {
    flex-grow: 1;
    text-align: center;
    color: rgb(51, 51, 51);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.m-placeholder {
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgb(136, 136, 136);
}

.m-placeholder .img {
    width: 80%;
}

.head {
    padding: 0.75rem;
    background-color: rgb(52, 129, 237);
}

.flex {
    display: flex;
}

.head .flex>span {
    color: #ffffff;
}

.result-fail,.result-success{
    display: none;
}

.result-top {
    padding: 10px 0px;
    font-size: 0.875rem;
}

.result-top time {
    position: relative;
    width: 6rem;
    text-align: center;
}


.result-top span {
    padding-left: 2em;
}

.result-success {
    position: relative;
    padding-bottom: 1rem;
}

.result-list li {
    display: flex;
    padding-bottom: 1.5em;
    color: rgb(136, 136, 136);
}

.result-list li.last {
    color: rgb(255, 127, 2);
}

.result-list li.finish {
    color: rgb(49, 126, 231);
}

.result-list .time {
    width: 6rem;
    text-align: center;
    font-size: 0.75rem;
}

.result-list .dot {
    width: 5px;
    height: 5px;
    margin-top: 6px;
    border-radius: 50%;
    background: rgb(136, 136, 136);
    box-shadow: rgba(136, 136, 136, 0.3) 0px 0px 0px 2px;
}

.result-list .last .dot {
    width: 9px;
    height: 9px;
    margin-left: -4px;
    transform: translate(2px);
    background: rgb(255, 127, 2);
    box-shadow: rgba(255, 127, 2, 0.2) 0px 0px 0px 2px;
}

.result-list .finish .dot {
    width: 9px;
    height: 9px;
    margin-left: -4px;
    transform: translate(2px);
    background: rgb(49, 126, 231);
    box-shadow: rgba(49, 126, 231, 0.2) 0px 0px 0px 2px;
}

.result-list .text {
    position: relative;
    flex: 1 1 0%;
    width: 0px;
    padding: 0px 1em;
    font-size: 0.875rem;
}

.result-list .text::before {
    position: absolute;
    left: -3px;
    top: 6px;
    margin-top: 6px;
    bottom: -2em;
    border-left: 1px solid rgba(136, 136, 136, 0.3);
    content: "";
}

.result-list .last .text::before {
    top: 11px;
}

.result-list li:last-child .text::before {
    display: none;
}

