        /* 图表容器样式 */
        .chart-container {
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 20, 40, 0.5);
            /*最后一个参数透明度 */
            border: 2px solid #ffffff;

            box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
            /* transition: top 0.5s ease-in-out; /* 添加过渡动画 */
            z-index: 1002;
        }
        
