/* ==================== 联系信息 ==================== */
.contact-section {
    padding: 40px 0 80px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 5px 0;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location{
    width: 24px;
    height: 24px;
    background: url(../images/location.png) no-repeat;
    background-size: 100%;
}

.kefu{
    width: 24px;
    height: 24px;
    background: url(../images/kefu.png) no-repeat;
    background-size: 100%;
}

.xinxi{
    width: 24px;
    height: 24px;
    background: url(../images/xinxi.png) no-repeat;
    background-size: 100%;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 768px) {

    /* 联系信息 */
    .contact-section {
        padding: 20px 0 60px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-details h2 {
        font-size: 24px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-item-icon {
        font-size: 20px;
    }
    
    .contact-item-content p {
        font-size: 14px;
    }
    
    .contact-map {
        height: 300px;
    }
	
}