        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #000;
            color: #e0e0e0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow-x: hidden;
            position: relative;
        }
        
        .stars-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .star {
            position: absolute;
            background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
            border-radius: 50%;
            animation: rise 8s linear infinite;
            opacity: 0;
        }
        
        @keyframes rise {
            0% {
                transform: translateY(100vh) scale(0.5);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) scale(1.2);
                opacity: 0;
            }
        }
        
        .container {
            width: 90%;
            max-width: 500px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 20px;
            padding: 30px 25px;
            margin: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(74, 144, 226, 0.3);
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 1;
        }
        
        .header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .avatar-container {
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        

        .circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #87ceeb;
            animation: breathe 3s infinite ease-in-out;
        }

        @keyframes breathe {
            0%, 100% {
                box-shadow: 0 0 20px rgba(135, 206, 235, 0.7);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 40px rgba(135, 206, 235, 0.9);
                transform: scale(1.05);
            }
        }
        .avatar-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(74, 144, 226, 0.4) 0%, rgba(74, 144, 226, 0) 70%);
            filter: blur(15px);
            z-index: 1;
        }
        
        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
			
        }
        
        .main-title {
            font-size: 26px;
            font-weight: 700;
            color: #4a90e2;
            margin-bottom: 8px;
            text-shadow: 0 2px 10px rgba(74, 144, 226, 0.4);
        }
        
        .sub-title {
            font-size: 14px;
            color: #b0b0b0;
            margin-bottom: 20px;
            font-weight: 300;
        }
        
        .stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 25px;
            background: rgba(40, 40, 60, 0.6);
            padding: 18px 15px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 20px;
            font-weight: 700;
            color: #4a90e2;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 12px;
            color: #888;
        }
        
        .search-section {
            margin-bottom: 25px;
        }
        
        .search-box {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        @media (min-width: 480px) {
            .search-box {
                flex-direction: row;
            }
        }
        
        .stock-input {
            flex: 1;
            padding: 14px 18px;
            border: 1px solid #34495e;
            border-radius: 10px;
            background: rgba(40, 40, 60, 0.5);
            color: #e0e0e0;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .stock-input:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
            background: rgba(50, 50, 70, 0.6);
        }
        
        .search-btn {
            padding: 14px 25px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            min-width: 130px;
        }
        
        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
            background: linear-gradient(135deg, #5a9ae2 0%, #458acd 100%);
        }
        
        .description {
            background: rgba(40, 40, 60, 0.6);
            padding: 18px;
            border-radius: 12px;
            margin-bottom: 20px;
            font-size: 14px;
            line-height: 1.6;
            color: #b0b0b0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-links {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .footer-link {
            color: #888;
            text-decoration: none;
            font-size: 12px;
            transition: color 0.3s ease;
            padding: 5px 8px;
        }
        
        .footer-link:hover {
            color: #4a90e2;
        }
		

/* 自定义样式 - 避免与Layui冲突 */
.my-custom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.my-custom-container h1 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.my-custom-btn {
    margin: 0 auto;
    display: block;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.my-custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* 自定义弹窗样式 */
.my-custom-modal {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.my-custom-loading {
    text-align: center;
    padding: 30px 20px;
}

.my-custom-success {
    text-align: center;
    padding: 30px 20px;
}

.my-custom-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.my-custom-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.my-custom-content {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.my-custom-close-btn {
    background: #1E9FFF;
    border: none;
    border-radius: 20px;
    padding: 8px 25px;
    color: white;
}


.layui-layer{
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 15% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
	border-radius: 50px !important
}

.layui-icon-ok-circle{
	font-size:36px !important
}
.layui-icon-loading{
	font-size:36px !important;
	color: #ffffff;
}
.my-custom-title{
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
.my-custom-content{
	color:white !important
}