.dpdivs{
    padding: 0.5rem 0.5rem 0 0.5rem;
    background: #fffaf0;
    border: 1px solid #ffddbb;
    border-radius: 6px;
}

.night .dpdivs{
    background: #181a1b;
    border: 1px solid #444;
}

/*******************************************/

.dpth2{
    font-size: 0.7rem;
    height: 1.8rem;
    line-height: 1.8rem;
    position: relative;
    text-align: center;
    background-color: #FB8C00;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    color: #fff;
}

.night .dpth2{
    background-color: #222222;
    color: #bbb;
}

.dpth2::after,.dpth2::before{
    content: "";
    width: 1rem;
    height: 2px;
    background: #e8e8fd;
    position: absolute;
    top: calc(50% - 1px);
    display: block;
}

.night .dpth2::after,.night .dpth2::before{
    background: #aaa;
}

.dpth2::after{
    left: calc(50% + 3rem);
}

.dpth2::before{
    left: calc(50% - 4rem);
}

/*******************************************/

.dptsc{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.dptsc::after {
    content: "";
    grid-column: 1 / -1;
    height: 0;
}

.dptsc li>div{
    border: 1px solid #FFC107;
    padding: 0.5rem 0.5rem 0.5rem 3.5rem;
    border-radius: 6px;
    position: relative;
}

.night .dptsc li>div{
    border: 1px solid #444;
}

.dptsc li>div span{
    position: absolute;
    left: calc((3.5rem - 2rem) / 2);
    top: 50%;
    font-size: 1.2rem;
    color: #ffc207;
    font-weight: bold;
    transform: translateY(-50%);
    border: 1px solid #ffc305;
    width: 2rem;
    text-align: center;
    height: 2rem;
    line-height: 2rem;
    display: block;
    border-radius: 6px;
}

.night .dptsc li>div span{
    border: 1px solid #444;
    color: #aaa;
}

.dptsc li>div div{
    height: 1.2rem;
    line-height: 1.2rem;
    font-size: 0.7rem;
}

.dptsc li>div p{
    color: #999;
    font-size: 0.6rem;
    line-height: 1rem;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 1190px){
    .dptsc{
        grid-template-columns: repeat(1, 1fr);
    }
}