/* 联系方式页面样式 */

.page-header {
    background: linear-gradient(135deg, #0056b3, #003d82);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 60px 0;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #666;
}

.departments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.department {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.department h3 {
    color: #0056b3;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f5ff;
}

.department ul {
    list-style: none;
}

.department ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
}

.department ul li:last-child {
    border-bottom: none;
}

.department ul li a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s;
}

.department ul li a:hover {
    color: #003d82;
}

.contact-map h3 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.map-placeholder {
    background-color: #f0f5ff;
    border-radius: 8px;
    padding: 50px 20px;
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #0056b3;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #666;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .departments {
        grid-template-columns: 1fr;
    }
    
    .department ul li {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-map h3 {
        font-size: 1.5rem;
    }
}