/* 全局设置字体 */

* {
  font-family: PingFangSC-Regular, PingFang SC;
}

#entries-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#entries-container .no-data-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#entries-container .no-data-container .title {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #222;
  opacity: 0.5;
}

#entries-container .no-data-container img {
  width: 240px;
  height: 240px;
}

.entries-card {
  display: flex;
  flex-direction: column;
  width: calc((100% - 90px) / 4);
  min-width: 200px;
  margin: 10px;
  cursor: pointer;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.entries-card:hover {
  box-shadow: 0 4px 10px 0 rgb(0 0 0 / 12%);
}

.entries-card .image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.entries-card .title {
  display: flex;
  align-items: flex-start;
  height: 40px;
  padding: 0 10px;
  margin-top: 10px;
  font-size: 14px;
}

.entries-card .machine {
  color: green;
}

.entries-card .span {
  display: -webkit-box;
  flex: 1;
  margin-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  word-break: break-word;
}

/* 卡片作者信息 */
.entries-card .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 14px;
}

/* 卡片作者 */
.entries-card .content .user {
  display: flex;
  align-items: center;
  width: 75%;
  padding: 0 10px;
}

.entries-card .content .user .icon {
  width: 20px;
  height: 20px;
  border-radius: 20px;
}

.entries-card .content .user .name {
  margin-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 卡片点赞 */

.entries-card .content .like {
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.entries-card .content .like .icon {
  width: 20px;
  height: 20px;
}

.entries-card .content .like .num {
  margin-left: 10px;
}

.btn-see-all {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  /* margin-top: 20px; */
  text-align: right;
  margin-right: 20px;
  cursor: pointer;
}

.btn-see-all > a {
  width: 128px;
  height: 36px;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  color: #143c31;
  text-decoration: none;
}

/* 平台dom */
#footer-btn {
  z-index: 1;
}

.btn-enter {
  cursor: pointer;
}
