@media (min-width: 1920px) {
    .container {
        max-width: 1920px !important;
    }
}

 .logo {
	padding-left: 100px !important;
}
 /* 核心卡片容器 */
 .payment-card {
    border-radius: 20px;
    text-align: center;
    /* max-width: 320px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
 }

 /* 微信图标样式 */
 .wechat-icon {
     font-size: 28px;
     color: #07C160; /* 微信绿 */
     margin-bottom: 8px;
 }

 /* 主标题 */
 .payment-title {
     font-size: 18px;
     font-weight: 600;
     color: #333333;
     margin-bottom: 4px;
 }

 /* 副标题 */
 .payment-subtitle {
     font-size: 14px;
     color: #999999;
     margin-bottom: 20px;
 }

 /* 二维码图片容器 */
 .qr-code-wrapper {
     margin-bottom: 20px;
 }

 /* 确保二维码尺寸且保持比例 */
 .qr-code-img {
     width: 260px;
     height: 260px;
     /* 防止图片拉伸 */
     object-fit: contain; 
     border-radius: 8px;
 }

 /* 底部提示文字 */
 .payment-tip {
     font-size: 13px;
     color: #666666;
     line-height: 1.5;
 }