.road-title {
    margin-bottom: 16px;
    font-weight: bold;
    font-size: 16px;
    color: var(--stat-item-value-color);
}
.dark {
    --stat-item-label-color: #fff;
    --stat-item-value-color: #59ffe2;
}
.road-modal {
    .vtx-modal-tabs {
        min-height: unset !important;
    }
}
.road-base-content {
    display: flex;
    flex-direction: column;
    padding: 10px;
    --stat-item-label-color: #000;
    --stat-item-value-color: #000;
    --content-bg-color: #f1f1f1;
    --content-module-color: #fff;

    background: var(--content-bg-color);

    .road-base-search {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 52px;
        padding-right: 16px;
        background: #fff;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        margin-bottom: 10px;
    }
    .road-base-data {
        flex: 1;
        display: grid;
        grid-template-columns: 4fr 6fr;
        gap: 10px;

    }
    .road-base-info {
        height: 280px;
        padding: 16px;
        overflow: hidden;
        background: var(--content-module-color);
        .info-collection {
            display: flex;
            flex-wrap: wrap;
            .info-line {
                display: flex;
                font-size: 14px;
                margin-bottom: 12px;
                width: 50%;
                .label {
                    color: var(--label-color);
                    white-space: nowrap;
                }

                .value {
                    color: var(--info-color);
                    font-weight: 400;
                }
            }
        }
    }

    .work-rule {
        display: flex;
        gap: 32px;
        margin-bottom: 8px;
        width: fit-content;
        padding: 8px 32px;
        &:nth-child(even) {
            background-color: #FAFAFA;
            border: 1px solid rgba(4,0,0,0.08);
        }
        &-name {
            display: flex;
            gap: 16px;
            align-items: center;
            .dot {
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #4EE2D6;
            }
        }
        &-time {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        &-num {
            display: flex;
            gap: 16px;
            align-items: center;
        }
    }

}


.road-statistics-content {
    display: flex;
    flex-direction: column;
    padding: 10px;
    --content-bg-color: #f1f1f1;
    --content-module-color: #fff;

    background: var(--content-bg-color);
    .road-statistics-search {
        display: flex;
        align-items: center;
        height: 52px;
        padding-left: 16px;
        background: #fff;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        margin-bottom: 10px;
    }
    .road-statistics-data {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .road-statistics-info {
        padding: 16px;
        color: var(--stat-item-label-color);
        background: var(--content-module-color);
        &:nth-child(1),&:nth-child(2) {
            height: 220px;
        }
        &:nth-child(3),&:nth-child(4) {
            height: 340px;
        }
    }
    .statistics-row {
        display: flex;
        justify-content: space-between;
        .statistics-item {
            display: flex;
            gap: 16px;
            span {
                color: #222;
                font-size: 20px;
            }
        }
    }
    .progress{
        position: relative;
        height: 4px;
        background: #DBDBDB;
        border-radius: 4px;
        margin-top: 16px;

        .active_progress {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            border-radius: 4px;
            background: linear-gradient(270deg, #62C1FD 0%, #3E9DF9 100%)
        }
    }
    .statistics-work-summary {
        display: flex;
        flex-wrap: wrap;
        color: var(--stat-item-label-color);
        > div {
            display: flex;
            align-items: baseline;
            width: 50%;
            margin-bottom: 16px;
        }
    }
}
