/* scrollbar starts on line 31 */
/* 滚轮&顶部bar */

.container {
  background-color: #ffffff;
  /* background-color: #fdfdfd; */
  height: 100%;
  width: 100%;
  /* border-radius: 6px; */
  /* box-shadow: 0 4px 28px rgba(123,151,158,.25); */
  /* border: 1px solid #d6dee1; */
  /* padding: 1rem; */
  overflow: scroll;
  margin-bottom: 20px;
  margin-top: -3px;
}

h1 {
  margin: 0;
  text-align: center;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  /* d6dee1 */
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #bfb3a8;
  /* bfb3a8 */
}


ah {
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
  font-size: 13px;
}
ah:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(149, 149, 151);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.2s ease-in-out;
}
ah:hover:after {
  visibility: visible;
  transform: scaleX(1);
}
  


.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  /* background-color: #6f4281; */
  background-color: #63065f;
  z-index: 1; /* 确保导航栏位于顶层 */
  height: 40px;
  font-size: 18px;
}

.sticky ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
}

.sticky li {
  margin: 0 10px;
}

.sticky li a {
  display: block;
  padding: 6px;
  text-decoration: none;
  color: #333;
}

.sticky li a:hover {
  color: #555;
}

.sticky li img {
  margin-right: 650px; /* 图片和文字之间的右侧间距 */
}

.wrapper {
  padding-top: 5px; 
}

@media (max-width: 1024px) {
  .wrapper {
    padding-top: 22px; /* 在手机模式下增大内容区域的上边距 */
  }
  .sticky {
    height: 40px; /* 在手机模式下缩小导航栏高度 */
    font-size: 12px; /* 在手机模式下缩小字体大小 */
  }
  .sticky li .logo {
    width: 90px; /* 在手机模式下缩小图片宽度 */
  }
  .sticky li img {
    margin-right: 10px; /* 图片和文字之间的右侧间距 */
  }
  .sticky li {
    margin: 0 5px;
  }

  .sticky li a {
    display: block;
    padding: 7px;
    text-decoration: none;
    color: #333;
  }

  
}
