        /* 基础样式 */
        html, body {
            height: 100%;
            width: 100%;
            margin: 0;
            padding: 0;
            font-family: "PingFang SC", Arial, "Microsoft YaHei", sans-serif;
            background: #fff;
        }

        /* 头部导航栏 */
        #head {
            height: 48px;
            min-width: 1250px;
            background: #fff;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }

        #head-left {
            height: 100%;
            float: left;
            padding-left: 18px;
            white-space: nowrap;
            display: flex;
            align-items: center;
        }

        #head-left > a {
            margin-right: 22px;
            font-size: 12px;
            line-height: 1;
            color: #333;
            text-decoration: none;
            transition: color 0.2s;
        }

        #head-left > a:hover {
            color: #4e6ef2;
        }

        /* 更多菜单 - 缩小字体 */
        #head-more {
            position: relative;
            margin-right: 24px;
        }

        #head-more a {
            font-size: 14px; /* 从12px缩小 */
        }

        #head-more div {
            position: absolute;
            top: 100%;
            right: 0;
            width: 280px;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-radius: 8px;
            display: none;
            z-index: 100;
            padding: 5px;
        }

        #more-img {
            width: 100%;
            height: auto;
            border-radius: 6px;
        }

        /* 主体内容 */
        #body {
            width: 656px;
            margin: 0 auto;
            padding-top: 70px;
            text-align: center;
        }

        /* Logo调整 - 放大图片 */
        #body > img {
            width: 290px; /* 从220px放大 */
            height: auto;
            margin-bottom: 18px;
        }

        /* 搜索框 - 缩小中间间距并居中 */
        #search-div {
            height: 44px;
            width: 100%;
            margin: 0 auto 18px;
            display: flex;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        #search-input {
            flex: 1;
        }

        #search-input input {
            width: 100%;
            height: 44px;
            padding: 0 12px; /* 从18px缩小 */
            border: 1px solid #4e6ef2;
            border-right: none;
            border-radius: 10px 0 0 10px;
            font-size: 15px;
            outline: none;
            box-sizing: border-box;
        }

        #search-btn {
            width: 90px; /* 从100px缩小 */
        }

        #search-btn input {
            width: 100%;
            height: 100%;
            background: #4e6ef2;
            color: #fff;
            border: none;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.2s;
        }

        #search-btn input:hover {
            background: #3a5bd9;
        }

        /* 广告区域 */
        #news_gg {
            width: 100%;
            margin: 16px auto 0;
        }

        /* 图片广告行 */
        #news_gg1 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        #news_gg1 a {
            margin: 0 12px;
        }

        #news_gg1 img {
            width: 56px;
            height: 56px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            transition: all 0.2s;
        }

        #news_gg1 img:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        /* 文字广告行 - 移除上下边框线 */
        #text_ads {
            width: 100%;
            margin: 15px auto;
            padding: 10px 0;
            /* 移除 border-top 和 border-bottom */
        }

        #text_ads_container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .text_ad_item {
            margin: 0 15px;
            font-size: 14px;
        }

        .text_ad_item a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s;
        }

        .text_ad_item a:hover {
            color: #4e6ef2;
        }

        /* 热搜板块 */
        #hot-search {
            width: 80%;
            margin: 20px auto;
            text-align: left;
        }

        .hot-search-title {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .hot-search-title span {
            margin-right: 8px;
        }

        .hot-search-title a {
            color: #999;
            font-size: 11px;
            text-decoration: none;
        }

        .hot-search-title a:hover {
            color: #4e6ef2;
        }

        .hot-search-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .hot-search-item {
            width: 48%;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .hot-search-index {
            width: 14px;
            height: 14px;
            line-height: 14px;
            text-align: center;
            font-size: 11px;
            color: #999;
            margin-right: 6px;
        }

        .hot-search-item:nth-child(1) .hot-search-index,
        .hot-search-item:nth-child(2) .hot-search-index,
        .hot-search-item:nth-child(3) .hot-search-index {
            color: #f54545;
        }

        .hot-search-content {
            flex: 1;
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hot-search-content a {
            color: #333;
            text-decoration: none;
        }

        .hot-search-content a:hover {
            color: #4e6ef2;
        }

        .hot-search-hot {
            display: inline-block;
            padding: 0 3px;
            font-size: 11px;
            color: #f54545;
            border: 1px solid #f54545;
            border-radius: 2px;
            margin-left: 4px;
            transform: scale(0.8);
        }

        /* 底部版权 */
        #foot {
            width: 100%;
            min-width: 1200px;
            padding: 12px 0;
            background: #f5f5f5;
            position: fixed;
            bottom: 0;
            left: 0;
            border-top: 1px solid #eee;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .foot-line {
            margin: 4px 0;
            line-height: 1.4;
            text-align: center;
        }

        .foot-line a, .foot-line span {
            font-size: 12px;
            color: #888;
            margin: 0 8px;
            text-decoration: none;
        }

        .foot-line a:hover {
            color: #4e6ef2;
        }