#left-login-btns,
#user-center,
#user-logout{
	display: none;
}
.cd-wrapper {
 width: 160px;
 height: 160px;
 position: relative;
 margin: 0 auto;
 border-radius: 50%;
 border: 2px solid #999;
 
}
.rotating{
	animation: rotateCD 9s linear infinite;
}

.cd {
 width: 100%; /* 宽度和高度设置为100%，以确保填满.cd-wrapper */
 height: 100%;
 border-radius: 50%;
 overflow: hidden; /* 防止图片超出.cd的边界 */
 position: absolute;
 top: 0;
 left: 0;
}

.cd img {
 width: 100%; /* 图片宽度设置为100%，以确保填满.cd */
 height: auto; /* 图片高度自动调整 */
 display: block; /* 防止图片底部有间隙 */
 cursor: pointer;
}

@keyframes rotateCD {
 from {
   transform: rotate(0deg);
 }
 to {
   transform: rotate(360deg);
 }
}
.hr{
	border-bottom: #dedede 1px solid;
	height: 2px;
	width: 100%;
	margin: 20px auto;
}

.hot-blog{
	margin-top: 50px;
}
.new-other-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
	padding-bottom: 30px;
}
.new-other-list .item{
	/* width: 49%; */
	margin: 5px 0;
}
.new-other-list .item a {
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    display: block;
	color: #555;
}
.comments-textarea{
	    padding: 12px 16px;
	    width: 100%;
	    height: 90px;
	    font-size: 13px;
	    border: 1px solid #eee;
	    border-radius: 4px;
	    background-color: #fafafa;
	    resize: none;
	    display: inline-block;
	    vertical-align: top;
	    outline-style: none;
}
.comments-btn{
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}
.comments-btn .btn{
	height: 30px;
	border-radius: 15px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}
.comments-list .media{
	display: flex;
	flex-direction: row;
	border-bottom: #eee 1px dashed;
	padding: 10px 0;
}
.comments-list .media:last-child{
	border-bottom: #eee 1px solid;
}
.comments-list .avatar{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-right: 20px;
}
.comments-list .media-body{
	flex: 1;
}
.comments-name{
	color: rgb(64, 64, 64);
	font-size: 15px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.comments-time{
	color: rgb(200, 200, 200);
	font-size: 13px;
	font-weight: normal;
}
.comments-content{
	padding: 20px 0;
	color: rgb(64, 64, 64);
	font-size: 16px;
}
.comments-page{
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination .page-link {  
	color: #5FCB71; /* 链接文字颜色 */  
	background-color: #fff; /* 背景颜色 */  
	border: 1px solid #dee2e6; /* 边框颜色 */  
	margin: 0 2px; /* 链接之间的间距 */  
	padding: 0.5rem 0.75rem; /* 内边距 */  
	font-weight: normal; /* 字体加粗 */  
	transition: all 0.3s ease; /* 过渡效果 */  
}  

/* 鼠标悬停时的样式 */  
.pagination .page-link:hover {  
	background-color: #5FCB71; /* 背景颜色变为自定义颜色 */  
	color: #fff; /* 文字颜色变为白色 */  
	border-color: #5FCB71; /* 边框颜色也变为自定义颜色 */  
}  

/* 当前页的样式 */  
.pagination .page-item.active .page-link {  
	background-color: #5FCB71; /* 当前页背景颜色 */  
	border-color: #5FCB71; /* 当前页边框颜色 */  
	color: #fff; /* 当前页文字颜色 */  
}  

/* 禁用链接的样式 */  
.pagination .page-link:disabled {  
	color: #6c757d; /* 禁用链接文字颜色 */  
	background-color: #fff; /* 禁用链接背景颜色 */  
	border-color: #dee2e6; /* 禁用链接边框颜色 */  
	opacity: 0.5; /* 透明度 */  
}  
.pagination .page-link.btn-sm {  
	padding: 0.25rem 0.5rem; /* 调整内边距 */  
	font-size: 0.875rem; /* 调整字体大小 */  
	line-height: 1.5; /* 调整行高 */  
	border-radius: 0.2rem; /* 调整边框圆角 */  
}

#searchContainer {
  position: relative; /* 设置相对定位，作为suggestions的参考 */
  z-index: 0; /* 确保搜索框在联想词列表之上 */
}

#suggestions {
  display: none; /* 默认不显示 */
  position: absolute; /* 绝对定位 */
  width: 100%; /* 宽度与searchBox相同 */
  top: 100%; /* 位于searchBox的下方 */
  left: 0; /* 与searchBox左侧对齐 */
  background-color: #fff;
  border-radius: 6px;
  list-style-type: none;
  border-bottom: 1px solid #eee;
  margin: 0;
  padding: 0;
  z-index: 1; /* 确保联想词列表在页面内容之下 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


#suggestions li {
  padding: 5px;
  cursor: pointer;
  text-align: left;
  padding-left: 10px;
  box-sizing: border-box;

}
#suggestions li:last-child{
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
}

#suggestions li:hover {
  background-color: #eaeaea;
}

/* 鼠标悬停时显示联想词列表 */
#searchBox:hover + #suggestions,
#suggestions:hover {
  display: block;
}

#back-to-top {
  display: none; /* 默认不显示 */
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #5FCB71;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
}

.blog-list{
	min-height: 100vh;
}

.blog-intro{
	margin: 10px 0;
} 
#nomore{
	display: none;
}
.modal-body{
	padding:10px 30px 30px 30px;
}
.err{
	border: red 1px solid;
}

.blog-user-section{
	min-height: 100vh;
	display: flex;  
	flex-direction: column;  
	box-sizing: border-box;
	padding-top:50px;
	 
} 
.user-h3{
	font-size: 22px;
	margin-bottom: 30px;
}
.user-box{
	display: flex;
	flex-direction: row;
	padding: 20px 0;
	border-bottom: #f2f2f2 1px solid;
	align-items: center;
}
.user-title{
	width: 90px;
	display: flex;
	flex-direction: row;
	box-sizing: content-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	margin-right: 30px;
}
.user-content{
	flex: 1;
}