@charset "utf-8";

/* mainContainer */
.mainContainer_home{
    margin-left: 36px;
    width: 1092px;
    max-width: 1092px;
    padding: 32px 0px;
    position: relative;
}
.feedTabsContainer{
	width: 100%;
	min-height: 30px;
	position: relative;
}
.feedTabs{
	display: flex;
	column-gap: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.feedTab{
	box-sizing: border-box;
    padding: 8px 20px;
    height: 30px;
	background: #F0F0F0;
	border-radius: 40px;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #3D3D3D;
}
.feedTab.active{
	background: #3D3D3D;
	color: #FFFFFF;
}
.userListWrapper{
	width: 100%;
}
.userListContainer{
	margin-top: 36px;
	position: relative;
	padding-bottom: 4px;
}
.userListContainer:after{
	content: "";
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 4px;
	background: #F0F0F0;
}

.userListContainer .title{
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: -0.02em;
	color: #242424;
	padding-bottom: 24px;
	display: flex;
	align-items: center;
}
.userListContainer .title-icon{
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 8px;
	background: url(../image/icon/icon-hot.png) no-repeat center center;
}
.userListContainer.hot .title-icon{
	background: url(../image/icon/icon-hot.png) no-repeat center center;
}
.userListContainer.news .title-icon{
	background: url(../image/icon/icon-news.png) no-repeat center center;
}
.userListContainer.life .title-icon{
	background: url(../image/icon/icon-life.png) no-repeat center center;
}

/* userList */
.userList{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap; 
	column-gap: 12px;
	row-gap: 25px;
	max-height: 381px; /* 나중에 높이 다시 설정 */
	overflow: hidden;
}
.userList.active{
	max-height: initial;
}
.divUserCard{
	width: calc( (100% - 60px) / 6);
    display: block;
    overflow: hidden;
	
}

.divUserCard .aUserCard{
	position: relative;
}

.aUserCard .divContainer{
	/* width: 180px;
    height: 320px; */
	overflow: hidden;
	border-radius: 10px;
}
.aUserCard .imgPoster{
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.viewbackground{
	position: absolute;
	width: 100%;
	height: 45px;
	background:transparent url(../image/bg_shadow.png) top left;
	left: 0;
	bottom: 0;
	border-radius: 0 0 10px 10px;
}
.aUserCard .viewContainer{
	position: absolute;
	left: 12px;
	bottom: 12px;
	display: flex;
	align-items: center;
}
.aUserCard .viewContainer .viewIcon{
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url(../image/icon/icon_view.png) no-repeat center center;
	margin-right: 3px;
}
.aUserCard .viewContainer .viewText{
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #FFFFFF;
}

.infoContainer{
	margin: 8px 0px;
	display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
	width: 100%;
    /* max-width: 180px; */
}
.infoContainer .avatarAnchor{
	flex: 0 0 auto;
}
.infoContainer .spanAvatarContainer{
	width: 24px;
	height: 24px;
	display: inline-block;
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
	position: relative;
	overflow: hidden;
	color: rgb(255, 255, 255);
	white-space: nowrap;
	text-align: center;
	vertical-align: middle;
	line-height: 24px;
	border-radius: 50%;
	cursor: pointer;
}
.infoContainer .imgAvatar{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contentContainer{
	margin-left: 6px;
	width: calc(100% - 30px);
}
.textContainer{
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: -0.02em;
	color: #000;
	max-height: 42px;
}
.textContainer .divText{
	line-height: 21px;
	display: inline-block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
}
.textContainer .hashtag{
	display: inline-block;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
.textContainer .hashtag strong{
	font-weight: 600;
}
.textContainer .divText.howView{
	display: none;
	color: #6F6F6F;
} 
.textContainer .divText.howView span{
	margin-right: 2px;
}

.authorContainer {
	margin-top: 4px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
}
.authorContainer .avatarAnchor{
    display: block;
}
.authorContainer .avatarAnchor h3{
	display: block;
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #A5A5A5;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
}

/* 더보기 */
.moreButton{
	background: transparent;
    border: none;
	color: #7E42FF;
	font-weight: 500;
    display: flex;
    position: absolute;
	right: 0;
	top: 0;
    align-items: center;
    justify-content: center;
    user-select: none;
    cursor: pointer;
    box-sizing: border-box;
}
.moreButton .btnIcon{
	width: 20px;
	height: 20px;
	background: url(../image/icon/icon_more_purple.png) no-repeat center center;
}

/* 하단의 조금 더보기 */
.btnContainer{
	display: flex;
	align-items: center;
	justify-content: center;
}
.btnContainer .moreButton{
	background: transparent;
	padding: 20px 0;
    border: none;
	color: #3D3D3D;
    position: relative;
    user-select: none;
    cursor: pointer;
    box-sizing: border-box;
	width: 100%;
}
.btnContainer .moreButton .btnIcon{
	width: 20px;
	height: 20px;
	background: url(../image/icon/icon_more.png) no-repeat center center;
}


/* history */
.history .mainContainer_home{
	width: 864px;
    max-width: 864px
}
.history .divUserCard{
	width: calc( (100% - 48px) / 5);
}
.history .userList{
	max-height: unset;
}
.history .title{
	font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #242424;
    padding-bottom: 24px;
    display: flex;
    align-items: center;
}
.history .title-icon{
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 8px;
	background: url(../image/icon/icon_history_on.png) no-repeat center center;
}

.searchHistory{
	position: relative;
}
.searchHistoryContainer{
	width: 200px;
	margin-left: 28px;
	position: relative;
    padding: 0 8px;
	box-sizing: border-box;
}
.searchHistoryWrapper{
	padding-top: 32px;
	position: relative;
    min-height: 100%;
}
.searchHistory-input{
	display: flex;
    flex-direction: row;
    align-items: center;
    padding: 14px 18px;
    background: rgba(22, 24, 35, .06);
    border-radius: 92px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 0;
}
.searchHistory-input .searchIcon{
	display: inline-block;
	width: 28px;
	height: 24px;
	background: url(../image/icon/icon_search.png) no-repeat center center;
	margin-right: 8px;
}
.searchHistory-input input{
	font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    height: 16px;
    border: none;
    background: transparent;
    outline: none;
    padding: 0;
    width: calc(100% - 28px - 8px);
    color: rgba(22, 24, 35, 1);
    caret-color: rgb(85 57 255);
}
.deleteHistory{
	display: block;
	margin-top: 25px;
	padding-left: 30px;
	height: 24px;
	line-height: 24px;
	font-size: 16px;
	background: url(../image/icon/icon_trash.png) no-repeat left center;
}