/* 修复布局问题的CSS */
.xe-card {
  margin-bottom: 20px;
  height: auto !important;
  overflow: hidden;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.xe-widget {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.xe-widget img {
  max-width: 100%;
  height: auto;
}

/* 确保移动设备上的正确显示 */
@media (max-width: 768px) {
  .sidebar-menu {
    display: none;
  }
  
  .main-content {
    margin-left: 0;
    width: 100%;
  }
  
  .xe-card {
    width: 100%;
  }
}

/* 修复重复显示的问题 */
.no-link-list {
  list-style: none;
  padding: 0;
}

.no-link-list li {
  display: block;
  margin-bottom: 10px;
}

/* 确保图标正确显示 */
.fa, .fas, .far, .fab {
  display: inline-block;
} 