img {
    max-width: 100%;
}

#app {
    position: relative;
}

.car_venue {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 36rem;
    background-color: black;
}

.car_location {
    width: 6.3rem;
    min-height: 36rem;
    /* background-color: #fff; */

}

.road_middle {
    min-height: 36rem;
    flex-grow: 1;
    /* background-color: pink; */
}

.road_arrow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10rem;
    /* background-color: pink; */
}

.road_arrow img {
    width: 3.4rem;
}

.car_place {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 4.5rem;
    /* background-color: skyblue; */
}

.cars {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
}

.action_panel {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 2rem;
    background-color: pink;
}

.action_item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}