.qrcode-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    #downloadQrcode {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 150px;
        min-width: 150px;
    }

    #downloadQrcode canvas,
    #downloadQrcode img {
        max-width: 100%;
        height: auto;
    }

    .qrcode-tip {
        margin-top: 10px;
        font-size: 14px;
        color: #666;
        text-align: center;
    }

    /* 游戏特色 这个类下面的img标签居中显示或者这个类下面的p标签里面的img标签居中显示 行高为1.5*/
    .gdFeaturesBox {
        display: flex;
        flex-direction: column;
        gap: 10px;

        p {
            width: 100%;
            line-height: 1.7;
            align-items: center;
            display: flex;
        }

        img,
        p img {
            display: block;
            margin: 0 auto;
            width: 476px;
        }

        h2,
        h3 {
            padding: 8px 12px;
            color: #07c5b9;
            font-weight: 700;
            font-size: 18px;
            line-height: 1.5;
            background-color: #f8f8f8;
            border-left: 3px solid #07c5b9;
            border-radius: 4px;
        }
    }

    /* 游戏介绍段落样式 */
    .dgl-game-detail {
        line-height: 1.8;
    }

    .dgl-game-detail p {
        margin-bottom: 20px;
        margin-top: 0;
        text-indent: 2em;
    }

    .dgl-game-detail p:first-child {
        margin-top: 0;
    }

    .dgl-game-detail p:last-child {
        margin-bottom: 0;
    }