.content {
    margin: 24px calc(50% - 600px) 76px;
}

.content .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 21px;
}

.content .top .sortItems {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 42px;
    background-color: #FFFFFF;
    border-radius: 42px;
    width: 152px;
    padding: 0 16px;
}

.content .top .sortItems .sortItem {
    width: 55px;
    text-align: center;
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 400;
    font-size: 14px;
    color: rgba(29, 32, 53, 0.8);
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.content .top .sortItems .sortItem.active, .content .top .sortItems .sortItem:hover {
    color: #48A0FF;
}

.content .top .sortItems .sortItem .price .up, .content .top .sortItems .sortItem .price .up_active,
.content .top .sortItems .sortItem .price .down, .content .top .sortItems .sortItem .price .down_active {
    width: 10px;
    height: 6px;
    background-size: cover;
}

.content .top .sortItems .sortItem .price .up {
    background-image: url("../../images/video/up.png");
    margin-bottom: 1px;
}

.content .top .sortItems .sortItem .price .up_active {
    background-image: url("../../images/video/up_active.png");
    margin-bottom: 1px;
}

.content .top .sortItems .sortItem .price .down {
    background-image: url("../../images/video/down.png");
}

.content .top .sortItems .sortItem .price .down_active {
    background-image: url("../../images/video/down_active.png");
}

.content .top .search {
    position: relative;
}

.content .top .search input {
    width: 253px;
    height: 42px;
    padding: 0 16px;
    background-color: #F0F0F0;
    border-radius: 21px 21px 21px 21px;
    border: 1px solid #B4BCCC;
    opacity: 0.5;
}

.content .top .search .search_icon {
    position: absolute;
    top: 10.5px;
    right: 16px;
    width: 20px;
    height: 20px;
    background-image: url("../../images/video/search.png");
    background-size: cover;
    cursor: pointer;
}

.content .videoItems {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 24px 20px;
    margin-bottom: 48px;
}

.content .videoItems .videoItem {
    width: 285px;
    height: 363px;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.content .videoItems .videoItem .img {
    width: 285px;
    height: 208px;
    background: linear-gradient(142deg, #F1B189 5.71%, #E87F3E 100%);
    border-radius: 8px 8px 0px 0px;
}

.content .videoItems .videoItem .title {
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 500;
    font-size: 16px;
    color: #1D2035;
    margin: 16px 16px 12px 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content .videoItems .videoItem .info {
    margin: 0 16px 13px 16px;
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 400;
    font-size: 14px;
    color: #A0A0AF;
    line-height: 20px;
}

.content .videoItems .videoItem .tag {
    display: inline-block;
    word-wrap: break-word;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background-color: #FFF0E1;
    border-radius: 3px;
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 400;
    font-size: 12px;
    color: #FF8307;
    margin: 0 16px 14px 16px;
    padding: 0 6px;
}

.content .videoItems .videoItem .tag.free {
    margin-bottom: 12px;
}

.content .videoItems .videoItem .tag.none {
    background-color: #FFFFFF;
}

.content .videoItems .videoItem .price {
    margin-right: 16px;
    text-align: right;
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 500;
    font-size: 16px;
    color: #FA5151;
    line-height: 1;
}

.content .videoItems .videoItem .price span {
    font-size: 24px;
}

.content .videoItems .videoItem .price.free {
    font-size: 20px;
}