/* 弹窗遮罩 */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* 完全透明 */
    z-index: 9999;
    cursor: pointer;
}

/* 弹窗主体 */
.dialog-main {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    width: 800px;
    height: 600px;
    background-image: url('https://energy01.oss-cn-shanghai.aliyuncs.com/upload/DI/%E6%9C%AA%E6%A0%87%E9%A2%98-1.png'); /* 替换为你实际的图片地址 */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

/* 关闭按钮 */
.dialog-close {
    position: absolute;
    top: 23px;
    right: 20px;
    /*font-size: 24px;*/
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    padding: 7px;
    z-index: 10001;
}

/* 内容区域 */
.dialog-content {
    /*flex: 1;*/
    width: 737px;
    height: 490px;
    /*padding: 40px;*/
    /*background: blue;*/
    /*border-radius: 15px;*/
    overflow-y: auto;
    /*margin: 20px;*/
    margin-top: 56px;
    margin-left: 29px;
    /*box-shadow: inset 0 0 10px rgba(0,0,0,0.05);*/
}
#app {
    background: #f5f5f5;

}