
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

      {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            padding: 20px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .location-wrapper {
            display: flex;
            gap: 30px;
            justify-content: center;
            align-items: stretch;
        }

        .location-card {
            flex: 1;
            min-width: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .location-content {
            padding: 30px;
        }

        .location-title {
            font-size: 24px;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 15px;
            padding-bottom: 12px;
            border-bottom: 3px solid #0066cc;
        }

        .location-address {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #0066cc;
        }

        .map-container {
            width: 100%;
            margin-top: auto;
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: 0;
            display: block;
        }

        /* 移动端响应式样式 */
        @media (max-width: 992px) {
            .location-wrapper {
                flex-direction: column;
                gap: 30px;
            }

            .location-card {
                max-width: 100%;
            }

            .map-container iframe {
                height: 350px;
            }

            .location-title {
                font-size: 22px;
            }

            .location-address {
                font-size: 15px;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 10px;
            }

            .container {
                padding: 10px;
            }

            .location-content {
                padding: 20px;
            }

            .location-title {
                font-size: 20px;
                margin-bottom: 12px;
                padding-bottom: 10px;
            }

            .location-address {
                font-size: 14px;
                padding: 12px;
                margin-bottom: 15px;
            }

            .map-container iframe {
                height: 300px;
            }
        }

        /* 添加一些视觉效果 */
        .location-card:hover {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
    