/*易支付推荐接口:pay.xbyccc.cn*/
.widget,
.block.full2,
.block.block-themed,
.block:not(.block-content) {
  animation: cardSlideIn 0.5s ease-out both;
  animation-delay: calc(var(--card-index, 0) * 0.1s);
}
.widget {
  --card-index: 1;
  animation-delay: 0.1s;
}
.block.full2 {
  --card-index: 2;
  animation-delay: 0.2s;
}
.block.block-themed {
  --card-index: 3;
  animation-delay: 0.3s;
}
.block:not(.block-content):not(.block-themed):not(.full2) {
  --card-index: 4;
  animation-delay: 0.4s;
}
@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.article-item {
  animation: articleSlideIn 0.5s ease-out both;
  animation-delay: calc((var(--item-index, 0) * 0.05s) + 0.5s);
}
.article-item:nth-child(1) {
  --item-index: 1;
}
.article-item:nth-child(2) {
  --item-index: 2;
}
.article-item:nth-child(3) {
  --item-index: 3;
}
.article-item:nth-child(4) {
  --item-index: 4;
}
.article-item:nth-child(5) {
  --item-index: 5;
}
.article-item:nth-child(6) {
  --item-index: 6;
}
.article-item:nth-child(7) {
  --item-index: 7;
}
.article-item:nth-child(8) {
  --item-index: 8;
}
@keyframes articleSlideIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.tab-pane {
  animation: fadeInContent 0.4s ease-out;
}
@keyframes fadeInContent {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(52, 130, 255, 0.15);
}
#more .widget {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#more .widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 130, 255, 0.1);
}
body {
  animation: pageFadeIn 0.6s ease-out;
}
@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}