@charset "UTF-8";
/* 预约参观页面样式 */

/* 页面区域 */
.reservation-section {
    padding: 0.5rem 0 1rem;
}

/* 页面标题 */
.reservation-section .reservation-title {
    font-size: 0.48rem;
    font-weight: bold;
    color: #084ED0;
    margin-bottom: 0.5rem;
}

/* 双卡片容器 */
.reservation-section .reservation-cards {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

/* 卡片样式 */
.reservation-section .card-item {
    flex: 1;
    display: flex;
    background: rgba(8,78,208,0.1);
    border-radius: 0.12rem;
    overflow: hidden;
    
}


/* 卡片内容区 */
.reservation-section .card-content {
    flex: 1;
    padding: 0.3rem 0.4rem 0.5rem 0.3rem;
}

/* 卡片标题 */
.reservation-section .card-title {
    font-size: 0.3rem;
    font-weight: bold;
    color: #084ED0;
    margin-bottom: 0.25rem;
}

/* 卡片列表 */
.reservation-section .card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reservation-section .card-list li {
    position: relative;
    font-size: 0.22rem;
    color: #3D3D3D;
    padding-left: 0.2rem;
    margin-bottom: 0.18rem;
}
.reservation-section .card-list li:first-child{
    min-height: 0.7rem;
}

.reservation-section .card-list li:last-child {
    margin-bottom: 0;
}

/* 蓝色圆点 */
.reservation-section .card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.12rem;
    width: 0.06rem;
    height: 0.06rem;
    background: #084ED0;
    border-radius: 50%;
}

/* 带微信图标的列表项 */
.reservation-section .card-list li.with-icon {
    display: flex;
    align-items: flex-start;
    padding-left: 0;
}

.reservation-section .card-list li.with-icon::before {
    display: none;
}

/* 微信图标 */
.reservation-section .wechat-icon {
    width: 0.25rem;
    margin-right: 0.1rem;
    flex-shrink: 0;
    margin-top: 0.07rem;
}

/* 参观须知区域 */

/* 须知标题 */
.reservation-section .notice-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #084ED0;
    margin-bottom: 0.2rem;
}

/* 须知列表 */
.reservation-section .notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: notice-counter;
}

.reservation-section .notice-list li {
    position: relative;
    font-size: 0.24rem;
    color: #3D3D3D;
    line-height: 0.48rem;
    padding-left: 0.35rem;
    margin-bottom: 0.2rem;
    counter-increment: notice-counter;
    font-weight: 400;
}

.reservation-section .notice-list li:last-child {
    margin-bottom: 0;
}

/* 数字序号 */
.reservation-section .notice-list li::before {
    content: counter(notice-counter) '、';
    position: absolute;
    left: 0;
    color: #333333;
    font-weight: normal;
}

/* 高亮文字 */
.reservation-section .highlight {
    color: #084ED0;
    font-weight: bold;
}

/* 响应式适配 - 平板 */
@media screen and (max-width: 1199px) {
    .reservation-section .reservation-cards {
        gap: 0.3rem;
    }

    .reservation-section .card-content {
        padding: 0.3rem;
    }
}

/* 响应式适配 - 移动端 */
@media screen and (max-width: 768px) {
    .reservation-section .reservation-section {
        padding: 0.3rem 0 0.6rem;
    }

    .reservation-section .reservation-title {
        font-size: 0.28rem;
        margin-bottom: 0.3rem;
    }

    .reservation-section .reservation-cards {
        flex-direction: column;
        gap: 0.2rem;
        margin-bottom: 0.4rem;
    }

    .reservation-section .card-content {
        padding: 0.25rem;
    }

    .reservation-section .card-title {
        font-size: 0.2rem;
        margin-bottom: 0.2rem;
    }

    .reservation-section .card-list li {
        font-size: 0.14rem;
        padding-left: 0.18rem;
    }

    .reservation-section .card-list li::before {
        width: 0.06rem;
        height: 0.06rem;
        top: 0.1rem;
    }

    .reservation-section .wechat-icon {
        width: 0.18rem;
        height: 0.18rem;
    }

    .reservation-section .notice-block {
        padding: 0.25rem;
    }

    .reservation-section .notice-title {
        font-size: 0.2rem;
        margin-bottom: 0.2rem;
    }

    .reservation-section .notice-list li {
        font-size: 0.14rem;
        padding-left: 0.3rem;
        margin-bottom: 0.15rem;
    }
}

/* 响应式适配 - 超小屏幕 */
@media screen and (max-width: 481px) {
    .reservation-section .reservation-title {
        font-size: 0.24rem;
    }

    .reservation-section .card-title {
        font-size: 0.18rem;
    }

    .reservation-section .card-list li {
        font-size: 0.13rem;
    }

    .reservation-section .notice-title {
        font-size: 0.18rem;
    }

    .reservation-section .notice-list li {
        font-size: 0.13rem;
    }
}

@media screen and (max-width:1025px) {
    .reservation-section .card-list li{
        font-size: .18rem;
        line-height: 1.85;
        min-height: auto;
    }
    .reservation-section .card-list li:first-child{
        min-height: auto;
    }
    .reservation-section .card-content{
        padding: .2rem;
    }
    .reservation-section .notice-block{
        padding: 0;
    }
    .reservation-section .notice-list li{
        font-size: .18rem;
        line-height: 1.85;
        margin-bottom: .05rem
    }
    .reservation-section .notice-title{
        font-size: .2rem;
        line-height: 1.5;
        margin-bottom: .1rem;
    }
    .reservation-section .reservation-cards{
        margin-bottom: .2rem;
    }


}