.layui-form-item{
    margin-bottom: 0;
}

.shousus{
    padding: 0.5rem;
    border: 1px solid #eee;
    border-radius: 3px;
}

.night .shousus{
    border:1px solid #444;
}

.shoususdiv{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0 0 0;
    border-radius: 3px 3px 0 0;
    border-top: 0;
}

.shoususdiv>div{
    display: inline-block;
    width: calc(100% / 3 - 0.5rem);
    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;
    height: 2rem;
    line-height: 2rem;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 1rem;
}

.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;
}

.night .shousuclick{
    border: 1px solid #444;
    background-color: #181a1b;
}

.shousuclick span{
    color: #ff7504;
    font-size: 1.4rem;
    font-weight: bold;
}

.night .shousuclick span{
    color: #aaa;
}

.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 0 0;
    }
    .shoususdiv>div {
        display: block;
        width: 100%;
        border-radius:  3px 3px 0 0;
    }
    .shoususdiv>div span {
        margin-bottom: 0.5rem;
    }

    .shoususdiv>div.aa{
        border-radius: 0;
    }
    
    .shoususdiv>div.bb{
        border-radius: 0 0 3px 3px;
    }
}

