/* 主容器*/
        .medical-banner {
			display: flex
		;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			height: 50vh;
			background-color: white;
			text-align: center;
			padding: 0 20px;
			    margin-top: -3%;
		}
        
        /* 主标题样式 - 精确还原 */
        .main-title {
            font-size: 3.5rem;
            font-weight: 500;
            color: black;
            margin-bottom: 2rem;
            line-height: 1.2;
            letter-spacing: 0.5px;
            
            max-width: auto;
        }
        
        /* 副标题样式 - 精确还原 */
        .subtitle {
            font-size: 1.5rem;
            font-weight: 500;
            color: black;
            line-height: 1.6;
            max-width: 800px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
        } 
		
		
		.footer {
            background-color: #003366; /* 深蓝色背景 */
            color: white;
            padding: 50px 10%;
            font-family: Arial, sans-serif;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
			text-align: left; /* 确保正文左对齐 */
        }
        
        .footer-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
			text-align: left; /* 确保正文左对齐 */
        }
        
        .footer-text {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
			text-align: left; /* 确保正文左对齐 */
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 30px;
            height: 30px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-item {
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .email-input {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: none;
            border-radius: 4px;
        }
        
        .submit-btn {
            background-color: #0066cc;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
        }
        
        .copyright {
            width: 100%;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 12px;
            display: flex;
            justify-content: space-between;
        }
        
        @media (max-width: 768px) {
            .footer {
                flex-direction: column;
                gap: 30px;
            }
        }
		.social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: transparent;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: scale(1.1);
        }
        
        .social-icon img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }
		/* 主容器 */
        .contact-container {
            max-width: 1000px;
            margin: 40px auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
        }
        
        /* 左侧信息区 */
        .contact-info {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            box-sizing: border-box;
        }
        
        /* 右侧表单区 */
        .contact-form {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            background: #f9f9f9;
            box-sizing: border-box;
        }
        
        /* 文字样式 */
        .contact-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #222;
        }
        
        .contact-description {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #555;
        }
        
        /* 联系信息块 */
        .contact-block {
            margin-bottom: 25px;
        }
        
        .contact-label {
            font-size: 14px;
            font-weight: 600;
            color: #777;
            margin-bottom: 8px;
            display: block;
        }
        
        .contact-value {
            font-size: 16px;
            color: #333;
        }
        
        /* 表单样式 */
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #555;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
            box-sizing: border-box;
            background: white;
        }
        
        .form-input::placeholder {
            color: #999;
        }
        
        /* 提交按钮 */
        .submit-btn {
            background-color: #6a0dad; /* 紫色 */
            color: white;
            border: none;
            padding: 14px 25px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #5a0b9d;
        }
        
        /* 必填字段星号 */
        .required {
            color: #e74c3c;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
                margin: 20px;
            }
            
            .contact-info, 
            .contact-form {
                padding: 30px;
            }
            
            .contact-title {
                font-size: 24px;
            }
        }