@charset "UTF-8";
/* 场馆介绍页面样式 */

/* 主内容区 */
.venue-section {
    padding: 0.6rem 0 1rem;
}

/* 上部分：标题和介绍 */
.venue-top {
    margin-bottom: 0.5rem;
}

/* 标题样式 - 带左侧蓝色竖线 */
.venue-title {
    font-size: 0.48rem;
    font-weight: bold;
    color: #084ED0;
    margin-bottom: 0.4rem;
}

/* 描述文字 */
.venue-desc {
    font-size: 0.24rem;
    color: #3D3D3D;
    line-height: 0.4rem;
    text-indent: 2em;
}


/* 下部分：左右布局 */
.venue-bottom {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* 左侧：数字统计区 2×2 网格 */
.venue-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0.8rem;
    flex-shrink: 0;
    width: 50%;
    position: relative;
}
.venue-stats::after{
    position: absolute;
    content: '';
    height: 1px;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: linear-gradient(270deg, rgba(216, 216, 216, 0) 1%, #D8D8D8 50%, rgba(216, 216, 216, 0) 100%) ;
}
.venue-stats::before{
    position: absolute;
    content: '';
    height: 100%;
    width: 1px;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(rgba(216, 216, 216, 0) 0%, #D8D8D8 51%, rgba(216, 216, 216, 0) 100%);
}

.stat-item {
    min-width: 2rem;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-number {
    font-size: 0.48rem;
    font-weight: 700;
    color: #084ED0;
    font-family: HarmonyOS Sans SC;
}

.stat-unit {
    font-size: 0.24rem;
    font-weight: 400;
    color: #084ED0;
}

.stat-label {
    font-size: 0.24rem;
    color: #333;
    margin-top: 0.2rem;
    font-family: HarmonyOS Sans SC;
    text-align: center;
}

/* 右侧图片区 */
.venue-image {
    flex: 1;
}

.venue-image img {
    width: 100%;
    height: auto;
    border-radius: 0.12rem;
    display: block;
}

/* 响应式适配 - 1199px */
@media screen and (max-width: 1199px) {
    .venue-bottom {
        gap: 0.4rem;
    }

    .venue-title {
        font-size: 0.3rem;
    }

    .venue-desc {
        font-size: 0.16rem;
    }

    .venue-stats {
        gap: 0.4rem 0.6rem;
    }

    .stat-number {
        font-size: 0.46rem;
    }

    .stat-unit {
        font-size: 0.2rem;
    }

    .stat-item {
        min-width: 1.6rem;
    }
}

/* 响应式适配 - 768px */
@media screen and (max-width: 768px) {
    .venue-section {
        padding: 0.4rem 0 0.6rem;
    }

    .venue-top {
        margin-bottom: 0.4rem;
    }

    .venue-bottom {
        flex-direction: column;
    }

    .venue-image {
        width: 100%;
        margin-bottom: 0.3rem;
        order: -1;
    }

    .venue-title {
        font-size: 0.28rem;
        padding-left: 0.15rem;
        border-left-width: 0.03rem;
    }

    .venue-desc {
        font-size: 0.14rem;
        line-height: 1.8;
    }

    .venue-stats {
        width: 100%;
        gap: 0.3rem 0.5rem;
    }

    .stat-item {
        min-width: auto;
    }

    .stat-number {
        font-size: 0.4rem;
    }

    .stat-unit {
        font-size: 0.18rem;
    }

    .stat-label {
        font-size: 0.14rem;
    }
}

/* 响应式适配 - 481px */
@media screen and (max-width: 481px) {
    .venue-section {
        padding: 0.3rem 0 0.5rem;
    }

    .venue-title {
        font-size: 0.24rem;
    }

    .venue-desc {
        font-size: 0.13rem;
    }

    .venue-stats {
        gap: 0.25rem 0.4rem;
    }

    .stat-number {
        font-size: 0.32rem;
    }

    .stat-unit {
        font-size: 0.14rem;
    }

    .stat-label {
        font-size: 0.12rem;
    }
}

@media screen and (max-width:1025px) {
    .venue-desc{
        font-size: .18rem;
        line-height: 2;
        margin-bottom: .1rem;
    }
    .venue-title{
        font-size: .24rem;
        line-height: 1.5;
        margin-bottom: .1rem;
    }
}