/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --chinese-font:  "Microsoft YaHei",  sans-serif;
  --english-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
                 "Helvetica Neue", Arial, sans-serif;
}

body {
	background-image: url("detail-bg.png");
    background-size: cover;      /* 覆盖整个区域 */
    background-position: center;
	display: flex;
    color: #333333;
    line-height: 1.6;
    font-size: 16px;
	margin-bottom: 1.5em;
	font-family: var(--english-font), var(--chinese-font);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* 头部样式 */
.header {
    background-image: url("detail-top.png");
	background-size: contain;       /* 覆盖整个容器，保持宽高比 */
	background-position: center;
	background-attachment: fixed;
    color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.search-bar {
    display: flex;
    margin-top: 15px;
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 0.9rem;
}

.search-bar button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/*
		.sidebar {
            width: 280px;
            background-image: url("detail-side.png");
			background-size: contain;       /* 覆盖整个容器，保持宽高比 *
			background-position: center;
			background-attachment: fixed;
            color: white;
            overflow-y: auto;
            padding: 20px 0;
            transition: width 0.3s;
        }
        
        .sidebar-header {
            padding: 0 20px 20px;
            border-bottom: 1px solid transparent;
        }
        
        .sidebar-title {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .menu {
            list-style: none;
        }
        
        .menu-item {
            position: relative;
        }
        
        .menu-title {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .menu-title:hover {
            background-color: #3b82f6;
        }
        
        
        .menu-arrow {
            margin-left: auto;
            transition: transform 0.3s;
        }
        
        .menu-arrow.rotated {
            transform: rotate(90deg);
        }
        
        .submenu {
            list-style: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .submenu.open {
            max-height: 500px; /* 足够大的值容纳内容 *
        }
        
        .submenu-item {
            padding: 10px 20px 10px 50px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .submenu-item:hover {
            background-color: #3b82f6;
        }
	
*/

/* 重置默认样式 */
.horizontal-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex; /* 关键：启用 Flex 横向布局 */
	background-image: url("detail-top.png");
	background-size: contain;       /* 覆盖整个容器，保持宽高比 */
	background-position: center;
	background-attachment: fixed;
	border-radius: 4px; /* 圆角 */
}

/* 菜单项样式 */
.horizontal-menu li {
  position: relative;
}


.horizontal-menu a {
  display: block;
  color:  #fff;
  text-decoration: none;
  padding: 10px 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: background 0.3s;
}

/* 悬停 & 选中效果 */
.horizontal-menu a:hover {
  background: #3b82f6;
}

.horizontal-menu li.active a {
  background: #3b82f6;
  font-weight: bold;
}

/* 分隔线（可选） */
.horizontal-menu li:not(:last-child) {
  transition: border-right 0.3s;
}
.horizontal-menu li:hover:not(:last-child) {
  border-right-color: transparent; /* 悬停时隐藏 */
}

/* 下拉菜单容器 */
.dropdown {
  position: relative; /* 为绝对定位子菜单提供基准 */
}

/* 下拉菜单内容（默认隐藏） */
.dropdown-menu {
  display: block !important; 
  visibility: hidden;
  position: absolute;
  top: 100%; /* 从父菜单底部开始 */
  left: 0;
  min-width: 160px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.2);
  z-index: 100;
  transition: visibility 0.3s, opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

/* 下拉菜单项样式 */

.dropdown-menu a {
  padding: 10px 10px;
  display: block;
}

/* 悬停显示下拉菜单 */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* 下拉箭头动画 */
.dropdown > a::after {
  content: " ▼";
  font-size: 0.8em;
}
.dropdown:hover > a::after {
  content: " ▲";
}

.dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
        
		
/* 主要内容区域 */
.main-content {
    display: block;
    gap: 20px;
	margin-bottom: 1.5em;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h2 {
	margin-top: 10px;
    color: #34495e;
    font-size: 1.5rem;
	font-weight: 700
}
	
.data-card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin-bottom: 1.5em;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-header h3 {
    font-size: 1.1rem;
}

.card-body {
    display: block;
    gap: 8px;
}

.card-row {
    display: flex;
    justify-content: flex-start;
    font-size: 0.9rem;
	color: #333333;
	font-size:  1.0rem;
	font-weight: 400;
	line-height: 1.6;
}

.view-details {
    /* 布局 */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    
    /* 尺寸 */
    padding: 10px 20px;
    
    /* 颜色 */
    background-color: #3498db; /* 主色 */
    color: white;
    
    /* 边框 */
    border: none;
    border-radius: 25px; /* 圆角 */
    
    /* 文字 */
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
	text-align: center;
    
    /* 效果 */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

	.bordered-text4 {
		border: 2px solid #3498db; /* 边框颜色 */
		padding: 20px;            /* 内边距 */
		border-radius: 8px;       /* 圆角 */
		margin-bottom: 1.2em; /* 段落间距 */
	  max-height: 3000px;          /* 初始高度为0 */
	  text-indent: 2em;
	}
	
	.bordered-text1 {
		border: 2px solid #3498db; /* 边框颜色 */
		padding: 20px;            /* 内边距 */
		border-radius: 8px;       /* 圆角 */
		margin-bottom: 1.2em; /* 段落间距 */
	  max-height: 80px;          /* 初始高度为0 */
	  overflow: hidden;        /* 隐藏溢出内容 */
	  transition: max-height 0.3s ease-out; /* 过渡动画 */
	}

	.bordered-text1.expanded {
	  max-height: 3000px;      /* 预估最大高度，需根据内容调整 */
	}
	
	.bordered-text1 p {
	  color: #333333;
	  font-size:  1.0rem;
	  font-weight: 400;
	  line-height: 1.6;
	  text-indent: 2em;
	}
	
	.bordered-text2 {
		border: 2px solid #3498db; /* 边框颜色 */
		padding: 20px;            /* 内边距 */
		border-radius: 8px;       /* 圆角 */
		margin-bottom: 1.2em; /* 段落间距 */
	  max-height: 80px;          /* 初始高度为0 */
	  overflow: hidden;        /* 隐藏溢出内容 */
	  transition: max-height 0.3s ease-out; /* 过渡动画 */
	}

	.bordered-text2.expanded {
	  max-height: 3000px;      /* 预估最大高度，需根据内容调整 */
	}
	
	.bordered-text2 p {
	  color: #333333;
	  font-size:  1.0rem;
	  font-weight: 400;
	  line-height: 1.6;
	  text-indent: 2em;
	}
	
	.bordered-text3 {
		border: 2px solid #3498db; /* 边框颜色 */
		padding: 20px;            /* 内边距 */
		border-radius: 8px;       /* 圆角 */
		margin-bottom: 1.2em; /* 段落间距 */
	  max-height: 80px;          /* 初始高度为0 */
	  overflow: hidden;        /* 隐藏溢出内容 */
	  transition: max-height 0.3s ease-out; /* 过渡动画 */
	}

	.bordered-text3.expanded {
	  max-height: 3000px;      /* 预估最大高度，需根据内容调整 */
	}
	
	.bordered-text3 p {
	  color: #333333;
	  font-size:  1.0rem;
	  font-weight: 400;
	  line-height: 1.6;
	  text-indent: 2em;
	}

.toggle-btn1 {
	  padding: 12px 24px;
	  /* 白色半透明基底 + 蓝色微渐变 */
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.9),  /* 主背景白色，适当透明 */
		rgba(225, 240, 255, 0.7)   /* 添加淡蓝色渐变层 */
	  );
	  backdrop-filter: blur(8px);    /* 毛玻璃模糊效果 */
	  color: #333333;                /* 文字用深蓝色 */
	  border: 1px solid rgba(33, 150, 243, 0.3);  /* 边框浅蓝色 */
	  border-radius: 12px;
	  cursor: pointer;
	  font-weight: 500;
	  transition: all 0.3s;
	  box-shadow: 
		0 4px 6px rgba(26, 115, 232, 0.1), /* 外阴影（蓝色调） */
		inset 0 1px 2px rgba(255, 255, 255, 0.5); /* 内高光 */
	}

	.toggle-btn1:hover {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.95),
		rgba(210, 230, 255, 0.8)
	  );
	  border-color: rgba(33, 150, 243, 0.5);  /* 边框颜色加深 */
	  box-shadow: 
		0 6px 12px rgba(26, 115, 232, 0.15),
		inset 0 2px 4px rgba(255, 255, 255, 0.6);
	}
	
	.toggle-btn1:active {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.85),
		rgba(200, 220, 245, 0.7)
	  );
	  transform: translateY(1px);  /* 点击下沉效果 */
	}

	.toggle-btn2 {
	  padding: 12px 24px;
	  /* 白色半透明基底 + 蓝色微渐变 */
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.9),  /* 主背景白色，适当透明 */
		rgba(225, 240, 255, 0.7)   /* 添加淡蓝色渐变层 */
	  );
	  backdrop-filter: blur(8px);    /* 毛玻璃模糊效果 */
	  color: #333333;                /* 文字用深蓝色 */
	  border: 1px solid rgba(33, 150, 243, 0.3);  /* 边框浅蓝色 */
	  border-radius: 12px;
	  cursor: pointer;
	  font-weight: 500;
	  transition: all 0.3s;
	  box-shadow: 
		0 4px 6px rgba(26, 115, 232, 0.1), /* 外阴影（蓝色调） */
		inset 0 1px 2px rgba(255, 255, 255, 0.5); /* 内高光 */
	}

	.toggle-btn2:hover {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.95),
		rgba(210, 230, 255, 0.8)
	  );
	  border-color: rgba(33, 150, 243, 0.5);  /* 边框颜色加深 */
	  box-shadow: 
		0 6px 12px rgba(26, 115, 232, 0.15),
		inset 0 2px 4px rgba(255, 255, 255, 0.6);
	}
	
	.toggle-btn2:active {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.85),
		rgba(200, 220, 245, 0.7)
	  );
	  transform: translateY(1px);  /* 点击下沉效果 */
	}

	.toggle-btn3 {
	  padding: 12px 24px;
	  /* 白色半透明基底 + 蓝色微渐变 */
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.9),  /* 主背景白色，适当透明 */
		rgba(225, 240, 255, 0.7)   /* 添加淡蓝色渐变层 */
	  );
	  backdrop-filter: blur(8px);    /* 毛玻璃模糊效果 */
	  color: #333333;                /* 文字用深蓝色 */
	  border: 1px solid rgba(33, 150, 243, 0.3);  /* 边框浅蓝色 */
	  border-radius: 12px;
	  cursor: pointer;
	  font-weight: 500;
	  transition: all 0.3s;
	  box-shadow: 
		0 4px 6px rgba(26, 115, 232, 0.1), /* 外阴影（蓝色调） */
		inset 0 1px 2px rgba(255, 255, 255, 0.5); /* 内高光 */
	}

	.toggle-btn3:hover {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.95),
		rgba(210, 230, 255, 0.8)
	  );
	  border-color: rgba(33, 150, 243, 0.5);  /* 边框颜色加深 */
	  box-shadow: 
		0 6px 12px rgba(26, 115, 232, 0.15),
		inset 0 2px 4px rgba(255, 255, 255, 0.6);
	}
	
	.toggle-btn3:active {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.85),
		rgba(200, 220, 245, 0.7)
	  );
	  transform: translateY(1px);  /* 点击下沉效果 */
	}

.toggle-btnback {
	  padding: 12px 80px;
	  /* 白色半透明基底 + 蓝色微渐变 */
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.9),  /* 主背景白色，适当透明 */
		rgba(225, 240, 255, 0.7)   /* 添加淡蓝色渐变层 */
	  );
	  backdrop-filter: blur(8px);    /* 毛玻璃模糊效果 */
	  color: #333333;                /* 文字用深蓝色 */
	  border: 1px solid rgba(33, 150, 243, 0.3);  /* 边框浅蓝色 */
	  border-radius: 12px;
	  cursor: pointer;
	  font-size: 1.2rem;
	  font-weight: bold;
	  flex-direction: row;
	  text-align: center;
	  transition: all 0.3s;
	  box-shadow: 
		0 4px 6px rgba(26, 115, 232, 0.1), /* 外阴影（蓝色调） */
		inset 0 1px 2px rgba(255, 255, 255, 0.5); /* 内高光 */
	}

	.toggle-btnback:hover {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.95),
		rgba(210, 230, 255, 0.8)
	  );
	  border-color: rgba(33, 150, 243, 0.5);  /* 边框颜色加深 */
	  box-shadow: 
		0 6px 12px rgba(26, 115, 232, 0.15),
		inset 0 2px 4px rgba(255, 255, 255, 0.6);
	}
	
	.toggle-btnback:active {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.85),
		rgba(200, 220, 245, 0.7)
	  );
	  transform: translateY(1px);  /* 点击下沉效果 */
	}


.fixed-ratio-img {
  position: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1.2em;
}


/* 表格视图样式 */
.responsive-table {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

th {
	width: 160px; 
	padding-left: 24px; 
	background: #e3f2fd;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

td {
	padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

td:hover {
    background-color: #f5f5f5;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0;
  font-family: 'Arial', sans-serif;
}

.page-btn {
  padding: 10px 18px;
  background: white;
  border: none;
  border-radius: 8px;
  color: #333;
  box-shadow: 3px 3px 6px #bebebe, 
              -3px -3px 6px #ffffff;
  transition: all 0.2s;
}

.page-btn:hover {
  background-color: #f0f0f0;
}

.page-btn:active {
  box-shadow: inset 3px 3px 6px #bebebe, 
              inset -3px -3px 6px #ffffff;
}

.page-btn.active {
  background: #4e54c8;
  color: white;
  box-shadow: inset 3px 3px 6px #3a3f9e, 
              inset -3px -3px 6px #6268f2;
}

/* 统计卡片样式 */
.stats-section h2{
	margin-top: 10px;
		color: #34495e;
		font-size: 1.2rem;
		font-weight: 700;
		margin-bottom: 5px
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-card {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-info h3 {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}

.stat-card:hover {
  background-color: #f0f0f0;
}

.stat-card:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.5);
}

/* 页脚样式 */
.footer {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    color: #7f8c8d;
    font-size: 0.85rem;
}

/* 响应式设计 - 平板及以上 */
@media (min-width: 1200px) {
    .responsive-table {
		width: 100%;
		overflow-x: auto; /* 启用横向滚动 */
	}
	
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
	
	.fixed-ratio-img {
		width: 100%;
		height: auto; /* 改为流动高度 */
	}
}

/* 响应式设计 - 小屏幕表格适配 */
@media (max-width: 1200px) {
	
	.header-content h1 {
		font-size: 1.2rem;
		margin-bottom: 5px;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.header-content p {
		font-size: 0.8rem;
		opacity: 0.8;
	}
	
	body{
		font-size: 15px; 
		line-height: 1.5;
	}
	
	.section-header h2 {
		margin-top: 10px;
		color: #34495e;
		font-size: 1.3rem;
		font-weight: 700
	}
	
	.bordered-text1 {
		border: 2px solid #3498db; /* 边框颜色 */
		padding: 20px;            /* 内边距 */
		border-radius: 8px;       /* 圆角 */
		margin-bottom: 1.2em; /* 段落间距 */
	  max-height: 80px;          /* 初始高度为0 */
	  overflow: hidden;        /* 隐藏溢出内容 */
	  transition: max-height 0.3s ease-out; /* 过渡动画 */
	}

	.bordered-text1.expanded {
	  max-height: 1000px;      /* 预估最大高度，需根据内容调整 */
	}
	
	.bordered-text1 p {
	  color: #333333;
	  font-size:  1.0rem;
	  font-weight: 400;
	  line-height: 1.6;
	  text-indent: 2em;
	}
	
	.bordered-text2 {
		border: 2px solid #3498db; /* 边框颜色 */
		padding: 20px;            /* 内边距 */
		border-radius: 8px;       /* 圆角 */
		margin-bottom: 1.2em; /* 段落间距 */
	  max-height: 80px;          /* 初始高度为0 */
	  overflow: hidden;        /* 隐藏溢出内容 */
	  transition: max-height 0.3s ease-out; /* 过渡动画 */
	}

	.bordered-text2.expanded {
	  max-height: 1000px;      /* 预估最大高度，需根据内容调整 */
	}
	
	.bordered-text2 p {
	  color: #333333;
	  font-size:  1.0rem;
	  font-weight: 400;
	  line-height: 1.6;
	  text-indent: 2em;
	}
	
	.bordered-text3 {
		border: 2px solid #3498db; /* 边框颜色 */
		padding: 20px;            /* 内边距 */
		border-radius: 8px;       /* 圆角 */
		margin-bottom: 1.2em; /* 段落间距 */
	  max-height: 80px;          /* 初始高度为0 */
	  overflow: hidden;        /* 隐藏溢出内容 */
	  transition: max-height 0.3s ease-out; /* 过渡动画 */
	}

	.bordered-text3.expanded {
	  max-height: 1000px;      /* 预估最大高度，需根据内容调整 */
	}
	
	.bordered-text3 p {
	  color: #333333;
	  font-size:  1.0rem;
	  font-weight: 400;
	  text-indent: 2em;
	}
	
	.toggle-btn1 {
	  padding: 12px 24px;
	  /* 白色半透明基底 + 蓝色微渐变 */
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.9),  /* 主背景白色，适当透明 */
		rgba(225, 240, 255, 0.7)   /* 添加淡蓝色渐变层 */
	  );
	  backdrop-filter: blur(8px);    /* 毛玻璃模糊效果 */
	  color: #333333;                /* 文字用深蓝色 */
	  border: 1px solid rgba(33, 150, 243, 0.3);  /* 边框浅蓝色 */
	  border-radius: 12px;
	  cursor: pointer;
	  font-weight: 500;
	  transition: all 0.3s;
	  box-shadow: 
		0 4px 6px rgba(26, 115, 232, 0.1), /* 外阴影（蓝色调） */
		inset 0 1px 2px rgba(255, 255, 255, 0.5); /* 内高光 */
	}

	.toggle-btn1:hover {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.95),
		rgba(210, 230, 255, 0.8)
	  );
	  border-color: rgba(33, 150, 243, 0.5);  /* 边框颜色加深 */
	  box-shadow: 
		0 6px 12px rgba(26, 115, 232, 0.15),
		inset 0 2px 4px rgba(255, 255, 255, 0.6);
	}
	
	.toggle-btn1:active {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.85),
		rgba(200, 220, 245, 0.7)
	  );
	  transform: translateY(1px);  /* 点击下沉效果 */
	}

	.toggle-btn2 {
	  padding: 12px 24px;
	  /* 白色半透明基底 + 蓝色微渐变 */
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.9),  /* 主背景白色，适当透明 */
		rgba(225, 240, 255, 0.7)   /* 添加淡蓝色渐变层 */
	  );
	  backdrop-filter: blur(8px);    /* 毛玻璃模糊效果 */
	  color: #333333;                /* 文字用深蓝色 */
	  border: 1px solid rgba(33, 150, 243, 0.3);  /* 边框浅蓝色 */
	  border-radius: 12px;
	  cursor: pointer;
	  font-weight: 500;
	  transition: all 0.3s;
	  box-shadow: 
		0 4px 6px rgba(26, 115, 232, 0.1), /* 外阴影（蓝色调） */
		inset 0 1px 2px rgba(255, 255, 255, 0.5); /* 内高光 */
	}

	.toggle-btn2:hover {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.95),
		rgba(210, 230, 255, 0.8)
	  );
	  border-color: rgba(33, 150, 243, 0.5);  /* 边框颜色加深 */
	  box-shadow: 
		0 6px 12px rgba(26, 115, 232, 0.15),
		inset 0 2px 4px rgba(255, 255, 255, 0.6);
	}
	
	.toggle-btn2:active {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.85),
		rgba(200, 220, 245, 0.7)
	  );
	  transform: translateY(1px);  /* 点击下沉效果 */
	}

	.toggle-btn3 {
	  padding: 12px 24px;
	  /* 白色半透明基底 + 蓝色微渐变 */
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.9),  /* 主背景白色，适当透明 */
		rgba(225, 240, 255, 0.7)   /* 添加淡蓝色渐变层 */
	  );
	  backdrop-filter: blur(8px);    /* 毛玻璃模糊效果 */
	  color: #333333;                /* 文字用深蓝色 */
	  border: 1px solid rgba(33, 150, 243, 0.3);  /* 边框浅蓝色 */
	  border-radius: 12px;
	  cursor: pointer;
	  font-weight: 500;
	  transition: all 0.3s;
	  box-shadow: 
		0 4px 6px rgba(26, 115, 232, 0.1), /* 外阴影（蓝色调） */
		inset 0 1px 2px rgba(255, 255, 255, 0.5); /* 内高光 */
	}

	.toggle-btn3:hover {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.95),
		rgba(210, 230, 255, 0.8)
	  );
	  border-color: rgba(33, 150, 243, 0.5);  /* 边框颜色加深 */
	  box-shadow: 
		0 6px 12px rgba(26, 115, 232, 0.15),
		inset 0 2px 4px rgba(255, 255, 255, 0.6);
	}
	
	.toggle-btn3:active {
	  background: linear-gradient(
		to bottom right,
		rgba(255, 255, 255, 0.85),
		rgba(200, 220, 245, 0.7)
	  );
	  transform: translateY(1px);  /* 点击下沉效果 */
	}

	.responsive-table {
		width: 100%;
		height: auto;
		overflow-x: auto; /* 启用横向滚动 */
	}
	
	.fixed-ratio-img {
		width: 100%;
		height: auto;
	}
	
    table {
		width: 125%;
		height: auto;
		background-color: white;
		border-radius: 10px;
		overflow: auto;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
	
    tr {
		width: 100%; 
        display: flex;
        margin-bottom: 10px;
        border-radius: 10px;
        overflow: auto;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
	
	th {
		width: 40%; 
		background: #e3f2fd;
		display: flex;
		text-align: left;
		align-items: center;
		padding: 12px 15px;
		border-bottom: 2px solid #e0e0e0;
	}
    
    td {
		width: 60%; 
        padding: 12px 15px;
		display: flex;
		align-items: center;
        text-align: left;
        border-bottom: 2px solid #e0e0e0;
    }
    
	
	.stat-card {
		background-color: white;
		border-radius: 10px;
		padding: 15px;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.stat-icon {
		width: 30px;
		height: 30px;
		background-color: #3498db;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
	}

	.stat-info h3 {
		font-size: 1.0rem;
		color: #34495e;
		margin-bottom: 5px;
	}

	.stat-info p {
		font-size: 1.0rem;
		font-weight: bold;
		color: #2c3e50;
	}
}