        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "SimHei", "Courier New", monospace;
        }
        
        body {
            background-color: #f8f5f0;
            color: #2d3b36;
            background-image: 
                linear-gradient(rgba(45, 59, 54, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(45, 59, 54, 0.03) 1px, transparent 1px);
            background-size: 20px 20px;
            line-height: 1.8;
        }
        
        /* 页头 - 顶部栏 */
        header {
            background-color: #2d3b36;
            padding: 10px 0;
            border-bottom: 2px solid #8b9e8f;
            box-shadow: 0 2px 5px rgba(0,0,0,0.15);
        }
        
        .header-inner {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center; /* 确保垂直居中 */
        }
        
        /* 文字logo样式 - 劣雌维基 */
        .text-logo {
            color: #e8e4d9;
            font-size: 22px;
            font-weight: bold;
            font-family: "Microsoft YaHei Bold", "SimHei", sans-serif;
            padding-left: 25px;
            position: relative;
            text-decoration: none;
            letter-spacing: 1px;
            /* 渐变特效 */
            background: linear-gradient(135deg, #e8e4d9 0%, #b0b8b1 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .text-logo::before {
            content: "〄";
            position: absolute;
            left: 0;
            color: #8b9e8f;
            font-size: 18px;
        }
        
        .system-info {
            font-size: 12px;
            color: #b0b8b1;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .system-badge {
            background-color: #8b9e8f;
            color: #2d3b36;
            padding: 2px 8px;
            font-size: 11px;
            border-radius: 3px;
            font-family: "Courier New", monospace;
        }
        
        /* 垂直滚动公告栏 */
        .announcement-container {
            background-color: #fffbf0;
            border: 1px solid #8b4513;
            margin: 0 auto;
            max-width: 1000px;
            position: relative;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            height: 25px;
            overflow: hidden;
        }
        
        .announcement-list {
            position: absolute;
            width: 100%;
            animation: scrollAnnounce 8s linear infinite;
        }
        
        .announcement-item {
            padding: 6px 20px;
            font-size: 13px;
            color: #5c4033;
            border-bottom: 1px dashed #8b451333;
        }
        
        .announcement-item:last-child {
            border-bottom: none;
        }
        
        .announcement-item::before {
            content: "❂";
            margin-right: 8px;
            font-weight: bold;
        }
        
        @keyframes scrollAnnounce {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        
        .announcement-container:hover .announcement-list {
            animation-play-state: paused;
        }
        
        /* 主容器 */
        .container {
            max-width: 1000px;
            margin: 0 auto 30px;
            padding: 0 20px;
        }
        
        .page-title {
            text-align: center;
            margin: 30px 0 20px;
            position: relative;
            padding: 15px 0;
        }
        
        .page-title h1 {
            font-size: 26px;
            color: #2d3b36;
            font-weight: normal;
            display: inline-block;
            padding: 0 20px;
            background-color: #f8f5f0;
            position: relative;
            z-index: 2;
        }
        
        .page-title::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #8b9e8f;
            z-index: 1;
        }
        
        .title-tag {
            position: absolute;
            top: -10px;
            right: 20%;
            background-color: #8b4513;
            color: white;
            padding: 2px 10px;
            font-size: 12px;
            transform: rotate(3deg);
            box-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }
        
        /* 搜索框 */
        .search-container {
            max-width: 1000px;
            margin: 0 auto 30px;
            padding: 0 20px;
            display: flex;
            gap: 10px;
            align-items: center;
			justify-content: center;
        }
        
        .search-input {
            flex: 1;
            max-width: 400px;
            padding: 8px 12px;
            border: 1px solid #8b9e8f;
            background-color: #fff;
            font-size: 14px;
            color: #2d3b36;
            font-family: "Courier New", monospace;
        }
        
        .search-input::placeholder {
            color: #8b9e8f;
            font-style: italic;
        }
        
        .search-btn {
            padding: 8px 20px;
            background-color: #2d3b36;
            color: #f0ede6;
            border: 1px solid #8b9e8f;
            font-size: 14px;
            cursor: pointer;
            font-family: "Courier New", monospace;
            transition: all 0.2s ease;
        }
        
        .search-btn:hover {
            background-color: #8b4513;
            border-color: #8b4513;
        }
        
        /* 上传、下载按钮容器：居中，与上下模块留间距 */
        .download-btn-container {
			display: flex;
			flex-wrap: nowrap;
			justify-content: center;
			gap: 10px; 
            margin: 20px 0; 
        }
		.download-btn-container .view-btn {
		  flex: 0 1 auto;       /* 按钮弹性伸缩 */
		  white-space: nowrap;   /* 文字不换行 */
		}
        
        /* 团队分区 */
        .team-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
            position: relative;
        }
        
        .block-card {
            background-color: #fff;
            border: 1px solid #d1c9be;
            padding: 20px;
            position: relative;
            transition: all 0.3s ease;
        }
		
		.top-badge {
		  position: absolute;
		  top: 27px;
		  right: 15px;        /* 右上角定位 */
		  background: #ff9933;/* 橙色 */
		  color: #fff;        /* 白色文字 */
		  font-weight: bold;  /* 粗体*/
		  font-size: 14px;    /* 字号 */
		  padding: 2px 12px;   /* 内边距 */
		  border-radius: 6px 0 6px 6px;
		  z-index: 2;
		}
		
		/* 3. 伪元素添加小三角 */
		.top-badge::after {
		  content: "";
		  position: absolute;
		  top: 0;
		  right: 0;
		  border-width: 11px 11px 0 0; /* 三角尺寸和badge高度匹配 */
		  border-style: solid;
		  border-color: transparent #fff transparent transparent; /* 白色三角模拟翻角 */
		}
		
		.tag-new {
			position: absolute;
			top: 28px;
			right: 15px;
			background-color: #e63946;
			color: white;
			font-size: 12px;
			padding: 2px 8px;
			border-radius: 3px;
			font-weight: bold;
			box-shadow: 0 2px 3px rgba(0,0,0,0.2);
			z-index: 2;
			transform: rotate(2deg);
		}
		
		.tag-triangle {
			position: absolute;
			top: 8px;
			right: 25px;
			border-width: 5px 5px 0;
			border-style: solid;
			border-color: #e63946 transparent transparent;
			z-index: 1;
		}
        
        .block-card::before {
            content: "↘";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #8b9e8f;
        }
        
        .card-id {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 11px;
            color: #8b9e8f;
            font-family: "Courier New", monospace;
        }
        
        .block-card:hover {
            border-color: #2d3b36;
            transform: translateX(5px);
            box-shadow: 2px 2px 0 rgba(45, 59, 54, 0.1);
        }
        
        .block-title {
            font-size: 19px;
            color: #2d3b36;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px dashed #8b9e8f;
            font-weight: normal;
            display: flex;
            align-items: center;
        }
        
        .block-title::after {
            content: "♀";
            font-size: 12px;
            margin-left: 8px;
            color: #8b9e8f;
        }
        
        .block-title::before {
            content: "✁";
            margin-right: 8px;
            color: #8b4513;
        }
        
        .block-desc {
            font-size: 14px;
            color: #5a6b64;
            margin-bottom: 20px;
            line-height: 1.7;
            text-align: justify;
        }
        
        /* 按钮 */
        .view-btn {
            display: inline-block;
            background-color: #f0ede6;
            color: #2d3b36;
            padding: 8px 18px;
            border: 1px solid #8b9e8f;
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: "Courier New", monospace;
        }
        
        .view-btn:hover {
            background-color: #2d3b36;
            color: #f0ede6;
        }
        
        /* 弹窗 - 劣雌档案与功能提示 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(45, 59, 54, 0.7);
            z-index: 1000;
            overflow-y: auto;
            padding: 40px 20px;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background-color: #f8f5f0;
            border: 1px solid #2d3b36;
            max-width: 600px;
            margin: 0 auto;
            padding: 30px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .modal-content::before {
            content: "劣雌维基";
            position: absolute;
            top: -12px;
            left: 20px;
            background-color: #f8f5f0;
            padding: 0 10px;
            font-size: 12px;
            color: #8b9e8f;
        }
        
        .file-seal {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            opacity: 0.2;
            transform: rotate(15deg);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%238b4513' stroke-width='3'/%3E%3Ctext x='50' y='55' font-size='12' text-anchor='middle' fill='%238b4513'%3E鉴定为劣雌%3C/text%3E%3C/svg%3E");
            background-size: contain;
            pointer-events: none;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 20px;
            cursor: pointer;
            color: #8b9e8f;
            transition: color 0.2s;
            z-index: 10;
        }
        
        .close-btn:hover {
            color: #2d3b36;
        }
        
        /* 劣雌列表与照片 */
        .member-list {
            margin-top: 25px;
        }
        
        .member-item {
            padding: 15px 0;
            border-bottom: 1px solid #e0d9cf;
            position: relative;
            padding-left: 20px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }
        
        .member-item::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 20px;
            color: #8b9e8f;
        }
        
        .member-item:last-child {
            border-bottom: none;
        }
        
        .member-photo {
            width: 80px;
            height: 100px;
            border: 1px solid #8b4513;
            background-color: #f0ede6;
            object-fit: cover;
            box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
            flex-shrink: 0;
        }
        
        .member-info {
            flex: 1;
        }
        
        .member-name {
            font-size: 16px;
            color: #2d3b36;
            font-weight: bold;
            font-family: "SimHei", sans-serif;
            display: flex;
            align-items: center;
        }
        
        .member-name::after {
            content: "☠";
            margin-left: 8px;
            font-size: 14px;
        }
        
        .member-role {
            font-size: 13px;
            color: #FF0000;
            margin: 4px 0;
            font-style: normal;
            display: flex;
            align-items: center;
			font-weight: bold;
        }
        
        .member-role::before {
            content: "☞";
            margin-right: 5px;
            font-size: 11px;
        }
        
        .member-bio {
            font-size: 14px;
            color: #5a6b64;
            line-height: 1.7;
            text-align: justify;
        }
        
        /* 搜索功能提示弹窗 */
        .search-alert {
            max-width: 300px;
            text-align: center;
            padding: 30px 20px;
        }
        
        .search-alert p {
            font-size: 16px;
            color: #8b4513;
            margin-bottom: 20px;
        }
        
        /* 页脚 */
        footer {
            max-width: 1000px;
            margin: 40px auto 20px;
            padding: 15px 20px;
            text-align: center;
            color: #8b9e8f;
            font-size: 13px;
            border-top: 1px dashed #8b9e8f;
            position: relative;
        }
        
        .footer-stamp {
            position: absolute;
            right: 20px;
            bottom: 10px;
            font-size: 10px;
            color: #8b4513;
            transform: rotate(-5deg);
            opacity: 0.7;
        }
        
        /* 响应式适配 */
        @media (max-width: 768px) {
            .team-section {
                grid-template-columns: 1fr;
            }
            
            .page-title h1 {
                font-size: 22px;
            }
            
            .modal-content {
                padding: 20px;
            }
            
            .title-tag {
                right: 10%;
            }
            
            .search-container {
                flex-wrap: wrap;
            }
            
            .announcement-container {
                height: 50px;
            }
            
            .announcement-item {
                font-size: 12px;
                padding: 5px 15px;
            }
            
            .member-item {
                flex-direction: column;
                padding-left: 0;
            }
            
            .member-item::before {
                display: none;
            }
            
            .member-photo {
				display: block;
                margin: 0 auto 10px;
                width: 100%;
                max-width: 200px;
				height: auto;
				object-fit: cover;
            }
            
			.text-wrap {
			  /* 保留换行符，同时自动换行 */
			  white-space: pre-wrap;  
			
			  /* 强制长单词换行 */
			  overflow-wrap: break-word;  
			  word-wrap: break-word; /* 兼容旧浏览器 */
			
			}
			
            /* 文字logo响应式调整 */
            .text-logo {
                font-size: 18px;
                padding-left: 20px;
            }
            .text-logo::before {
                font-size: 16px;
            }
        }