.hrs-container {
    display: flex;
    width: 1400px;
    height: auto;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 80px;
}

.map-section {
    flex: 2;
    height: 100%;
    position: relative;
}

#map {
    width: 100%;
    height: 750px;
}

.contact-section {
    flex: 1;
    background-color: #f5f5f5;
    height: 700px;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    padding-top: 50px;
    padding-right: 50px;
    overflow-y: auto;
}

.contact-section h2 {
    font-size: 32px;
    margin-top: 0;
    color: #4169E1;
}

.contact-section h1 {
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-section p {
    margin: 3px 0;
    font-size: 14px;
}

.contact-section img {
    margin-top: 50px;
    width: 100px;
    height: auto;
}

.dashed-line {
    border: none;
    border-top: 1px dashed #000;
    width: 100%;
    margin: 10px 0;
}

.qr-code {
    width: 150px;
    height: 150px;
}

.bold-left-margin {
    font-weight: bold;
    padding-left: 23px;
    padding-top: 10px;
}


.button-group {
    display: flex;
    margin: auto;
    width: 1400px;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 60px;
    margin-top: 20px;

}

.button-group button {
    border: 1px solid #ddd;
    background-color: #f9f9fa;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* 添加过渡效果 */
}

.button-group button:hover {
    background-color: #4169E1 !important; /* 指向时背景颜色变蓝 */
    color: white; /* 字体变白 */
}

.button-group button:hover {
    background-color: #e0e0e0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.contact-card {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-card p {
    margin: 5px 0;
}