.bg{ 
    
    margin-bottom: 0px;
    background:#222;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%)
    
} 
body {
    padding-top: 2rem;
    background: #f0f0f0;
}
text1{font-size:22px}

.navbar-new {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 2px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0;
}

.nav-second {
    font-size: 15px;
    height: 40px;
    background-color: rgb(79,79,79);
    padding: 0 !important;
}
.pure-menu-list {
    list-style: none;
	float:left;
	justify-content:center;
    margin: 0;
    padding: 0;
}

.pure-menu-horizontal.pure-menu-scrollable {
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: .5em 0;
}

.menu-item {
    display: inline-block;
    zoom: 1.2;
    vertical-align: middle;
	margin: auto;
    margin-top: 5px;
}

.alert-warning {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}

.alert {
padding: 15px;
margin-bottom: 2px;
border: 1px solid transparent;
border-radius: 4px;
}

.dropdown-menu {
    min-width: 60px;
    background:rgb(79,79,79);
}
.dropdown-menu>li>a{
    padding: 2px 10px;
    font-size: medium;
    color:#2780E3;
}
/* 搜索容器 */
.search-mobile-container {
    padding: 10px 15px;
}

.mobile-alert {
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
    margin-bottom: 12px;
    background: #fff3cd;
    border: none;
}

/* 搜索输入组 */
.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 输入框样式 */
.search-input {
    flex: 1;
    height: 42px;
    padding: 0 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.search-input:focus {
    border-color: #337ab7;
    background: #fff;
}

/* 热搜词容器 */
.hot-search-tags {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 10px;
    display: none;
    z-index: 1000;
}

/* 显示热搜词 */
.search-input:focus + .hot-search-tags {
    display: block;
}

/* 热搜标签 */
.tag {
    display: inline-block;
    padding: 8px 15px;
    margin: 4px;
    background: #f3f4f6;
    border-radius: 18px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.tag:hover {
    background: #337ab7;
    color: #fff;
}

/* 搜索按钮 */
.search-btn {
    position: absolute;
    right: 1px;
    width: 6em;
    height: 42px;
    padding: 0 20px;
    background: #337ab7;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #286090;
    transform: translateY(-1px);
}
/* 热搜标题 */
.hot-search-header {
    padding: 6px 10px;
    border-bottom: 1px solid #eee;
}

.hot-search-header span {
    color: #333;
    font-weight: 400;
    margin-right: 4px;
}

.hot-search-header small {
    color: #999;
    font-size: 12px;
}