@font-face {
	        font-family:"ziti";
	        src:url("../font/ziti.woff2");
        }
        *{
	        font-family:"ziti";
        }
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: url("../img/background.png") no-repeat;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            text-align: center;
        }

        .container {
            background-color: rgba(255, 255, 255, 255); /* 透明白色背景 */
            padding: 25px 25px 0px 25px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            width: 100%;
            max-width: 390px;
			position:relative;
			margin: 0 auto;
        }
        .icon {
		    position:relative;
			top:4px;
		}
		.icon-notice {
		    position:absolute;
			top:-5px;
			right:10px;
		}
        h1 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 600;
            letter-spacing: 1px;
            color:#4CAF50;
        }

        p {
            font-size: 14px;
            margin-bottom: 15px;
            color: #333;
        }
        .notice {
            background-color: rgba(230, 242, 255, 0.8);
            border-left: 4px solid #4CAF50;
            padding: 15px 15px 15px 15px;
            margin: 1.5rem 0rem 1rem 0rem;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            font-weight:700;
			color:#FF4845;
			text-align:left;
        }
        .notice:hover {
            background-color: rgba(230, 242, 255, 1);
        }
        .btn, button {
            background: #4CAF50;
            border: none;
            padding: 12px 16px;
            margin: 10px 10px 0px 0px;
            color: white;
            font-size: 14px;
            cursor: pointer;
            border-radius: 30px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
       
        .btn:hover, button:hover {
            background-color: #F99F9A;
			transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .error {
            color: #ff4747;
            font-size: 16px;
            font-weight: bold;
            margin-top: 25px;
        }

        .copy-confirmation {
            color: #FF6F61;
            font-size: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
            margin-top: 10px;
            padding-bottom:10px;
        }

        #qrcode {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 10px;
            border-radius:15px;
	
        }
        #qrcode-image {
            width: 200px;
            height: 200px;
            transition: all 0.3s ease;
            background:#BCC6D8;
	        border:1px solid #BCC6D8;
	        border-radius:15px;
	        padding: 5px;
        }
         #qrcode-image img {
	        border-radius:15px;
        }
        /* 动画效果 */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* 手机与PC适配 */
        @media (max-width: 600px) {
            .container {
                width: 90%;
                padding: 20px;
            }

            h1 {
                font-size: 24px;
            }

            .btn, button {
                width: 100%;
                padding: 15px;
            }
        }
		/* Dialog Styles */
        .dialog-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 50;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
        }

        .dialog-backdrop.active {
            opacity: 1;
            visibility: visible;
        }

        .dialog {
            background-color: #ffffff;
            border-radius: 0.75rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            width: 90%;
            max-width: 400px;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.95);
            transition: transform 0.2s ease;
        }

        .dialog-backdrop.active .dialog {
            transform: scale(1);
        }

        .dialog-header {
            padding: 1.25rem 1.25rem 0rem;

        }

        .dialog-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
			color: #76A5F1;
        }

        .dialog-description {
            font-size: 0.875rem;
            color: #64748b;
        }

        .dialog-body {
            padding: 1.25rem;
        }

        .dialog-footer {
            position:absolute;
			top:5px;
			right:10px;
        }
		/* Button Styles */
        .close {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            font-weight: 500;
            
            font-size: 0.875rem;

            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }
		/* Icons */
        .icon2 {
            display: inline-block;
            width: 1em;
            height: 1em;
            stroke-width: 0;
            stroke: currentColor;
            fill: currentColor;
            vertical-align: middle;
        }
		.icon3 {
            display: inline-block;
            width: 0.4em;
            height: 0.4em;
            stroke-width: 0;
            stroke: currentColor;
            fill: currentColor;
            vertical-align: middle;
			position:relative;
			top:12px;
			margin-right:5px;
        }
		.jump {
            animation: bounce 2s infinite;
}
/* 动画效果 */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}
/* Alert Box */
        .alert-box {
            padding: 0.05rem 0.65rem 0.05rem 0.65rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: flex-start;
            gap: 0.05rem;
			margin-bottom:15px;
            background-color: rgba(59, 130, 246, 0.1);
			transition: all 0.2s ease;
			color: #1d4ed8;
        }
		.red-light {
		    background-color: rgba(239, 68, 68, 0.1);
			color: #333333;
        }
		.green-light {
		    background-color: rgba(34, 197, 94, 0.1);
			color: #333333;
        }
		.amber-light {
		    background-color: rgba(245, 158, 11, 0.1);
			color: #333333;
        }
        .alert-box:hover {
            background-color: rgba(59, 130, 246, 0.2);
            transform: translateX(0.25rem);
        }
        .alert-box-icon {
            color: #3b82f6;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

        .alert-box-content {
            font-size: 0.875rem;
        }
		.font-medium {
            font-weight: 600;
        }
		.font-small {
            font-weight: 600;
			font-size:12px;
        }