/* 文章页面样式 */
.article-main {
    padding: 120px 0 60px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-content h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.article-meta {
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-meta span {
    margin-right: 20px;
}

.article-body {
    color: #444;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 24px;
    color: #333;
    margin: 30px 0 20px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.article-body li:before {
    content: "•";
    color: #1890ff;
    position: absolute;
    left: 0;
}

.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tags a {
    display: inline-block;
    padding: 5px 10px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
}

.tags a:hover {
    background: #1890ff;
    color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article-content {
        padding: 20px;
    }

    .article-content h1 {
        font-size: 24px;
    }

    .article-body h2 {
        font-size: 20px;
    }
}

/* 在现有样式基础上添加 */

.service-highlight {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #1890ff;
}

.service-highlight h3 {
    color: #1890ff;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-info {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

/* 添加关键词高亮效果 */
.article-body strong {
    color: #1890ff;
    font-weight: 500;
}

/* 添加服务项目样式 */
.article-body h2 {
    color: #1890ff;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
} 