@media (min-width:768px) {
            .popup-weixin-wrap {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 100000;
                display: none;
            }

            .popup-weixin {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 450px;
                background-color: #fff;
                border-radius: 5px;
                z-index: 1;
            }



            .weixin-icon {
                width: 25px;
                height: 25px;
                margin-right: 10px;
            }

            .th-icon {
                width: 180px;
                height: 180px;
                border: 1px solid #EEE;
                padding: 2px;
                border-radius: 6px;
            }

            .popup-header {
                padding: 8px 0;
                display: flex;
                justify-content: center;
                align-items: center;
                border-bottom: 1px solid #EEE;
                position: relative;
            }

            .close-icon {
                position: absolute;
                top: 50%;
                right: 15px;
                transform: translateY(-50%);
                width: 15px;
                height: 15px;
                cursor: pointer;
            }

            .popup-content {
                padding: 60px 0;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
            }

            .popup-content-right {
                margin-top: 10px;
                font-size: 14px;
                text-align: center;
            }
        }

         @media (max-width:767px) {
            .popup-weixin-wrap {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 100000;
                display: none;
            }

            .popup-weixin {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 85vw;
                background-color: #fff;
                border-radius: 5px;
                z-index: 1;
            }



            .weixin-icon {
                width: 25px;
                height: 25px;
                margin-right: 10px;
            }

            .th-icon {
                width: 180px;
                height: 180px;
                border: 1px solid #EEE;
                padding: 2px;
                border-radius: 6px;
            }

            .popup-header {
                padding: 8px 0;
                display: flex;
                justify-content: center;
                align-items: center;
                border-bottom: 1px solid #EEE;
                position: relative;
            }

            .close-icon {
                position: absolute;
                top: 50%;
                right: 15px;
                transform: translateY(-50%);
                width: 15px;
                height: 15px;
                cursor: pointer;
            }

            .popup-content {
                padding: 60px 0;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
            }

            .popup-content-right {
                margin-top: 10px;
                font-size: 14px;
                text-align: center;
            }
        }