.main-container {
  padding: 108px 80px 0 80px;
  display: flex;
}

.right-container {
  margin-left: 30px;
  flex: 1;
}

/* 类别 start */
.type-box {
  width: 328px;
  background-color: #fff;
  border-radius: 4px;
  padding: 30px;
}

/* 部分在common */
/* 类别 end */

/* 排行 start */
.rank-line {
  display: flex;
  align-items: center;
  height: 75px;
  border-bottom: 1px dashed #E6E6E6;
}
.rank-line:last-of-type {
  border: none;
}

.rank-num {
  width: 28px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  margin-right: 24px;
}

.user-profile {
  width: 44px;
  height: 44px;
  border: 1px solid #707070;
  border-radius: 50%;
  margin-right: 24px;
}
.user-profile img {
  height: 100%;
  width: 100%;
}

.user-name {
  font-weight: bold;
  font-size: 14px;
  color: #333333;
}

.user-tip {
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  margin-top: 6px;
}
/* 排行 end */

/* 热门标签 start */
.banner {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 4px;
  padding: 0 20px;
}

.cate-tag {
  display: inline-block;
  width: 67px;
  height: 34px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  color: #888888;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
}
.cate-tag.active {
  background-color: #F1F6F2;
  color: #333333;
}

.hot-tags {
  display: flex;
  align-items: center;
}

.tag-title {
  font-weight: 400;
  font-size: 14px;
  color: #9B9B9B;
}

.tag-container {
  display: flex;
}

.tag-item {
  height: 36px;
  background: linear-gradient( 90deg, #FBFBFB 0%, #F2F2F2 100%);
  border-radius: 8px;
  line-height: 36px;
  text-align: center;
  padding: 0 16px;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  margin-left: 16px;
  cursor: pointer;
}

.tag-num {
  font-size: 18px;
  color: #A5B4AF;
}
.tag-item:nth-of-type(1) .tag-num,
.tag-item:nth-of-type(2) .tag-num,
.tag-item:nth-of-type(3) .tag-num {
  color: #1F9E72;
}
/* 热门标签 end */

/* 主要内容 start */
.card-container {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 328px);
  grid-gap: 30px;
}

.card {
  height: 358px;
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.card-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 290px;
}
.card-pic img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.card-name {
  text-align: center;
  line-height: 68px;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
/* 主要内容 end */

/* 翻页 start */
.pagination-container {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}

.page-area {
  display: flex;
}

.page-item {
  margin-left: 8px;
  padding: 18px 22px;
  background-color: #fff;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  text-align: center;
  cursor: pointer;
}
.page-item.active {
  background-color: #1F9E72;
  color: #fff;
}
.page-item.disabled {
  color: #DFDFDF;
  cursor: inherit;
}

.total-number {
  margin-left : 17px;
  font-weight: 400;
  font-size: 16px;
  color: #888888;
}
/* 翻页 end */