.box2 {
    height: 86px;
    cursor: pointer;
    border-radius: 4px;
    padding: 0px 30px 0px 30px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e4ecf3;
    margin: 20px 0 0 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box2:hover {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.xe-comment-entry img {
    float: left;
    display: block;
    margin-right: 10px;
}

.xe-comment p {
    margin-bottom: 0px;
}
.overflowClip_1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.overflowClip_2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.submit-tag{
    margin-top: 50px;

}

/* ===== 补充 Webstack 主题未直接提供的细节，使还原更完整 ===== */
html { scroll-behavior: smooth; }
body.page-body { background-color: #f1f1f1; }
h4.text-gray { scroll-margin-top: 16px; }

/* 卡片改为可点击链接（去掉下划线、继承文字色） */
a.xe-widget { display: block; text-decoration: none; color: inherit; }
a.xe-widget:hover, a.xe-widget:focus { text-decoration: none; color: inherit; }

/* 卡片 favicon 圆角 + 防变形 */
.xe-user-img .img-square { border-radius: 4px; object-fit: cover; background: #f4f6f9; }

/* 移动端：侧边栏改为抽屉，由 nav.js 切换 body.sidebar-open 控制 */
@media (max-width: 768px) {
  .sidebar-menu {
    position: fixed; left: 0; top: 0; bottom: 0; z-index: 1050;
    transform: translateX(-100%);
    transition: transform .3s ease;
  }
  body.sidebar-open .sidebar-menu {
    transform: translateX(0);
    box-shadow: 0 0 30px rgba(0, 0, 0, .3);
  }
  .main-content { margin-left: 0 !important; }
}