.vehicle-base-content {
    display: flex;

    .left {
        width: 450px;
        padding: 24px 24px 24px 28px;
        background-color: var(--sub-bg-color);
    }

    .right {
        position: relative;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        padding: 24px 32px;

        .top {
            display: flex;
            height: 280px;
            .info {
                flex-grow: 1;
                width: 0;
                .ant-carousel {
                    .slick-dots-bottom {
                        bottom: -40px;
                        > li {
                            width: 6px;
                            height: 6px;
                            > button {
                                width: 100%;
                                height: 100%;
                                border-radius: 50%;
                            }
                        }
                    }
                }
            }
            .stat {
                width: 380px;
                .stat-item {
                    min-width: 180px;
                    margin-top: 32px;
                    margin-right: 0;
                }
            }
        }
        .hr {
            height: 1px;
            background: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.1),
                #506f6d,
                rgba(255, 255, 255, 0.09)
            );
            box-shadow: 0 1px 0 0 #000;
            opacity: 0.2;
        }
        .chart-container {
            padding: 24px 0;
        }
    }
}

.vehicle-warning-content {
    height: 100%;
    position: relative;
    padding: 24px;
    .filter {
        position: absolute;
        top: 24px;
        right: 24px;
        z-index: 10;
    }
    .vtx-sub-tabs {
        .tab-pane {
            padding: 6px 0;
        }
    }
}
.ant-space {
    display: flex;
}
.vtx-vehicle-ext-btn {
    --color: #222;
    display: flex;
    align-items: center;
    cursor: pointer;
    &.dark {
        --color: #a9d5d3;
    }
    img {
        width: 38px;
        height: 42px;
        margin-right: 8px;
    }
    span {
        color: var(--color);
    }
}

.real-time-info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    &.dark {
        background: linear-gradient(0deg, #d2fffc 0%, #8de5df 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    img {
        margin-right: 10px;
    }
    span {
        font-size: 12px;
    }
}

.real-time-status {
    &.dark {
        --bg-color: #30767233;
        --text-color: #55ffe1;
    }
    display: flex;
    > div {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 28px;
        margin-left: auto;
        background-color: var(--bg-color);
        border-radius: 14px;

        img {
            margin-right: 4px;
        }
        span {
            color: var(--text-color);
            font-size: 14px;
        }
    }
}

.real-info-item {
    &.dark {
        --label-color: #cafdff;
        --value-color: #fff;
    }
    display: flex;
    flex-direction: column;
    margin-right: 32px;
    .label {
        color: var(--label-color);
        font-size: 12px;
    }
    .value {
        .number {
            color: var(--value-color);
            font-size: 22px;
            // font-family: DIN-Regular, serif;
        }
        .unit {
            color: var(--value-color);
            font-size: 12px;
        }
    }
}

.real-drive {
    display: flex;
    align-items: center;
    margin-top: 32px;
    margin-left: 48px;
    .real-time-progress {
        margin-right: 32px;
        &.dark {
            .ant-progress-text {
                color: white;
            }
        }
    }
}

.real-speed {
    display: flex;
    align-items: center;
    margin-top: 32px;
    margin-left: 42px;

    .img {
        margin-right: 28px;
    }
}

.real-time-vehicle {
    display: flex;
    flex-direction: column;
    align-items: center;
    .vehicle {
        width: 257px;
    }
    .ring {
        margin-top: -70px;
    }
}

.community-throw-content {
    padding: 24px;

    .top-bar {
        display: flex;
        margin-bottom: 32px;
        padding-left: 28px;

        .right {
            margin-left: auto;
        }
    }
}
