/* 设置隐藏面板样式，初始状态为不显示 */
#panel {
  font-size: 14px; /* 添加字体大小 */
  width: 150px;
  height: 250px;
  background-color: #f0f0f0;
  display: none;
  padding: 20px;
  box-sizing: border-box;
  position: fixed; /* 使用 fixed 定位 */
  bottom: 100px; /* 距离底部 100px */
  right: 0; /* 靠右边边缘 */
	
}

	/* 设置切换按钮样式，绝对定位到内容区域右边缘并向下偏移 400px */
#toggleBtn {
    font-size: 20px; /* 添加字体大小 */
    background-color: rgba(143,195,53,0.45); /* 添加背景色 */
    color: white; /* 文字颜色为白色 */
    padding: 0px 0px; /* 添加内边距 */
    border: none; /* 去掉边框 */
    cursor: pointer; /* 鼠标悬停时显示指针 */
    width: 15px;
    height: 50px;
    position: fixed; /* 使用 fixed 定位 */
    bottom: 200px; /* 距离底部 100px */
    right: 0; /* 靠右边缘 */
    transform: translate(0, -50%); /* 使用平移来垂直居中 */
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
/* 在这里替换成您想要的选择器，比如 .apple-text */
.apple-text {
  font-size: 13px;
  color: #299318; /* 苹果色的颜色代码 */
}
/* 样式为链接 */
a {
  text-decoration: none; /* 去掉下划线 */
  transition: transform 0.2s; /* 添加过渡效果 */
  font-size: 14px;
}

/* 鼠标经过链接时的样式 */
a:hover {
    transform: scale(1.03);
}
