/* 到达指南内容 */
.arrival-content {
    padding: 20px 0 20px;
}

.venue-info {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.venue-details {
    flex: 1;
    min-width: 300px;
}

.venue-map {
    flex: 1;
    min-width: 300px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-left: 30px;
}

#map {
    height: 100%;
    width: 100%;
}

.venue-info h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.venue-address {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.venue-features {
    list-style: none;
    /* margin-top: 20px; */
}

.venue-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.venue-features i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

/* 路线指南部分 */
.route-tabs {
    margin-bottom: 40px;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid var(--gray);
    margin-bottom: 30px;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.route-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.route-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.route-title i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.route-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.route-info {
    padding-right: 20px;
}

.route-info h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.3rem;
}

.step-list {
    list-style: none;
    counter-reset: step-counter;
}

.step-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.step-list li:before {
    content: counter(step-counter);
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.step-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.step-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

.time-cost {
    display: flex;
    margin-top: 15px;
    font-size: 0.9rem;
}

.time-cost div {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.time-cost i {
    margin-right: 5px;
    color: var(--primary);
}

.route-image {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
}

.route-image img {
    max-width: 100%;
    height: auto;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.transport-option {
    background: var(--light);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.transport-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.transport-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.transport-option h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.transport-option p {
    color: var(--text-light);
    font-size: 0.95rem;
}