:root {
    --bg-color: #000000;
    --text-color: #fff;
    --border-color: #000000;
    --highlight-color: #06c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 20px;
}

/* 顶部导航栏样式 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 3px solid #fff;
    margin-bottom: 20px;
}

.logo {
    height: 100px;
    width: auto;
}

.center-logo {
    margin: 0 20px;
}

.line-logo {
    height: 60px;
    width: auto;
}

.time-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
}

.time-info span {
    white-space: nowrap;
}

.time-info div {
    margin: 2px 0;
}

/* 主体内容样式 */
.main-content {
    display: flex;
    flex: 1;
    gap: 20px;
}

.direction-section {
    flex: 1;
    padding: 15px;
    border: 3px solid #fff;
    border-radius: 5px;
    margin-bottom: 15px;
}

.main-direction, .regular-direction, .notice-section {
    flex: 1;
    min-width: 0;
}

.main-direction {
    min-height: 300px;
}

.next-arrival {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
}

.regular-direction {
    min-height: 200px;
}

.direction-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #fff;
}
.no-bus
{
    font-size: 2.5rem;
    margin-top: 50%;

}
.bus-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bus-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.bus-item.main-bus {
    font-size: 1.5rem;
    padding: 15px;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.2);
}

.bus-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.destination {
    font-size: x-large;
    font-weight: bold;
    text-align: left;
}

.main-destination {
    font-size: xx-large;
}

.arrival-text {
    font-size: x-large;
    text-align: left;
    color: #fff;

}

.time {
    font-size: 1.8rem;
    text-align: right;
    margin-top: 10px;
}

.highlight-time {
    color: #fff;
    font-weight: bold;
    font-size: xxx-large;
}

.bus-item.main-bus {
    font-size: 1.5rem;
    padding: 15px;
    margin: 10px 0;
    border: 3px solid #fff;
    background-color: #2955E1;
}

.notice-section {
    flex: 1;
    padding: 15px;
    border: 3px solid #fff;
    border-radius: 5px;
    margin-bottom: 15px;
}

.notice-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #fff;
}

.notice-content {
    line-height: 1.6;
}

.notice-content p {
    margin-bottom: 10px;
    padding-left: 10px;
    position: relative;
}

.notice-content p::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .header {
        flex-direction: column;
        gap: 10px;
    }
    
    .time-info {
        flex-direction: row;
        gap: 15px;
    }
}