/* 运营位头部样式 */
.operation-header {
    margin: 32px 0;
    background-color: #ffffff;
    padding: 24px 0;
}

/* 运营位标题 */
.operation-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin: 0 0 12px 0;
    text-align: center;
}

/* 运营位描述 */
.operation-description {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .operation-header {
        margin: 20px 0;
        padding: 16px 0;
    }
    
    .operation-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .operation-description {
        font-size: 14px;
    }
}