* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SimSun', 'STSong', serif;
    background-color: #f9f6f0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    border-radius: 8px;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #a78e44;
}

.title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    color: #8b0000;
    letter-spacing: 5px;
    font-weight: bold;
}

h2 {
    font-size: 24px;
    color: #8b0000;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

h2:before, h2:after {
    content: "❖";
    color: #a78e44;
    position: absolute;
    top: 0;
}

h2:before {
    left: 0;
}

h2:after {
    right: 0;
}

.program-list {
    padding: 20px 0;
}

.program-item {
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #a78e44;
    background-color: #f9f6f0;
    transition: all 0.3s ease;
}

.program-item.active {
    border-left: 4px solid #8b0000;
    background-color: #f2e8d5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.program-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #a78e44;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.program-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.program-time {
    color: #666;
    font-size: 16px;
}

.active .program-name {
    color: #8b0000;
}

.active .program-time {
    color: #8b0000;
}

/* SVG Styles */
.beijing-icon {
    fill: #8b0000;
}

.program-rect {
    fill: none;
    stroke: #a78e44;
    stroke-width: 6;
}

.program-line {
    stroke: #a78e44;
    stroke-width: 4;
}

