#start-page {
  z-index:10000;
}
.exhibition-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 420px);
  background: #f7f7f7;
  overflow: hidden;
}

.exhibition-cover {
  position: relative;
  width: 100%;
  height: 100%;
}

.cover-overlay {
  position: absolute;
  z-index:0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(50px);
}

.cover-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index:1;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  filter: none;
  box-shadow: none;
  border-radius: 0;
}

.exhibition-panel {
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.12);
  justify-content: center; /* 垂直居中 */
}

.panel-header {
  display: flex;
  justify-content: flex-end;
}

.logo {
  height: 37px;
  object-fit: contain;
}

.panel-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 72px;
  margin: 28px;
  overflow: hidden;
}

.panel-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  justify-content: center; /* 垂直居中内容 */
}

.title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-top:15%;
}

.intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 24px;
  font-size: 16px;
  position: absolute;
  top: 145px;
  bottom: 0;
  overflow-y: auto;
  margin: auto;
  /* Firefox */
  scrollbar-width: none;

  /* IE/旧Edge */
  -ms-overflow-style: none;
}

/* Chrome / Edge / Safari / Opera / 新版Edge */
.intro::-webkit-scrollbar {
  display: none;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: 6px 0 10px 0;
}

.creator-card {
  display: flex;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.creator-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.creator-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.creator-avatar {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-label {
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
}

.creator-name {
  color: #ffffff;
  font-weight: 700;
}

.creator-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.panel-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  bottom:0;
  margin: 28px;
  left: 0;
  right: 0;
}

.primary-btn,
.secondary-btn {
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.primary-btn {
  background: #4C4CEF;
  color: #fff;
}

.primary-btn:disabled {
  background: #a8b5ff;
  cursor: not-allowed;
  box-shadow: none;
}

.secondary-btn {
  background: #ffffff;
  color: #ffffff;
  border: 1px solid #d8d8d8;
}

.secondary-btn:disabled {
  color: #9e9e9e;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .exhibition-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .exhibition-cover {
    width: 100%;
    height: 60vh;
    min-height: 50vh;
    max-height: 60vh;
    flex-shrink: 0;
    order: 0; /* 确保封面在上 */
  }

  .cover-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    transform: none;
    left: 0;
    top: 0;
  }

  .exhibition-panel {
    /* background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.12); */
    justify-content: flex-start;
    min-height: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    order: 2; /* 确保面板在下 */
    max-height: 40vh;
    height: 40vh;
    padding:0;
  }

  .panel-header {
    justify-content: flex-start; /* logo在左侧 */
  }

  .logo {
    height: 28px;
  }

  .panel-body {
    justify-content: flex-start;
    flex: 1;
    padding-bottom: 100px;
    gap: 12px;
    overflow-y: auto;
  }

  .title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 600;
    margin-top:0;
  }

  .creator-label {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
  }

  .creator-name {
    font-weight: 600;
  }

  .intro {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.75);
    top: 72px;
  }

  .panel-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.12);
  }

  .primary-btn {
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
  }
}

:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
  background-color: #212121;
}

/* 全局去掉焦点边框 */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: none;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: none;
}

.card {
  padding: 2em;
}

#app {
  width: 100vw;
  height: 100vh;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}
:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
  background-color: #212121;
  position: fixed;
}

/* 全局去掉焦点边框 */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: none;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: none;
}

.card {
  padding: 2em;
}

#app {
  width: 100vw;
  height: 100vh;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}
