.subway-2 {
    background: rgb(0,148,68);
    color: #fff;
    padding: 5px 10px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 500;
    white-space:nowrap;
}

.subway-7 {
    background: #747F00; 
    color: #fff;
    padding: 5px 10px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.bus {
    display: flex;
/*    justify-content: space-between;*/
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(0,0,0,0.5);
    margin-bottom:10px;
}

.bus-blue {
    background: #0066cc;
    padding: 5px 10px;
    color: #fff;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 500;
    white-space:nowrap;
}

.bus-green {
    background: #009933;
    padding: 5px 10px;
    color: #fff;
    border-radius: 18px;
    font-size: 15px;
    white-space: nowrap;
}

.container {
    padding-bottom: 50px;
}

.location-wrap {
    padding: 80px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 2px 10px 15px 0px rgba(0, 0, 0, 0.3);
}

.map {
    width: 100%;
    padding: 0 20px;
    border: 0;
}

.location-row {
    margin-top: 50px;
}

.location-col {
    padding: 20px;
}

.location-item {
    display: flex;
}

    .location-item .left {
        width: 160px;
        height: 160px;
        border: 1px solid #ddd;
        border-radius: 12px;
        padding: 45px;
    }

        .location-item .left img {
            width: 100%;
            height: 100%;
        }

    .location-item .right {
        padding: 15px 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .location-item.location {
        height: 180px;
    }

    .location-item .title {
        margin-bottom: 10px;
        text-align: left;
        font-size: 20px;
        font-weight: 700;
        color: #000;
    }

    .location-item .des {
        font-size: 16px;
        font-weight: 500;
        color: rgba(0,0,0,0.5);
        text-align: left;
        margin-bottom:10px;
    }

.subway {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}



@media(max-width: 768px)
{
    .location-item{
        display:flex;
        flex-direction:column !important;
        border:1px solid #ddd !important;
        border-radius:12px !important;
    }
    .location-item .left{
        position:relative !important;
        width:100% !important;
        height:50px !important; 
        border:none !important;
        padding : 0 !important;
    }
    .location-logo {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 35px !important;
        height: 35px !important;
        transform: translate(-50%,-50%) !important;
    }
    .location-item .right{
        padding:15px 20px !important;
        border-top:1px solid #ddd !important;
    }
    .location-item .right .title{
        text-align:center !important;
        font-size:17px !important;
    }
    .location-item .right .des{
        font-size:12px !important;
    }
    .bus{
        font-size:12px !important;
    }
    .bus span{
        font-size:12px !important;
    }
    .subway {
        font-size:12px !important;
    }
    .subway span{
        font-size: 12px !important;
    }
}
@media(max-width:480px){
    .location-wrap{
        padding:80px 10px !important;
    }
}