 /* 联系我们 */
        .contact-section {
            padding: 20px 0 80px;
        }
        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 40px;
        }
        /* 联系信息 */
        .contact-info {
            padding-right: 20px;
            border-right: 1px solid #eee;
        }
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 30px;
        }
        .info-icon {
            width: 40px;
            height: 40px;
            background-color: #f5f5f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c00;
            font-size: 20px;
            flex-shrink: 0;
        }
        .info-content h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #333;
        }
        .info-content p {
            color: #666;
            font-size: 16px;
            line-height: 1.7;
        }
        .contact-map {
            width: 100%;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 20px;
        }
        .contact-map img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* 联系表单 */
        .contact-form {
            padding-left: 20px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #c00;
        }
        .form-textarea {
            height: 150px;
            resize: none;
            line-height: 1.6;
        }
        .submit-btn {
            background-color: #c00;
            color: #fff;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background-color: #a00;
            transform: translateY(-2px);
        }
        /* 底部 */
       
        /* 响应式 */
        @media (max-width: 1200px) {
            .container, .header-container {
                width: 95%;
            }
        }
        @media (max-width: 768px) {
            header {
                padding: 10px 0;
            }
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            nav ul {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .contact-wrap {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            .contact-info {
                border-right: none;
                padding-right: 0;
                padding-bottom: 30px;
                border-bottom: 1px solid #eee;
            }
            .contact-form {
                padding-left: 0;
                padding-top: 20px;
            }
        }