@charset "utf-8";

/* 相册css*/
.eddie-gallery-container {
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: 0;
}

.eddie-gallery-content {
  width: 60%;
  color: var(--color-text-white);
  background-color: #777777;
  overflow-x: hidden;
  min-height: 100vh;
}

.eddie-gallery-content img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.eddie-gallery-right {
  width: 40%;
  backdrop-filter: blur(7px);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background-color: #CCCCCC;
  z-index: 998;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.eddie-gallery-cover {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eddie-gallery-cover img {
  max-width: 20%;
  height: auto;
  padding-top: 20%;
}

.eddie-gallery-copyright {
  color: var(--color-text-white);
  font-size: 12px;
  text-align: center;
  width: 100%;
  padding-bottom: 30px;
}

.eddie-gallery-copyright a {
  text-decoration: none;
  text-align: center;
  color: var(--color-text-white);
}

.up {
  position: absolute;
  z-index: 999;
  width: 100%;
  text-align: center;
  bottom: -4px;
  opacity: 0.78;
}

.up img {
  height: auto;
  width: 50px;
  border-radius: 25px 25px 0 0;
  box-shadow: 0 0 70px rgba(0, 0, 0, .50);
}
.eddie-post-pagination {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  justify-content: space-between;
  margin: 30px 0px;
}
.eddie-post-prev-content a,
.eddie-post-next-content a {
  color: #000;
  background-color: #fff;
  border-radius: 32px;
  padding: 8px 20px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
@media(min-width:992px) {
  .up {
    display: none;
  }
}

@media (max-width:991px) {
  .eddie-gallery-container {
    flex-direction: column;
    height: auto;
    overflow-x: hidden;
  }

  .eddie-gallery-right {
    width: 100%;
    height: calc(100vh - 67px);
    position: relative;
  }

  .eddie-gallery-content {
    width: 100%;
    padding: 20px 0px 10px 0px;
  }

  .eddie-gallery-copyright {
    display: none;
  }
}