/* 联系本人页面样式 */

.main-content {
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.contact-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-card h2 {
    color: #2c3e50;
    font-weight: 600;
}

.contact-card ul li {
    color: #495057;
    font-size: 1rem;
}

.contact-card ul li i {
    font-size: 1.1rem;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.contact-form label {
    font-weight: 500;
    color: #495057;
}

.contact-form button {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 2rem;
    }
    
    .main-content {
        padding: 1rem 0;
    }
}