:root{
    --van-nav-bar-text-color: #FFFFFF;
    --van-nav-bar-icon-color: #FFFFFF;
    --van-nav-bar-title-text-color: #FFFFFF;
    --van-nav-bar-arrow-size: 20px;
    --van-nav-bar-height: 50px;
    --van-nav-bar-background: #DAC2B2;
}

#app{
    flex: 1;
    width: auto;
    max-width: 100vw;
    height: auto;
    min-height: 100vh;
    background-color: #f6f6f6;
}

.container{
    flex: 1;
    width: auto;
    height: auto;
    padding: 10px;
}

.flex-row-end{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.ct-card{
    flex: 1;
    width: auto;
    height: auto;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 10px;
}

.ct-cell{
    color: rgba(0, 0, 0, 0.85);
    line-height: 30px;
    text-decoration: none;
    display: block;
    padding: 10px 0 10px 0;
}

.ct-card .ct-cell{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ct-card .ct-cell:first-child{
    padding-top: 0;
}

.ct-card .ct-cell:last-child{
    border-bottom: none;
    padding-bottom: 0;
}