@import url("page.css");

/* 帮助文档 */

/* 容器 */
.help-container {
  height: 460px;
  position: relative;
  user-select: none;
  width: 100%;
  background-image: url('images/bg/banner@2x.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fafafa;
}

.help-section-head {
  padding-top: 100px;
  text-align: center;
}

.help-section-title {
  font-size: 36px;
  line-height: 54px;
  font-weight: 700;
}

.help-section-subtitle {
  font-size: 14px;
  line-height: 22px;
  margin-top: 16px;
}

/* 帮助文档 */
.helpsBook-list {}

.helpsBookBody {
  display: grid;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
  --carousel-item-gap: 1.3125rem;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
  position: relative;
}

.helpsBookBody .helpBookItem {
  width: 100%;
  height: 160px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  position: relative;
  transition: all 0.5s ease-in-out 0s;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.helpsBook-list .helpBook-icon {
  position: relative;
  width: 50px;
  left: 0;
}

.helpsBook-list .helpBook-icon .icon {
  font-size: 50px;
}

.helpsBook-list .helpBook-info {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  left: 10px;
  position: relative;
  width: calc(100% - 50px);
}

.helpsBookBody .helpBook-info-title {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-all;
  overflow-wrap: break-word;
}

.helpsBookBody .helpBook-info-title a {
  border-bottom: 1px dashed #191919;
  color: #191919;
  font-size: 16px;
  line-height: 24px;
  -webkit-line-clamp: 2;
}

.helpsBook-list .helpBook-info-annex {
  color: #333;
  line-height: 26px;
}

.helpsBookBody .helpBook-actions {
  display: flex;
  font-size: 14px;
  position: absolute;
  left: 25px;
  bottom: 12px;
}

.helpsBookBody .helpBook-actions div {
  margin-right: 24px;
  color: #666;
  cursor: pointer;
}

.helpsBookBody .helpBook-actions i {
  font-size: 14px;
  margin-right: 5px;
}