        /* 页面样式 */
        .contact-page {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px;
        }

        /* 页面标题部分 */
        .page-header {
            text-align: center;
            margin-bottom: 10px;
            padding: 20px 0;
            /*border-radius: 12px;*/
            /*box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
        }

        .page-title-1 {
            font-size: 2rem;
            color: #2e7d32;
            margin-bottom: 5px;
            margin-top: 20px;
            font-weight: 700;
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: #4a4a4a;
            max-width: 800px;
            margin: 0 auto 25px;
        }

        .page-description {
            font-size: 1.1rem;
            color: #666;
            max-width: 900px;
            margin: 0 auto;
        }

        /* 联系信息容器 */
        .contact-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 60px;
        }

        .contact-item {
            flex: 1;
            min-width: 300px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            padding: 30px;
            transition: transform 0.3s ease;
            text-align: center;
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 2.5rem;
            color: #4caf50;
            margin-bottom: 20px;
        }

        .contact-title {
            font-size: 1.4rem;
            color: #2e7d32;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .contact-content {
            font-size: 1.05rem;
            color: #555;
        }

        .contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-list a {
            color: #388e3c;
            text-decoration: none;
            transition: color 0.2s ease;
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .contact-list a:hover {
            color: #1b5e20;
        }

        .contact-list i {
            margin-right: 10px;
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
        }

        /* 询盘表单部分 */
        .inquiry-section {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            padding: 40px;
            margin-bottom: 60px;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            color: #2e7d32;
            margin-bottom: 40px;
            font-weight: 600;
        }

        /* 地址和地图部分 */
        .address-map-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 60px;
        }

        .address-info {
            flex: 1;
            min-width: 300px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            padding: 30px;
        }

        .address-title {
            font-size: 1.5rem;
            color: #2e7d32;
            margin-bottom: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .address-title i {
            margin-right: 12px;
            font-size: 1.3rem;
        }

        .address-content {
            line-height: 1.8;
            color: #555;
        }

        .address-content strong {
            display: block;
            margin-top: 20px;
            margin-bottom: 8px;
            color: #2e7d32;
            font-size: 1.1rem;
        }

        .address-content strong:first-child {
            margin-top: 0;
        }

        .map-container {
            flex: 2;
            min-width: 300px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .contact-row {
                flex-direction: column;
            }
            
            .page-title-1 {
                font-size: 2.2rem;
                margin-top: 25px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .address-map-section {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .contact-item, .address-info, .map-container {
                min-width: 100%;
            }
            
            
            .page-title-1 {
                font-size: 1.8rem;
            }
            
            .inquiry-section {
                padding: 20px;
            }
        }