       
        /* 联系内容区域 */
        .contact-content {
            padding: 80px 0;
        }
        
        .content-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }
        
        .content-header{
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 36px;
            color: var(--primary-color);
            font-weight: 700;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        
        /* 联系信息 */
        .contact-info {
            padding-right: 40px;
        }
        
        .contact-description {
            font-size: 18px;
            color: var(--gray-color);
            line-height: 1.7;
            margin-bottom: 40px;
        }
        
        .contact-details {
            margin-bottom: 50px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .contact-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(201, 169, 110, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            color: var(--secondary-color);
            font-size: 24px;
        }
        
        .contact-text h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .contact-text p {
            color: var(--gray-color);
            font-size: 16px;
            line-height: 1.6;
        }
        
        .contact-text a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .contact-text a:hover {
            color: var(--primary-color);
        }
        
        /* 工作时间 */
        .working-hours {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            margin-top: 40px;
        }
        
        .hours-title {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .hours-list {
            list-style: none;
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .hours-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .day {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .time {
            color: var(--gray-color);
        }
        
        /* 联系表单 */
        .contact-form-wrapper {
            background-color: white;
            border-radius: 10px;
            padding: 50px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .form-title {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-label {
            font-size: 16px;
            color: var(--primary-color);
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .required {
            color: #e74c3c;
        }
        
        .form-control {
            padding: 15px 20px;
            border-radius: 6px;
            border: 1px solid #ddd;
            font-size: 16px;
            font-family: inherit;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
        }
        
        .form-control.error {
            border-color: #e74c3c;
        }
        
        .error-message {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        
        .error-message.show {
            display: block;
        }
        
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 18px 30px;
            border-radius: 6px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }
        
        .form-submit:hover {
            background-color: #d8b87a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
        }
        
        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .form-success {
            display: none;
            text-align: center;
            padding: 40px 20px;
            background-color: #f0f9f0;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .form-success.show {
            display: block;
        }
        
        .success-icon {
            font-size: 60px;
            color: #27ae60;
            margin-bottom: 20px;
        }
        
        .success-title {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .success-text {
            color: var(--gray-color);
            font-size: 16px;
            line-height: 1.6;
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* 地图区域 */
        .map-section {
            padding: 0 0 80px;
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            height: 500px;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(10, 45, 70, 0.9), rgba(10, 45, 70, 0.9)), url('/uploads/allimg/180422/1-1P422093953c2.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 40px;
        }
        
        .map-icon {
            font-size: 60px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .map-title {
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .map-text {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .map-btn {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 15px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition);
        }
        
        .map-btn:hover {
            background-color: #d8b87a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
        }
		@media (max-width: 768px) {
		    .content-container {
		        grid-template-columns: 1fr; 
		        gap: 40px; 
		    }
		}
		@media (max-width: 480px) {
		    .content-container {
		        gap: 30px;
		    }
		}