.dgdiv{
    text-align: center;
    padding: 1rem 0;
}
.dgdiv img{
    width: 5rem;
    height: 5rem;
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #fff;
    overflow: hidden;
    display: block;
    padding: 0;
    margin: auto;
}
.tipss{
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #C4814D;
}
.dgul{
    width: 12rem;
    margin: 1rem auto 0 auto;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    background: #FFF8F2;
    border: 1px dashed #C4814D;
    display: none;
}
.night .dgul{
    background-color: #181a1b;
    border: 1px dashed #444;
}
.dgul li{
    width: calc(100% / 3);
    float: left;
    padding: 0.25rem 0.75rem;
}
.dgul li img{
    width: 100%;
    height: 100%;
}

.jieguasbut{
    display: none;
    height: 1.6rem;
    line-height: 1.6rem;
    width: 12rem;
    background-color: #c5814d;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    margin: 0.75rem auto;
    cursor: pointer;
}

.rotate {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fall-animation {
    animation: fall 0.5s ease-out; /* 动画名称，持续时间，缓动函数 */
}
@keyframes fall {
    0% {
        transform: translateY(-100%); 
        opacity: 0; 
    }
    100% {
        transform: translateY(0); 
        opacity: 1; 
    }
}
.fall-rotate-animation {
    animation: fallWithRotation 2s ease-out forwards;
    transform-style: preserve-3d; 
    perspective: 1000px; 
}

@keyframes fallWithRotation {
    0% {
        transform: translateY(-100%) rotateZ(0deg) rotateX(0deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotateZ(720deg) rotateX(360deg);
        opacity: 1;
    }
}

.layui-table-cell{
    height: unset !important;
    line-height: unset !important;
    text-overflow: initial;
    white-space: normal;
    padding: 0.6rem 0.5rem;
}
.data_dsdfsdf{
    background-color: #e3eef8;
}
.night .data_dsdfsdf {
    background-color: #181a1b;
}
.allind{
    height: 1.6rem;
    line-height: 1.6rem;
    background-color: #e3eef8;
    text-align: center;
    display: block;
    margin-top: 0.75rem;
    border: 1px solid #cee2ee;
    color: #244c64;
    user-select: none;
    cursor: pointer;
}
.night .allind{
    background-color: #181a1b;
    color: #eee;
    border: 1px solid #444;
    border-radius: 5px;
}
.dgyao{
    height: 0.4rem;
    line-height: 0.4rem;
    background-color: red;
    width: 3rem;
    margin: 0.25rem 0;
    border-radius: 3px;
    overflow: hidden;
}
.yinyao{
    background-color: transparent;
}
.yinyao span{
    height: 0.4rem;
    line-height: 0.4rem;
    width: calc((100% / 2) - 0.15rem);
    background-color: #000;
    display: inline-block;
}