/* ===== 通用毛玻璃基础样式 ===== */
.card-widget {
    background: linear-gradient(-45deg, #e2c1ffee, #ffb6e6ee, #c9a9ffee, #ffb3fdee) !important;
  }
  /* 个人信息Follow me按钮 */
  #aside-content > .card-widget.card-info > #card-info-btn {
    background-color: #7019c2f8;
    border-radius: 8px;
  }
  /* ===== 动画定义 ===== */
  @keyframes Gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  /* ===== 暗夜模式适配 ===== */
  [data-theme="dark"] .card-widget{
    background: rgba(45, 10, 61, 0.7) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  }
/*导航栏*/
.nav-fixed>#nav {
    background: linear-gradient(-45deg, #e0c1fa55, #fdbde755, #cfb5fc55, #fcbffa55) !important;
    backdrop-filter: blur(10px);
  }
  [data-theme="dark"] .nav-fixed>#nav{
    background: rgba(45, 10, 61, 0.7) !important;
    backdrop-filter: blur(10px);
  }
  /*文章页面*/
  .layout>#post {
    background: linear-gradient(-45deg, #e0bcffdd, #ffd3f0dd, #d5bdffdd, #ffdafedd) !important;
  }
  
  [data-theme=dark] .layout>#post {
    background: rgba(45, 10, 61, 0.7) !important;
  }
  
  /*主页文章轮播页面*/
  #recent-posts>.recent-post-item {
    background: linear-gradient(-45deg, #e0bcffdd, #ffd3f0dd, #d5bdffdd, #ffdafedd) !important;
  }
  [data-theme=dark] #recent-posts>.recent-post-item {
    background: rgba(45, 10, 61, 0.7) !important;
  }
  
  /*主页文章列表页面卡片*/
  #recent-posts>.recent-post-items .recent-post-item{
    background: linear-gradient(-45deg, #e0bcffdd, #ffd3f0dd, #d5bdffdd, #ffdafedd) !important;
  }
  [data-theme=dark] #recent-posts>.recent-post-items .recent-post-item{
    background: rgba(45, 10, 61, 0.7) !important;
  }
  /*分类页面*/
  .layout>#page {
    background: linear-gradient(-45deg, #e0bcffdd, #ffd3f0dd, #d5bdffdd, #ffdafedd) ;
  }
  [data-theme=dark] .layout>#page {
    background: rgba(45, 10, 61, 0.7) !important;
  }
  
  /*归档页面*/
  .layout>#archive {
    background: linear-gradient(-45deg, #e0bcffdd, #ffd3f0dd, #d5bdffdd, #ffdafedd) !important;
  }
  [data-theme=dark] .layout>#archive {
    background: rgba(45, 10, 61, 0.7) !important;
  }
  
  /*分类点进去的页面*/
  .layout>#category {
    background: linear-gradient(-45deg, #e0bcffdd, #ffd3f0dd, #d5bdffdd, #ffdafedd) !important;
  }
  [data-theme=dark] .layout>#category {
    background: rgba(45, 10, 61, 0.7) !important;
  }
  
  /*标签点进去的页面*/
  .layout>#tag {
    background: linear-gradient(-45deg, #e0bcffdd, #ffd3f0dd, #d5bdffdd, #ffdafedd) !important;
  }
  [data-theme=dark] .layout>#tag {
    background: rgba(45, 10, 61, 0.7) !important;
  }
  
  .layout.hide-aside {
   max-width: 1600px;
  }
  /* 设置黑夜的时候，社交按钮为白色 */
  [data-theme=dark] .social-icon i {
    color: rgba(188, 188, 188) !important; /* 设置为白色 */
  }
    