.shousus{}
.shousustime{
    height: 1.8rem;
    line-height: 1.8rem;
}
.shousustime span{
    height: 1.8rem;
    line-height: 1.8rem;
    display: inline-block;
    background-color: #e8e8fd;
    width: 4rem;
    text-align: center;
    float: left;
    border-radius: 3px 0 0 3px;
}
.shousustime select{
    width: calc(100% - 4rem);
    height: 1.8rem;
    line-height: 1.8rem;
    display: inline-block;
    float: left;
    border: 1px solid #e8e8fd;
    padding-left: 0.5rem;
    border-radius: 0 3px 3px 0;
    background-color: #fff;
}
.shoususdiv{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border: 1px solid #ddd;
    padding: 0.5rem 0;
    margin-top: 0.75rem;
    border-radius: 3px;
}
.shoususdiv>div{
    display: inline-block;
    width: calc(100% / 3 - 15px);
    background-color: #ff7504;
    color: #fff;
    text-align: center;
    padding: 1rem;
    border-radius: 3px;
}
.shoususdiv>div.aa{
    background-color: #2196F3;
}
.shoususdiv>div.bb{
    background-color: #9C27B0;
}
.shoususdiv>div span{
    font-size: 2rem;
    font-weight: bold;
}
.shoususdiv>div p{
    font-size: 0.7rem;
}
.shousuclick{
    background-color: rgb(255 218 193 / 14%);
    height: 10rem;
    margin-top: 0.75rem;
    border-radius: 3px;
    border: 1px solid rgb(255 152 0 / 40%);
    cursor: pointer;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.shousuclick span{
    color: #ff7504;
    font-size: 1.4rem;
    font-weight: bold;
}
.shousustips {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.shousustips div {
    position: absolute;
    border: 4px solid #ff7504;
    opacity: 1;
    border-radius: 50%;
    animation: shousustips 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.shousustips div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes shousustips {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}
@media screen and (max-width: 510px){
    .shoususdiv {
        display: block;
        padding: 0.5rem 0.5rem;
    }
    .shoususdiv>div {
        display: block;
        width: 100%;
        padding: 0.5rem;
    }
}
.night .shoususdiv{
    border:1px solid #444;
}
.night .shousustime span{
    background-color: #444;
}
.night .shousustime select{
    background-color: #555;
    color: #fff;
    border: 1px solid #444;
}