#gallery h2, h3{
    position: absolute;
    left: 5%;
    bottom: 97%;
    font-size: 1.5em;
    filter: glow(color=black,strength=3);
    cursor:default;
    user-select: none;
    color: #222;
    text-shadow:
        -2px -2px 0 #EEE,
        2px -2px 0 #EEE,
        -2px  2px 0 #EEE,
        2px  2px 0 #EEE,
        0px -2px 0 #EEE,
        2px 0px 0 #EEE,
        0px  2px 0 #EEE,
        -2px  0px 0 #EEE;
}

#gallery .tabprocess {
    position: absolute;
    top: 17%;
    left: 0%;
    width: 50%;
    height: 5px;
}

.tabnav {
    position: absolute;
    right: 9%;
    bottom: 87.5%;
    filter: glow(color=black,strength=3);
    z-index: 999;
    text-align: right;
    padding-bottom: .3em;
    padding-top: .3em;
    padding-left: .9em;
    padding-right: .9em;
    border-radius: 0.6em;
    text-shadow: 2px 2px 4px #00000099;
    font-size: 1.2em;
    background: #00000052;
    box-shadow: 2px 2px 4px #00000099;
    cursor: pointer;
    font-style:normal;
    user-select: none;
}

.tabnav em{
    font-style:normal;
}

#entry{
	position: absolute;
    right: 10%;
    bottom: 10%;
    filter: glow(color=black,strength=3);
    z-index: 999;
    text-align: right;
    background: #02020285;
    padding-top: .5em;
    padding-bottom: 1.6em;
    padding-left: 3.1em;
    padding-right: 3em;
    border-radius: 0.6em;
    text-shadow: 0.2em 0.2em 0.3em #000000ff;
    box-shadow: 0em 0em 0.4em #000000ff;
    cursor:default;
    user-select: none;
}

#entry h1{
    padding-bottom: 10px;
}

.tabpage{font-size:1.2em}

.cetus_tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.978);
}

.cetus_tooltip .cetus_tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 100%; /* 调整位置 */
  left: 50%; 
  margin-left: -100px; /* 使用宽度的一半调整位置 */
  opacity: 0;
  transition: opacity 0.3s;
}

.cetus_tooltip:hover .cetus_tooltiptext {
  visibility: visible;
  opacity: 0.8;
}
