/* ---- 联系我们页面样式 ---- */

.content-body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.content-body p {
    width: 95%;
    display: flex;
    text-align: center;
    margin: 0 auto;
}

.contact-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 95%;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    background-color: #f9f9f9;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #eee;
}

.contact-item h4 {
    margin-top: 0;
    font-weight: bold;
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 4px;
    margin-bottom: 10px;
}

.contact-item p {
    margin-left: 4px;
    margin-bottom: 6px;
}

.contact-item p a {
    text-align: center;
    margin: 0 auto;
}

.contact-item a {
    justify-content: center;
    align-items: center;
    color: #007bff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

address {
    font-style: normal;
}

.contact-item strong {
    font-weight: 600;
}

.social-media-links {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    justify-content: center;
    gap: 15px;
}

.social-media-links a {
    font-size: 24px;
    font-weight: bold;
}

.social-media-links a i:hover {
    transform: scale(1.1);
    color: red;
}

.map-container {
    width: 95%;
    margin: 2rem auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
}

.map-container h4 {
    margin: 0;
    font-weight: bold;
    padding: 20px 16px;
    /* background-color: #f9f9f9; */
    border-bottom: 1px solid #ddd;
}

.btn-map {
    --bg: rgba(17, 22, 29, .55);
    --fg: #eaf1ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: .5rem .8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--bg);
    background: var(--fg);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .05) inset, 0 12px 24px rgba(0, 0, 0, .28);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-map-outline {
    background: rgba(255, 255, 255, .04);
    margin-right: 5px;
}

.map-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 2px 8px rgba(0, 0, 0, .25);
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

.btn-map-outline:hover {
    transform: translateY(-4px);
    transition: transform .6s ease;
}
