@charset "UTF-8";
/* 图集卡片样式 */
.gallery-card {
  position: relative;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.05);
}

/* 数量标签样式 */
.gallery-count-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.gallery-video-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 59, 48, 0.9);
  color: #fff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* 底部信息区域 - 常驻显示 */
.gallery-info {
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  color: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.8;
}

.gallery-date {
  color: #ccc;
}

.gallery-rating {
  color: #ffd700;
  font-weight: 600;
}

/* 图集网格布局 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }
}

.gallery-item {
  width: 100%;
}

.gallery-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* 分页样式 */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pagination-btn {
  padding: 10px 20px;
  background: #2a2a2a;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.pagination-btn:hover:not(:disabled) {
  background: #4181e5;
  transform: translateY(-2px);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-info {
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
}

/* 加载和空状态样式 */
.loading-state, .empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #ccc;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #2a2a2a;
  border-top: 4px solid #4181e5;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 响应式优化 */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .gallery-image {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }
  .gallery-image {
    height: 160px;
  }
  .pagination-controls {
    gap: 15px;
  }
  .pagination-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
  }
  .gallery-image {
    height: 140px;
  }
  .gallery-info {
    padding: 10px 12px;
  }
  .gallery-title {
    font-size: 13px;
  }
  .gallery-meta {
    font-size: 11px;
  }
  .pagination-controls {
    flex-direction: column;
    gap: 10px;
  }
}
.footer_logo_img {
  width: 226px;
}

.btn {
  margin: 7.5px;
}

.left-phb {
  margin-left: 15px;
  width: 160px;
}

.search-category {
  position: relative;
  width: 100%;
  margin: auto auto 20px;
  display: flex;
  justify-content: center;
}
.search-category > .search-item {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .search-category > .search-item {
    width: calc(100% - 40px);
  }
}
.search-category > .search-item > input {
  width: 100%;
  height: 50px;
  border-radius: 100px;
}
.search-category > .search-item > button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  line-height: 100%;
}
.search-category > .search-item .serarch-img {
  width: 20px;
  height: 20px;
}

.nav-tag {
  width: 100%;
  height: 40px;
  margin: auto auto 40px;
  border-bottom: 2px solid #171f2f;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.nav-tag > span {
  cursor: pointer;
  margin-right: 20px;
}

.selected-nav-tag {
  position: relative;
  color: #4181e5;
}
.selected-nav-tag:before {
  position: absolute;
  bottom: -12px;
  content: " ";
  background: #4181e5;
  height: 3px;
  border-radius: 3px;
  width: 100%;
}

.adManager {
  width: 100%;
  display: block;
}

.alertBox {
  position: fixed;
  left: 0;
  top: 0px;
  z-index: 999;
  width: 100vw;
  height: 100%;
  background-color: rgba(113, 113, 113, 0.525);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.alertBox > .cont {
  width: 300px;
  height: 200px;
  border-radius: 10px;
  background-color: #161d2a;
  color: #fff;
}
.alertBox > .cont > .titles {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}
.alertBox > .cont > .paytype > .wxpay,
.alertBox > .cont > .paytype .alipay {
  margin: 0px 15px;
  padding: 15px;
  background-color: #171f2f;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.alertBox > .cont > .paytype > .wxpay > .logo,
.alertBox > .cont > .paytype .alipay > .logo {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  margin-right: 10px;
}
.alertBox > .cont > .paytype > .wxpay > .loading,
.alertBox > .cont > .paytype .alipay > .loading {
  margin-left: auto;
  width: 20px;
  height: 20px;
  opacity: 0;
}
.alertBox > .cont > .paytype > .wxpay:hover,
.alertBox > .cont > .paytype .alipay:hover {
  background-color: #4181e5;
}
.alertBox > .cont > .paytype > .wxpay {
  margin-top: 15px;
}

.xuanzhuan {
  opacity: 1 !important;
  animation: xuanzhuancss 2s infinite;
}

@keyframes xuanzhuancss {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.noticeBox {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  z-index: 999;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.154);
  backdrop-filter: blur(2px);
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
}
.noticeBox > .noteiceContext {
  transform: translateY(0px);
  padding: 15px 15px;
  flex-shrink: 0;
  width: 400px;
  background-color: #171f2f;
  border-radius: 15px;
  overflow: hidden;
}
.noticeBox > .noteiceContext > .noticeTitle {
  position: relative;
  height: 30px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
}
.noticeBox > .noteiceContext > .noticeTitle > span {
  margin: auto;
}
.noticeBox > .noteiceContext > .noticeTitle > img {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 5px;
  width: 20px;
  height: 20px;
}
.noticeBox > .noteiceContext > .noticeText {
  margin-top: 15px;
  min-height: 100px;
  max-height: 350px;
  width: 100%;
  overflow: scroll;
  overflow-x: hidden;
  word-break: break-all;
}
.noticeBox > .noteiceContext > .noticeText > .text {
  position: relative;
  width: 100%;
}
.noticeBox > .noteiceContext > .noticeText > .text > p {
  width: 100%;
}
.noticeBox > .noteiceContext > .noticeText > .text > p > img,
.noticeBox > .noteiceContext > .noticeText > .text > img {
  margin: 0px;
  display: block;
  border-radius: 10px;
  width: 100% !important;
}
.noticeBox > .noteiceContext > .noticeText::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
.noticeBox > .noteiceContext > .noticeFooter {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.noticeBox > .noteiceContext > .noticeFooter > button {
  height: 30px;
  border-radius: 8px;
  font-size: 13px;
  padding: 3px 10px;
  margin-left: 15px;
}
.noticeBox > .noteiceContext > .noticeFooter > button:nth-child(1) {
  color: rgba(49, 49, 49, 0.948);
  background-image: linear-gradient(35deg, #ccffff, #ffcccc);
}
.noticeBox > .noteiceContext > .noticeFooter > button:nth-child(2) {
  color: rgba(49, 49, 49, 0.948);
  background-image: linear-gradient(135deg, #81ffef 10%, #f067b4 100%);
}

@media (max-width: 400px) {
  .noteiceContext {
    width: 350px !important;
  }
}
.tipspmd {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 18px;
  font-weight: 600;
}

#vueBox {
  border-radius: 15px;
  overflow: hidden;
}
#vueBox .vueBoxImg {
  border-radius: 0px 0px 15px 15px;
}

.footer__content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
@media (min-width: 768px) {
  .footer__content {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
}
.footer__content .friendship-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  justify-content: center !important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
  order: 2 !important;
  max-width: 100% !important;
}
@media (min-width: 768px) {
  .footer__content .friendship-links {
    justify-content: flex-end !important;
    margin-bottom: 0 !important;
    order: 2 !important;
  }
}
.footer__content .friendship-links .friendship-link {
  display: inline-block !important;
  padding: 5px 10px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 15px !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 12px !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
  margin: 1px !important;
  flex: 0 0 auto !important;
}
@media (max-width: 767px) {
  .footer__content .friendship-links .friendship-link {
    flex: 0 0 calc(25% - 6px) !important;
    text-align: center !important;
    font-size: 11px !important;
    padding: 4px 6px !important;
  }
}
.footer__content .friendship-links .friendship-link:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  color: #fff !important;
  text-decoration: none !important;
}
.footer__content .friendship-links .friendship-link:active {
  transform: translateY(0) !important;
}
.footer__content .footer__copyright {
  margin-top: 0 !important;
  order: 1 !important;
  text-align: center !important;
}
@media (min-width: 768px) {
  .footer__content .footer__copyright {
    order: 1 !important;
    text-align: left !important;
  }
}

/* gallery-list.scss */
.gallery-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gallery-list .gallery-list-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.gallery-list .gallery-list-item:last-child {
  border-bottom: none;
}
.gallery-list .gallery-list-item .gallery-title {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.gallery-list .gallery-list-item .gallery-title:hover {
  color: #007bff;
}

.list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #4181e5; /* 默认颜色 */
  flex-shrink: 0;
}

/* 为每个列表项的圆点设置不同的颜色 */
.gallery-list-item:nth-child(7n+1) .list-dot {
  background-color: #ff6b6b; /* 红色 */
}

.gallery-list-item:nth-child(7n+2) .list-dot {
  background-color: #feca57; /* 黄色 */
}

.gallery-list-item:nth-child(7n+3) .list-dot {
  background-color: #48dbfb; /* 蓝色 */
}

.gallery-list-item:nth-child(7n+4) .list-dot {
  background-color: #1dd1a1; /* 绿色 */
}

.gallery-list-item:nth-child(7n+5) .list-dot {
  background-color: #ff9f43; /* 橙色 */
}

.gallery-list-item:nth-child(7n+6) .list-dot {
  background-color: #a29bfe; /* 紫色 */
}

.gallery-list-item:nth-child(7n+7) .list-dot {
  background-color: #54a0ff; /* 亮蓝色 */
}

@media (max-width: 768px) {
  .gallery-list-item {
    padding: 8px 0;
  }
  .gallery-list-item .gallery-title {
    font-size: 14px;
  }
}

/*# sourceMappingURL=newStyle.css.map */
