/*
Theme Name: Service Lifeline
Description: 数字服务生命周期地图主题
Version: 1.0
Author: 金木南
*/

/* 基础样式 */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.service-timeline {
    margin: 40px 0;
    border-left: 3px solid #007cba;
    padding-left: 20px;
}

.timeline-event {
    background: #f9f9f9;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    position: relative;
}

.timeline-event:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #007cba;
    border-radius: 50%;
    position: absolute;
    left: -26px;
    top: 20px;
}