
/*以下是酒店确定的模块*/


.venue-section {
    padding: 70px 0;
    background: #ffffff;

}
.venue-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    /*
如果酒店没确定，就填加这个
*/
    display: none;
}
.venue-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.venue-main-title {
    font-size: 36px;
    color: #002070;
    margin-bottom: 12px;
    font-weight: 700;
}
.venue-section-sub {
    font-size: 18px;
    color: #444;
}
.venue-wrap {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 50px;
    align-items: flex-start;
}
.venue-info h3 {
    font-size: 28px;
    color: #002070;
    margin-bottom: 14px;
}
.venue-address-text {
    font-size: 17px;
    color: #003399;
    font-weight: 500;
    margin-bottom: 24px;
}
.venue-desc p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 16px;
}
.venue-traffic {
    margin: 35px 0;
}
.venue-traffic h4 {
    font-size: 20px;
    color: #002070;
    margin-bottom: 16px;
}
.venue-traffic li {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 8px;
}
.venue-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #003399;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.25s ease;
}
.venue-btn:hover {
    background: #002070;
}
#mapIframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,32,112,0.08);
}
/* 响应式适配 */
@media (max-width: 1200px) {
    .venue-wrap {
        grid-template-columns: 1fr;
    }
    #mapIframe {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .venue-main-title {
        font-size: 28px;
    }
    .venue-info h3 {
        font-size: 24px;
    }
    #mapIframe {
        height: 320px;
    }
}