/* contact.css - 联系方式页面样式 */

/* 基础样式重置 */
body {
    background-color: #f8f9fa;
    color: #333;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
}

/* 页面标题 */
.page-title {
    color: #2c3e50;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e4e8;
}

/* 侧边栏样式 */
.sidebar-nav {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-nav .nav-item {
    margin-bottom: 5px;
}

.sidebar-nav .nav-link {
    color: #555;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sidebar-nav .nav-link:hover {
    background-color: #f0f0f0;
    color: #2c3e50;
}

.sidebar-nav .nav-link.active {
    background-color: #e9f5ff;
    color: #007bff;
    font-weight: bold;
}

.sidebar-images img {
    border: 1px solid #eee;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.sidebar-images img:hover {
    transform: scale(1.02);
}

/* 联系方式内容区域 */
.contact-content {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.contact-item {
    text-align: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* 响应式调整 */
@media (max-width: 767.98px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 24px;
    }
}

/* 特殊样式 */
.STYLE1 {
    color: #FF0000;
    font-weight: bold;
}