 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
       
        .main-container {
            width: 100%;
            max-width: 100%;
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .main-container::before {
            content: '';
            position: fixed;
            top: 50%;
            left: 50%;
            width: 100vh;
            height: 100vw;
            background-image: url('../ewm2.jpg');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: center;
            transform: translate(-50%, -50%) rotate(-90deg);
            z-index: -1;
        }
        #qrcode-img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 8px;
            /* box-shadow: 0 2px 12px rgba(0,0,0,0.1); */
        }
        /* 手机端 */
        @media (max-width: 480px) {
            .main-container {
                max-width: 100%;
                padding: 15px;
            }
        }
        /* 平板端 */
        @media (min-width: 481px) and (max-width: 768px) {
            .main-container {
                max-width: 400px;
            }
        }
        /* 电脑端 */
        @media (min-width: 769px) {
            .main-container {
                max-width: 450px;
            }
        } 