/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #ffffff;
    overflow-x: hidden;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Access页面基础样式（全局层级） */
.access-main {
    padding: 0;
    font-family: "Georgia", "Times New Roman", Times, serif;
    background-color: #000;
    color: #e0e0e0;
    position: relative;
    flex: 1;
}

.access-title {
    font-size: 22px;
    text-align: center;
    margin: 30px auto 30px auto;
    letter-spacing: 2px;
    font-weight: 100;
    color: #ffffff;
    text-transform: uppercase;
    width: 20%;
}

/* 出行方式通用样式 */
.travel-mode {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mode-title {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 200;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.sub-title {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.75;
    color: #fff;
    font-weight: 100;
}

/* 停车表格通用样式 */
.parking-table {
    border-collapse: collapse;
    width: 100%;
    margin: 0 0 18px 0;
    font-family: "Microsoft YaHei", "Arial", sans-serif;
    font-size: 12px;
    color: #333;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.parking-table th {
    background-color: #f8f8f8;
    color: #666;
    font-weight: 600;
    padding: 7px 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 12px;
}

.parking-table td {
    padding: 7px 10px;
    text-align: left;
    border: 1px solid #e0e0e0;
    line-height: 1.5;
}

.recommend {
    color: #e63946;
    font-weight: 600;
    margin-left: 2px;
    font-size: 12px;
}

.distance {
    color: #333;
    font-size: 12px;
    line-height: 1.5;
}

.transport-info {
    font-size: 11px;
    line-height: 1.4;
    margin-left: 0;
    opacity: 0.8;
    color: #fff;
    font-weight: 100;
}

/* 路线指引图片组通用样式 */
.image-group {
    margin-bottom: 20px;
    margin-left: 15px;
    margin-right: 15px;
}

.step-image {
    width: 100%;
    margin: 0 auto 6px;
    display: block;
    border: none;
    border-radius: 0;
}

.image-desc {
    font-size: 14px;
    text-align: left;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.4;
    width: 100%;
    font-weight: 100;
}

/* 全局统一容器样式（核心：保证主体和底部宽度一致） */
.page-container {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* 移动端全局适配样式 */
@media (max-width: 768px) {
    .access-title {
        width: 100%;
        font-size: 20px;
        margin: 20px auto 12px auto;
    }

    .parking-table {
        font-size: 10px;
    }

    .parking-table th,
    .parking-table td {
        padding: 5px 7px;
    }

    .image-group {
        margin-left: 8px;
        margin-right: 8px;
    }

    .image-desc {
        font-size: 10px;
        margin-bottom: 10px;
    }
}