.content-title {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background: #fff;
    border-radius: 8px;
    color: #ff6000;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06), 0 1px 4px 0 rgba(0, 0, 0, .08);
}

.breadcrumb {
    margin: 15px 0;
}

.main-box {
    display: flex;
    gap: 20px;
}

.left-box {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.route-box {
    padding: 16px 8px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06), 0 1px 4px 0 rgba(0, 0, 0, .08);
}

.route-box .header-title {
    display: flex;
    padding: 0px 20px;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.route-box .header-title span {
    color: #ff6600;
    font-size: 25px;
    font-weight: bold;
    margin-right: 10px;
    min-width: 50px;
}

.route-box .header-title .city {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 6px;
    flex-wrap: wrap;
}

.route-box .header-title .city a {
    color: #2440B3;
    font-size: 16px;
}

.route-box .route-info {
    display: flex;
    flex-wrap: wrap;
}

.route-box .route-info li {
    padding: 10px;
    text-align: center;
    width: 150px;
}

.route-box .route-info a {
    text-decoration: none;
    font-size: 14px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
}

.right-box {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06), 0 1px 4px 0 rgba(0, 0, 0, .08);
    width: 25%;
    height: max-content;
}

.right-box .title {
    height: 40px;
    line-height: 40px;
    margin: 10px auto;
    background: #f8f8f8;
    display: flex;
    justify-content: space-around;
    border-radius: 5px;
    width: 90%;
    color: #2440B3;
    font-size: 16px;
}

.right-box ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: center;
    justify-items: center;
}

.right-box ul li {
    padding: 10px;
    color: #666;
    text-align: center
}

.right-box ul li a {
    color: #666;
    font-size: 14px;
}