@import url(http://fonts.googleapis.com/css?family=Dosis:700);
#oneday-chart {
    font-family: "Dosis", "Siyuan-regular", Arial, sans-serif;
    /* background: #ecf0f1; */
    padding-top: 0px;
    text-shadow: white 1px 1px 1px;
    display: center;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    height: 90vh;
    margin: 0;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    /* flex-direction: column;修改了 */
}

.container_down {
    flex-direction: row;
    display: flex;
    align-items: center;
    margin-top: 20px;
    position: relative;
    justify-content: space-between;
}

.container_top {
    flex-direction: column;
    display: flex;
    align-items: center;
    position: relative;
}

#value-box {
    /* background-color: pink; */
    width: 100%;
    height: 20%;
    /* top: 30%;  */
    /*添加*/
    /* z-index: 20; */
    position: absolute;
    /* margin-top: 5%; */
    top: -5%;
    left: 0;
    display: flex;
    justify-content: center;
}

.value {
    /* border-bottom: 4px dashed #bdc3c7; */
    text-align: center;
    font-weight: bold;
    font-size: 4em;
    width: 450px;
    height: 80%;
    line-height: 150px;
    letter-spacing: -0.07em;
    color: #ecf0f1;
}

input[type="range"] {
    display: none;
    -webkit-appearance: none;
    background-color: #bdc3c7;
    width: 450px;
    height: 7.5px;
    border-radius: 5px;
    margin: 0 auto;
    outline: 0;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 20%;
    z-index: 20;
}

#bingbing {
    display: block;
    z-index: 20;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #c37373;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background-color: white;
    border: 2px solid #c37373;
}

input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.1);
}

#map {
    top: 10%;
    width: 1200px;
    height: 600px;
    /* border: 1px solid #000;
    background-color: darkslateblue; */
    position: absolute;
    bottom: 10%;
    /* right: 15%; */
}

.button {
    font-family: "Siyuan-regular";
    display: flex;
    flex-direction: row;
    margin-bottom: 2%;
    z-index: 20;
    height: auto;
    position: absolute;
    top: 13%;
    /* background-color: pink; */
}

.button button {
    margin-left: 3%;
    width: 120px;
    height: 35px;
    font-size: 0.6em;
    border-radius: 8px;
}

.button-pressed,
.button button:hover {
    background-color: #c37373;
    color: #ecf0f1;
}

svg {
    width: 100%;
}