* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #040a27;
    color: #fff;
    font-family: "Microsoft Yahei", sans-serif;
    overflow: hidden;
}
.container {
    width: 100vw;
    height: 100vh;
    padding: 10px;
}
.header {
    height: 80px;
    border: 1px solid #0f489c;
    background: rgba(0,30,80,0.3);
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    margin-bottom: 10px;
}
.header h1 {
    font-size: 26px;
    color: #4cc7ff;
    letter-spacing: 2px;
}
.copyright {
    color: #99ccff;
    font-size: 14px;
}
.timer {
    font-size: 16px;
    color: #fff;
}
.main-box {
    display: flex;
    width: 100%;
    height: calc(100vh - 90px);
    gap: 10px;
}
.left-panel {
    width: 24%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.center-map {
    width: 52%;
    height: 100%;
    border: 1px solid #0f489c;
    border-radius: 6px;
    background: rgba(0,20,60,0.2);
}
#gdMap {
    width: 100%;
    height: 100%;
}
.right-panel {
    width: 24%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card {
    flex: 1;
    border: 1px solid #0f489c;
    background: rgba(0,30,80,0.25);
    border-radius: 6px;
    padding: 15px;
    overflow: hidden;
}
.card h3 {
    font-size: 18px;
    color: #4cc7ff;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #0c3472;
}
.data-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #08204b;
}
.label {
    font-size: 15px;
    color: #b0d8ff;
}
.num {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}
.num.green {color: #3aff7e;}
.num.gold {color: #ffd740;}
.num.blue {color: #4cc7ff;}
.unit {
    font-size: 14px;
    margin-left: 6px;
    color: #999;
}
.scroll-box {
    height: calc(100% - 40px);
    overflow: hidden;
}
.scroll-item {
    padding: 6px 0;
    font-size: 14px;
    color: #c8e3ff;
    line-height: 1.6;
}
#cityRank {
    height: calc(100% - 40px);
}
#incomeChart,#shopTypeChart,#cityPieChart {
    width: 100%;
    height: calc(100% - 40px);
}