* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
            color: #333;
        }
        
        .container {
            max-width: 600px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .header {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            text-align: center;
            flex-direction: column;
        }
        
        .logo {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #397de4 0%, #5d8ef6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(93, 142, 246, 0.3);
        }
        
        .logo img {
            width: 60px;
            height: 60px;
            /* filter: brightness(0) invert(1); 使图标变为白色 */
        }
        
        
        .header h1 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .notification {
            background: #fff9e6;
            border-left: 4px solid #ffcc00;
            padding: 15px 20px;
            margin-bottom: 40px;
            border-radius: 8px;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }
        
        .notification img {
            width: 20px;
            height: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .notification p {
            color: #8a6d3b;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .warning-box {
            background: #ffeaea;
            border-left: 4px solid #e84118;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 40px;
            width: 100%;
            max-width: 500px;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .warning-box img {
            width: 24px;
            height: 24px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .warning-box p {
            color: #c23616;
            font-weight: 600;
            margin: 0;
            line-height: 1.5;
        }
        
        .button-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            max-width: 400px;
            margin-bottom: 40px;
        }
        
        .btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            text-align: center;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #00cf03 0%, #00a803 100%);
            color: white;
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, #0084dc 0%, #0069b3 100%);
            color: white;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
        }
        
        .footer {
            margin-top: 30px;
            text-align: center;
            color: #7f8c8d;
            font-size: 14px;
            padding: 20px;
            border-top: 1px solid #ecf0f1;
            width: 100%;
            max-width: 600px;
        }

        .notification {
            background: #fff9e6;
            border-left: 4px solid #ffcc00;
            padding: 15px 20px;
            margin-bottom: 40px;
            border-radius: 8px;
            width: 100%;
            max-width: 600px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }
        
        .notification svg {
            width: 20px;
            height: 20px;
            fill: #ff9900;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .notification p {
            color: #8a6d3b;
            font-size: 14px;
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 26px;
            }
            
            .button-container {
                max-width: 100%;
            }
        }