body{
    background: linear-gradient(to bottom, #572cd4 0%, #dea7c4 40%, #f9e270 100%);
}
/* 主视觉区域 - 轮播背景 */
.hero {
    height: 530px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);*/
}
/* 筛选栏样式 */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.filter-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.filter-select {
    width: 220px;
}

/* 西城区突出模块 */
.xicheng-highlight {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.1), rgba(255, 126, 95, 0.05));
    /*background: linear-gradient(to bottom, #572cd4 0%, #dea7c4 20%, #f9e270 100%);*/
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 60px;
    border: 2px solid #ff7e5f;
    position: relative;
}

.highlight-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #ff7e5f;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(255, 126, 95, 0.3);
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: #ff7e5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.highlight-title {
    font-size: 28px;
    font-weight: 600;
    color: #ff7e5f;
}

.xicheng-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.xicheng-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(255, 126, 95, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #ff7e5f;
}

.xicheng-card:hover {
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 126, 95, 0.2);
}

.card {
    font-size: 14px;
    color: #ff7e5f;
    font-weight: 500;
    margin-bottom: 8px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 时间轴样式 */
.timeline-container {
    position: relative;
    padding-left: 40px;
    margin-bottom: 80px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to top, #572cd4 0%, #dea7c4 10%, #f9e270 100%);
    border-radius: 2px;
}

.timeline-month {
    position: relative;
    margin-bottom: 40px;
}

.month-dot {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #572cd4;
    border-radius: 50%;
    z-index: 10;
}

.month-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.month-title i {
    color: #00c9ff;
}

.district-section {
    margin-bottom: 30px;
}

.district-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #572cd4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.district-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
}

.district-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 0px solid #00c9ff;
}

.district-card:hover {
    cursor: pointer;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card-tag {
    display: inline-block;
    background: linear-gradient(90deg, #dea7c4 0%, #f9e270 100%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 15px;
    margin-bottom: 10px;
}


.placeholder-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #6c757d;
    font-style: italic;
    min-height: 120px;
}
.placeholder-content {
    text-align: center;
}


.custom-tabs {
    width: 1200px;
    margin: 20px auto;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
.tab-ml{
    margin-left: 120px;
}

.custom-tabs .el-tabs__header {
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.custom-tabs .el-tabs__nav-wrap::after {
    background-color: transparent;
}

.custom-tabs .el-tabs__item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
}

.custom-tabs .el-tabs__item.is-active {
    color: #fff;
    font-weight: 600;
}

.custom-tabs .el-tabs__item:hover {
    color: #fff;
}

.custom-tabs .el-tabs__active-bar {
    background-color: #fff;
    height: 3px;
}

.custom-tabs .el-tabs__content {
    padding: 0 20px;
    background: #fff;
}

.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* 控制间距 */
}

.search-item {
    flex: 1 1 calc(50% - 10px); /* 每行两个元素 */
    min-width: 120px; /* 防止过小 */
}


/* 展馆地图tab样式 */
.map-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.map-image {
    flex: 1;
    margin-right: 30px;
    margin-top: 50px;
}
.map-image img {
    width: 100%;
    border-radius: 4px;
}
.map-info {
    flex: 0 0 400px;
}
.map-info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #dea7c4 0%, #f9e270 100%);
    border-image-slice: 1;
    padding-bottom: 10px;
}
.hall-list {
    list-style: none;
}
.hall-item {
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 14px;
    transition: background-color 0.3s;
}
.hall-item:hover {
    background:  #ff7e5f10;
}
.hall-number {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    background: linear-gradient(0deg, #dea7c4 0%, #f9e270 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.hall-description {
    font-size: 16px;
    color: #666;
}

.hall-company {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    background: linear-gradient(0deg, #dea7c4 0%, #f9e270 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.pass-card-section {
    margin-bottom: 24px;
    border: 1px solid #ebeef5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pass-card-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pass-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px !important;
    border-radius: 8px 8px 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pass-card-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pass-card-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.pass-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pass-card-tag {
    margin: 0 !important;
}

.pass-card-subtitle {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.pass-card-features {
    padding: 24px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon-wrapper {
    text-align: center;
    margin-bottom: 16px;
}

.feature-icon {
    font-size: 32px;
}

.feature-title {
    text-align: center;
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.feature-description {
    text-align: center;
    color: #666;
    margin: 0 0 16px 0;
    font-size: 14px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-item {
    padding: 6px 0;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.feature-list-icon {
    color: #67C23A;
    font-size: 14px;
    margin-right: 8px;
    margin-top: 3px;
}

.pass-card-footer {
    text-align: center;
    padding: 0 24px 24px;
}

.pass-card-note {
    margin-top: 12px;
    font-size: 13px;
    color: #909399;
}

@media (max-width: 768px) {
    .pass-card-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pass-card-title-wrapper {
        width: 100%;
        flex-direction: row;
        align-items: center;
    }

    .pass-card-tags {
        justify-content: center;
    }

    .pass-card-subtitle {
        margin-top: 6px;
        text-align: center;
    }

    .pass-card-features {
        padding: 16px;
    }

    .feature-card {
        padding: 16px;
    }


    .placeholder-card{
        display:none;
    }
    .filter-bar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .filter-group {
        flex: 1
    }

    .filter-label {
        display: none;
    }

    .filter-select {
        width: 90%;
    }

    .header-content {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }

    .nav-menu {
        margin: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-title {
        font-size: 36px;
    }

    .district-card-list {
        grid-template-columns: 1fr;
    }

    .timeline-container {
        padding-left: 30px;
    }

    .month-dot {
        left: -30px;
        width: 16px;
        height: 16px;
    }

    .highlight-title {
        font-size: 20px;
        font-weight: 600;
        color: #ff7e5f;
    }
    .xicheng-grid {
        display: flex;
        flex-direction: column;
    }

    .xicheng-card {
        margin-left: -18px;
        width: 96%;
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(255, 126, 95, 0.1);
        transition: all 0.3s ease;
        border-left: 4px solid #ff7e5f;
    }

    .xicheng-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(255, 126, 95, 0.2);
    }
    .hero {
        margin-top: -20px;
        height: 260px;
    }
    .carousel-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 260px;
        z-index: 1;
    }
    .carousel-item {
        width: 100%;
        height: 230px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 230px;
        /*background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);*/
    }

    .tab-ml{
        margin-left: 10px;
    }

    .custom-tabs {
        width: 100%;
        margin: 0 auto;
        box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }

    .custom-tabs .el-tabs__header {
        margin: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .custom-tabs .el-tabs__nav-wrap::after {
        background-color: transparent;
    }

    .custom-tabs .el-tabs__item {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        font-weight: 500;
        padding: 0 10px;
        height: 50px;
        line-height: 50px;
    }

    .custom-tabs .el-tabs__item.is-active {
        color: #fff;
        font-weight: 600;
    }

    .custom-tabs .el-tabs__item:hover {
        color: #fff;
    }

    .custom-tabs .el-tabs__active-bar {
        background-color: #fff;
        height: 3px;
    }

    .custom-tabs .el-tabs__content {
        padding: 0 20px;
        background: #fff;
    }
    .search-filters {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .search-item {
        flex: 0 0 50%;
        padding: 5px;
    }

    .search-buttons-row {
        flex: 1 0 100%;
        margin-top: 10px;
    }
    .map-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .map-image {
        flex: 1;
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .map-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 4px;
        display: block;
    }

    .map-info {
        flex: 0 0 auto;
        width: 100%;
    }

}