.box2 {
    height: 86px;
    cursor: pointer;
    border-radius: 4px;
    padding: 0px 30px 0px 30px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #e4ecf3;
    margin: 20px 0 0 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box2:hover {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.xe-comment-entry img {
    float: left;
    display: block;
    margin-right: 10px;
}
.xe-comment {
    transform: translateY(-50%);
    position: absolute;
    margin-left: 50px;
    top: 50%;
}
.xe-comment p {
    margin-bottom: 0px;
    margin-right: 15px;
}
.overflowClip_1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.overflowClip_2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.submit-tag{
    margin-top: 50px;

}

.img-circle {
    padding: 7px 0;
}

.top{
	position:fixed;
	right:10px;
	bottom:30px;
    z-index:1000;
    border-radius: 40px;
    /* border:1px solid red; */
}
.top i{
    font-size: 40px; color: #1E9FFF;
    font-weight: bold;
}

.search i {
    font-size: 18px;
    position: absolute;
    right: 48px;
    margin-top: -24px;
    /* color: #FFFFFF; */
    
}
.logo h1{
    font-size:28px;
    color:#FFFFFF;
    font-weight: bold;
}
.subscript {
    color: rgb(255, 255, 255);
    height: 30px;
    width: 66px;
    position: absolute;
    right: -30px;
    text-align: center;
    line-height: 30px;
    font-family: 黑体;
    background-color: rgb(255, 87, 34);
    transform: rotate(45deg);
    margin-top: -46px;
    font-size: 0.7em;
    z-index: 99;
}

.label-info {
    overflow: hidden;
}

.close{
	background-color: #FFFFFF;
	padding: 12px;
	padding-left:20px;
	padding-right:20px;
	display: inline-block;
	/* margin-bottom: 16px; */
	border-radius: 6px;
	border: solid 1px transparent; /* 添加边框 */
	transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease; /* 添加过渡效果 */
	cursor: pointer; /* 使鼠标光标变为小手 */
}

.close:hover{
	border-color: #000000; /* 鼠标悬停时改变边框颜色 */
	color: #000000; /* 鼠标悬停时改变文字颜色 */
	transform: scale(1.05); /* 鼠标悬停时放大按钮 */
}

.overlay{
	position: absolute; /* 让伪元素可以覆盖整个侧边栏 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	z-index: 10; /* 确保遮罩位于其他元素之上 */
}

/* 搜索区域整体布局 */
.search-main-w {
    width: 100%;
    height: 100px; /* 减小整体高度 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    gap: 20px;
}

/* 主搜索区域 */
.search-main {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 0 15px;
}

/* 搜索输入框容器 */
.search-main .search-input {
    flex: 1;
    position: relative;
    height: 40px; /* 统一高度 */
    margin-right: 15px;
}

/* 搜索输入框 */
.search-main .search-input input.kw {
    width: 100%;
    height: 40px; /* 统一高度 */
    padding: 0 40px 0 15px;
    border-radius: 6px;
    border: 1px solid #e4ecf3;
    font-size: 14px;
    transition: all 0.3s;
}

/* 搜索按钮组 */
.search-main .search-btnlist {
    display: flex;
    align-items: center;
    height: 40px; /* 统一高度 */
    position: relative;
}

/* 主搜索按钮 */
.search-main button.search-btn {
    height: 40px; /* 统一高度 */
    padding: 0 12px;
    border: 1px solid #e4ecf3;
    border-right: none;
    border-radius: 6px 0 0 6px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

/* 切换按钮 */
.search-main button.search-change {
    height: 40px; /* 统一高度 */
    width: 40px;
    border: 1px solid #e4ecf3;
    border-left: none;
    border-radius: 0 6px 6px 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 搜索列表下拉框 */
.search-main .search-btnlist .search-lists {
    position: absolute;
    top: 100%;
    right: 0;
    width: 145px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    padding: 6px;
    z-index: 1000;
    margin-top: 5px;
}

/* 搜索列表选项 */
.search-main .search-btnlist .search-lists .list {
    height: 32px; /* 减小选项高度 */
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.search-main .search-btnlist .search-lists .list:hover {
    background-color: #e4ecf3;
}
/* 搜索框内的搜索图标 */
.search-main .search-input button.search-bendi {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #64a15e;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.search-main .search-input button.search-bendi i {
    font-size: 16px;
}

/* 日期时间区域 */
.date-main {
    width: 240px;
    height: 100px; /* 统一高度 */
    background: linear-gradient(214deg, #7c38bc, #000000);
    border-radius: 10px;
    padding: 8px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
}

.date-main .times {
    font-size: 24px; /* 调整时间字体大小 */
    line-height: 1;
    margin-bottom: 4px;
}

.date-main span.dates {
    font-size: 12px;
    margin-bottom: 2px;
}

.date-main .list span {
    font-size: 12px;
}

/* 微博热搜区域 */
#weibo-hot-list {
    width: 240px;
    height: 60px; /* 统一高度 */
}

/* 统一图标大小 */
.search-main button.search-btn img,
.search-main .search-btnlist .search-lists .list img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* 响应式布局调整 */
@media only screen and (max-width: 1200px) {
    .search-main-w {
        height: auto;
        flex-direction: column;
        gap: 15px;
    }
    
    .search-main {
        width: 100%;
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 10px;
    }
    
    .search-main .search-input {
        width: 100%;
        margin-right: 0;
    }
    
    .search-main .search-btnlist {
        width: 100%;
    }
    
    .search-main button.search-btn {
        flex: 1;
    }
    
    .date-main {
        display: none;
    }
}

/* 添加显示隐藏的样式类 */
.search-lists.show {
    display: block !important;
}

.search-lists.hide {
    display: none !important;
}