/* 豆豆数据弹窗样式 */

/* 模态框容器 */
.idou-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 0;
}

/* 模态框内容容器 */
.idou-modal-content {
    background: #13253C;
    border-radius: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

/* 模态框内容区域 */
.idou-modal-body {
    color: #d2d2d2;
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

/* 模态框标题 */
.idou-modal-body .modal-title {
    color: #FF03CB;
    text-decoration: none;
    font-size: 20px;
}

/* 更新信息 */
.idou-modal-body .modal-update-info {
    color: yellow;
    text-decoration: none;
    line-height: 12px;
}

/* 内容文本 */
.idou-modal-body .modal-content {
    color: #fff;
    text-decoration: none;
    line-height: 12px;
}
