.content  :nth-child(1) {
    position: relative;
    font-size: 0;
}
.content  :nth-child(1) p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 52px;
    color: #FFFFFF;
}
.content  :nth-child(1) img{
    height: auto;
    width: 100%;
}
.content  :nth-child(2) {
    font-size: 0;
    /* padding-top: 10px; */
}
.content  :nth-child(2) img{
    height: auto;
    width: 100%;
}
.content  :nth-child(3) {
    font-size: 0;
}
.content  :nth-child(3) img{
    height: auto;
    width: 100%;
}
.content  :nth-child(4) {
    margin-top: 60px;
    font-size: 0;
}
.content  :nth-child(4) img{
    height: auto;
    width: 100%;
}
.content p {
    text-align: center;
}


.content {
    .absBtn{
        width: 150px;
        height: 60px;
        /* position: absolute;
        right: 280px;
        bottom: 180px; */
        background: #376F28;
        color: #fff;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: 20%;
        cursor: pointer;
        border-radius: 2px;
    }
}


.wx-model{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    .wx-model-wrap{
        width: 500px;
        /* height: 400px; */
        background: #F7F9FC;
        border-radius: 8px;
        padding:  0 24px 24px 24px;
        .wx-payment{
            display: flex;
            align-items: center;
            .l-code{
                flex: 1;
               
                .payment-code{
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    position: relative;
                    .url-code{
                        width:200px;
                        height: 200px
                    }
                    .url-code-mask{
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%,-50%);
                        background: rgba(0, 0, 0, 0.75);
                        width: 200px;
                        height: 200px;
                        color: #fff;
                        display: none;
                        align-items: center;
                        justify-content: center;
                        padding: 10px;
                        font-size: 16px;
                        /* box-sizing: border-box; */
    
                    }
                    .url-code-loading{
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50% , -50%);
                        width: 200px;
                        height: 200px;
                        background: rgba(255, 255, 255, 0.95);
                        display: none;
                        align-items: center;
                        justify-content: center;
                       
                        .spin{
                            border: 4px solid #f3f3f3; /* 定义外边框的样式 */
                            border-top: 4px solid #376F28; /* 定义顶部边框的样式，用于显示旋转效果 */
                            border-radius: 50%; /* 将元素设置为圆形 */
                            width: 30px; /* 定义元素的宽度 */
                            height: 30px; /* 定义元素的高度 */
                            animation: spin 1s linear infinite; /* 应用名为 spin 的动画，持续时间 1 秒，线性播放，无限循环 */
                        }
                    }
                }
               
                
            }
            .r-img{
                flex-shrink: 0;
                width: 170px;
                >img{
                    width: 170px;
                    height: auto;
                }
            }
        }
        .close{
            width: 100%;
            display: flex;
            justify-content: flex-end;
            padding: 10px 0;
    
            >span{
                cursor: pointer;
                font-size: 18px;
                color: #999;
            }
        }
        .payment-name{
            margin-bottom: 20px;
           display: flex;
           justify-content: space-between;
            .name {
                font-size: 18px;
                color: #666;
            }
            .money{
                display: flex;
                align-items: center;
    
                >span{
                    font-size: 12px;
                    color: #666;
                }
                >strong{
                    color: #e31613;
                    font-size: 18px;
                    margin: 0 4px;
                }
            }
        }
        .payment-info{
            color: #333;
            font-size: 14px;
            margin-top: 20px;
        }
    }
   
}



@keyframes spin {
    0% { transform: rotate(0deg); } /* 初始状态旋转角度为 0 度 */
    100% { transform: rotate(360deg); } /* 结束状态旋转角度为 360 度 */
  }