body, html {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  

.post-title {
    display: inline-block;
    padding: 8px 24px;
    background-color: #3a76f0;      /* 优雅蓝色背景 */
    color: #ffffff;                 /* 白色字体 */
    font-size: 1.4rem;              /* 稍微小一点 */
    font-weight: 600;
    border-radius: 16px;            /* 大圆角 */
    box-shadow: 0 4px 10px rgba(58, 118, 240, 0.3);  /* 轻柔阴影 */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    text-align: center;
    cursor: default;
    /* 去除图标动画影响 */
}
  
  .post-title:hover {
    background-color: #335fcc;      /* 深一点的蓝色 */
    box-shadow: 0 6px 14px rgba(51, 95, 204, 0.5);
}
  
  
.snackbar-container{
    border-radius: 12px!important;
    background-color: #000000aa!important;
}
.OwO-body{
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: #ffffff77!important;
}

.snackbar-container .action{
    color:var(--june-theme)!important;
    background-color: transparent!important;
}
.snackbar-container{
    font-family: HYTMR,'Bold'!important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
@media screen and (max-width:640px) {
    .snackbar-container {
        border-radius: 0px !important;
        -webkit-border-radius: 0px !important;
        -moz-border-radius: 0px !important;
        -ms-border-radius: 0px !important;
        -o-border-radius: 0px !important;
    }
}

/* aside公告栏按钮美化 */
.social-button .button--animated {
    background: #3eb8be;
    color: rgb(255, 255, 255);
    display: block;
    margin: 4px 0;
    text-align: center;
    line-height: 2.4;
    transition: 0.3s;
    border-radius: 8px;
  }
  
  .social-button .button--animated:hover {
    background-color: #40c4ae;
  }
  
  .social-button .button--animated:active {
    background-color: #339ea3;
  }

/* 文章页背景 */
.layout_post>#post {
    /* 以下代表透明度为0.7 可以自行修改*/
    background: rgba(255,255,255,.8);
}
 
/* 所有页面背景 */
#aside_content .card-widget, #recent-posts>.recent-post-item, .layout_page>div:first-child:not(.recent-posts), .layout_post>#page, .layout_post>#post, .read-mode .layout_post>#post{
    /* 以下代表透明度为0.7 */
    background: rgba(255,255,255,.8);
}
/*侧边卡片的透明度 */
:root {
  --card-bg: rgba(255, 255, 255, .8);
}
/* 页脚透明 */
#footer {
	/* 以下代表透明度为0.7 */
	background: rgba(255,255,255, .0);
}

/* 修复顶栏字体异常颜色并且和删除半透明白色 */
#page-header, #nav {
    background-color: rgba(0, 0, 0, 0) !important;  /* 完全透明 导航栏阴影 */
    box-shadow: none !important; /* 去掉阴影（如果有） */
    backdrop-filter: none !important; /* 去掉毛玻璃模糊效果（如果有） */
}
#page-header a, #nav a {
    color: #fff !important; /* 或你想要的颜色 */
}

/* hr-----改为换行 */
hr {
    border: none !important;
    height: 5px !important;  /* 用高度做空白行 */
    background: transparent !important;
    margin: 5px 0 !important;
  }
  
  hr::before,
  hr::after {
    content: none !important;
    display: none !important;
  }
  

/* 字符提示框   */
code {
  background-color: rgba(19, 15, 15, 0.722) !important;
  color: #fff !important;
  padding: 0.15em 0.4em !important;
  border-radius: 0.6em !important;
  font-size: 1em !important;
  font-family: Consolas, "Courier New", monospace !important;
  white-space: nowrap !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4) !important;
  transition: background-color 0.3s ease !important;
}
code:hover {
  background-color: rgba(0, 0, 0, 1) !important;
}


/* 主页小按钮气泡 */
.card-tags-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px auto -10px;
    padding: 0 15px;
    max-width: 1000px;
  }
  
  .card-tag {
    background: white;
    color: #333;
    padding: 6px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    user-select: none;
    transition: all 0.3s ease;
  }
  
  .card-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 202, 40, 0.5);
  }
  
  @media (max-width: 768px) {
    .card-tag {
      font-size: 0.85rem;
      padding: 5px 12px;
    }
  }