.banner {
  width: 100%;
}
#body {
  margin-bottom: 1rem;
  flex: 1;
}
.section .tabs {
  padding: 1.875rem 0.75rem 1.25rem;
  border-bottom: 1px solid #E5E5E5;
  display: flex;
  overflow-x: scroll;
}
.section .tabs::-webkit-scrollbar {
  display: none;
}
.section .tabs .cell {
  margin: 0 0.75rem;
  flex-shrink: 0;
  font-size: 0.9375rem;
  color: #373737;
}
.section .tabs .cell:nth-child(1) {
  margin: 0 0.75rem 0 0;
}
.section .tabs .cell:nth-last-child(1) {
  margin: 0 0 0 0.75rem;
}
.section .tabs .cell.active span {
  color: #0062B1;
  position: relative;
}
.section .tabs .cell.active span::after {
  content: '';
  width: 1.4375rem;
  height: 1px;
  display: block;
  position: relative;
  margin-top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0062B1;
}
.section .cell-group {
  margin-top: 2rem;
  padding: 0 1rem;
}
.section .cell-group .cell {
  margin-bottom: 1rem;
}
.section .cell-group .cell .ratio-box {
  width: 100%;
  height: 0;
  padding-bottom: 66.5%;
  position: relative;
}
.section .cell-group .cell .ratio-box .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.section .cell-group .cell .ratio-box .img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section .cell-group .cell .img-wrapper {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}
.section .cell-group .cell .box {
  padding: 0.5rem 1rem;
  height: 5rem;
  box-sizing: border-box;
  background-color: #F5F4F4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section .cell-group .cell .box .box-title {
  font-size: 0.875rem;
  color: #373737;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.section .cell-group .cell .box .createTime {
  font-size: 0.75rem;
  color: #aeaeae;
}
.section .more {
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: #373737;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section .more.loading .icon {
  animation: rotate 2s linear infinite;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.section .more .icon {
  margin-left: 0.5rem;
  width: 1rem;
}
.masker {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 100;
}
.masker #video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 98%;
}
@media screen and (min-width: 768px) {
  .section .cell-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1rem;
  }
}
