body {margin-top:60px;}
.page2, .page3 {padding: 20px 0 0 0;}

.navbar {
  height: 60px;
  width: 100%;
  border-bottom: .7px solid #bebebe;
  position: fixed;
  left: 0; top: 0;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 998;
  padding: 0 10px;}
.navbar a { 
  display: flex; 
  align-items: center; 
  text-decoration: none;
  color: #1b1b1b;}

.菜单按钮 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 8px;
  flex-shrink: 0;}
.菜单按钮:hover {background: rgba(0,0,0,.08);}

.标志 {
  font-weight: 700;
  height: 40px;
  font-weight: 600;
  flex-shrink: 0;}

.大标志 {
  padding: 30px 0;
  position: relative;
  background: #fff;
  border-bottom: .7px solid #bebebe;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;}
.大标志 h1 {color:#1b1b1b;font-size:32px;}

.cover {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;}
.cover.show {
  opacity: 1;
  pointer-events: auto;}

.navlist {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 70%;
  max-width: 300px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding-top: 0;
  z-index: 1000;
  overflow: hidden;
  box-shadow: -2px 0 12px rgba(0,0,0,.1);}
.navlist.open {transform: translateX(0);}

.列表区 {
  flex: 1;
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;}

.navlist .list {
  width: 100%;
  margin: 3px 0;}
.list a {
  display: block;
  padding: 12px 20px;
  margin: 3px 5px;
  text-decoration: none;
  color: #1b1b1b;
  font-size: 16px;
  border-radius: 10px;}
.list a:hover {background: #e6e6e6;}

.rg {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;}
.ne {
  color: #1b1b1b;
  text-decoration: none;
  font-size: 16px;}
.ne:hover {color: #0cf;}

.list a.锁了 {
  background: #a9bcdc;
  color: #00325b;
  pointer-events: none;}

.sl {
  width: 85%;
  height: .7px;
  background: #bebebe;
  margin: 0 auto;}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;}
html::-webkit-scrollbar {display: none;}
.fake-bar {
  position: fixed;
  top: 60px;
  right: 4px;
  width: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.2);
  opacity: 0;
  transition: opacity .2s, background .2s, width .2s;
  z-index: 9999;}
body.is-scrolling .fake-bar, .fake-bar:hover {opacity: 1;}
.fake-bar:hover,
.fake-bar.is-dragging {
  background: rgba(0,0,0,.3);
  width: 8px;}
@media (prefers-color-scheme: dark) {
.fake-bar { background: rgba(255, 255, 255, .35); }
.fake-bar:hover, .fake-bar.is-dragging { background: rgba(255, 255, 255, .55); }}