*{
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
@font-face {
    font-family: 'NotoColorEmoji-flagsonly';
    src: url(../NotoColorEmoji-flagsonly.ttf);
}
html {
    width: 100%;
    height: 100%;
    background: #0f3350;
}
#map {
    width: 691.2px;
    height: 400px;
    margin-top: 20px;
    left: 50%;
    transform: translate(-50%,0);
    box-shadow: #000000 5px 5px 20px;
    position: relative;
}
.title{
    position: relative;
    color: white;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 30px;
}
.subtitle{
    position: relative;
    color: white;
    text-align: center;
    width: 100%;
    font-weight: 100;
    margin-top: 0;
    font-size: 20px;
}
.history-loc {
    width: 691.2px;
    height: 400px;
    margin-top: 50px;
    left: 50%;
    transform: translate(-50%,-25px);
    position: relative;
    background: #ffffff20;
}
.loc-box{
    box-shadow: #091f30 5px 5px 20px inset, #4c93cd 5px 5px 20px;
    background: #09193c;
    width: 90%;
    height: 280px;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%,0);
    position: absolute;
    overflow-y: scroll;
    overflow-x: hidden;
}
.loc-box {
    scrollbar-color: #3cb2bd transparent;
    scrollbar-width: thin;
}
.loc-data{
    width: 95%;
    height: 75px;
    background: #ffffff20;
    left: 50%;
    transform: translate(-50%,0);
    position: relative;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.5s;
    border-radius: 15px;
}
.loc-data:hover {
    box-shadow: #ffffff 0 0 20px;
    width: 97.5%;
}
.loc-data .flag{
    font-family: 'NotoColorEmoji-flagsonly';
    font-size: 40px;
    line-height: 75px;
    left: 20px;
    position: absolute;
}
.loc-data .time{
    font-size: 20px;
    color: white;
    position: absolute;
    left: 80px;
    line-height: 75px;
}
.loc-data .loc-text{
    font-size: 20px;
    color: white;
    position: absolute;
    left: 200px;
    line-height: 75px;
}
.footer{
    color: white;
    text-align: center;
    width: 100%;
    position: absolute;
    z-index: 999;
    bottom: 0;
}
/* 手机特调 */
@media screen and (max-width: 767px){
    #map {
        width: 90%;
        height: calc(100vw / 768 * 400);
    }
    .history-loc {
        width: 90%;
        height: 400px;
    }
}