.wordtime h2{
    border-bottom: 0;
    font-size: 0.7rem;
    font-weight: 600;
    padding-left: 0.9rem;
    padding-right: 0.75rem;
    position: relative;
    background-color: #f8fafe;
    height: 40px;
    line-height: 40px;
}

.wordtime h2::before{
    content: "#";
    font-size: 0.8rem;
    position: absolute;
    color: #00b277;
    left: 0.25rem;
    top: -0.025rem;
    background-color: unset;
}

.wordtime ul{
    border:2px solid #f8fafe;
    padding: 0.25rem;
}

.wordtime li{
    width: calc(100% / 4 - 0.5rem);
    float: left;
    text-align: center;
    border: 1px solid #a8f1d9;
    padding: 0.25rem;
    margin: 0.25rem;
    background-color: #f8fafe;
    border-radius: 0.6rem;
}

.wordtime li>div{
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 0.6rem;
    border-bottom: 1px solid #f5f5f5;
    overflow: hidden;
}

@media screen and (max-width:1100px){
    .wordtime li{
        width: calc(100% / 3 - 0.5rem);
    }
}

@media screen and (max-width:620px){
    .wordtime li{
        width: calc(100% / 2 - 0.5rem);
    }
}

@media screen and (max-width:360px){
    .wordtime li{
        width: calc(100% - 0.5rem);
    }
}

.night .wordtime h2{
    background-color: #181a1b;
}

.night .wordtime ul{
    border: 2px solid #181a1b;
}

.night .wordtime li{
    background-color: #444;
    border: 1px solid #444;
    border-radius: 6px;
}

.night .wordtime li>div{
    border-bottom: 1px solid #666;
}

.night .wordtime li>div:last-child{
    border-bottom: 0;
}