      body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f9f9f9;
        }
        .payment-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        .payment-grid {
          white-space: nowrap; /* 禁止换行 */
          width: 98%; /* 容器宽度 */
          -webkit-overflow-scrolling: touch; /* 启用平滑滚动（iOS 设备） */
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1px;
            border: 2px solid #eee;
            border-radius: 8px;
            cursor: pointer;
            transition: border-color 0.3s ease, transform 0.3s ease;
			position: relative;
			background-color: #fff;
        }
        .payment-item:hover {
            transform: translateY(-5px);
        }
        .payment-item.selected {
            border-color: red;
        }
		.payment-item.disabled {
		    opacity: 0.5;
		    cursor: not-allowed;
		}
        .payment-icon {
            width: 100%;
        }
		
		.payment-icon.disabled {
		    filter: grayscale(100%);
		}
        .payment-name {
            font-size: 16px;
            color: #333;
            margin-bottom: 5px;
        }
        .payment-limit {
            font-size: 14px;
            color: #666;
            text-align: center;
        }
        @media (max-width: 768px) {
            .payment-grid {
                grid-template-columns: repeat(3, 1fr); /* 移动端每行仍然显示三个 */
            }
        }
        @media (max-width: 480px) {
            .payment-grid {
                grid-template-columns: repeat(3, 1fr); /* 小屏幕每行仍然显示三个 */
            }
            .payment-name {
                font-size: 14px;
            }
            .payment-limit {
                font-size: 12px;
            }
        }
		  .payment-name {
		            position: absolute;
		            top: -10px; /* 调整位置使其在上边框中间 */
		            left: 50%;
		            transform: translateX(-50%);
		            background-color: #fff; /* 背景色覆盖边框 */
		            padding: 0 5px;
		            font-size: 12px;
		            color: #545454;
		        }