/* ============================================================
   index.css — 全屏覆盖面板
   ============================================================ */

.cover-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}

.cover-panel-0 { z-index: 1; }
.cover-panel-1 { z-index: 2; }
.cover-panel-2 { z-index: 3; }

/* 中图完整宽 + 焦点平移 */
.cover-panel-1 {
  background-size: 100% auto;
  background-position: center 0%;
}

.end-container-content {
  position: absolute;
  right: 100px;
  bottom: 50px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.end-container-content-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  cursor: pointer;
  color: #e9ae84;
  font-weight: bold;
  padding-bottom: 50px;
}

.end-item-line {
  width: 10px;
  height: 65px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.end-container-content-item:hover {
  color: #eb6100;
}

.end-container-content-item:hover .end-item-line {
  background-color: #eb6100;
}

.end-last-item {
  margin-bottom: 0px;
}