
        /* 全局样式 */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: #f4f4f4;
        }

        header {
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center;
        }

        h1 {
            margin: 0;
        }

        /* 联系方式内容块样式 */
        .contact-info {
            display: flex;
            justify-content: space-between;
            padding: 20px;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap; /* 响应式支持 */
        }

        .contact-block {
            flex: 1;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            min-width: 250px; /* 设置最小宽度 */
            transition: transform 0.3s ease; /* 添加块元素的平滑过渡效果 */
        }

        .contact-block:hover {
            transform: scale(1.05); /* 悬停时放大效果 */
        }

        .contact-block h3 {
            margin-bottom: 15px;
            font-size: 22px;
            color: #333;
            font-weight: bold; /* 加粗小标题 */
        }

        .contact-block p {
            font-size: 14px;
            color: #555;
            margin: 2px 0;
        }

        .contact-block i {
            font-size: 25px;
            color: #333;
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }

        .contact-block a:hover i {
            color: #3498db; /* 悬停时改变图标颜色 */
        }

        .social-icons i {
            font-size: 25px;
            color: #333;
            margin: 5px;
            cursor: pointer;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .social-icons a:hover i {
            transform: scale(1.1); /* 悬停时放大社交媒体图标 */
            color: #3498db; /* 悬停时改变图标颜色 */
        }

        /* 垂直布局 */
        .vertical-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        #mapContainer {
            width: 100%;
            height: 500px;
            border: 1px solid #ccc;
        }
        #mapContainer {
            min-height: 300px;  /* 地图最小高度保证显示 */
        }
@media screen and (max-width: 768px) {
        #mapContainer {
            height: 300px;
    }
}
    