.popup {  
    display: none; /* 默认隐藏 */  
    position: fixed; /* 固定定位 */  
    top: 50%; /* 顶部偏移 */  
    left: 50%; /* 左侧偏移 */  
    transform: translate(-50%, -50%); /* 居中 */  
    background-color: #2F4F4F; /* 背景色（备用） */  
    background-image: url('/feto/bj.png'); /* 背景图路径 */
    background-size: cover; /* 覆盖整个弹窗 */  
    background-position: center; /* 图片居中 */  
    background-repeat: no-repeat; /* 不重复 */  
    border: 1px dashed #FFD700; /* 初始边框样式 */   
	border-radius: 12px;
    padding: 20px; /* 内边距 */  
    width: 600px; /* 宽度 */  
    height: 380px; /* 高度 */  
    z-index: 9999; /* 确保在最顶层 */  
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 阴影 */  
    overflow: hidden; /* 如果内容超出指定大小，则显示滚动条 */  
    animation: changeBorderColor 2s infinite; /* 应用边框颜色动画 */
}  




/* 边框颜色动画 */  
@keyframes changeBorderColor {  
    0% { border-color: #FFD700; }  
    50% { border-color: #FF0000; }  
    100% { border-color: #00FF00; }  
}


    .tech-container {
        color: #e6f1ff;
        font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
        border-radius: 8px;
        max-width: 95%;
        margin: 0 auto;
        box-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
    }
    .tech-table {
        width: 100%;
     /*  border-collapse: separate;  */  
        border-spacing: 0 15px;
    }
    .tech-table td {
        padding: 12px;
        border-bottom: 1px solid rgba(100, 200, 255, 0.2);
    }
    .tech-header {
        font-size: 18px;
        color: #ebdeb8;
        font-weight: 500;
        text-align: right;
        padding-right: 20px;
        white-space: nowrap;
    }
    .tech-input {
        width: 100%;
        padding: 14px;
        background-color: #112240;
        border: 1px solid #233554;
        border-radius: 4px;
        color: #e6f1ff;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    .tech-input:focus {
        outline: none;
        border-color: #64ffda;
        box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
    }
    .tech-input::placeholder {
        color: #ebdeb8;
        opacity: 0.7;
    }
    .tech-select {
        width: 100%;
        padding: 12px;
        background-color: #000000;
        border: 1px solid #233554;
        border-radius: 4px;
        color: #ebdeb8;
        font-size: 20px;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364ffda'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 20px;
    }
    .tech-button {
        background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
        color: #64ffda;
        border: 1px solid #64ffda;
        padding: 12px 25px;
        font-size: 16px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-right: 10px;
        font-weight: 500;
    }
    .tech-button:hover {
        background: rgba(100, 255, 218, 0.1);
        box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    }
    .tech-checkbox {
        accent-color: #64ffda;
        margin-right: 10px;
    }
    .tech-link {
        color: #64ffda;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .tech-link:hover {
        text-decoration: underline;
    }
    .tech-captcha {
        border: 1px solid #233554;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .tech-captcha:hover {
        border-color: #64ffda;
    }
    .tech-captcha-text {
        color: #8892b0;
        font-size: 14px;
        margin-left: 10px;
    }
    .tech-agreement {
        color: #8892b0;
        font-size: 14px;
    }
	
	
	
	        .cyber-container {
            max-width: 100%;
            margin: 20px auto;
            position: relative;
            overflow: hidden;
        }
        
        .cyber-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ebdeb8, transparent);
            animation: scanline 3s linear infinite;
        }
        

        
        .cyber-header {
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 243, 255, 0.3), rgba(0, 0, 0, 0.5));
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #ebdeb8;
            position: relative;
        }
        
        .cyber-header h1 {
            margin: 0;
            font-size: 2.2em;
            color: #ebdeb8;
            text-shadow: 0 0 10px #ebdeb8, 0 0 20px #ebdeb8;
            letter-spacing: 3px;
            text-transform: uppercase;
        }
        
        .cyber-table {
            width: 100%;
            border-collapse: collapse;
            background-color: rgba(10, 10, 26, 0.7);
            border: 2px solid #ebdeb8;
            box-shadow: 0 0 10px #ebdeb8;
        }
        
		.cyber-table th {
			background-color: rgba(0, 243, 255, 0.1);
			color: #ebdeb8;
			padding: 12px 15px;
			text-align: center;  /* 修改为居中 */
			border-bottom: 1px solid rgba(0, 243, 255, 0.3);
			font-weight: 600;
			letter-spacing: 1px;
		}
        
        .cyber-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(0, 243, 255, 0.1);
            position: relative;
        }
        
        .cyber-table tr:hover {
            background-color: rgba(0, 243, 255, 0.05);
        }
        
        .cyber-table tr:hover td::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: #bd00ff;
            box-shadow: 0 0 10px #bd00ff;
        }
        
        .cyber-footer {
            padding: 15px;
            text-align: center;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(189, 0, 255, 0.3), rgba(0, 0, 0, 0.5));
            border-top: 1px solid #bd00ff;
        }
        
        .cyber-footer p {
            margin: 0;
            font-size: 1.2em;
            color: white;
            text-shadow: 0 0 5px #bd00ff;
            letter-spacing: 2px;
        }
        
        @media (max-width: 768px) {
            .cyber-table th, 
            .cyber-table td {
                padding: 8px 10px;
                font-size: 0.9em;
            }
            
            .cyber-header h1 {
                font-size: 1.5em;
            }
        }
		
		
		
		
		
.vintage-line {
    /* 基础样式 */
    height: 2px;  /* 分隔线高度 */
    background: linear-gradient(to right, transparent, #8B4513, transparent);  /* 渐变背景色 */
    margin: 8px 0;  /* 上下边距 */
    position: relative;  /* 相对定位 */

    /* 字体控制 */
    font-family: 'Times New Roman', Georgia, serif;  /* 使用复古衬线字体 */
    font-size: 18px;  /* 字体大小 */
    color: #8B4513;  /* 字体颜色（与分隔线同色） */
    text-align: center;  /* 文字居中 */

    /* 布局控制 */
    display: flex;  /* 使用弹性布局 */
    align-items: center;  /* 垂直居中 */
    justify-content: center;  /* 水平居中 */
}
        /* 带装饰的单线 */
        .vintage-line.decorated::before,
        .vintage-line.decorated::after {
            content: "❦";
            position: absolute;
            top: -10px;
            color: #8B4513;
            font-size: 16px;
        }

        .vintage-line.decorated::before {
            left: 20%;
        }

        .vintage-line.decorated::after {
            right: 20%;
        }

        /* 虚线复古分隔 */
        .vintage-dash-line {
            border-top: 1px dashed #8B4513;
            margin: 30px 0;
            position: relative;
        }

        /* 点线复古分隔 */
        .vintage-dot-line {
            border-top: 1px dotted #8B4513;
            margin: 30px 0;
        }

        /* 波浪复古分隔 */
        .vintage-wave-line {
            height: 10px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0,5 C25,0 25,10 50,5 S75,0 100,5" fill="none" stroke="%238B4513" stroke-width="1"/></svg>');
            background-repeat: repeat-x;
            margin: 30px 0;
        }

        /* 复古花纹分隔 */
        .vintage-ornament-line {
            height: 20px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"><path d="M10,10 Q15,5 20,10 T30,10 T40,10 T50,10 T60,10 T70,10 T80,10" fill="none" stroke="%238B4513" stroke-width="1"/></svg>');
            background-repeat: repeat-x;
            margin: 30px 0;
        }

        /* 复古文字分隔 */
        .vintage-text-line {
            text-align: center;
            margin: 30px 0;
            color: #8B4513;
            font-style: italic;
            position: relative;
        }

        .vintage-text-line::before,
        .vintage-text-line::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 30%;
            height: 1px;
            background: #8B4513;
        }

        .vintage-text-line::before {
            left: 0;
        }

        }
		
		
	        /* 	<h2>经典单线分隔</h2>
            /*     <p>这是第一段内容，展示经典复古单线分隔效果。</p>
            /*     <div class="vintage-line"></div>
            /*     <p>这是第二段内容，使用简单的渐变单线作为分隔。</p>
			
            /*     <h2>装饰单线分隔</h2>
            /*     <p>带有装饰花纹的单线分隔样式。</p>
            /*     <div class="vintage-line decorated"></div>
            /*     <p>在传统印刷品中常见这种装饰性分隔线。</p>
			
            /*     <h2>虚线分隔</h2>
            /*     <p>复古风格的虚线分隔效果。</p>
            /*     <div class="vintage-dash-line"></div>
            /*     <p>常用于手稿或书信中的段落分隔。</p>

            /*     <h2>点线分隔</h2>
            /*     <p>点线样式的复古分隔线。</p>
            /*     <div class="vintage-dot-line"></div>
            /*     <p>这种样式在古典印刷品中很常见。</p>

            /*     <h2>波浪分隔</h2>
            /*     <p>波浪形的复古分隔线。</p>
            /*     <div class="vintage-wave-line"></div>
            /*     <p>给文档增添优雅的古典气息。</p>

            /*     <h2>花纹分隔</h2>
            /*     <p>复杂花纹的复古分隔线。</p>
            /*     <div class="vintage-ornament-line"></div>
            /*     <p>模仿古典书籍中的装饰分隔线。</p>

            /*     <h2>文字分隔</h2>
            /*     <p>带有文字说明的分隔线。</p>
            /*     <div class="vintage-text-line">章节分隔</div>
            /*     <p>常见于古典小说或诗歌集中。</p>

            /*     <h2>章节分隔</h2>
            /*     <p>用于章节之间的明显分隔。</p>
            /*     <div class="vintage-section-break"></div>
            /*     <p>这种分隔线在古典书籍中表示大章节的切换。</p>
			
			
	

/* 顶部导航栏 */
.top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 25px;
}

.top-bar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s;
}

.top-bar a:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.top-bar a i { font-size: 1.1em; }

/* 信息面板 */
.info-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 25px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.info-badge i { font-size: 1.1em; }

/* 会员等级面板 */
.level-section {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 0px;
    margin-bottom: 25px;
    position: relative;
}

.level-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.level-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    border: 1px solid #FFD700;
    border-radius: 10px;
    color: #FFD700;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.level-btn:hover {
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.level-panel {
    display: none;
    padding: 15px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s;
}

.level-panel.show { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.level-panel-header {
    text-align: center;
    color: #FFD700;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 12px;
}

.level-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
}

.level-card:hover {
    border-color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.15);
    transform: translateY(-3px);
}

.level-card .level-icon {
    font-size: 3.2em;
    margin-bottom: 8px;
    display: block;
	
}

.level-card .level-name {
    color: #FFD700;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 8px;
}

.level-card .level-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    line-height: 1.5;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #FFD700;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-btn:hover { transform: rotate(90deg); }

/* 温馨提示 */
.tips-box {
    text-align: center;
    padding: 12px 20px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    font-size: 13px;
    color: #FFD700;
    margin-top: 15px;
    line-height: 1.6;
}

/* 功能按钮区 */
.feature-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* 图标文字间距缩小 */
    padding: 8px 12px; /* 上下左右内边距整体缩小，按钮宽度变窄、高度降低 */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 10px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 13px; /* 文字缩小一号 */
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.feature-btn:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.15);
}

.feature-btn i { 
    font-size: 0.9em; /* 图标尺寸缩小 */
}

/* 表格区域 */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 25px;
}

.data-table th {
    background: linear-gradient(to right, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    color: #FFD700;
    font-weight: 600;
    padding: 3px 15px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    font-size: 14px;
}

.data-table td {
    padding: 1px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.data-table tr:hover td {
    background: rgba(255, 215, 0, 0.05);
}

/* 角色操作按钮 */
.char-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 3px;
}

.char-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 8px;
    color: #FFD700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.char-action-btn:hover {
    background: rgba(255, 215, 0, 0.18);
    border-color: #FFD700;
    transform: translateY(-1px);
}

/* 标题栏 */
.section-title {
    text-align: center;
    color: #FFD700;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

/* 快捷操作区 */
.quick-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 25px;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 165, 0, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #FFD700;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.quick-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.quick-btn i { font-size: 1.1em; }

/* 响应式 */
@media (max-width: 768px) {
    .top-bar { flex-direction: column; }
    .info-panel { flex-direction: column; }
    .levels-grid { grid-template-columns: 1fr; }
    .feature-buttons { flex-direction: column; }
}		