.pswp__ui--idle .pswp__caption {
  opacity: 0;
}

.pswp__img {
  object-fit: contain;
}

.pswp__share-tooltip {
  background: #ffffff;
  border-radius: 8px;
  padding: 14px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  width: 220px;
}

.pswp__share-tooltip a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  /* color: #333 !important; */
  /* text-decoration: none !important;
    font-size: 14px; */
}

.pswp__share-tooltip a * {
  pointer-events: none;
}

/* 图标大小 */
.pswp__share-tooltip i {
  width: 15px;
  font-size: 15px;
}

.pswp .pswp__ui .pswp__button--arrow--right,
.pswp .pswp__ui .pswp__button--arrow--left {
  /* z-index: 10; */
  top: 88px;
  width: 15%;
  height: calc(100% - 44px);
  display: flex;
}

/* 通用箭头样式 */
.pswp__button--arrow--left::before,
.pswp__button--arrow--right::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  background-image: none !important;
  background-color: transparent !important;
  border-right: 4px solid white;
  border-bottom: 4px solid white;

  transform-origin: center;
}

/* 左箭头（旋转 135°） */
.pswp__button--arrow--left::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

/* 右箭头（旋转 -45°） */
.pswp__button--arrow--right::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}